diff options
Diffstat (limited to 'src')
134 files changed, 294859 insertions, 23402 deletions
diff --git a/src/char/HPMchar.c b/src/char/HPMchar.c index db2c3702e..f3cf2cff4 100644 --- a/src/char/HPMchar.c +++ b/src/char/HPMchar.c @@ -57,6 +57,7 @@ #include "common/mapindex.h" #include "common/mmo.h" #include "common/nullpo.h" +#include "common/packets.h" #include "common/random.h" #include "common/showmsg.h" #include "common/socket.h" diff --git a/src/char/Makefile.in b/src/char/Makefile.in index 95c8df813..f159a443f 100644 --- a/src/char/Makefile.in +++ b/src/char/Makefile.in @@ -46,7 +46,7 @@ CHAR_C = char.c HPMchar.c loginif.c mapif.c geoip.c inter.c int_achievement.c in CHAR_OBJ = $(addprefix obj_sql/, $(patsubst %.c,%.o,$(CHAR_C))) CHAR_H = char.h HPMchar.h loginif.h mapif.h geoip.h inter.h int_achievement.h int_auction.h int_clan.h int_elemental.h \ int_guild.h int_homun.h int_mail.h int_mercenary.h int_party.h int_pet.h \ - int_quest.h int_rodex.h int_storage.h pincode.h + int_quest.h int_rodex.h int_storage.h pincode.h packets_hc_struct.h CHAR_PH = HAVE_MYSQL=@HAVE_MYSQL@ diff --git a/src/char/char.c b/src/char/char.c index 54f6ca7d1..0546e49df 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -21,7 +21,7 @@ #define HERCULES_CORE #include "config/core.h" // CONSOLE_INPUT -#include "char.h" +#include "char/char.h" #include "char/HPMchar.h" #include "char/geoip.h" @@ -41,6 +41,7 @@ #include "char/inter.h" #include "char/loginif.h" #include "char/mapif.h" +#include "char/packets_hc_struct.h" #include "char/pincode.h" #include "common/HPM.h" @@ -53,6 +54,7 @@ #include "common/mapindex.h" #include "common/mmo.h" #include "common/nullpo.h" +#include "common/packetsstatic_len.h" #include "common/showmsg.h" #include "common/socket.h" #include "common/strlib.h" @@ -139,6 +141,7 @@ char char_name_letters[1024] = ""; // list of letters/symbols allowed (or not) i static int char_del_level = 0; ///< From which level you can delete character [Lupus] static int char_del_delay = 86400; static bool char_aegis_delete = false; ///< Verify if char is in guild/party or char and reacts as Aegis does (disallow deletion), @see chr->delete2_req. +static bool char_aegis_rename = false; // whether or not the player can be renamed while in party/guild static int max_connect_user = -1; static int gm_allow_group = -1; @@ -476,11 +479,18 @@ static int char_mmo_char_tosql(int char_id, struct mmo_charstatus *p) (p->show_equip != cp->show_equip) || (p->allow_party != cp->allow_party) || (p->font != cp->font) || (p->uniqueitem_counter != cp->uniqueitem_counter) || (p->hotkey_rowshift != cp->hotkey_rowshift) || (p->clan_id != cp->clan_id) || (p->last_login != cp->last_login) || (p->attendance_count != cp->attendance_count) || - (p->attendance_timer != cp->attendance_timer) || (p->title_id != cp->title_id) + (p->attendance_timer != cp->attendance_timer) || (p->title_id != cp->title_id) || (p->inventorySize != cp->inventorySize) ) { //Save status unsigned int opt = 0; + if (p->inventorySize <= 0 || p->inventorySize > MAX_INVENTORY) { + ShowError("Wrong inventorySize field: %d. Must be in range 1 to %d. Character %s (CID: %d, AID: %d)\n", + p->inventorySize, MAX_INVENTORY, p->name, p->char_id, p->account_id); + Assert_report(0); + p->inventorySize = FIXED_INVENTORY_SIZE; + } + if( p->allow_party ) opt |= OPT_ALLOW_PARTY; if( p->show_equip ) @@ -495,7 +505,7 @@ static int char_mmo_char_tosql(int char_id, struct mmo_charstatus *p) "`last_map`='%s',`last_x`='%d',`last_y`='%d',`save_map`='%s',`save_x`='%d',`save_y`='%d', `rename`='%d'," "`delete_date`='%lu',`robe`='%d',`slotchange`='%d', `char_opt`='%u', `font`='%u', `uniqueitem_counter` ='%u'," "`hotkey_rowshift`='%d',`clan_id`='%d',`last_login`='%"PRId64"',`attendance_count`='%d',`attendance_timer`='%"PRId64"'," - "`title_id`='%d'" + "`title_id`='%d', `inventory_size`='%d'" " WHERE `account_id`='%d' AND `char_id` = '%d'", char_db, p->base_level, p->job_level, p->base_exp, p->job_exp, p->zeny, @@ -508,7 +518,7 @@ static int char_mmo_char_tosql(int char_id, struct mmo_charstatus *p) (unsigned long)p->delete_date, // FIXME: platform-dependent size p->look.robe,p->slotchange,opt,p->font,p->uniqueitem_counter, p->hotkey_rowshift,p->clan_id,p->last_login, p->attendance_count, p->attendance_timer, - p->title_id, + p->title_id, p->inventorySize, p->account_id, p->char_id) ) { Sql_ShowDebug(inter->sql_handle); @@ -1049,7 +1059,7 @@ static int char_mmo_gender(const struct char_session_data *sd, const struct mmo_ //===================================================================================================== // Loads the basic character rooster for the given account. Returns total buffer used. -static int char_mmo_chars_fromsql(struct char_session_data *sd, uint8 *buf) +static int char_mmo_chars_fromsql(struct char_session_data *sd, uint8 *buf, int *count) { struct SqlStmt *stmt; struct mmo_charstatus p; @@ -1058,6 +1068,9 @@ static int char_mmo_chars_fromsql(struct char_session_data *sd, uint8 *buf) time_t unban_time = 0; char sex[2]; + if (count) + *count = 0; + nullpo_ret(sd); nullpo_ret(buf); @@ -1079,7 +1092,7 @@ static int char_mmo_chars_fromsql(struct char_session_data *sd, uint8 *buf) "`str`,`agi`,`vit`,`int`,`dex`,`luk`,`max_hp`,`hp`,`max_sp`,`sp`," "`status_point`,`skill_point`,`option`,`karma`,`manner`,`hair`,`hair_color`," "`clothes_color`,`body`,`weapon`,`shield`,`head_top`,`head_mid`,`head_bottom`,`last_map`,`rename`,`delete_date`," - "`robe`,`slotchange`,`unban_time`,`sex`,`title_id`" + "`robe`,`slotchange`,`unban_time`,`sex`,`title_id`,`inventory_size`" " FROM `%s` WHERE `account_id`='%d' AND `char_num` < '%d'", char_db, sd->account_id, MAX_CHARS) || SQL_ERROR == SQL->StmtExecute(stmt) || SQL_ERROR == SQL->StmtBindColumn(stmt, 0, SQLDT_INT, &p.char_id, sizeof p.char_id, NULL, NULL) @@ -1123,25 +1136,36 @@ static int char_mmo_chars_fromsql(struct char_session_data *sd, uint8 *buf) || SQL_ERROR == SQL->StmtBindColumn(stmt, 38, SQLDT_TIME, &unban_time, sizeof unban_time, NULL, NULL) || SQL_ERROR == SQL->StmtBindColumn(stmt, 39, SQLDT_ENUM, &sex, sizeof sex, NULL, NULL) || SQL_ERROR == SQL->StmtBindColumn(stmt, 40, SQLDT_INT, &p.title_id, sizeof p.title_id, NULL, NULL) + || SQL_ERROR == SQL->StmtBindColumn(stmt, 41, SQLDT_INT, &p.inventorySize, sizeof p.inventorySize, NULL, NULL) ) { SqlStmt_ShowDebug(stmt); SQL->StmtFree(stmt); return 0; } - for( i = 0; i < MAX_CHARS && SQL_SUCCESS == SQL->StmtNextRow(stmt); i++ ) { + int tmpCount = 0; + for (i = 0; i < MAX_CHARS && SQL_SUCCESS == SQL->StmtNextRow(stmt); i++) { if (p.slot >= MAX_CHARS) continue; + if (p.inventorySize <= 0 || p.inventorySize > MAX_INVENTORY) { + ShowError("Wrong inventorySize field: %d. Must be in range 1 to %d. Character %s (CID: %d, AID: %d)\n", + p.inventorySize, MAX_INVENTORY, p.name, p.char_id, p.account_id); + Assert_report(0); + p.inventorySize = FIXED_INVENTORY_SIZE; + } p.last_point.map = mapindex->name2id(last_map); sd->found_char[p.slot] = p.char_id; sd->unban_time[p.slot] = unban_time; p.sex = chr->mmo_gender(sd, &p, sex[0]); j += chr->mmo_char_tobuf(WBUFP(buf, j), &p); + tmpCount ++; } - memset(sd->new_name,0,sizeof(sd->new_name)); + memset(sd->new_name, 0, sizeof(sd->new_name)); SQL->StmtFree(stmt); + if (count) + *count = tmpCount; return j; } @@ -1169,6 +1193,7 @@ static int char_mmo_char_fromsql(int char_id, struct mmo_charstatus *p, bool loa nullpo_ret(p); memset(p, 0, sizeof(struct mmo_charstatus)); + p->inventorySize = FIXED_INVENTORY_SIZE; if (chr->show_save_log) ShowInfo("Char load request (%d)\n", char_id); @@ -1188,7 +1213,7 @@ static int char_mmo_char_fromsql(int char_id, struct mmo_charstatus *p, bool loa "`hair_color`,`clothes_color`,`body`,`weapon`,`shield`,`head_top`,`head_mid`,`head_bottom`,`last_map`,`last_x`,`last_y`," "`save_map`,`save_x`,`save_y`,`partner_id`,`father`,`mother`,`child`,`fame`,`rename`,`delete_date`,`robe`,`slotchange`," "`char_opt`,`font`,`uniqueitem_counter`,`sex`,`hotkey_rowshift`,`clan_id`,`last_login`, `attendance_count`, `attendance_timer`," - "`title_id`" + "`title_id`, `inventory_size`" " FROM `%s` WHERE `char_id`=? LIMIT 1", char_db) || SQL_ERROR == SQL->StmtBindParam(stmt, 0, SQLDT_INT, &char_id, sizeof char_id) || SQL_ERROR == SQL->StmtExecute(stmt) @@ -1256,6 +1281,7 @@ static int char_mmo_char_fromsql(int char_id, struct mmo_charstatus *p, bool loa || SQL_ERROR == SQL->StmtBindColumn(stmt, 61, SQLDT_SHORT, &p->attendance_count, sizeof p->attendance_count, NULL, NULL) || SQL_ERROR == SQL->StmtBindColumn(stmt, 62, SQLDT_INT64, &p->attendance_timer, sizeof p->attendance_timer, NULL, NULL) || SQL_ERROR == SQL->StmtBindColumn(stmt, 63, SQLDT_INT, &p->title_id, sizeof p->title_id, NULL, NULL) + || SQL_ERROR == SQL->StmtBindColumn(stmt, 64, SQLDT_INT, &p->inventorySize, sizeof p->inventorySize, NULL, NULL) ) { SqlStmt_ShowDebug(stmt); SQL->StmtFree(stmt); @@ -1287,6 +1313,13 @@ static int char_mmo_char_fromsql(int char_id, struct mmo_charstatus *p, bool loa p->save_point.y = mapindex->default_y; } + if (p->inventorySize <= 0 || p->inventorySize > MAX_INVENTORY) { + ShowError("Wrong inventorySize field: %d. Must be in range 1 to %d. Character %s (CID: %d, AID: %d)\n", + p->inventorySize, MAX_INVENTORY, p->name, p->char_id, p->account_id); + Assert_report(0); + p->inventorySize = FIXED_INVENTORY_SIZE; + } + strcat(t_msg, " status"); if (!load_everything) // For quick selection of data when displaying the char menu @@ -1514,6 +1547,14 @@ static int char_rename_char_sql(struct char_session_data *sd, int char_id) if( char_dat.rename == 0 ) return 1; + if (char_aegis_rename) { + if (char_dat.guild_id > 0) { + return 5; // MSG_FAILED_RENAME_BELONGS_TO_GUILD + } else if (char_dat.party_id > 0) { + return 6; // MSG_FAILED_RENAME_BELONGS_TO_PARTY + } + } + SQL->EscapeStringLen(inter->sql_handle, esc_name, sd->new_name, strnlen(sd->new_name, NAME_LENGTH)); // check if the char exist @@ -1539,9 +1580,20 @@ static int char_rename_char_sql(struct char_session_data *sd, int char_id) // log change if (chr->enable_logs) { if (SQL_ERROR == SQL->Query(inter->sql_handle, - "INSERT INTO `%s` (`time`, `char_msg`,`account_id`,`char_id`,`char_num`,`name`,`str`,`agi`,`vit`,`int`,`dex`,`luk`,`hair`,`hair_color`)" - "VALUES (NOW(), '%s', '%d', '%d', '%d', '%s', '0', '0', '0', '0', '0', '0', '0', '0')", - charlog_db, "change char name", sd->account_id, char_dat.char_id, char_dat.slot, esc_name)) + "INSERT INTO `%s` (" + " `time`, `char_msg`, `account_id`, `char_id`, `char_num`, `class`, `name`," + " `str`, `agi`, `vit`, `int`, `dex`, `luk`," + " `hair`, `hair_color`" + ") VALUES (" + " NOW(), 'change char name', '%d', '%d', '%d', '%d', '%s'," + " '%d', '%d', '%d', '%d', '%d', '%d'," + " '%d', '%d'" + ")", + charlog_db, + sd->account_id, char_dat.char_id, char_dat.slot, char_dat.class, esc_name, + char_dat.str, char_dat.agi, char_dat.vit, char_dat.int_, char_dat.dex, char_dat.luk, + char_dat.hair, char_dat.hair_color + )) Sql_ShowDebug(inter->sql_handle); } @@ -1967,7 +2019,7 @@ static int char_count_users(void) // Writes char data to the buffer in the format used by the client. // Used in packets 0x6b (chars info) and 0x6d (new char info) // Returns the size -#define MAX_CHAR_BUF 150 //Max size (for WFIFOHEAD calls) +#define MAX_CHAR_BUF (PACKET_LEN_0x006d - 2) static int char_mmo_char_tobuf(uint8 *buffer, struct mmo_charstatus *p) { unsigned short offset = 0; @@ -2072,18 +2124,29 @@ static int char_mmo_char_tobuf(uint8 *buffer, struct mmo_charstatus *p) #endif #endif - return 106+offset; + if (106 + offset != MAX_CHAR_BUF) + Assert_report("Wrong buffer size in char_mmo_char_tobuf"); + return 106 + offset; } /* Made Possible by Yommy~! <3 */ -static void char_mmo_char_send099d(int fd, struct char_session_data *sd) -{ -// support added for client between 20121010 and 20130320 -#if PACKETVER > 20120418 - WFIFOHEAD(fd,4 + (MAX_CHARS*MAX_CHAR_BUF)); - WFIFOW(fd,0) = 0x99d; - WFIFOW(fd,2) = chr->mmo_chars_fromsql(sd, WFIFOP(fd,4)) + 4; - WFIFOSET(fd,WFIFOW(fd,2)); +static void char_send_HC_ACK_CHARINFO_PER_PAGE(int fd, struct char_session_data *sd) +{ +#if PACKETVER_MAIN_NUM >= 20130522 || PACKETVER_RE_NUM >= 20130327 || defined(PACKETVER_ZERO) + WFIFOHEAD(fd, sizeof(struct PACKET_HC_ACK_CHARINFO_PER_PAGE) + (MAX_CHARS * MAX_CHAR_BUF)); + struct PACKET_HC_ACK_CHARINFO_PER_PAGE *p = WFIFOP(fd, 0); + int count = 0; + p->packetId = HEADER_HC_ACK_CHARINFO_PER_PAGE; + p->packetLen = chr->mmo_chars_fromsql(sd, WFIFOP(fd, 4), &count) + sizeof(struct PACKET_HC_ACK_CHARINFO_PER_PAGE); + WFIFOSET(fd, p->packetLen); + // send empty packet if chars count is 3*N, for trigger final code in client + if (count % 3 != 0) { + WFIFOHEAD(fd, sizeof(struct PACKET_HC_ACK_CHARINFO_PER_PAGE)); + p = WFIFOP(fd, 0); + p->packetId = HEADER_HC_ACK_CHARINFO_PER_PAGE; + p->packetLen = sizeof(struct PACKET_HC_ACK_CHARINFO_PER_PAGE); + WFIFOSET(fd, p->packetLen); + } #endif } @@ -2132,17 +2195,20 @@ static void char_mmo_char_send_ban_list(int fd, struct char_session_data *sd) //---------------------------------------- static void char_mmo_char_send_slots_info(int fd, struct char_session_data *sd) { +// also probably supported client 2013-02-15aRagexe but not 2013-02-15bRagexe [4144] +#if PACKETVER_MAIN_NUM >= 20130612 || PACKETVER_RE_NUM >= 20130115 || defined(PACKETVER_ZERO) nullpo_retv(sd); - WFIFOHEAD(fd,29); - WFIFOW(fd,0) = 0x82d; - WFIFOW(fd,2) = 29; - WFIFOB(fd,4) = sd->char_slots; - WFIFOB(fd,5) = MAX_CHARS - sd->char_slots; - WFIFOB(fd,6) = 0; - WFIFOB(fd,7) = sd->char_slots; - WFIFOB(fd,8) = sd->char_slots; - memset(WFIFOP(fd,9), 0, 20); // unused bytes - WFIFOSET(fd,29); + WFIFOHEAD(fd, 29); + WFIFOW(fd, 0) = 0x82d; + WFIFOW(fd, 2) = 29; + WFIFOB(fd, 4) = sd->char_slots; + WFIFOB(fd, 5) = MAX_CHARS - sd->char_slots; + WFIFOB(fd, 6) = 0; + WFIFOB(fd, 7) = sd->char_slots; + WFIFOB(fd, 8) = sd->char_slots; + memset(WFIFOP(fd, 9), 0, 20); // unused bytes + WFIFOSET(fd, 29); +#endif } //---------------------------------------- // Function to send characters to a player @@ -2166,7 +2232,7 @@ static int char_mmo_char_send_characters(int fd, struct char_session_data *sd) WFIFOB(fd,6) = MAX_CHARS; // Premium slots. AKA any existent chars past sd->char_slots but within MAX_CHARS will show a 'Premium Service' in red #endif memset(WFIFOP(fd,4 + offset), 0, 20); // unknown bytes - j+=chr->mmo_chars_fromsql(sd, WFIFOP(fd,j)); + j += chr->mmo_chars_fromsql(sd, WFIFOP(fd, j), NULL); WFIFOW(fd,2) = j; // packet len WFIFOSET(fd,j); @@ -2409,12 +2475,8 @@ static void char_parse_fromlogin_account_data(int fd) chr->auth_error(i, 0); } else { // send characters to player - #if PACKETVER >= 20130000 chr->mmo_char_send_slots_info(i, sd); chr->mmo_char_send_characters(i, sd); - #else - chr->mmo_char_send_characters(i, sd); - #endif #if PACKETVER >= 20060819 chr->mmo_char_send_ban_list(i, sd); #endif @@ -4151,10 +4213,10 @@ static void char_delete2_accept_actual_ack(int fd, int char_id, uint32 result) /// Any (0x718): An unknown error has occurred. static void char_delete2_accept_ack(int fd, int char_id, uint32 result) {// HC: <082a>.W <char id>.L <Msg:0-5>.L -#if PACKETVER >= 20130000 /* not sure the exact date -- must refresh or client gets stuck */ +#if PACKETVER_MAIN_NUM >= 20130522 || PACKETVER_RE_NUM >= 20130327 || defined(PACKETVER_ZERO) if( result == 1 ) { struct char_session_data* sd = (struct char_session_data*)sockt->session[fd]->session_data; - chr->mmo_char_send099d(fd, sd); + chr->send_HC_ACK_CHARINFO_PER_PAGE(fd, sd); } #endif chr->delete2_accept_actual_ack(fd, char_id, result); @@ -4345,9 +4407,9 @@ static void char_delete2_cancel(int fd, struct char_session_data *sd) static void char_send_account_id(int fd, int account_id) { - WFIFOHEAD(fd,4); - WFIFOL(fd,0) = account_id; - WFIFOSET(fd,4); + WFIFOHEAD(fd, 4); + WFIFOL(fd, 0) = account_id; + WFIFOSET2(fd, 4); } static void char_parse_char_connect(int fd, struct char_session_data *sd, uint32 ipl) @@ -4558,8 +4620,19 @@ static void char_parse_char_select(int fd, struct char_session_data *sd, uint32 // FIXME: Why are we re-escaping the name if it was already escaped in rename/make_new_char? [Panikon] SQL->EscapeStringLen(inter->sql_handle, esc_name, char_dat.name, strnlen(char_dat.name, NAME_LENGTH)); if (SQL_ERROR == SQL->Query(inter->sql_handle, - "INSERT INTO `%s`(`time`, `account_id`, `char_id`, `char_num`, `name`) VALUES (NOW(), '%d', '%d', '%d', '%s')", - charlog_db, sd->account_id, cd->char_id, slot, esc_name)) + "INSERT INTO `%s`(" + " `time`, `char_msg`, `account_id`, `char_id`, `char_num`, `class`, `name`," + " `str`, `agi`, `vit`, `int`, `dex`, `luk`," + " `hair`, `hair_color`" + ") VALUES (" + " NOW(), 'char select', '%d', '%d', '%d', '%d', '%s'," + " '%d', '%d', '%d', '%d', '%d', '%d'," + " '%d', '%d')", + charlog_db, + sd->account_id, cd->char_id, slot, char_dat.class, esc_name, + char_dat.str, char_dat.agi, char_dat.vit, char_dat.int_, char_dat.dex, char_dat.luk, + char_dat.hair, char_dat.hair_color + )) Sql_ShowDebug(inter->sql_handle); } ShowInfo("Selected char: (Account %d: %d - %s)\n", sd->account_id, slot, char_dat.name); @@ -4900,10 +4973,10 @@ static void char_parse_char_delete2_cancel(int fd, struct char_session_data *sd) // 3 - error static void char_login_map_server_ack(int fd, uint8 flag) { - WFIFOHEAD(fd,3); - WFIFOW(fd,0) = 0x2af9; - WFIFOB(fd,2) = flag; - WFIFOSET(fd,3); + WFIFOHEAD(fd, 3); + WFIFOW(fd, 0) = 0x2af9; + WFIFOB(fd, 2) = flag; + WFIFOSET2(fd, 3); } static void char_parse_char_login_map_server(int fd, uint32 ipl) @@ -4930,6 +5003,7 @@ static void char_parse_char_login_map_server(int fd, uint32 ipl) chr->server[i].users = 0; sockt->session[fd]->func_parse = chr->parse_frommap; sockt->session[fd]->flag.server = 1; + sockt->session[fd]->flag.validate = 0; sockt->realloc_fifo(fd, FIFOSIZE_SERVERLINK, FIFOSIZE_SERVERLINK); chr->mapif_init(fd); } @@ -4975,7 +5049,7 @@ static void char_parse_char_pincode_first_pin(int fd, struct char_session_data * static void char_parse_char_request_chars(int fd, struct char_session_data *sd) { - chr->mmo_char_send099d(fd, sd); + chr->send_HC_ACK_CHARINFO_PER_PAGE(fd, sd); RFIFOSKIP(fd,2); } @@ -4995,8 +5069,8 @@ static void char_parse_char_move_character(int fd, struct char_session_data *sd) chr->change_character_slot_ack(fd, ret); /* for some stupid reason it requires the char data again (gravity -_-) */ if( ret ) -#if PACKETVER >= 20130000 - chr->mmo_char_send099d(fd, sd); +#if PACKETVER_MAIN_NUM >= 20130522 || PACKETVER_RE_NUM >= 20130327 || defined(PACKETVER_ZERO) + chr->send_HC_ACK_CHARINFO_PER_PAGE(fd, sd); #else chr->mmo_char_send_characters(fd, sd); #endif @@ -5299,6 +5373,7 @@ static int char_check_connect_login_server(int tid, int64 tick, int id, intptr_t sockt->session[chr->login_fd]->func_parse = chr->parse_fromlogin; sockt->session[chr->login_fd]->flag.server = 1; + sockt->session[chr->login_fd]->flag.validate = 0; sockt->realloc_fifo(chr->login_fd, FIFOSIZE_SERVERLINK, FIFOSIZE_SERVERLINK); loginif->connect_to_server(); @@ -5848,6 +5923,7 @@ static bool char_config_read_player_name(const char *filename, const struct conf libconfig->setting_lookup_mutable_string(setting, "name_letters", char_name_letters, sizeof(char_name_letters)); libconfig->setting_lookup_int(setting, "name_option", &char_name_option); libconfig->setting_lookup_bool_real(setting, "name_ignoring_case", &name_ignoring_case); + libconfig->setting_lookup_bool_real(setting, "use_aegis_rename", &char_aegis_rename); return true; } @@ -6290,6 +6366,7 @@ int do_init(int argc, char **argv) Sql_ShowDebug(inter->sql_handle); sockt->set_defaultparse(chr->parse_char); + sockt->validate = true; if ((chr->char_fd = sockt->make_listen_bind(bind_ip,chr->port)) == -1) { ShowFatalError("Failed to bind to port '"CL_WHITE"%d"CL_RESET"'\n",chr->port); @@ -6390,7 +6467,7 @@ void char_defaults(void) chr->divorce_char_sql = char_divorce_char_sql; chr->count_users = char_count_users; chr->mmo_char_tobuf = char_mmo_char_tobuf; - chr->mmo_char_send099d = char_mmo_char_send099d; + chr->send_HC_ACK_CHARINFO_PER_PAGE = char_send_HC_ACK_CHARINFO_PER_PAGE; chr->mmo_char_send_ban_list = char_mmo_char_send_ban_list; chr->mmo_char_send_slots_info = char_mmo_char_send_slots_info; chr->mmo_char_send_characters = char_mmo_char_send_characters; diff --git a/src/char/char.h b/src/char/char.h index 81cab1eaf..914530537 100644 --- a/src/char/char.h +++ b/src/char/char.h @@ -142,7 +142,7 @@ struct char_interface { int (*getitemdata_from_sql) (struct item *items, int max, int guid, enum inventory_table_type table); int (*memitemdata_to_sql) (const struct item items[], int id, enum inventory_table_type table); int (*mmo_gender) (const struct char_session_data *sd, const struct mmo_charstatus *p, char sex); - int (*mmo_chars_fromsql) (struct char_session_data* sd, uint8* buf); + int (*mmo_chars_fromsql) (struct char_session_data* sd, uint8* buf, int *count); int (*mmo_char_fromsql) (int char_id, struct mmo_charstatus* p, bool load_everything); int (*mmo_char_sql_init) (void); bool (*char_slotchange) (struct char_session_data *sd, int fd, unsigned short from, unsigned short to); @@ -153,7 +153,7 @@ struct char_interface { int (*divorce_char_sql) (int partner_id1, int partner_id2); int (*count_users) (void); int (*mmo_char_tobuf) (uint8* buffer, struct mmo_charstatus* p); - void (*mmo_char_send099d) (int fd, struct char_session_data *sd); + void (*send_HC_ACK_CHARINFO_PER_PAGE) (int fd, struct char_session_data *sd); void (*mmo_char_send_ban_list) (int fd, struct char_session_data *sd); void (*mmo_char_send_slots_info) (int fd, struct char_session_data* sd); int (*mmo_char_send_characters) (int fd, struct char_session_data* sd); diff --git a/src/char/packets_hc_struct.h b/src/char/packets_hc_struct.h new file mode 100644 index 000000000..196493cac --- /dev/null +++ b/src/char/packets_hc_struct.h @@ -0,0 +1,45 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2016-2018 Hercules Dev Team + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ +#ifndef CHAR_PACKETS_HC_STRUCT_H +#define CHAR_PACKETS_HC_STRUCT_H + +#include "common/hercules.h" +#include "common/mmo.h" +#include "common/packetsstatic_len.h" + +/* Packets Structs */ +#if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute +#pragma pack(push, 1) +#endif // not NetBSD < 6 / Solaris + +#if PACKETVER_MAIN_NUM >= 20130522 || PACKETVER_RE_NUM >= 20130327 || defined(PACKETVER_ZERO) +struct PACKET_HC_ACK_CHARINFO_PER_PAGE { + int16 packetId; + int16 packetLen; + // chars list[] +} __attribute__((packed)); +DEFINE_PACKET_HEADER(HC_ACK_CHARINFO_PER_PAGE, 0x099d); +#endif + +#if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute +#pragma pack(pop) +#endif // not NetBSD < 6 / Solaris + +#endif // CHAR_PACKETS_HC_STRUCT_H diff --git a/src/common/HPM.c b/src/common/HPM.c index 014c947b6..a579a0926 100644 --- a/src/common/HPM.c +++ b/src/common/HPM.c @@ -30,6 +30,7 @@ #include "common/memmgr.h" #include "common/mapindex.h" #include "common/mmo.h" +#include "common/packets.h" #include "common/showmsg.h" #include "common/socket.h" #include "common/sql.h" @@ -186,6 +187,10 @@ static bool hplugins_addpacket(unsigned short cmd, unsigned short length, void ( packet->len = length; packet->receive = receive; + if (cmd <= MAX_PACKET_DB && cmd >= MIN_PACKET_DB) { + packets->db[cmd] = length; + } + return true; } diff --git a/src/common/HPMDataCheck.h b/src/common/HPMDataCheck.h index f5875fe11..bfd01ec30 100644 --- a/src/common/HPMDataCheck.h +++ b/src/common/HPMDataCheck.h @@ -132,6 +132,11 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { #else #define CHAR_MAPIF_H #endif // CHAR_MAPIF_H + #ifdef CHAR_PACKETS_HC_STRUCT_H + { "PACKET_HC_ACK_CHARINFO_PER_PAGE", sizeof(struct PACKET_HC_ACK_CHARINFO_PER_PAGE), SERVER_TYPE_CHAR }, + #else + #define CHAR_PACKETS_HC_STRUCT_H + #endif // CHAR_PACKETS_HC_STRUCT_H #ifdef CHAR_PINCODE_H { "pincode_interface", sizeof(struct pincode_interface), SERVER_TYPE_CHAR }, #else @@ -256,6 +261,11 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { #else #define COMMON_NULLPO_H #endif // COMMON_NULLPO_H + #ifdef COMMON_PACKETS_H + { "packets_interface", sizeof(struct packets_interface), SERVER_TYPE_ALL }, + #else + #define COMMON_PACKETS_H + #endif // COMMON_PACKETS_H #ifdef COMMON_RANDOM_H { "rnd_interface", sizeof(struct rnd_interface), SERVER_TYPE_ALL }, #else @@ -341,21 +351,6 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { #ifdef LOGIN_LCLIF_P_H { "lclif_interface_dbs", sizeof(struct lclif_interface_dbs), SERVER_TYPE_LOGIN }, { "lclif_interface_private", sizeof(struct lclif_interface_private), SERVER_TYPE_LOGIN }, - { "packet_AC_ACCEPT_LOGIN", sizeof(struct packet_AC_ACCEPT_LOGIN), SERVER_TYPE_LOGIN }, - { "packet_AC_REFUSE_LOGIN", sizeof(struct packet_AC_REFUSE_LOGIN), SERVER_TYPE_LOGIN }, - { "packet_AC_REFUSE_LOGIN_R2", sizeof(struct packet_AC_REFUSE_LOGIN_R2), SERVER_TYPE_LOGIN }, - { "packet_CA_CHARSERVERCONNECT", sizeof(struct packet_CA_CHARSERVERCONNECT), SERVER_TYPE_LOGIN }, - { "packet_CA_CONNECT_INFO_CHANGED", sizeof(struct packet_CA_CONNECT_INFO_CHANGED), SERVER_TYPE_LOGIN }, - { "packet_CA_EXE_HASHCHECK", sizeof(struct packet_CA_EXE_HASHCHECK), SERVER_TYPE_LOGIN }, - { "packet_CA_LOGIN", sizeof(struct packet_CA_LOGIN), SERVER_TYPE_LOGIN }, - { "packet_CA_LOGIN2", sizeof(struct packet_CA_LOGIN2), SERVER_TYPE_LOGIN }, - { "packet_CA_LOGIN3", sizeof(struct packet_CA_LOGIN3), SERVER_TYPE_LOGIN }, - { "packet_CA_LOGIN4", sizeof(struct packet_CA_LOGIN4), SERVER_TYPE_LOGIN }, - { "packet_CA_LOGIN_HAN", sizeof(struct packet_CA_LOGIN_HAN), SERVER_TYPE_LOGIN }, - { "packet_CA_LOGIN_OTP", sizeof(struct packet_CA_LOGIN_OTP), SERVER_TYPE_LOGIN }, - { "packet_CA_LOGIN_PCBANG", sizeof(struct packet_CA_LOGIN_PCBANG), SERVER_TYPE_LOGIN }, - { "packet_CA_SSO_LOGIN_REQ", sizeof(struct packet_CA_SSO_LOGIN_REQ), SERVER_TYPE_LOGIN }, - { "packet_SC_NOTIFY_BAN", sizeof(struct packet_SC_NOTIFY_BAN), SERVER_TYPE_LOGIN }, #else #define LOGIN_LCLIF_P_H #endif // LOGIN_LCLIF_P_H @@ -378,6 +373,29 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { #else #define LOGIN_LOGIN_H #endif // LOGIN_LOGIN_H + #ifdef LOGIN_PACKETS_AC_STRUCT_H + { "PACKET_AC_ACCEPT_LOGIN", sizeof(struct PACKET_AC_ACCEPT_LOGIN), SERVER_TYPE_LOGIN }, + { "PACKET_AC_REFUSE_LOGIN", sizeof(struct PACKET_AC_REFUSE_LOGIN), SERVER_TYPE_LOGIN }, + { "PACKET_AC_REFUSE_LOGIN_R2", sizeof(struct PACKET_AC_REFUSE_LOGIN_R2), SERVER_TYPE_LOGIN }, + { "PACKET_SC_NOTIFY_BAN", sizeof(struct PACKET_SC_NOTIFY_BAN), SERVER_TYPE_LOGIN }, + #else + #define LOGIN_PACKETS_AC_STRUCT_H + #endif // LOGIN_PACKETS_AC_STRUCT_H + #ifdef LOGIN_PACKETS_CA_STRUCT_H + { "PACKET_CA_CHARSERVERCONNECT", sizeof(struct PACKET_CA_CHARSERVERCONNECT), SERVER_TYPE_LOGIN }, + { "PACKET_CA_CONNECT_INFO_CHANGED", sizeof(struct PACKET_CA_CONNECT_INFO_CHANGED), SERVER_TYPE_LOGIN }, + { "PACKET_CA_EXE_HASHCHECK", sizeof(struct PACKET_CA_EXE_HASHCHECK), SERVER_TYPE_LOGIN }, + { "PACKET_CA_LOGIN", sizeof(struct PACKET_CA_LOGIN), SERVER_TYPE_LOGIN }, + { "PACKET_CA_LOGIN2", sizeof(struct PACKET_CA_LOGIN2), SERVER_TYPE_LOGIN }, + { "PACKET_CA_LOGIN3", sizeof(struct PACKET_CA_LOGIN3), SERVER_TYPE_LOGIN }, + { "PACKET_CA_LOGIN4", sizeof(struct PACKET_CA_LOGIN4), SERVER_TYPE_LOGIN }, + { "PACKET_CA_LOGIN_HAN", sizeof(struct PACKET_CA_LOGIN_HAN), SERVER_TYPE_LOGIN }, + { "PACKET_CA_LOGIN_OTP", sizeof(struct PACKET_CA_LOGIN_OTP), SERVER_TYPE_LOGIN }, + { "PACKET_CA_LOGIN_PCBANG", sizeof(struct PACKET_CA_LOGIN_PCBANG), SERVER_TYPE_LOGIN }, + { "PACKET_CA_SSO_LOGIN_REQ", sizeof(struct PACKET_CA_SSO_LOGIN_REQ), SERVER_TYPE_LOGIN }, + #else + #define LOGIN_PACKETS_CA_STRUCT_H + #endif // LOGIN_PACKETS_CA_STRUCT_H #ifdef MAP_ACHIEVEMENT_H { "achievement_data", sizeof(struct achievement_data), SERVER_TYPE_MAP }, { "achievement_interface", sizeof(struct achievement_interface), SERVER_TYPE_MAP }, @@ -609,6 +627,7 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { { "PACKET_CZ_CHECKNAME", sizeof(struct PACKET_CZ_CHECKNAME), SERVER_TYPE_MAP }, { "PACKET_CZ_MEMORIALDUNGEON_COMMAND", sizeof(struct PACKET_CZ_MEMORIALDUNGEON_COMMAND), SERVER_TYPE_MAP }, { "PACKET_CZ_OPEN_UI", sizeof(struct PACKET_CZ_OPEN_UI), SERVER_TYPE_MAP }, + { "PACKET_CZ_PARTY_CONFIG", sizeof(struct PACKET_CZ_PARTY_CONFIG), SERVER_TYPE_MAP }, { "PACKET_CZ_PC_BUY_CASH_POINT_ITEM", sizeof(struct PACKET_CZ_PC_BUY_CASH_POINT_ITEM), SERVER_TYPE_MAP }, { "PACKET_CZ_PC_BUY_CASH_POINT_ITEM_sub", sizeof(struct PACKET_CZ_PC_BUY_CASH_POINT_ITEM_sub), SERVER_TYPE_MAP }, { "PACKET_CZ_PC_PURCHASE_ITEMLIST", sizeof(struct PACKET_CZ_PC_PURCHASE_ITEMLIST), SERVER_TYPE_MAP }, @@ -626,6 +645,7 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { { "PACKET_CZ_REQ_OPEN_WRITE_MAIL", sizeof(struct PACKET_CZ_REQ_OPEN_WRITE_MAIL), SERVER_TYPE_MAP }, { "PACKET_CZ_REQ_READ_MAIL", sizeof(struct PACKET_CZ_REQ_READ_MAIL), SERVER_TYPE_MAP }, { "PACKET_CZ_REQ_REFRESH_MAIL_LIST", sizeof(struct PACKET_CZ_REQ_REFRESH_MAIL_LIST), SERVER_TYPE_MAP }, + { "PACKET_CZ_REQ_REMAINTIME", sizeof(struct PACKET_CZ_REQ_REMAINTIME), SERVER_TYPE_MAP }, { "PACKET_CZ_REQ_REMOVE_ITEM_MAIL", sizeof(struct PACKET_CZ_REQ_REMOVE_ITEM_MAIL), SERVER_TYPE_MAP }, { "PACKET_CZ_REQ_STYLE_CHANGE", sizeof(struct PACKET_CZ_REQ_STYLE_CHANGE), SERVER_TYPE_MAP }, { "PACKET_CZ_REQ_STYLE_CHANGE2", sizeof(struct PACKET_CZ_REQ_STYLE_CHANGE2), SERVER_TYPE_MAP }, @@ -660,6 +680,7 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { { "PACKET_ZC_ADD_ITEM_TO_MAIL", sizeof(struct PACKET_ZC_ADD_ITEM_TO_MAIL), SERVER_TYPE_MAP }, { "PACKET_ZC_ADD_ITEM_TO_STORE", sizeof(struct PACKET_ZC_ADD_ITEM_TO_STORE), SERVER_TYPE_MAP }, { "PACKET_ZC_ADD_MEMBER_TO_GROUP", sizeof(struct PACKET_ZC_ADD_MEMBER_TO_GROUP), SERVER_TYPE_MAP }, + { "PACKET_ZC_AUTOSPELLLIST", sizeof(struct PACKET_ZC_AUTOSPELLLIST), SERVER_TYPE_MAP }, { "PACKET_ZC_CASH_ITEM_DELETE", sizeof(struct PACKET_ZC_CASH_ITEM_DELETE), SERVER_TYPE_MAP }, { "PACKET_ZC_CASH_TIME_COUNTER", sizeof(struct PACKET_ZC_CASH_TIME_COUNTER), SERVER_TYPE_MAP }, { "PACKET_ZC_CHECKNAME", sizeof(struct PACKET_ZC_CHECKNAME), SERVER_TYPE_MAP }, @@ -694,6 +715,8 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { { "PACKET_ZC_NOTIFY_UNREADMAIL", sizeof(struct PACKET_ZC_NOTIFY_UNREADMAIL), SERVER_TYPE_MAP }, { "PACKET_ZC_NOTIFY_WEAPONITEMLIST", sizeof(struct PACKET_ZC_NOTIFY_WEAPONITEMLIST), SERVER_TYPE_MAP }, { "PACKET_ZC_NOTIFY_WEAPONITEMLIST_sub", sizeof(struct PACKET_ZC_NOTIFY_WEAPONITEMLIST_sub), SERVER_TYPE_MAP }, + { "PACKET_ZC_NPC_MARKET_OPEN", sizeof(struct PACKET_ZC_NPC_MARKET_OPEN), SERVER_TYPE_MAP }, + { "PACKET_ZC_NPC_MARKET_OPEN_sub", sizeof(struct PACKET_ZC_NPC_MARKET_OPEN_sub), SERVER_TYPE_MAP }, { "PACKET_ZC_OPEN_UI", sizeof(struct PACKET_ZC_OPEN_UI), SERVER_TYPE_MAP }, { "PACKET_ZC_OVERWEIGHT_PERCENT", sizeof(struct PACKET_ZC_OVERWEIGHT_PERCENT), SERVER_TYPE_MAP }, { "PACKET_ZC_PC_CASH_POINT_ITEMLIST", sizeof(struct PACKET_ZC_PC_CASH_POINT_ITEMLIST), SERVER_TYPE_MAP }, @@ -707,6 +730,7 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { { "PACKET_ZC_PRIVATE_AIRSHIP_RESPONSE", sizeof(struct PACKET_ZC_PRIVATE_AIRSHIP_RESPONSE), SERVER_TYPE_MAP }, { "PACKET_ZC_PROPERTY_HOMUN", sizeof(struct PACKET_ZC_PROPERTY_HOMUN), SERVER_TYPE_MAP }, { "PACKET_ZC_READ_MAIL", sizeof(struct PACKET_ZC_READ_MAIL), SERVER_TYPE_MAP }, + { "PACKET_ZC_REMOVE_EFFECT", sizeof(struct PACKET_ZC_REMOVE_EFFECT), SERVER_TYPE_MAP }, { "PACKET_ZC_REPAIRITEMLIST", sizeof(struct PACKET_ZC_REPAIRITEMLIST), SERVER_TYPE_MAP }, { "PACKET_ZC_REPAIRITEMLIST_sub", sizeof(struct PACKET_ZC_REPAIRITEMLIST_sub), SERVER_TYPE_MAP }, { "PACKET_ZC_SEARCH_STORE_INFO_ACK", sizeof(struct PACKET_ZC_SEARCH_STORE_INFO_ACK), SERVER_TYPE_MAP }, @@ -766,7 +790,6 @@ HPExport const struct s_HPMDataCheck HPMDataCheck[] = { { "packet_mission_info_sub", sizeof(struct packet_mission_info_sub), SERVER_TYPE_MAP }, { "packet_monster_hp", sizeof(struct packet_monster_hp), SERVER_TYPE_MAP }, { "packet_notify_bounditem", sizeof(struct packet_notify_bounditem), SERVER_TYPE_MAP }, - { "packet_npc_market_open", sizeof(struct packet_npc_market_open), SERVER_TYPE_MAP }, { "packet_npc_market_purchase", sizeof(struct packet_npc_market_purchase), SERVER_TYPE_MAP }, { "packet_npc_market_result_ack", sizeof(struct packet_npc_market_result_ack), SERVER_TYPE_MAP }, { "packet_package_item_announce", sizeof(struct packet_package_item_announce), SERVER_TYPE_MAP }, diff --git a/src/common/HPMSymbols.inc.h b/src/common/HPMSymbols.inc.h index 15acb1b06..146379508 100644 --- a/src/common/HPMSymbols.inc.h +++ b/src/common/HPMSymbols.inc.h @@ -218,6 +218,9 @@ struct npc_interface *npc; #ifdef COMMON_NULLPO_H /* nullpo */ struct nullpo_interface *nullpo; #endif // COMMON_NULLPO_H +#ifdef COMMON_PACKETS_H /* packets */ +struct packets_interface *packets; +#endif // COMMON_PACKETS_H #ifdef MAP_PARTY_H /* party */ struct party_interface *party; #endif // MAP_PARTY_H @@ -559,6 +562,10 @@ HPExport const char *HPM_shared_symbols(int server_type) if ((server_type&(SERVER_TYPE_ALL)) != 0 && !HPM_SYMBOL("nullpo", nullpo)) return "nullpo"; #endif // COMMON_NULLPO_H +#ifdef COMMON_PACKETS_H /* packets */ + if ((server_type&(SERVER_TYPE_ALL)) != 0 && !HPM_SYMBOL("packets", packets)) + return "packets"; +#endif // COMMON_PACKETS_H #ifdef MAP_PARTY_H /* party */ if ((server_type&(SERVER_TYPE_MAP)) != 0 && !HPM_SYMBOL("party", party)) return "party"; diff --git a/src/common/Makefile.in b/src/common/Makefile.in index f65138521..708780595 100644 --- a/src/common/Makefile.in +++ b/src/common/Makefile.in @@ -38,20 +38,18 @@ MT19937AR_OBJ = $(MT19937AR_D)/mt19937ar.o MT19937AR_H = $(MT19937AR_D)/mt19937ar.h COMMON_SHARED_C = conf.c db.c des.c ers.c grfio.c HPM.c mapindex.c md5calc.c \ - mutex.c nullpo.c random.c showmsg.c strlib.c sysinfo.c \ - thread.c timer.c utils.c + mutex.c nullpo.c packets.c random.c showmsg.c strlib.c \ + sysinfo.c thread.c timer.c utils.c COMMON_C = $(COMMON_SHARED_C) COMMON_SHARED_OBJ = $(patsubst %.c,%.o,$(COMMON_SHARED_C)) COMMON_OBJ = $(addprefix obj_all/, $(COMMON_SHARED_OBJ) \ console.o core.o memmgr.o socket.o) -COMMON_MINI_OBJ = $(addprefix obj_all/, $(COMMON_SHARED_OBJ) \ - miniconsole.o minicore.o minimemmgr.o minisocket.o) COMMON_C += console.c core.c memmgr.c socket.c COMMON_H = atomic.h cbasetypes.h conf.h console.h core.h db.h des.h ers.h \ grfio.h hercules.h HPM.h HPMi.h memmgr.h mapindex.h md5calc.h \ - mmo.h mutex.h nullpo.h random.h showmsg.h socket.h spinlock.h \ - sql.h strlib.h sysinfo.h thread.h timer.h utils.h winapi.h \ - ../plugins/HPMHooking.h + mmo.h mutex.h nullpo.h packets.h packets_len.h random.h showmsg.h \ + socket.h spinlock.h sql.h strlib.h sysinfo.h thread.h timer.h \ + utils.h winapi.h ../plugins/HPMHooking.h COMMON_PH = COMMON_SQL_OBJ = obj_sql/sql.o @@ -61,7 +59,7 @@ SYSINFO_INC = sysinfo.inc HAVE_MYSQL=@HAVE_MYSQL@ ifeq ($(HAVE_MYSQL),yes) - SQL_DEPENDS=common common_sql common_mini + SQL_DEPENDS=common common_sql else SQL_DEPENDS=needs_mysql endif @@ -72,7 +70,7 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all sql common common_sql common_mini clean buildclean help +.PHONY: all sql common common_sql clean buildclean help all: sql @@ -119,18 +117,12 @@ obj_all/common.a: $(COMMON_OBJ) Makefile @echo " AR $@" @@AR@ rcs obj_all/common.a $(COMMON_OBJ) -obj_all/common_mini.a: $(COMMON_MINI_OBJ) Makefile - @echo " AR $@" - @@AR@ rcs obj_all/common_mini.a $(COMMON_MINI_OBJ) - obj_sql/common_sql.a: $(COMMON_SQL_OBJ) Makefile @echo " AR $@" @@AR@ rcs obj_sql/common_sql.a $(COMMON_SQL_OBJ) common: $(COMMON_OBJ) $(MT19937AR_OBJ) $(LIBCONFIG_OBJ) obj_all/common.a Makefile -common_mini: $(COMMON_MINI_OBJ) $(MT19937AR_OBJ) $(LIBCONFIG_OBJ) obj_all/common_mini.a Makefile - common_sql: $(COMMON_SQL_OBJ) obj_sql/common_sql.a Makefile # missing object files @@ -150,10 +142,6 @@ obj_all/%.o: %.c $(COMMON_H) $(CONFIG_H) $(MT19937AR_H) $(LIBCONFIG_H) | $(SYSIN @echo " CC $<" @$(CC) @CFLAGS@ @DEFS@ $(COMMON_INCLUDE) $(THIRDPARTY_INCLUDE) @CPPFLAGS@ -c $(OUTPUT_OPTION) $< -obj_all/mini%.o: %.c $$(filter %.p.h, $(COMMON_PH)) $(COMMON_H) $(CONFIG_H) $(MT19937AR_H) $(LIBCONFIG_H) | $(SYSINFO_INC) obj_all - @echo " CC $<" - @$(CC) @CFLAGS@ @DEFS@ $(COMMON_INCLUDE) $(THIRDPARTY_INCLUDE) -DMINICORE @CPPFLAGS@ -c $(OUTPUT_OPTION) $< - obj_sql/%.o: %.c $$(filter %.p.h, $(COMMON_PH)) $(COMMON_H) $(COMMON_SQL_H) $(CONFIG_H) $(LIBCONFIG_H) | $(SYSINFO_INC) obj_sql @echo " CC $<" @$(CC) @CFLAGS@ @DEFS@ $(COMMON_INCLUDE) $(THIRDPARTY_INCLUDE) @MYSQL_CFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $< diff --git a/src/common/console.c b/src/common/console.c index 5923775b7..a990d86b3 100644 --- a/src/common/console.c +++ b/src/common/console.c @@ -23,24 +23,21 @@ #include "config/core.h" // CONSOLE_INPUT, MAX_CONSOLE_INPUT #include "console.h" +#include "common/atomic.h" #include "common/cbasetypes.h" #include "common/core.h" +#include "common/ers.h" +#include "common/memmgr.h" #include "common/mmo.h" +#include "common/mutex.h" #include "common/nullpo.h" #include "common/showmsg.h" +#include "common/spinlock.h" +#include "common/sql.h" +#include "common/strlib.h" #include "common/sysinfo.h" - -#ifndef MINICORE -# include "common/atomic.h" -# include "common/ers.h" -# include "common/memmgr.h" -# include "common/mutex.h" -# include "common/spinlock.h" -# include "common/sql.h" -# include "common/strlib.h" -# include "common/thread.h" -# include "common/timer.h" -#endif +#include "common/thread.h" +#include "common/timer.h" #include <stdio.h> #include <stdlib.h> diff --git a/src/common/core.c b/src/common/core.c index 9fd33c4e0..dbd1d2596 100644 --- a/src/common/core.c +++ b/src/common/core.c @@ -23,32 +23,30 @@ #include "config/core.h" #include "core.h" +#include "common/HPM.h" #include "common/cbasetypes.h" +#include "common/conf.h" #include "common/console.h" #include "common/db.h" #include "common/des.h" +#include "common/ers.h" #include "common/grfio.h" +#include "common/md5calc.h" #include "common/memmgr.h" #include "common/mmo.h" +#include "common/mutex.h" #include "common/nullpo.h" +#include "common/packets.h" +#include "common/random.h" #include "common/showmsg.h" +#include "common/socket.h" +#include "common/sql.h" #include "common/strlib.h" #include "common/sysinfo.h" +#include "common/thread.h" #include "common/timer.h" #include "common/utils.h" -#ifndef MINICORE -# include "common/HPM.h" -# include "common/conf.h" -# include "common/ers.h" -# include "common/md5calc.h" -# include "common/mutex.h" -# include "common/random.h" -# include "common/socket.h" -# include "common/sql.h" -# include "common/thread.h" -#endif - #ifndef _WIN32 # include <unistd.h> #else @@ -83,7 +81,6 @@ static struct core_interface core_s; struct core_interface *core = &core_s; -#ifndef MINICORE // minimalist Core // Added by Gabuzomeu // // This is an implementation of signal() using sigaction() for portability. @@ -196,7 +193,6 @@ static void signals_init(void) compat_signal(SIGTRAP, SIG_DFL); #endif } -#endif /** * Warns the user if executed as superuser (root) @@ -250,10 +246,8 @@ static bool usercheck(void) static void core_defaults(void) { nullpo_defaults(); -#ifndef MINICORE hpm_defaults(); HCache_defaults(); -#endif sysinfo_defaults(); console_defaults(); strlib_defaults(); @@ -262,17 +256,16 @@ static void core_defaults(void) cmdline_defaults(); des_defaults(); grfio_defaults(); // Note: grfio is lazily loaded. grfio->init() and grfio->final() are not automatically called. -#ifndef MINICORE mutex_defaults(); libconfig_defaults(); sql_defaults(); timer_defaults(); db_defaults(); socket_defaults(); + packets_defaults(); rnd_defaults(); md5_defaults(); thread_defaults(); -#endif } /** @@ -280,12 +273,8 @@ static void core_defaults(void) */ static const char *cmdline_arg_source(struct CmdlineArgData *arg) { -#ifdef MINICORE - return "core"; -#else // !MINICORE nullpo_retr(NULL, arg); return HPM->pid2name(arg->pluginID); -#endif // MINICORE } /** @@ -446,15 +435,9 @@ static int cmdline_exec(int argc, char **argv, unsigned int options) */ static void cmdline_init(void) { -#ifdef MINICORE - // Minicore has no HPM. This value isn't used, but the arg_add function requires it, so we're (re)defining it here -#define HPM_PID_CORE ((unsigned int)-1) -#endif CMDLINEARG_DEF(help, 'h', "Displays this help screen", CMDLINE_OPT_NORMAL); CMDLINEARG_DEF(version, 'v', "Displays the server's version.", CMDLINE_OPT_NORMAL); -#ifndef MINICORE CMDLINEARG_DEF2(load-plugin, loadplugin, "Loads an additional plugin (can be repeated).", CMDLINE_OPT_PARAM|CMDLINE_OPT_PREINIT); -#endif // !MINICORE cmdline_args_init_local(); } @@ -521,10 +504,6 @@ int main(int argc, char **argv) if (!usercheck()) return EXIT_FAILURE; -#ifdef MINICORE // minimalist Core - do_init(argc,argv); - do_final(); -#else// not MINICORE set_server_type(); Sql_Init(); @@ -549,6 +528,8 @@ int main(int argc, char **argv) sockt->init(); + packets->init(); + do_init(argc,argv); // Main runtime cycle @@ -562,12 +543,12 @@ int main(int argc, char **argv) retval = do_final(); HPM->final(); timer->final(); + packets->final(); sockt->final(); DB->final(); thread->final(); ers_final(); rnd->final(); -#endif cmdline->final(); //sysinfo->final(); Called by iMalloc->final() diff --git a/src/common/memmgr.h b/src/common/memmgr.h index 90c35f244..c7147cc5e 100644 --- a/src/common/memmgr.h +++ b/src/common/memmgr.h @@ -42,11 +42,6 @@ // Enable memory manager logging by default #define LOG_MEMMGR -// no logging for minicore -#if defined(MINICORE) && defined(LOG_MEMMGR) - #undef LOG_MEMMGR -#endif - # define aMalloc(n) (iMalloc->malloc((n),ALC_MARK)) # define aCalloc(m,n) (iMalloc->calloc((m),(n),ALC_MARK)) # define aRealloc(p,n) (iMalloc->realloc((p),(n),ALC_MARK)) diff --git a/src/common/mmo.h b/src/common/mmo.h index d6946cecc..4b8f49fa2 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -165,7 +165,22 @@ #endif #define MAX_CARTS (MAX_BASE_CARTS + MAX_CARTDECORATION_CARTS) +#ifndef MAX_INVENTORY +#if PACKETVER_ZERO_NUM >= 20181212 +#define MAX_INVENTORY 200 +#else #define MAX_INVENTORY 100 +#endif // PACKETVER_ZERO_NUM >= 20181212 +#endif // MAX_INVENTORY + +#ifndef FIXED_INVENTORY_SIZE +#define FIXED_INVENTORY_SIZE 100 +#endif + +#if FIXED_INVENTORY_SIZE > MAX_INVENTORY +#error FIXED_INVENTORY_SIZE must be same or smaller than MAX_INVENTORY +#endif + //Max number of characters per account. Note that changing this setting alone is not enough if the client is not hexed to support more characters as well. #if PACKETVER >= 20100413 #ifndef MAX_CHARS @@ -710,6 +725,7 @@ struct mmo_charstatus { int64 last_login; struct point last_point,save_point,memo_point[MAX_MEMOPOINTS]; + int inventorySize; struct item inventory[MAX_INVENTORY],cart[MAX_CART]; struct s_skill skill[MAX_SKILL_DB]; @@ -1331,7 +1347,8 @@ enum questinfo_type { QINFO_ITEM, QINFO_HOMUN_LEVEL, QINFO_HOMUN_TYPE, - QINFO_QUEST + QINFO_QUEST, + QINFO_MERCENARY_CLASS }; /* packet size constant for itemlist */ diff --git a/src/common/packets.c b/src/common/packets.c new file mode 100644 index 000000000..429418e0a --- /dev/null +++ b/src/common/packets.c @@ -0,0 +1,64 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2012-2018 Hercules Dev Team + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ +#define HERCULES_CORE + +#include "config/core.h" // CONSOLE_INPUT, MAX_CONSOLE_INPUT +#include "common/packets.h" + +#include "common/cbasetypes.h" +#include "common/mmo.h" +#include "common/nullpo.h" + +#include <string.h> + +static struct packets_interface packets_s; +struct packets_interface *packets; + +static void packets_init(void) +{ + packets->addLens(); +} + +static void packets_addLens(void) +{ +#define packetLen(id, len) packets->addLen(id, len); +#include "common/packets_len.h" +} + +static void packets_addLen(int id, int len) +{ + Assert_retv(id <= MAX_PACKET_DB && id >= MIN_PACKET_DB); + packets->db[id] = len; +} + +static void packets_final(void) +{ +} + +void packets_defaults(void) +{ + packets = &packets_s; + packets->init = packets_init; + packets->final = packets_final; + packets->addLens = packets_addLens; + packets->addLen = packets_addLen; + + memset(&packets->db, 0, sizeof(packets->db)); +} diff --git a/src/common/packets.h b/src/common/packets.h new file mode 100644 index 000000000..83c92c7fa --- /dev/null +++ b/src/common/packets.h @@ -0,0 +1,47 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2013-2018 Hercules Dev Team + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ +#ifndef COMMON_PACKETS_H +#define COMMON_PACKETS_H + +#include "common/hercules.h" + +#ifndef MIN_PACKET_DB +#define MIN_PACKET_DB 0x0064 +#endif + +#ifndef MAX_PACKET_DB +#define MAX_PACKET_DB 0x0F00 +#endif + +struct packets_interface { + void (*init) (void); + void (*final) (void); + void (*addLens) (void); + void (*addLen) (int id, int len); + int db[MAX_PACKET_DB + 1]; +}; + +#ifdef HERCULES_CORE +void packets_defaults(void); +#endif // HERCULES_CORE + +HPShared struct packets_interface *packets; + +#endif /* COMMON_PACKETS_H */ diff --git a/src/common/packets/packets2003_len_main.h b/src/common/packets/packets2003_len_main.h new file mode 100644 index 000000000..b7cc202ab --- /dev/null +++ b/src/common/packets/packets2003_len_main.h @@ -0,0 +1,1258 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2003_LEN_MAIN_H +#define COMMON_PACKETS2003_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 19) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 6) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 5) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 7) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, -1) // CZ_REQUEST_CHAT + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 6) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 5) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 6) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 6) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 8) // CZ_USE_ITEM + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 2) // CZ_CLOSE_STORE + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +#if PACKETVER >= 20031117 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#elif PACKETVER >= 20031110 +packetLen(0x00f9, 28) // CZ_MAKE_GROUP +#elif PACKETVER >= 20031028 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#endif + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +#if PACKETVER >= 20031117 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20031110 +packetLen(0x0104, 81) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20031028 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 10) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 6) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, 4) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, 8) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +#if PACKETVER >= 20031110 +packetLen(0x01e6, 26) // ZC_COUPLENAME +#elif PACKETVER >= 20031028 +packetLen(0x01e6, 28) // ZC_COUPLENAME +#endif + +// Packet: 0x01e7 +#if PACKETVER >= 20031110 +packetLen(0x01e7, 2) // CZ_DORIDORI +#elif PACKETVER >= 20031028 +packetLen(0x01e7, 81) // CZ_DORIDORI +#endif + +// Packet: 0x01e8 +#if PACKETVER >= 20031117 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20031110 +// removed +#elif PACKETVER >= 20031028 +packetLen(0x01e8, 26) // CZ_MAKE_GROUP2 +#endif + +// Packet: 0x01e9 +#if PACKETVER >= 20031117 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20031110 +// removed +#elif PACKETVER >= 20031103 +packetLen(0x01e9, 2) // ZC_ADD_MEMBER_TO_GROUP2 +#endif + +// Packet: 0x01ea +#if PACKETVER >= 20031117 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#endif + +// Packet: 0x01eb +#if PACKETVER >= 20031124 +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM +#endif + +// Packet: 0x01ec +#if PACKETVER >= 20031124 +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE +#endif + +// Packet: 0x01ed +#if PACKETVER >= 20031124 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#endif + +// Packet: 0x01ee +#if PACKETVER >= 20031208 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01ef +#if PACKETVER >= 20031218 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f0 +#if PACKETVER >= 20031218 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f1 +#if PACKETVER >= 20031223 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR +#endif + + +#endif /* COMMON_PACKETS2003_LEN_MAIN_H */ diff --git a/src/common/packets/packets2003_len_sak.h b/src/common/packets/packets2003_len_sak.h new file mode 100644 index 000000000..90139e98c --- /dev/null +++ b/src/common/packets/packets2003_len_sak.h @@ -0,0 +1,1258 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2003_LEN_SAK_H +#define COMMON_PACKETS2003_LEN_SAK_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 19) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 6) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 5) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 7) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, -1) // CZ_REQUEST_CHAT + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 6) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 5) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 6) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 6) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 8) // CZ_USE_ITEM + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 2) // CZ_CLOSE_STORE + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +#if PACKETVER >= 20031117 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#elif PACKETVER >= 20031110 +packetLen(0x00f9, 28) // CZ_MAKE_GROUP +#elif PACKETVER >= 20031029 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#endif + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +#if PACKETVER >= 20031117 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20031110 +packetLen(0x0104, 81) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20031029 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 10) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 6) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, 4) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, 8) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +#if PACKETVER >= 20031110 +packetLen(0x01e6, 26) // ZC_COUPLENAME +#elif PACKETVER >= 20031029 +packetLen(0x01e6, 28) // ZC_COUPLENAME +#endif + +// Packet: 0x01e7 +#if PACKETVER >= 20031110 +packetLen(0x01e7, 2) // CZ_DORIDORI +#elif PACKETVER >= 20031029 +packetLen(0x01e7, 81) // CZ_DORIDORI +#endif + +// Packet: 0x01e8 +#if PACKETVER >= 20031117 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20031110 +// removed +#elif PACKETVER >= 20031029 +packetLen(0x01e8, 26) // CZ_MAKE_GROUP2 +#endif + +// Packet: 0x01e9 +#if PACKETVER >= 20031117 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20031110 +// removed +#elif PACKETVER >= 20031103 +packetLen(0x01e9, 2) // ZC_ADD_MEMBER_TO_GROUP2 +#endif + +// Packet: 0x01ea +#if PACKETVER >= 20031117 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#endif + +// Packet: 0x01eb +#if PACKETVER >= 20031124 +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM +#endif + +// Packet: 0x01ec +#if PACKETVER >= 20031124 +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE +#endif + +// Packet: 0x01ed +#if PACKETVER >= 20031124 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#endif + +// Packet: 0x01ee +#if PACKETVER >= 20031208 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01ef +#if PACKETVER >= 20031218 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f0 +#if PACKETVER >= 20031218 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f1 +#if PACKETVER >= 20031223 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR +#endif + + +#endif /* COMMON_PACKETS2003_LEN_SAK_H */ diff --git a/src/common/packets/packets2004_len_ad.h b/src/common/packets/packets2004_len_ad.h new file mode 100644 index 000000000..40a5e83de --- /dev/null +++ b/src/common/packets/packets2004_len_ad.h @@ -0,0 +1,1620 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2004_LEN_AD_H +#define COMMON_PACKETS2004_LEN_AD_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20041129 +packetLen(0x0072, 26) // CZ_ENTER +#elif PACKETVER >= 20041025 +packetLen(0x0072, 14) // CZ_ENTER +#elif PACKETVER >= 20041005 +packetLen(0x0072, 15) // CZ_ENTER +#elif PACKETVER >= 20040920 +packetLen(0x0072, 13) // CZ_ENTER +#elif PACKETVER >= 20040906 +packetLen(0x0072, 17) // CZ_ENTER +#elif PACKETVER >= 20040809 +packetLen(0x0072, 10) // CZ_ENTER +#elif PACKETVER >= 20040804 +packetLen(0x0072, 14) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20041129 +packetLen(0x007e, 34) // CZ_REQUEST_TIME +#elif PACKETVER >= 20041005 +packetLen(0x007e, 14) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040920 +packetLen(0x007e, 13) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040906 +packetLen(0x007e, 15) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040809 +packetLen(0x007e, 26) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040804 +packetLen(0x007e, 33) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20041129 +packetLen(0x0085, -1) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20041025 +packetLen(0x0085, 19) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20041005 +packetLen(0x0085, 18) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040920 +packetLen(0x0085, 15) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040906 +packetLen(0x0085, 17) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040809 +packetLen(0x0085, 25) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040804 +packetLen(0x0085, 20) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20041129 +packetLen(0x0089, 9) // CZ_REQUEST_ACT +#elif PACKETVER >= 20041025 +packetLen(0x0089, 8) // CZ_REQUEST_ACT +#elif PACKETVER >= 20041005 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040920 +packetLen(0x0089, 6) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040906 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040809 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040804 +packetLen(0x0089, 15) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20041129 +packetLen(0x008c, 8) +#elif PACKETVER >= 20041025 +packetLen(0x008c, 102) +#elif PACKETVER >= 20041005 +packetLen(0x008c, 110) +#elif PACKETVER >= 20040920 +packetLen(0x008c, 108) +#elif PACKETVER >= 20040906 +packetLen(0x008c, 110) +#elif PACKETVER >= 20040809 +packetLen(0x008c, 22) +#elif PACKETVER >= 20040804 +packetLen(0x008c, 23) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20041129 +packetLen(0x0094, 20) // CZ_REQNAME +#elif PACKETVER >= 20041025 +packetLen(0x0094, 10) // CZ_REQNAME +#elif PACKETVER >= 20040920 +packetLen(0x0094, 12) // CZ_REQNAME +#elif PACKETVER >= 20040906 +packetLen(0x0094, 10) // CZ_REQNAME +#elif PACKETVER >= 20040809 +packetLen(0x0094, 8) // CZ_REQNAME +#elif PACKETVER >= 20040804 +packetLen(0x0094, 10) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20041129 +packetLen(0x009b, 2) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20041025 +packetLen(0x009b, 11) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20041005 +packetLen(0x009b, 13) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040920 +packetLen(0x009b, 10) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040906 +packetLen(0x009b, 16) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040809 +packetLen(0x009b, 8) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040804 +packetLen(0x009b, 6) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20041129 +packetLen(0x009f, 20) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040906 +packetLen(0x009f, -1) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040809 +packetLen(0x009f, 11) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040804 +packetLen(0x009f, 13) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20041129 +packetLen(0x00a2, 9) // CZ_ITEM_THROW +#elif PACKETVER >= 20041025 +packetLen(0x00a2, 15) // CZ_ITEM_THROW +#elif PACKETVER >= 20041005 +packetLen(0x00a2, 14) // CZ_ITEM_THROW +#elif PACKETVER >= 20040920 +packetLen(0x00a2, 16) // CZ_ITEM_THROW +#elif PACKETVER >= 20040906 +packetLen(0x00a2, 7) // CZ_ITEM_THROW +#elif PACKETVER >= 20040809 +packetLen(0x00a2, 102) // CZ_ITEM_THROW +#elif PACKETVER >= 20040804 +packetLen(0x00a2, 103) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20041129 +packetLen(0x00a7, 13) +#elif PACKETVER >= 20041025 +packetLen(0x00a7, 22) +#elif PACKETVER >= 20041005 +packetLen(0x00a7, 30) +#elif PACKETVER >= 20040920 +packetLen(0x00a7, 28) +#elif PACKETVER >= 20040906 +packetLen(0x00a7, 30) +#elif PACKETVER >= 20040809 +packetLen(0x00a7, 15) +#elif PACKETVER >= 20040804 +packetLen(0x00a7, 12) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +#if PACKETVER >= 20041129 +packetLen(0x00f3, 23) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20041025 +packetLen(0x00f3, 11) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20041005 +packetLen(0x00f3, 8) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040920 +packetLen(0x00f3, 15) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040906 +packetLen(0x00f3, 12) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040804 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT +#endif + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20041129 +packetLen(0x00f5, 32) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20041025 +packetLen(0x00f5, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040920 +packetLen(0x00f5, 29) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040906 +packetLen(0x00f5, 43) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040809 +packetLen(0x00f5, 14) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040804 +packetLen(0x00f5, 17) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20041129 +packetLen(0x00f7, 11) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040906 +packetLen(0x00f7, 2) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040809 +packetLen(0x00f7, 8) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040804 +packetLen(0x00f7, 10) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20041129 +packetLen(0x0113, 114) // CZ_USE_SKILL +#elif PACKETVER >= 20041025 +packetLen(0x0113, 8) // CZ_USE_SKILL +#elif PACKETVER >= 20041005 +packetLen(0x0113, 7) // CZ_USE_SKILL +#elif PACKETVER >= 20040920 +packetLen(0x0113, 9) // CZ_USE_SKILL +#elif PACKETVER >= 20040906 +packetLen(0x0113, 10) // CZ_USE_SKILL +#elif PACKETVER >= 20040809 +packetLen(0x0113, 14) // CZ_USE_SKILL +#elif PACKETVER >= 20040804 +packetLen(0x0113, 16) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20041129 +packetLen(0x0116, 20) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20041025 +packetLen(0x0116, 8) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20041005 +packetLen(0x0116, 7) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040920 +packetLen(0x0116, 9) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040906 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040804 +packetLen(0x0116, 2) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20041129 +packetLen(0x0190, 17) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20041025 +packetLen(0x0190, 25) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20041005 +packetLen(0x0190, 22) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040920 +packetLen(0x0190, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040906 +packetLen(0x0190, 24) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040809 +packetLen(0x0190, 22) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040804 +packetLen(0x0190, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +#if PACKETVER >= 20041129 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20041025 +packetLen(0x0193, 22) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20041005 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040920 +packetLen(0x0193, 22) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040906 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040809 +packetLen(0x0193, 19) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040804 +packetLen(0x0193, 9) // CZ_REQNAME_BYGID +#endif + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +#if PACKETVER >= 20041213 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20040804 +packetLen(0x019c, 4) // CZ_LOCALBROADCAST +#endif + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +#if PACKETVER >= 20041213 +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN +#endif + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +#if PACKETVER >= 20041213 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20040804 +packetLen(0x01d5, 8) // CZ_INPUT_EDITDLGSTR +#endif + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 24) // ZC_STARSKILL + +// Packet: 0x020f +#if PACKETVER >= 20040817 +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT +#endif + +// Packet: 0x0210 +#if PACKETVER >= 20040817 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT +#endif + +// Packet: 0x0212 +#if PACKETVER >= 20040816 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME +#endif + +// Packet: 0x0213 +#if PACKETVER >= 20040816 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM +#endif + +// Packet: 0x0214 +#if PACKETVER >= 20040816 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM +#endif + +// Packet: 0x0215 +#if PACKETVER >= 20041101 +packetLen(0x0215, 6) // ZC_SKILLMSG +#endif + +// Packet: 0x0216 +#if PACKETVER >= 20041108 +packetLen(0x0216, 6) // ZC_BABYMSG +#endif + +// Packet: 0x0217 +#if PACKETVER >= 20041108 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#endif + +// Packet: 0x0218 +#if PACKETVER >= 20041108 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#endif + +// Packet: 0x0219 +#if PACKETVER >= 20041108 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +#endif + +// Packet: 0x021a +#if PACKETVER >= 20041108 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +#endif + +// Packet: 0x021b +#if PACKETVER >= 20041108 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#endif + +// Packet: 0x021c +#if PACKETVER >= 20041108 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#endif + +// Packet: 0x021d +#if PACKETVER >= 20041115 +packetLen(0x021d, 6) // CZ_LESSEFFECT +#endif + +// Packet: 0x021e +#if PACKETVER >= 20041213 +packetLen(0x021e, 6) // ZC_LESSEFFECT +#endif + +// Packet: 0x021f +#if PACKETVER >= 20041213 +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO +#endif + +// Packet: 0x0220 +#if PACKETVER >= 20041213 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER +#endif + +// Packet: 0x0221 +#if PACKETVER >= 20041129 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST +#endif + +// Packet: 0x0222 +#if PACKETVER >= 20041129 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE +#endif + +// Packet: 0x0223 +#if PACKETVER >= 20041129 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE +#endif + + +#endif /* COMMON_PACKETS2004_LEN_AD_H */ diff --git a/src/common/packets/packets2004_len_main.h b/src/common/packets/packets2004_len_main.h new file mode 100644 index 000000000..27ae05058 --- /dev/null +++ b/src/common/packets/packets2004_len_main.h @@ -0,0 +1,1810 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2004_LEN_MAIN_H +#define COMMON_PACKETS2004_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20041220 +packetLen(0x0072, 26) // CZ_ENTER +#elif PACKETVER >= 20041216 +packetLen(0x0072, 19) // CZ_ENTER +#elif PACKETVER >= 20041129 +packetLen(0x0072, 26) // CZ_ENTER +#elif PACKETVER >= 20041025 +packetLen(0x0072, 14) // CZ_ENTER +#elif PACKETVER >= 20041005 +packetLen(0x0072, 15) // CZ_ENTER +#elif PACKETVER >= 20040920 +packetLen(0x0072, 13) // CZ_ENTER +#elif PACKETVER >= 20040906 +packetLen(0x0072, 17) // CZ_ENTER +#elif PACKETVER >= 20040809 +packetLen(0x0072, 10) // CZ_ENTER +#elif PACKETVER >= 20040726 +packetLen(0x0072, 14) // CZ_ENTER +#elif PACKETVER >= 20040712 +packetLen(0x0072, 39) // CZ_ENTER +#elif PACKETVER >= 20040705 +packetLen(0x0072, 22) // CZ_ENTER +#elif PACKETVER >= 20040107 +packetLen(0x0072, 19) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20041220 +packetLen(0x007e, 34) // CZ_REQUEST_TIME +#elif PACKETVER >= 20041216 +packetLen(0x007e, 6) // CZ_REQUEST_TIME +#elif PACKETVER >= 20041129 +packetLen(0x007e, 34) // CZ_REQUEST_TIME +#elif PACKETVER >= 20041005 +packetLen(0x007e, 14) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040920 +packetLen(0x007e, 13) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040906 +packetLen(0x007e, 15) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040809 +packetLen(0x007e, 26) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040726 +packetLen(0x007e, 33) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040107 +packetLen(0x007e, 6) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20041220 +packetLen(0x0085, -1) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20041216 +packetLen(0x0085, 5) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20041129 +packetLen(0x0085, -1) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20041025 +packetLen(0x0085, 19) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20041005 +packetLen(0x0085, 18) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040920 +packetLen(0x0085, 15) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040906 +packetLen(0x0085, 17) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040809 +packetLen(0x0085, 25) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040726 +packetLen(0x0085, 20) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040712 +packetLen(0x0085, 9) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040705 +packetLen(0x0085, 8) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040107 +packetLen(0x0085, 5) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20041220 +packetLen(0x0089, 9) // CZ_REQUEST_ACT +#elif PACKETVER >= 20041216 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#elif PACKETVER >= 20041129 +packetLen(0x0089, 9) // CZ_REQUEST_ACT +#elif PACKETVER >= 20041025 +packetLen(0x0089, 8) // CZ_REQUEST_ACT +#elif PACKETVER >= 20041005 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040920 +packetLen(0x0089, 6) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040906 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040809 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040726 +packetLen(0x0089, 15) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040107 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20041220 +packetLen(0x008c, 8) +#elif PACKETVER >= 20041216 +packetLen(0x008c, -1) +#elif PACKETVER >= 20041129 +packetLen(0x008c, 8) +#elif PACKETVER >= 20041025 +packetLen(0x008c, 102) +#elif PACKETVER >= 20041005 +packetLen(0x008c, 110) +#elif PACKETVER >= 20040920 +packetLen(0x008c, 108) +#elif PACKETVER >= 20040906 +packetLen(0x008c, 110) +#elif PACKETVER >= 20040809 +packetLen(0x008c, 22) +#elif PACKETVER >= 20040726 +packetLen(0x008c, 23) +#elif PACKETVER >= 20040107 +packetLen(0x008c, -1) // CZ_REQUEST_CHAT +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20041220 +packetLen(0x0094, 20) // CZ_REQNAME +#elif PACKETVER >= 20041216 +packetLen(0x0094, 6) // CZ_REQNAME +#elif PACKETVER >= 20041129 +packetLen(0x0094, 20) // CZ_REQNAME +#elif PACKETVER >= 20041025 +packetLen(0x0094, 10) // CZ_REQNAME +#elif PACKETVER >= 20040920 +packetLen(0x0094, 12) // CZ_REQNAME +#elif PACKETVER >= 20040906 +packetLen(0x0094, 10) // CZ_REQNAME +#elif PACKETVER >= 20040809 +packetLen(0x0094, 8) // CZ_REQNAME +#elif PACKETVER >= 20040726 +packetLen(0x0094, 10) // CZ_REQNAME +#elif PACKETVER >= 20040107 +packetLen(0x0094, 6) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20041220 +packetLen(0x009b, 2) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20041216 +packetLen(0x009b, 5) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20041129 +packetLen(0x009b, 2) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20041025 +packetLen(0x009b, 11) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20041005 +packetLen(0x009b, 13) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040920 +packetLen(0x009b, 10) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040906 +packetLen(0x009b, 16) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040809 +packetLen(0x009b, 8) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040726 +packetLen(0x009b, 6) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040712 +packetLen(0x009b, 13) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040107 +packetLen(0x009b, 5) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20041220 +packetLen(0x009f, 20) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20041216 +packetLen(0x009f, 6) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20041129 +packetLen(0x009f, 20) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040906 +packetLen(0x009f, -1) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040809 +packetLen(0x009f, 11) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040726 +packetLen(0x009f, 13) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040712 +packetLen(0x009f, 10) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040107 +packetLen(0x009f, 6) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20041220 +packetLen(0x00a2, 9) // CZ_ITEM_THROW +#elif PACKETVER >= 20041216 +packetLen(0x00a2, 6) // CZ_ITEM_THROW +#elif PACKETVER >= 20041129 +packetLen(0x00a2, 9) // CZ_ITEM_THROW +#elif PACKETVER >= 20041025 +packetLen(0x00a2, 15) // CZ_ITEM_THROW +#elif PACKETVER >= 20041005 +packetLen(0x00a2, 14) // CZ_ITEM_THROW +#elif PACKETVER >= 20040920 +packetLen(0x00a2, 16) // CZ_ITEM_THROW +#elif PACKETVER >= 20040906 +packetLen(0x00a2, 7) // CZ_ITEM_THROW +#elif PACKETVER >= 20040809 +packetLen(0x00a2, 102) // CZ_ITEM_THROW +#elif PACKETVER >= 20040726 +packetLen(0x00a2, 103) // CZ_ITEM_THROW +#elif PACKETVER >= 20040107 +packetLen(0x00a2, 6) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20041220 +packetLen(0x00a7, 13) +#elif PACKETVER >= 20041216 +packetLen(0x00a7, 8) +#elif PACKETVER >= 20041129 +packetLen(0x00a7, 13) +#elif PACKETVER >= 20041025 +packetLen(0x00a7, 22) +#elif PACKETVER >= 20041005 +packetLen(0x00a7, 30) +#elif PACKETVER >= 20040920 +packetLen(0x00a7, 28) +#elif PACKETVER >= 20040906 +packetLen(0x00a7, 30) +#elif PACKETVER >= 20040809 +packetLen(0x00a7, 15) +#elif PACKETVER >= 20040726 +packetLen(0x00a7, 12) +#elif PACKETVER >= 20040712 +packetLen(0x00a7, 17) +#elif PACKETVER >= 20040705 +packetLen(0x00a7, 13) +#elif PACKETVER >= 20040107 +packetLen(0x00a7, 8) // CZ_USE_ITEM +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +#if PACKETVER >= 20041220 +packetLen(0x00f3, 23) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20041216 +packetLen(0x00f3, 8) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20041129 +packetLen(0x00f3, 23) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20041025 +packetLen(0x00f3, 11) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20041005 +packetLen(0x00f3, 8) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040920 +packetLen(0x00f3, 15) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040906 +packetLen(0x00f3, 12) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040726 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040107 +packetLen(0x00f3, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE +#endif + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20041220 +packetLen(0x00f5, 32) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20041216 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20041129 +packetLen(0x00f5, 32) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20041025 +packetLen(0x00f5, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040920 +packetLen(0x00f5, 29) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040906 +packetLen(0x00f5, 43) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040809 +packetLen(0x00f5, 14) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040726 +packetLen(0x00f5, 17) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040107 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20041220 +packetLen(0x00f7, 11) // CZ_REQUEST_TIME +#elif PACKETVER >= 20041216 +packetLen(0x00f7, 2) // CZ_REQUEST_TIME +#elif PACKETVER >= 20041129 +packetLen(0x00f7, 11) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040906 +packetLen(0x00f7, 2) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040809 +packetLen(0x00f7, 8) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040726 +packetLen(0x00f7, 10) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040107 +packetLen(0x00f7, 2) // CZ_CLOSE_STORE +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20041220 +packetLen(0x0113, 114) // CZ_USE_SKILL +#elif PACKETVER >= 20041216 +packetLen(0x0113, 10) // CZ_USE_SKILL +#elif PACKETVER >= 20041129 +packetLen(0x0113, 114) // CZ_USE_SKILL +#elif PACKETVER >= 20041025 +packetLen(0x0113, 8) // CZ_USE_SKILL +#elif PACKETVER >= 20041005 +packetLen(0x0113, 7) // CZ_USE_SKILL +#elif PACKETVER >= 20040920 +packetLen(0x0113, 9) // CZ_USE_SKILL +#elif PACKETVER >= 20040906 +packetLen(0x0113, 10) // CZ_USE_SKILL +#elif PACKETVER >= 20040809 +packetLen(0x0113, 14) // CZ_USE_SKILL +#elif PACKETVER >= 20040726 +packetLen(0x0113, 16) // CZ_USE_SKILL +#elif PACKETVER >= 20040712 +packetLen(0x0113, 19) // CZ_USE_SKILL +#elif PACKETVER >= 20040705 +packetLen(0x0113, 15) // CZ_USE_SKILL +#elif PACKETVER >= 20040107 +packetLen(0x0113, 10) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20041220 +packetLen(0x0116, 20) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20041216 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20041129 +packetLen(0x0116, 20) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20041025 +packetLen(0x0116, 8) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20041005 +packetLen(0x0116, 7) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040920 +packetLen(0x0116, 9) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040906 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040726 +packetLen(0x0116, 2) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040712 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040705 +packetLen(0x0116, 15) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040107 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20041220 +packetLen(0x0190, 17) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20041216 +packetLen(0x0190, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20041129 +packetLen(0x0190, 17) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20041025 +packetLen(0x0190, 25) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20041005 +packetLen(0x0190, 22) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040920 +packetLen(0x0190, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040906 +packetLen(0x0190, 24) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040809 +packetLen(0x0190, 22) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040726 +packetLen(0x0190, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040712 +packetLen(0x0190, 99) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040705 +packetLen(0x0190, 95) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040107 +packetLen(0x0190, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +#if PACKETVER >= 20041220 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20041216 +packetLen(0x0193, 6) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20041129 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20041025 +packetLen(0x0193, 22) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20041005 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040920 +packetLen(0x0193, 22) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040906 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040809 +packetLen(0x0193, 19) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040726 +packetLen(0x0193, 9) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040107 +packetLen(0x0193, 6) // CZ_REQNAME_BYGID +#endif + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +#if PACKETVER >= 20041213 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20040107 +packetLen(0x019c, 4) // CZ_LOCALBROADCAST +#endif + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +#if PACKETVER >= 20041213 +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN +#endif + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +#if PACKETVER >= 20041213 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20040107 +packetLen(0x01d5, 8) // CZ_INPUT_EDITDLGSTR +#endif + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +#if PACKETVER >= 20040216 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 +#endif + +// Packet: 0x01f4 +#if PACKETVER >= 20040302 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f5 +#if PACKETVER >= 20040302 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f6 +#if PACKETVER >= 20040308 +packetLen(0x01f6, 34) // ZC_REQ_BABY +#endif + +// Packet: 0x01f7 +#if PACKETVER >= 20040308 +packetLen(0x01f7, 14) // CZ_JOIN_BABY +#endif + +// Packet: 0x01f8 +#if PACKETVER >= 20040308 +packetLen(0x01f8, 2) // ZC_START_BABY +#endif + +// Packet: 0x01f9 +#if PACKETVER >= 20040308 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY +#endif + +// Packet: 0x01fa +#if PACKETVER >= 20040322 +packetLen(0x01fa, 48) // CA_LOGIN3 +#endif + +// Packet: 0x01fb +#if PACKETVER >= 20040419 +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 +#endif + +// Packet: 0x01fc +#if PACKETVER >= 20040420 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#endif + +// Packet: 0x01fd +#if PACKETVER >= 20040423 +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +#if PACKETVER >= 20040426 +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR +#endif + +// Packet: 0x01ff +#if PACKETVER >= 20040422 +packetLen(0x01ff, 10) // ZC_HIGHJUMP +#endif + +// Packet: 0x0200 +#if PACKETVER >= 20040517 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED +#endif + +// Packet: 0x0201 +#if PACKETVER >= 20040705 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#endif + +// Packet: 0x0202 +#if PACKETVER >= 20040705 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +#if PACKETVER >= 20040705 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#endif + +// Packet: 0x0204 +#if PACKETVER >= 20040531 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK +#endif + +// Packet: 0x0205 +#if PACKETVER >= 20040628 +packetLen(0x0205, 26) // ZC_DIVORCE +#endif + +// Packet: 0x0206 +#if PACKETVER >= 20040705 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#endif + +// Packet: 0x0207 +#if PACKETVER >= 20040705 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0208 +#if PACKETVER >= 20040705 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0209 +#if PACKETVER >= 20040705 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST +#endif + +// Packet: 0x020a +#if PACKETVER >= 20040705 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +#endif + +// Packet: 0x020d +#if PACKETVER >= 20040621 +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER +#endif + +// Packet: 0x020e +#if PACKETVER >= 20040705 +packetLen(0x020e, 24) // ZC_STARSKILL +#endif + +// Packet: 0x020f +#if PACKETVER >= 20041220 +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT +#elif PACKETVER >= 20041216 +// removed +#elif PACKETVER >= 20040817 +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT +#endif + +// Packet: 0x0210 +#if PACKETVER >= 20041220 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT +#elif PACKETVER >= 20041216 +// removed +#elif PACKETVER >= 20040817 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT +#endif + +// Packet: 0x0212 +#if PACKETVER >= 20040816 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME +#endif + +// Packet: 0x0213 +#if PACKETVER >= 20040816 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM +#endif + +// Packet: 0x0214 +#if PACKETVER >= 20040816 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM +#endif + +// Packet: 0x0215 +#if PACKETVER >= 20041101 +packetLen(0x0215, 6) // ZC_SKILLMSG +#endif + +// Packet: 0x0216 +#if PACKETVER >= 20041108 +packetLen(0x0216, 6) // ZC_BABYMSG +#endif + +// Packet: 0x0217 +#if PACKETVER >= 20041108 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#endif + +// Packet: 0x0218 +#if PACKETVER >= 20041108 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#endif + +// Packet: 0x0219 +#if PACKETVER >= 20041108 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +#endif + +// Packet: 0x021a +#if PACKETVER >= 20041108 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +#endif + +// Packet: 0x021b +#if PACKETVER >= 20041108 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#endif + +// Packet: 0x021c +#if PACKETVER >= 20041108 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#endif + +// Packet: 0x021d +#if PACKETVER >= 20041115 +packetLen(0x021d, 6) // CZ_LESSEFFECT +#endif + +// Packet: 0x021e +#if PACKETVER >= 20041213 +packetLen(0x021e, 6) // ZC_LESSEFFECT +#endif + +// Packet: 0x021f +#if PACKETVER >= 20041213 +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO +#endif + +// Packet: 0x0220 +#if PACKETVER >= 20041213 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER +#endif + +// Packet: 0x0221 +#if PACKETVER >= 20041129 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST +#endif + +// Packet: 0x0222 +#if PACKETVER >= 20041129 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE +#endif + +// Packet: 0x0223 +#if PACKETVER >= 20041129 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE +#endif + + +#endif /* COMMON_PACKETS2004_LEN_MAIN_H */ diff --git a/src/common/packets/packets2004_len_sak.h b/src/common/packets/packets2004_len_sak.h new file mode 100644 index 000000000..cbf87487e --- /dev/null +++ b/src/common/packets/packets2004_len_sak.h @@ -0,0 +1,1734 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2004_LEN_SAK_H +#define COMMON_PACKETS2004_LEN_SAK_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20041129 +packetLen(0x0072, 22) // CZ_ENTER +#elif PACKETVER >= 20041025 +packetLen(0x0072, 13) // CZ_ENTER +#elif PACKETVER >= 20041005 +packetLen(0x0072, 17) // CZ_ENTER +#elif PACKETVER >= 20040920 +packetLen(0x0072, 18) // CZ_ENTER +#elif PACKETVER >= 20040906 +packetLen(0x0072, 20) // CZ_ENTER +#elif PACKETVER >= 20040809 +packetLen(0x0072, 17) // CZ_ENTER +#elif PACKETVER >= 20040726 +packetLen(0x0072, 14) // CZ_ENTER +#elif PACKETVER >= 20040713 +packetLen(0x0072, 39) // CZ_ENTER +#elif PACKETVER >= 20040705 +packetLen(0x0072, 22) // CZ_ENTER +#elif PACKETVER >= 20040107 +packetLen(0x0072, 19) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20041129 +packetLen(0x007e, 30) // CZ_REQUEST_TIME +#elif PACKETVER >= 20041025 +packetLen(0x007e, 13) // CZ_REQUEST_TIME +#elif PACKETVER >= 20041005 +packetLen(0x007e, 16) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040920 +packetLen(0x007e, 25) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040906 +packetLen(0x007e, 19) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040809 +packetLen(0x007e, 37) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040726 +packetLen(0x007e, 33) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040107 +packetLen(0x007e, 6) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20041129 +packetLen(0x0085, -1) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20041025 +packetLen(0x0085, 15) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040920 +packetLen(0x0085, 9) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040906 +packetLen(0x0085, 23) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040809 +packetLen(0x0085, 26) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040726 +packetLen(0x0085, 20) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040713 +packetLen(0x0085, 9) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040705 +packetLen(0x0085, 8) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20040107 +packetLen(0x0085, 5) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20041129 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#elif PACKETVER >= 20041005 +packetLen(0x0089, 6) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040920 +packetLen(0x0089, 14) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040906 +packetLen(0x0089, 9) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040809 +packetLen(0x0089, 12) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040726 +packetLen(0x0089, 15) // CZ_REQUEST_ACT +#elif PACKETVER >= 20040107 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20041129 +packetLen(0x008c, 13) +#elif PACKETVER >= 20041025 +packetLen(0x008c, 108) +#elif PACKETVER >= 20041005 +packetLen(0x008c, 103) +#elif PACKETVER >= 20040920 +packetLen(0x008c, 109) +#elif PACKETVER >= 20040906 +packetLen(0x008c, 105) +#elif PACKETVER >= 20040809 +packetLen(0x008c, 40) +#elif PACKETVER >= 20040726 +packetLen(0x008c, 23) +#elif PACKETVER >= 20040107 +packetLen(0x008c, -1) // CZ_REQUEST_CHAT +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20041129 +packetLen(0x0094, 14) // CZ_REQNAME +#elif PACKETVER >= 20041025 +packetLen(0x0094, 12) // CZ_REQNAME +#elif PACKETVER >= 20041005 +packetLen(0x0094, 14) // CZ_REQNAME +#elif PACKETVER >= 20040920 +packetLen(0x0094, 19) // CZ_REQNAME +#elif PACKETVER >= 20040906 +packetLen(0x0094, 17) // CZ_REQNAME +#elif PACKETVER >= 20040809 +packetLen(0x0094, 13) // CZ_REQNAME +#elif PACKETVER >= 20040726 +packetLen(0x0094, 10) // CZ_REQNAME +#elif PACKETVER >= 20040107 +packetLen(0x0094, 6) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20041129 +packetLen(0x009b, 2) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20041025 +packetLen(0x009b, 10) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20041005 +packetLen(0x009b, 15) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040920 +packetLen(0x009b, 10) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040906 +packetLen(0x009b, 14) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040809 +packetLen(0x009b, 15) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040726 +packetLen(0x009b, 6) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040713 +packetLen(0x009b, 13) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20040107 +packetLen(0x009b, 5) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20041129 +packetLen(0x009f, 18) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040906 +packetLen(0x009f, -1) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040809 +packetLen(0x009f, 12) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040726 +packetLen(0x009f, 13) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040713 +packetLen(0x009f, 10) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20040107 +packetLen(0x009f, 6) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20041129 +packetLen(0x00a2, 7) // CZ_ITEM_THROW +#elif PACKETVER >= 20041025 +packetLen(0x00a2, 16) // CZ_ITEM_THROW +#elif PACKETVER >= 20041005 +packetLen(0x00a2, 12) // CZ_ITEM_THROW +#elif PACKETVER >= 20040920 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20040906 +packetLen(0x00a2, 14) // CZ_ITEM_THROW +#elif PACKETVER >= 20040809 +packetLen(0x00a2, 120) // CZ_ITEM_THROW +#elif PACKETVER >= 20040726 +packetLen(0x00a2, 103) // CZ_ITEM_THROW +#elif PACKETVER >= 20040107 +packetLen(0x00a2, 6) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20041129 +packetLen(0x00a7, 7) +#elif PACKETVER >= 20041025 +packetLen(0x00a7, 28) +#elif PACKETVER >= 20041005 +packetLen(0x00a7, 23) +#elif PACKETVER >= 20040920 +packetLen(0x00a7, 29) +#elif PACKETVER >= 20040906 +packetLen(0x00a7, 25) +#elif PACKETVER >= 20040809 +packetLen(0x00a7, 11) +#elif PACKETVER >= 20040726 +packetLen(0x00a7, 12) +#elif PACKETVER >= 20040713 +packetLen(0x00a7, 17) +#elif PACKETVER >= 20040705 +packetLen(0x00a7, 13) +#elif PACKETVER >= 20040107 +packetLen(0x00a7, 8) // CZ_USE_ITEM +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +#if PACKETVER >= 20041129 +packetLen(0x00f3, 8) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20041025 +packetLen(0x00f3, 15) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20041005 +packetLen(0x00f3, 13) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040920 +packetLen(0x00f3, 18) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040906 +packetLen(0x00f3, 10) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040726 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20040107 +packetLen(0x00f3, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE +#endif + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20041025 +packetLen(0x00f5, 29) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20041005 +packetLen(0x00f5, 33) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040920 +packetLen(0x00f5, 32) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040906 +packetLen(0x00f5, 34) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040809 +packetLen(0x00f5, 24) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040726 +packetLen(0x00f5, 17) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20040107 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20041129 +packetLen(0x00f7, 14) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040906 +packetLen(0x00f7, 2) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040809 +packetLen(0x00f7, 13) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040726 +packetLen(0x00f7, 10) // CZ_REQUEST_TIME +#elif PACKETVER >= 20040107 +packetLen(0x00f7, 2) // CZ_CLOSE_STORE +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20041129 +packetLen(0x0113, 110) // CZ_USE_SKILL +#elif PACKETVER >= 20041025 +packetLen(0x0113, 9) // CZ_USE_SKILL +#elif PACKETVER >= 20041005 +packetLen(0x0113, 10) // CZ_USE_SKILL +#elif PACKETVER >= 20040920 +packetLen(0x0113, 14) // CZ_USE_SKILL +#elif PACKETVER >= 20040906 +packetLen(0x0113, 11) // CZ_USE_SKILL +#elif PACKETVER >= 20040809 +packetLen(0x0113, 23) // CZ_USE_SKILL +#elif PACKETVER >= 20040726 +packetLen(0x0113, 16) // CZ_USE_SKILL +#elif PACKETVER >= 20040713 +packetLen(0x0113, 19) // CZ_USE_SKILL +#elif PACKETVER >= 20040705 +packetLen(0x0113, 15) // CZ_USE_SKILL +#elif PACKETVER >= 20040107 +packetLen(0x0113, 10) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20041129 +packetLen(0x0116, 12) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20041025 +packetLen(0x0116, 9) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20041005 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040920 +packetLen(0x0116, 14) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040906 +packetLen(0x0116, 11) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040726 +packetLen(0x0116, 2) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040713 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040705 +packetLen(0x0116, 15) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20040107 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20041129 +packetLen(0x0190, 15) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20041025 +packetLen(0x0190, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20041005 +packetLen(0x0190, 20) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040920 +packetLen(0x0190, 14) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040906 +packetLen(0x0190, 22) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040726 +packetLen(0x0190, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040713 +packetLen(0x0190, 99) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040705 +packetLen(0x0190, 95) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20040107 +packetLen(0x0190, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +#if PACKETVER >= 20041129 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20041025 +packetLen(0x0193, 22) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20041005 +packetLen(0x0193, 26) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040920 +packetLen(0x0193, 12) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040906 +packetLen(0x0193, 17) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040809 +packetLen(0x0193, 18) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040726 +packetLen(0x0193, 9) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20040107 +packetLen(0x0193, 6) // CZ_REQNAME_BYGID +#endif + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +#if PACKETVER >= 20041213 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20040107 +packetLen(0x019c, 4) // CZ_LOCALBROADCAST +#endif + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +#if PACKETVER >= 20041213 +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN +#endif + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +#if PACKETVER >= 20041213 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20040107 +packetLen(0x01d5, 8) // CZ_INPUT_EDITDLGSTR +#endif + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +#if PACKETVER >= 20040216 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 +#endif + +// Packet: 0x01f4 +#if PACKETVER >= 20040302 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f5 +#if PACKETVER >= 20040302 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f6 +#if PACKETVER >= 20040308 +packetLen(0x01f6, 34) // ZC_REQ_BABY +#endif + +// Packet: 0x01f7 +#if PACKETVER >= 20040308 +packetLen(0x01f7, 14) // CZ_JOIN_BABY +#endif + +// Packet: 0x01f8 +#if PACKETVER >= 20040308 +packetLen(0x01f8, 2) // ZC_START_BABY +#endif + +// Packet: 0x01f9 +#if PACKETVER >= 20040308 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY +#endif + +// Packet: 0x01fa +#if PACKETVER >= 20040322 +packetLen(0x01fa, 48) // CA_LOGIN3 +#endif + +// Packet: 0x01fb +#if PACKETVER >= 20040419 +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 +#endif + +// Packet: 0x01fc +#if PACKETVER >= 20040420 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#endif + +// Packet: 0x01fd +#if PACKETVER >= 20040423 +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +#if PACKETVER >= 20040426 +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR +#endif + +// Packet: 0x01ff +#if PACKETVER >= 20040422 +packetLen(0x01ff, 10) // ZC_HIGHJUMP +#endif + +// Packet: 0x0200 +#if PACKETVER >= 20040517 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED +#endif + +// Packet: 0x0201 +#if PACKETVER >= 20040628 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#endif + +// Packet: 0x0202 +#if PACKETVER >= 20040628 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +#if PACKETVER >= 20040628 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#endif + +// Packet: 0x0204 +#if PACKETVER >= 20040531 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK +#endif + +// Packet: 0x0205 +#if PACKETVER >= 20040628 +packetLen(0x0205, 26) // ZC_DIVORCE +#endif + +// Packet: 0x0206 +#if PACKETVER >= 20040628 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#endif + +// Packet: 0x0207 +#if PACKETVER >= 20040628 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0208 +#if PACKETVER >= 20040705 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20040628 +packetLen(0x0208, 11) // CZ_ACK_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0209 +#if PACKETVER >= 20040628 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST +#endif + +// Packet: 0x020a +#if PACKETVER >= 20040628 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +#endif + +// Packet: 0x020d +#if PACKETVER >= 20040621 +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER +#endif + +// Packet: 0x020e +#if PACKETVER >= 20040705 +packetLen(0x020e, 24) // ZC_STARSKILL +#endif + +// Packet: 0x020f +#if PACKETVER >= 20040817 +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT +#endif + +// Packet: 0x0210 +#if PACKETVER >= 20040817 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT +#endif + +// Packet: 0x0212 +#if PACKETVER >= 20040816 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME +#endif + +// Packet: 0x0213 +#if PACKETVER >= 20040816 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM +#endif + +// Packet: 0x0214 +#if PACKETVER >= 20040816 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM +#endif + +// Packet: 0x0215 +#if PACKETVER >= 20041101 +packetLen(0x0215, 6) // ZC_SKILLMSG +#endif + +// Packet: 0x0216 +#if PACKETVER >= 20041108 +packetLen(0x0216, 6) // ZC_BABYMSG +#endif + +// Packet: 0x0217 +#if PACKETVER >= 20041108 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#endif + +// Packet: 0x0218 +#if PACKETVER >= 20041108 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#endif + +// Packet: 0x0219 +#if PACKETVER >= 20041108 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +#endif + +// Packet: 0x021a +#if PACKETVER >= 20041108 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +#endif + +// Packet: 0x021b +#if PACKETVER >= 20041108 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#endif + +// Packet: 0x021c +#if PACKETVER >= 20041108 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#endif + +// Packet: 0x021d +#if PACKETVER >= 20041115 +packetLen(0x021d, 6) // CZ_LESSEFFECT +#endif + +// Packet: 0x021e +#if PACKETVER >= 20041213 +packetLen(0x021e, 6) // ZC_LESSEFFECT +#endif + +// Packet: 0x021f +#if PACKETVER >= 20041213 +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO +#endif + +// Packet: 0x0220 +#if PACKETVER >= 20041213 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER +#endif + +// Packet: 0x0221 +#if PACKETVER >= 20041129 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST +#endif + +// Packet: 0x0222 +#if PACKETVER >= 20041129 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE +#endif + +// Packet: 0x0223 +#if PACKETVER >= 20041129 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE +#endif + + +#endif /* COMMON_PACKETS2004_LEN_SAK_H */ diff --git a/src/common/packets/packets2005_len_ad.h b/src/common/packets/packets2005_len_ad.h new file mode 100644 index 000000000..e741928ec --- /dev/null +++ b/src/common/packets/packets2005_len_ad.h @@ -0,0 +1,1927 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2005_LEN_AD_H +#define COMMON_PACKETS2005_LEN_AD_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20051010 +packetLen(0x0072, 20) // CZ_ENTER +#elif PACKETVER >= 20050719 +packetLen(0x0072, 30) // CZ_ENTER +#elif PACKETVER >= 20050718 +packetLen(0x0072, 20) // CZ_ENTER +#elif PACKETVER >= 20050628 +packetLen(0x0072, 30) // CZ_ENTER +#elif PACKETVER >= 20050509 +packetLen(0x0072, 22) // CZ_ENTER +#elif PACKETVER >= 20050411 +packetLen(0x0072, 14) // CZ_ENTER +#elif PACKETVER >= 20050104 +packetLen(0x0072, 26) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20051010 +packetLen(0x007e, 103) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050719 +packetLen(0x007e, 120) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050718 +packetLen(0x007e, 103) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050628 +packetLen(0x007e, 120) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050509 +packetLen(0x007e, 110) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050411 +packetLen(0x007e, 109) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050110 +packetLen(0x007e, 108) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050104 +packetLen(0x007e, 34) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20051010 +packetLen(0x0085, 13) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050719 +packetLen(0x0085, 14) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050718 +packetLen(0x0085, 13) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050628 +packetLen(0x0085, 14) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050509 +packetLen(0x0085, 8) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050411 +packetLen(0x0085, 18) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050110 +packetLen(0x0085, 15) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050104 +packetLen(0x0085, -1) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20051010 +packetLen(0x0089, 10) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050719 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050718 +packetLen(0x0089, 10) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050628 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050509 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050411 +packetLen(0x0089, 14) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050104 +packetLen(0x0089, 9) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20051010 +packetLen(0x008c, 15) +#elif PACKETVER >= 20050719 +packetLen(0x008c, 17) +#elif PACKETVER >= 20050718 +packetLen(0x008c, 15) +#elif PACKETVER >= 20050628 +packetLen(0x008c, 17) +#elif PACKETVER >= 20050509 +packetLen(0x008c, 13) +#elif PACKETVER >= 20050110 +packetLen(0x008c, 10) +#elif PACKETVER >= 20050104 +packetLen(0x008c, 8) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20051010 +packetLen(0x0094, 16) // CZ_REQNAME +#elif PACKETVER >= 20050719 +packetLen(0x0094, 17) // CZ_REQNAME +#elif PACKETVER >= 20050718 +packetLen(0x0094, 16) // CZ_REQNAME +#elif PACKETVER >= 20050628 +packetLen(0x0094, 17) // CZ_REQNAME +#elif PACKETVER >= 20050509 +packetLen(0x0094, 14) // CZ_REQNAME +#elif PACKETVER >= 20050411 +packetLen(0x0094, 25) // CZ_REQNAME +#elif PACKETVER >= 20050110 +packetLen(0x0094, 13) // CZ_REQNAME +#elif PACKETVER >= 20050104 +packetLen(0x0094, 20) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20051010 +packetLen(0x009b, 33) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050719 +packetLen(0x009b, 35) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050718 +packetLen(0x009b, 33) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050628 +packetLen(0x009b, 35) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050509 +packetLen(0x009b, 29) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050411 +packetLen(0x009b, 32) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050110 +packetLen(0x009b, 29) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050104 +packetLen(0x009b, 2) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20051010 +packetLen(0x009f, 17) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050719 +packetLen(0x009f, 21) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050718 +packetLen(0x009f, 17) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050628 +packetLen(0x009f, 21) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050509 +packetLen(0x009f, 15) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050411 +packetLen(0x009f, 18) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050110 +packetLen(0x009f, 13) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050104 +packetLen(0x009f, 20) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20051010 +packetLen(0x00a2, 12) // CZ_ITEM_THROW +#elif PACKETVER >= 20050719 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20050718 +packetLen(0x00a2, 12) // CZ_ITEM_THROW +#elif PACKETVER >= 20050628 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20050509 +packetLen(0x00a2, 14) // CZ_ITEM_THROW +#elif PACKETVER >= 20050411 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20050110 +packetLen(0x00a2, 16) // CZ_ITEM_THROW +#elif PACKETVER >= 20050104 +packetLen(0x00a2, 9) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20051010 +packetLen(0x00a7, 6) +#elif PACKETVER >= 20050719 +packetLen(0x00a7, 8) +#elif PACKETVER >= 20050718 +packetLen(0x00a7, 6) +#elif PACKETVER >= 20050628 +packetLen(0x00a7, 8) +#elif PACKETVER >= 20050509 +packetLen(0x00a7, 7) +#elif PACKETVER >= 20050411 +packetLen(0x00a7, 14) +#elif PACKETVER >= 20050110 +packetLen(0x00a7, 6) +#elif PACKETVER >= 20050104 +packetLen(0x00a7, 13) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +#if PACKETVER >= 20050110 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20050104 +packetLen(0x00f3, 23) // CZ_REQUEST_CHAT +#endif + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20051010 +packetLen(0x00f5, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050719 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050718 +packetLen(0x00f5, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050628 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050509 +packetLen(0x00f5, 7) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050411 +packetLen(0x00f5, 14) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050110 +packetLen(0x00f5, 9) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050104 +packetLen(0x00f5, 32) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20051010 +packetLen(0x00f7, 26) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050719 +packetLen(0x00f7, 15) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050718 +packetLen(0x00f7, 26) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050628 +packetLen(0x00f7, 15) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050509 +packetLen(0x00f7, 21) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050411 +packetLen(0x00f7, 12) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050110 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050104 +packetLen(0x00f7, 11) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20051010 +packetLen(0x0113, 23) // CZ_USE_SKILL +#elif PACKETVER >= 20050719 +packetLen(0x0113, 40) // CZ_USE_SKILL +#elif PACKETVER >= 20050718 +packetLen(0x0113, 23) // CZ_USE_SKILL +#elif PACKETVER >= 20050628 +packetLen(0x0113, 40) // CZ_USE_SKILL +#elif PACKETVER >= 20050509 +packetLen(0x0113, 30) // CZ_USE_SKILL +#elif PACKETVER >= 20050411 +packetLen(0x0113, 29) // CZ_USE_SKILL +#elif PACKETVER >= 20050110 +packetLen(0x0113, 28) // CZ_USE_SKILL +#elif PACKETVER >= 20050104 +packetLen(0x0113, 114) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20051010 +packetLen(0x0116, 14) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050719 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050718 +packetLen(0x0116, 14) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050628 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050509 +packetLen(0x0116, 12) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050411 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050110 +packetLen(0x0116, 12) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050104 +packetLen(0x0116, 20) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20051010 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050719 +packetLen(0x0190, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050718 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050628 +packetLen(0x0190, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050509 +packetLen(0x0190, 18) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050411 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050110 +packetLen(0x0190, 15) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050104 +packetLen(0x0190, 17) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +#if PACKETVER >= 20050110 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20050104 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#endif + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +#if PACKETVER >= 20051010 +packetLen(0x020e, 32) // ZC_STARSKILL +#elif PACKETVER >= 20050104 +packetLen(0x020e, 24) // ZC_STARSKILL +#endif + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +#if PACKETVER >= 20050328 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#endif + +// Packet: 0x0225 +#if PACKETVER >= 20050328 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#endif + +// Packet: 0x0226 +#if PACKETVER >= 20050328 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +#endif + +// Packet: 0x0227 +#if PACKETVER >= 20050404 +packetLen(0x0227, 18) // ZC_GAME_GUARD +#endif + +// Packet: 0x0228 +#if PACKETVER >= 20050404 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD +#endif + +// Packet: 0x0229 +#if PACKETVER >= 20050411 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +#endif + +// Packet: 0x022a +#if PACKETVER >= 20050411 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#endif + +// Packet: 0x022b +#if PACKETVER >= 20050411 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20050411 +packetLen(0x022c, 64) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +#if PACKETVER >= 20050425 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +#if PACKETVER >= 20050624 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20050530 +packetLen(0x022e, 69) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20050523 +packetLen(0x022e, 67) // ZC_PROPERTY_HOMUN +#endif + +// Packet: 0x022f +#if PACKETVER >= 20050608 +packetLen(0x022f, 5) // ZC_FEED_MER +#endif + +// Packet: 0x0230 +#if PACKETVER >= 20050523 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +#endif + +// Packet: 0x0231 +#if PACKETVER >= 20050608 +packetLen(0x0231, 26) // CZ_RENAME_MER +#endif + +// Packet: 0x0232 +#if PACKETVER >= 20050425 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#endif + +// Packet: 0x0233 +#if PACKETVER >= 20050425 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#endif + +// Packet: 0x0234 +#if PACKETVER >= 20050425 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#endif + +// Packet: 0x0235 +#if PACKETVER >= 20050530 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#endif + +// Packet: 0x0236 +#if PACKETVER >= 20050530 +packetLen(0x0236, 10) // ZC_KILLER_POINT +#endif + +// Packet: 0x0237 +#if PACKETVER >= 20050530 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#endif + +// Packet: 0x0238 +#if PACKETVER >= 20050530 +packetLen(0x0238, 282) // ZC_KILLER_RANK +#endif + +// Packet: 0x0239 +#if PACKETVER >= 20050530 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +#endif + +// Packet: 0x023a +#if PACKETVER >= 20050608 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#endif + +// Packet: 0x023b +#if PACKETVER >= 20050608 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +#if PACKETVER >= 20050608 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#endif + +// Packet: 0x023d +#if PACKETVER >= 20050628 +packetLen(0x023d, 6) // AC_EVENT_RESULT +#endif + +// Packet: 0x023e +#if PACKETVER >= 20050628 +packetLen(0x023e, 4) // HC_REQUEST_CHARACTER_PASSWORD +#endif + +// Packet: 0x023f +#if PACKETVER >= 20050718 +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST +#endif + +// Packet: 0x0240 +#if PACKETVER >= 20050829 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST +#elif PACKETVER >= 20050718 +packetLen(0x0240, 8) // ZC_MAIL_REQ_GET_LIST +#endif + +// Packet: 0x0241 +#if PACKETVER >= 20050718 +packetLen(0x0241, 6) // CZ_MAIL_OPEN +#endif + +// Packet: 0x0242 +#if PACKETVER >= 20050718 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN +#endif + +// Packet: 0x0243 +#if PACKETVER >= 20050718 +packetLen(0x0243, 6) // CZ_MAIL_DELETE +#endif + +// Packet: 0x0244 +#if PACKETVER >= 20050718 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM +#endif + +// Packet: 0x0245 +#if PACKETVER >= 20050801 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM +#elif PACKETVER >= 20050718 +packetLen(0x0245, 7) // ZC_MAIL_REQ_GET_ITEM +#endif + +// Packet: 0x0246 +#if PACKETVER >= 20050718 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM +#endif + +// Packet: 0x0247 +#if PACKETVER >= 20050718 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM +#endif + +// Packet: 0x0248 +#if PACKETVER >= 20050829 +packetLen(0x0248, -1) // CZ_MAIL_SEND +#elif PACKETVER >= 20050718 +packetLen(0x0248, 68) // CZ_MAIL_SEND +#endif + +// Packet: 0x0249 +#if PACKETVER >= 20050718 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND +#endif + +// Packet: 0x024a +#if PACKETVER >= 20050718 +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE +#endif + +// Packet: 0x024b +#if PACKETVER >= 20050718 +packetLen(0x024b, 4) // CZ_AUCTION_CREATE +#endif + +// Packet: 0x024c +#if PACKETVER >= 20050718 +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM +#endif + +// Packet: 0x024d +#if PACKETVER >= 20050808 +packetLen(0x024d, 12) // CZ_AUCTION_ADD +#elif PACKETVER >= 20050718 +packetLen(0x024d, 14) // CZ_AUCTION_ADD +#endif + +// Packet: 0x024e +#if PACKETVER >= 20051107 +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL +#elif PACKETVER >= 20050808 +packetLen(0x024e, 4) // CZ_AUCTION_ADD_CANCEL +#elif PACKETVER >= 20050718 +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL +#endif + +// Packet: 0x024f +#if PACKETVER >= 20050718 +packetLen(0x024f, 10) // CZ_AUCTION_BUY +#endif + +// Packet: 0x0250 +#if PACKETVER >= 20050718 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT +#endif + +// Packet: 0x0251 +#if PACKETVER >= 20051107 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH +#elif PACKETVER >= 20051013 +packetLen(0x0251, 32) // CZ_AUCTION_ITEM_SEARCH +#elif PACKETVER >= 20050801 +packetLen(0x0251, 4) // CZ_AUCTION_ITEM_SEARCH +#elif PACKETVER >= 20050718 +packetLen(0x0251, 2) // CZ_AUCTION_ITEM_SEARCH +#endif + +// Packet: 0x0252 +#if PACKETVER >= 20050718 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH +#endif + +// Packet: 0x0253 +#if PACKETVER >= 20050822 +packetLen(0x0253, 3) // ZC_STARPLACE +#endif + +// Packet: 0x0254 +#if PACKETVER >= 20050822 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE +#endif + +// Packet: 0x0255 +#if PACKETVER >= 20050829 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM +#endif + +// Packet: 0x0256 +#if PACKETVER >= 20050829 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM +#endif + +// Packet: 0x0257 +#if PACKETVER >= 20050829 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE +#endif + +// Packet: 0x0258 +#if PACKETVER >= 20050912 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK +#endif + +// Packet: 0x0259 +#if PACKETVER >= 20050912 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD +#endif + +// Packet: 0x025a +#if PACKETVER >= 20051010 +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST +#endif + +// Packet: 0x025b +#if PACKETVER >= 20051010 +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM +#endif + +// Packet: 0x025c +#if PACKETVER >= 20051013 +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO +#endif + +// Packet: 0x025d +#if PACKETVER >= 20051017 +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP +#endif + +// Packet: 0x025e +#if PACKETVER >= 20051017 +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP +#endif + +// Packet: 0x025f +#if PACKETVER >= 20051024 +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS +#endif + +// Packet: 0x0260 +#if PACKETVER >= 20051024 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS +#endif + + +#endif /* COMMON_PACKETS2005_LEN_AD_H */ diff --git a/src/common/packets/packets2005_len_main.h b/src/common/packets/packets2005_len_main.h new file mode 100644 index 000000000..e7a06e509 --- /dev/null +++ b/src/common/packets/packets2005_len_main.h @@ -0,0 +1,1935 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2005_LEN_MAIN_H +#define COMMON_PACKETS2005_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20051010 +packetLen(0x0072, 20) // CZ_ENTER +#elif PACKETVER >= 20050719 +packetLen(0x0072, 30) // CZ_ENTER +#elif PACKETVER >= 20050718 +packetLen(0x0072, 20) // CZ_ENTER +#elif PACKETVER >= 20050628 +packetLen(0x0072, 30) // CZ_ENTER +#elif PACKETVER >= 20050509 +packetLen(0x0072, 22) // CZ_ENTER +#elif PACKETVER >= 20050411 +packetLen(0x0072, 14) // CZ_ENTER +#elif PACKETVER >= 20050103 +packetLen(0x0072, 26) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20051010 +packetLen(0x007e, 103) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050719 +packetLen(0x007e, 120) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050718 +packetLen(0x007e, 103) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050628 +packetLen(0x007e, 120) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050509 +packetLen(0x007e, 110) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050411 +packetLen(0x007e, 109) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050110 +packetLen(0x007e, 108) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050103 +packetLen(0x007e, 34) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20051010 +packetLen(0x0085, 13) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050719 +packetLen(0x0085, 14) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050718 +packetLen(0x0085, 13) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050628 +packetLen(0x0085, 14) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050509 +packetLen(0x0085, 8) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050411 +packetLen(0x0085, 18) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050110 +packetLen(0x0085, 15) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050103 +packetLen(0x0085, -1) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20051010 +packetLen(0x0089, 10) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050719 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050718 +packetLen(0x0089, 10) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050628 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050509 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050411 +packetLen(0x0089, 14) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050103 +packetLen(0x0089, 9) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20051010 +packetLen(0x008c, 15) +#elif PACKETVER >= 20050719 +packetLen(0x008c, 17) +#elif PACKETVER >= 20050718 +packetLen(0x008c, 15) +#elif PACKETVER >= 20050628 +packetLen(0x008c, 17) +#elif PACKETVER >= 20050509 +packetLen(0x008c, 13) +#elif PACKETVER >= 20050110 +packetLen(0x008c, 10) +#elif PACKETVER >= 20050103 +packetLen(0x008c, 8) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20051010 +packetLen(0x0094, 16) // CZ_REQNAME +#elif PACKETVER >= 20050719 +packetLen(0x0094, 17) // CZ_REQNAME +#elif PACKETVER >= 20050718 +packetLen(0x0094, 16) // CZ_REQNAME +#elif PACKETVER >= 20050628 +packetLen(0x0094, 17) // CZ_REQNAME +#elif PACKETVER >= 20050509 +packetLen(0x0094, 14) // CZ_REQNAME +#elif PACKETVER >= 20050411 +packetLen(0x0094, 25) // CZ_REQNAME +#elif PACKETVER >= 20050110 +packetLen(0x0094, 13) // CZ_REQNAME +#elif PACKETVER >= 20050103 +packetLen(0x0094, 20) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20051010 +packetLen(0x009b, 33) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050719 +packetLen(0x009b, 35) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050718 +packetLen(0x009b, 33) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050628 +packetLen(0x009b, 35) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050509 +packetLen(0x009b, 29) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050411 +packetLen(0x009b, 32) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050110 +packetLen(0x009b, 29) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050103 +packetLen(0x009b, 2) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20051010 +packetLen(0x009f, 17) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050719 +packetLen(0x009f, 21) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050718 +packetLen(0x009f, 17) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050628 +packetLen(0x009f, 21) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050509 +packetLen(0x009f, 15) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050411 +packetLen(0x009f, 18) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050110 +packetLen(0x009f, 13) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050103 +packetLen(0x009f, 20) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20051010 +packetLen(0x00a2, 12) // CZ_ITEM_THROW +#elif PACKETVER >= 20050719 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20050718 +packetLen(0x00a2, 12) // CZ_ITEM_THROW +#elif PACKETVER >= 20050628 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20050509 +packetLen(0x00a2, 14) // CZ_ITEM_THROW +#elif PACKETVER >= 20050411 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20050110 +packetLen(0x00a2, 16) // CZ_ITEM_THROW +#elif PACKETVER >= 20050103 +packetLen(0x00a2, 9) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20051010 +packetLen(0x00a7, 6) +#elif PACKETVER >= 20050719 +packetLen(0x00a7, 8) +#elif PACKETVER >= 20050718 +packetLen(0x00a7, 6) +#elif PACKETVER >= 20050628 +packetLen(0x00a7, 8) +#elif PACKETVER >= 20050509 +packetLen(0x00a7, 7) +#elif PACKETVER >= 20050411 +packetLen(0x00a7, 14) +#elif PACKETVER >= 20050110 +packetLen(0x00a7, 6) +#elif PACKETVER >= 20050103 +packetLen(0x00a7, 13) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +#if PACKETVER >= 20050110 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20050103 +packetLen(0x00f3, 23) // CZ_REQUEST_CHAT +#endif + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20051010 +packetLen(0x00f5, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050719 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050718 +packetLen(0x00f5, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050628 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050509 +packetLen(0x00f5, 7) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050411 +packetLen(0x00f5, 14) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050110 +packetLen(0x00f5, 9) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050103 +packetLen(0x00f5, 32) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20051010 +packetLen(0x00f7, 26) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050719 +packetLen(0x00f7, 15) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050718 +packetLen(0x00f7, 26) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050628 +packetLen(0x00f7, 15) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050509 +packetLen(0x00f7, 21) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050411 +packetLen(0x00f7, 12) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050110 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050103 +packetLen(0x00f7, 11) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20051010 +packetLen(0x0113, 23) // CZ_USE_SKILL +#elif PACKETVER >= 20050719 +packetLen(0x0113, 40) // CZ_USE_SKILL +#elif PACKETVER >= 20050718 +packetLen(0x0113, 23) // CZ_USE_SKILL +#elif PACKETVER >= 20050628 +packetLen(0x0113, 40) // CZ_USE_SKILL +#elif PACKETVER >= 20050509 +packetLen(0x0113, 30) // CZ_USE_SKILL +#elif PACKETVER >= 20050411 +packetLen(0x0113, 29) // CZ_USE_SKILL +#elif PACKETVER >= 20050110 +packetLen(0x0113, 28) // CZ_USE_SKILL +#elif PACKETVER >= 20050103 +packetLen(0x0113, 114) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20051010 +packetLen(0x0116, 14) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050719 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050718 +packetLen(0x0116, 14) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050628 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050509 +packetLen(0x0116, 12) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050411 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050110 +packetLen(0x0116, 12) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050103 +packetLen(0x0116, 20) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20051010 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050719 +packetLen(0x0190, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050718 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050628 +packetLen(0x0190, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050509 +packetLen(0x0190, 18) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050411 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050110 +packetLen(0x0190, 15) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050103 +packetLen(0x0190, 17) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +#if PACKETVER >= 20050110 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20050103 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#endif + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +#if PACKETVER >= 20051010 +packetLen(0x020e, 32) // ZC_STARSKILL +#elif PACKETVER >= 20050103 +packetLen(0x020e, 24) // ZC_STARSKILL +#endif + +// Packet: 0x020f +#if PACKETVER >= 20050221 +// removed +#elif PACKETVER >= 20050103 +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT +#endif + +// Packet: 0x0210 +#if PACKETVER >= 20050221 +// removed +#elif PACKETVER >= 20050103 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT +#endif + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +#if PACKETVER >= 20050328 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#endif + +// Packet: 0x0225 +#if PACKETVER >= 20050328 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#endif + +// Packet: 0x0226 +#if PACKETVER >= 20050328 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +#endif + +// Packet: 0x0227 +#if PACKETVER >= 20050404 +packetLen(0x0227, 18) // ZC_GAME_GUARD +#endif + +// Packet: 0x0228 +#if PACKETVER >= 20050404 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD +#endif + +// Packet: 0x0229 +#if PACKETVER >= 20050411 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +#endif + +// Packet: 0x022a +#if PACKETVER >= 20050411 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#endif + +// Packet: 0x022b +#if PACKETVER >= 20050411 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20050411 +packetLen(0x022c, 64) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +#if PACKETVER >= 20050425 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +#if PACKETVER >= 20050624 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20050530 +packetLen(0x022e, 69) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20050523 +packetLen(0x022e, 67) // ZC_PROPERTY_HOMUN +#endif + +// Packet: 0x022f +#if PACKETVER >= 20050608 +packetLen(0x022f, 5) // ZC_FEED_MER +#endif + +// Packet: 0x0230 +#if PACKETVER >= 20050523 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +#endif + +// Packet: 0x0231 +#if PACKETVER >= 20050608 +packetLen(0x0231, 26) // CZ_RENAME_MER +#endif + +// Packet: 0x0232 +#if PACKETVER >= 20050425 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#endif + +// Packet: 0x0233 +#if PACKETVER >= 20050425 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#endif + +// Packet: 0x0234 +#if PACKETVER >= 20050425 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#endif + +// Packet: 0x0235 +#if PACKETVER >= 20050530 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#endif + +// Packet: 0x0236 +#if PACKETVER >= 20050530 +packetLen(0x0236, 10) // ZC_KILLER_POINT +#endif + +// Packet: 0x0237 +#if PACKETVER >= 20050530 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#endif + +// Packet: 0x0238 +#if PACKETVER >= 20050530 +packetLen(0x0238, 282) // ZC_KILLER_RANK +#endif + +// Packet: 0x0239 +#if PACKETVER >= 20050530 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +#endif + +// Packet: 0x023a +#if PACKETVER >= 20050608 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#endif + +// Packet: 0x023b +#if PACKETVER >= 20050608 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +#if PACKETVER >= 20050608 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#endif + +// Packet: 0x023d +#if PACKETVER >= 20050628 +packetLen(0x023d, 6) // AC_EVENT_RESULT +#endif + +// Packet: 0x023e +#if PACKETVER >= 20050628 +packetLen(0x023e, 4) // HC_REQUEST_CHARACTER_PASSWORD +#endif + +// Packet: 0x023f +#if PACKETVER >= 20050718 +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST +#endif + +// Packet: 0x0240 +#if PACKETVER >= 20050829 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST +#elif PACKETVER >= 20050718 +packetLen(0x0240, 8) // ZC_MAIL_REQ_GET_LIST +#endif + +// Packet: 0x0241 +#if PACKETVER >= 20050718 +packetLen(0x0241, 6) // CZ_MAIL_OPEN +#endif + +// Packet: 0x0242 +#if PACKETVER >= 20050718 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN +#endif + +// Packet: 0x0243 +#if PACKETVER >= 20050718 +packetLen(0x0243, 6) // CZ_MAIL_DELETE +#endif + +// Packet: 0x0244 +#if PACKETVER >= 20050718 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM +#endif + +// Packet: 0x0245 +#if PACKETVER >= 20050801 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM +#elif PACKETVER >= 20050718 +packetLen(0x0245, 7) // ZC_MAIL_REQ_GET_ITEM +#endif + +// Packet: 0x0246 +#if PACKETVER >= 20050718 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM +#endif + +// Packet: 0x0247 +#if PACKETVER >= 20050718 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM +#endif + +// Packet: 0x0248 +#if PACKETVER >= 20050829 +packetLen(0x0248, -1) // CZ_MAIL_SEND +#elif PACKETVER >= 20050718 +packetLen(0x0248, 68) // CZ_MAIL_SEND +#endif + +// Packet: 0x0249 +#if PACKETVER >= 20050718 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND +#endif + +// Packet: 0x024a +#if PACKETVER >= 20050718 +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE +#endif + +// Packet: 0x024b +#if PACKETVER >= 20050718 +packetLen(0x024b, 4) // CZ_AUCTION_CREATE +#endif + +// Packet: 0x024c +#if PACKETVER >= 20050718 +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM +#endif + +// Packet: 0x024d +#if PACKETVER >= 20050808 +packetLen(0x024d, 12) // CZ_AUCTION_ADD +#elif PACKETVER >= 20050718 +packetLen(0x024d, 14) // CZ_AUCTION_ADD +#endif + +// Packet: 0x024e +#if PACKETVER >= 20051107 +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL +#elif PACKETVER >= 20050808 +packetLen(0x024e, 4) // CZ_AUCTION_ADD_CANCEL +#elif PACKETVER >= 20050718 +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL +#endif + +// Packet: 0x024f +#if PACKETVER >= 20050718 +packetLen(0x024f, 10) // CZ_AUCTION_BUY +#endif + +// Packet: 0x0250 +#if PACKETVER >= 20050718 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT +#endif + +// Packet: 0x0251 +#if PACKETVER >= 20051107 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH +#elif PACKETVER >= 20051013 +packetLen(0x0251, 32) // CZ_AUCTION_ITEM_SEARCH +#elif PACKETVER >= 20050801 +packetLen(0x0251, 4) // CZ_AUCTION_ITEM_SEARCH +#elif PACKETVER >= 20050718 +packetLen(0x0251, 2) // CZ_AUCTION_ITEM_SEARCH +#endif + +// Packet: 0x0252 +#if PACKETVER >= 20050718 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH +#endif + +// Packet: 0x0253 +#if PACKETVER >= 20050822 +packetLen(0x0253, 3) // ZC_STARPLACE +#endif + +// Packet: 0x0254 +#if PACKETVER >= 20050822 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE +#endif + +// Packet: 0x0255 +#if PACKETVER >= 20050829 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM +#endif + +// Packet: 0x0256 +#if PACKETVER >= 20050829 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM +#endif + +// Packet: 0x0257 +#if PACKETVER >= 20050829 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE +#endif + +// Packet: 0x0258 +#if PACKETVER >= 20050912 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK +#endif + +// Packet: 0x0259 +#if PACKETVER >= 20050912 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD +#endif + +// Packet: 0x025a +#if PACKETVER >= 20051010 +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST +#endif + +// Packet: 0x025b +#if PACKETVER >= 20051010 +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM +#endif + +// Packet: 0x025c +#if PACKETVER >= 20051013 +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO +#endif + +// Packet: 0x025d +#if PACKETVER >= 20051017 +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP +#endif + +// Packet: 0x025e +#if PACKETVER >= 20051017 +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP +#endif + +// Packet: 0x025f +#if PACKETVER >= 20051024 +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS +#endif + +// Packet: 0x0260 +#if PACKETVER >= 20051024 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS +#endif + + +#endif /* COMMON_PACKETS2005_LEN_MAIN_H */ diff --git a/src/common/packets/packets2005_len_sak.h b/src/common/packets/packets2005_len_sak.h new file mode 100644 index 000000000..9e029766b --- /dev/null +++ b/src/common/packets/packets2005_len_sak.h @@ -0,0 +1,1869 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2005_LEN_SAK_H +#define COMMON_PACKETS2005_LEN_SAK_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20050719 +packetLen(0x0072, 34) // CZ_ENTER +#elif PACKETVER >= 20050718 +packetLen(0x0072, 19) // CZ_ENTER +#elif PACKETVER >= 20050628 +packetLen(0x0072, 34) // CZ_ENTER +#elif PACKETVER >= 20050509 +packetLen(0x0072, 25) // CZ_ENTER +#elif PACKETVER >= 20050110 +packetLen(0x0072, 26) // CZ_ENTER +#elif PACKETVER >= 20050103 +packetLen(0x0072, 22) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20050719 +packetLen(0x007e, 113) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050718 +packetLen(0x007e, 110) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050628 +packetLen(0x007e, 113) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050509 +packetLen(0x007e, 102) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050110 +packetLen(0x007e, 114) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050103 +packetLen(0x007e, 30) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20050719 +packetLen(0x0085, 17) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050718 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050628 +packetLen(0x0085, 17) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050509 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050110 +packetLen(0x0085, 23) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20050103 +packetLen(0x0085, -1) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20050719 +packetLen(0x0089, 13) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050718 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050628 +packetLen(0x0089, 13) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050509 +packetLen(0x0089, 8) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050110 +packetLen(0x0089, 9) // CZ_REQUEST_ACT +#elif PACKETVER >= 20050103 +packetLen(0x0089, 7) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20050719 +packetLen(0x008c, 8) +#elif PACKETVER >= 20050718 +packetLen(0x008c, 11) +#elif PACKETVER >= 20050628 +packetLen(0x008c, 8) +#elif PACKETVER >= 20050509 +packetLen(0x008c, 11) +#elif PACKETVER >= 20050110 +packetLen(0x008c, 8) +#elif PACKETVER >= 20050103 +packetLen(0x008c, 13) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20050719 +packetLen(0x0094, 31) // CZ_REQNAME +#elif PACKETVER >= 20050718 +packetLen(0x0094, 21) // CZ_REQNAME +#elif PACKETVER >= 20050628 +packetLen(0x0094, 31) // CZ_REQNAME +#elif PACKETVER >= 20050509 +packetLen(0x0094, 14) // CZ_REQNAME +#elif PACKETVER >= 20050110 +packetLen(0x0094, 20) // CZ_REQNAME +#elif PACKETVER >= 20050103 +packetLen(0x0094, 14) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20050719 +packetLen(0x009b, 32) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050718 +packetLen(0x009b, 31) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050628 +packetLen(0x009b, 32) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050509 +packetLen(0x009b, 26) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050110 +packetLen(0x009b, 32) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20050103 +packetLen(0x009b, 2) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20050719 +packetLen(0x009f, 19) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050718 +packetLen(0x009f, 12) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050628 +packetLen(0x009f, 19) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050509 +packetLen(0x009f, 14) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050110 +packetLen(0x009f, 17) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20050103 +packetLen(0x009f, 18) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20050719 +packetLen(0x00a2, 9) // CZ_ITEM_THROW +#elif PACKETVER >= 20050718 +packetLen(0x00a2, 18) // CZ_ITEM_THROW +#elif PACKETVER >= 20050628 +packetLen(0x00a2, 9) // CZ_ITEM_THROW +#elif PACKETVER >= 20050509 +packetLen(0x00a2, 15) // CZ_ITEM_THROW +#elif PACKETVER >= 20050110 +packetLen(0x00a2, 11) // CZ_ITEM_THROW +#elif PACKETVER >= 20050103 +packetLen(0x00a2, 7) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20050719 +packetLen(0x00a7, 11) +#elif PACKETVER >= 20050718 +packetLen(0x00a7, 15) +#elif PACKETVER >= 20050628 +packetLen(0x00a7, 11) +#elif PACKETVER >= 20050509 +packetLen(0x00a7, 8) +#elif PACKETVER >= 20050110 +packetLen(0x00a7, 13) +#elif PACKETVER >= 20050103 +packetLen(0x00a7, 7) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +#if PACKETVER >= 20050110 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT +#elif PACKETVER >= 20050103 +packetLen(0x00f3, 8) // CZ_REQUEST_CHAT +#endif + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20050719 +packetLen(0x00f5, 13) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050718 +packetLen(0x00f5, 7) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050628 +packetLen(0x00f5, 13) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050509 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050110 +packetLen(0x00f5, 9) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20050103 +packetLen(0x00f5, 29) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20050719 +packetLen(0x00f7, 18) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050718 +packetLen(0x00f7, 13) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050628 +packetLen(0x00f7, 18) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050509 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050110 +packetLen(0x00f7, 21) // CZ_REQUEST_TIME +#elif PACKETVER >= 20050103 +packetLen(0x00f7, 14) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20050719 +packetLen(0x0113, 33) // CZ_USE_SKILL +#elif PACKETVER >= 20050718 +packetLen(0x0113, 30) // CZ_USE_SKILL +#elif PACKETVER >= 20050628 +packetLen(0x0113, 33) // CZ_USE_SKILL +#elif PACKETVER >= 20050509 +packetLen(0x0113, 22) // CZ_USE_SKILL +#elif PACKETVER >= 20050110 +packetLen(0x0113, 34) // CZ_USE_SKILL +#elif PACKETVER >= 20050103 +packetLen(0x0113, 110) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20050628 +packetLen(0x0116, 12) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050509 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050110 +packetLen(0x0116, 20) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20050103 +packetLen(0x0116, 12) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20050719 +packetLen(0x0190, 24) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050718 +packetLen(0x0190, 21) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050628 +packetLen(0x0190, 24) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050509 +packetLen(0x0190, 19) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050110 +packetLen(0x0190, 20) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20050103 +packetLen(0x0190, 15) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +#if PACKETVER >= 20050110 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID +#elif PACKETVER >= 20050103 +packetLen(0x0193, 21) // CZ_REQNAME_BYGID +#endif + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +#if PACKETVER >= 20051010 +packetLen(0x020e, 32) // ZC_STARSKILL +#elif PACKETVER >= 20050103 +packetLen(0x020e, 24) // ZC_STARSKILL +#endif + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +#if PACKETVER >= 20050328 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#endif + +// Packet: 0x0225 +#if PACKETVER >= 20050328 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#endif + +// Packet: 0x0226 +#if PACKETVER >= 20050328 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +#endif + +// Packet: 0x0227 +#if PACKETVER >= 20050404 +packetLen(0x0227, 18) // ZC_GAME_GUARD +#endif + +// Packet: 0x0228 +#if PACKETVER >= 20050404 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD +#endif + +// Packet: 0x0229 +#if PACKETVER >= 20050411 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +#endif + +// Packet: 0x022a +#if PACKETVER >= 20050411 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#endif + +// Packet: 0x022b +#if PACKETVER >= 20050411 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20050411 +packetLen(0x022c, 64) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +#if PACKETVER >= 20050425 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +#if PACKETVER >= 20050622 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20050530 +packetLen(0x022e, 69) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20050523 +packetLen(0x022e, 67) // ZC_PROPERTY_HOMUN +#endif + +// Packet: 0x022f +#if PACKETVER >= 20050608 +packetLen(0x022f, 5) // ZC_FEED_MER +#endif + +// Packet: 0x0230 +#if PACKETVER >= 20050523 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +#endif + +// Packet: 0x0231 +#if PACKETVER >= 20050608 +packetLen(0x0231, 26) // CZ_RENAME_MER +#endif + +// Packet: 0x0232 +#if PACKETVER >= 20050425 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#endif + +// Packet: 0x0233 +#if PACKETVER >= 20050425 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#endif + +// Packet: 0x0234 +#if PACKETVER >= 20050425 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#endif + +// Packet: 0x0235 +#if PACKETVER >= 20050530 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#endif + +// Packet: 0x0236 +#if PACKETVER >= 20050530 +packetLen(0x0236, 10) // ZC_KILLER_POINT +#endif + +// Packet: 0x0237 +#if PACKETVER >= 20050530 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#endif + +// Packet: 0x0238 +#if PACKETVER >= 20050530 +packetLen(0x0238, 282) // ZC_KILLER_RANK +#endif + +// Packet: 0x0239 +#if PACKETVER >= 20050531 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +#endif + +// Packet: 0x023a +#if PACKETVER >= 20050608 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#endif + +// Packet: 0x023b +#if PACKETVER >= 20050608 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +#if PACKETVER >= 20050608 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#endif + +// Packet: 0x023d +#if PACKETVER >= 20050628 +packetLen(0x023d, 6) // AC_EVENT_RESULT +#endif + +// Packet: 0x023e +#if PACKETVER >= 20050628 +packetLen(0x023e, 4) // HC_REQUEST_CHARACTER_PASSWORD +#endif + +// Packet: 0x023f +#if PACKETVER >= 20050718 +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST +#endif + +// Packet: 0x0240 +#if PACKETVER >= 20050829 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST +#elif PACKETVER >= 20050718 +packetLen(0x0240, 8) // ZC_MAIL_REQ_GET_LIST +#endif + +// Packet: 0x0241 +#if PACKETVER >= 20050718 +packetLen(0x0241, 6) // CZ_MAIL_OPEN +#endif + +// Packet: 0x0242 +#if PACKETVER >= 20050718 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN +#endif + +// Packet: 0x0243 +#if PACKETVER >= 20050718 +packetLen(0x0243, 6) // CZ_MAIL_DELETE +#endif + +// Packet: 0x0244 +#if PACKETVER >= 20050718 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM +#endif + +// Packet: 0x0245 +#if PACKETVER >= 20050801 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM +#elif PACKETVER >= 20050718 +packetLen(0x0245, 7) // ZC_MAIL_REQ_GET_ITEM +#endif + +// Packet: 0x0246 +#if PACKETVER >= 20050718 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM +#endif + +// Packet: 0x0247 +#if PACKETVER >= 20050718 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM +#endif + +// Packet: 0x0248 +#if PACKETVER >= 20050829 +packetLen(0x0248, -1) // CZ_MAIL_SEND +#elif PACKETVER >= 20050718 +packetLen(0x0248, 68) // CZ_MAIL_SEND +#endif + +// Packet: 0x0249 +#if PACKETVER >= 20050718 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND +#endif + +// Packet: 0x024a +#if PACKETVER >= 20050718 +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE +#endif + +// Packet: 0x024b +#if PACKETVER >= 20050718 +packetLen(0x024b, 4) // CZ_AUCTION_CREATE +#endif + +// Packet: 0x024c +#if PACKETVER >= 20050718 +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM +#endif + +// Packet: 0x024d +#if PACKETVER >= 20050808 +packetLen(0x024d, 12) // CZ_AUCTION_ADD +#elif PACKETVER >= 20050718 +packetLen(0x024d, 14) // CZ_AUCTION_ADD +#endif + +// Packet: 0x024e +#if PACKETVER >= 20051107 +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL +#elif PACKETVER >= 20050808 +packetLen(0x024e, 4) // CZ_AUCTION_ADD_CANCEL +#elif PACKETVER >= 20050718 +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL +#endif + +// Packet: 0x024f +#if PACKETVER >= 20050718 +packetLen(0x024f, 10) // CZ_AUCTION_BUY +#endif + +// Packet: 0x0250 +#if PACKETVER >= 20050718 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT +#endif + +// Packet: 0x0251 +#if PACKETVER >= 20051107 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH +#elif PACKETVER >= 20051013 +packetLen(0x0251, 32) // CZ_AUCTION_ITEM_SEARCH +#elif PACKETVER >= 20050801 +packetLen(0x0251, 4) // CZ_AUCTION_ITEM_SEARCH +#elif PACKETVER >= 20050718 +packetLen(0x0251, 2) // CZ_AUCTION_ITEM_SEARCH +#endif + +// Packet: 0x0252 +#if PACKETVER >= 20050718 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH +#endif + +// Packet: 0x0253 +#if PACKETVER >= 20050817 +packetLen(0x0253, 3) // ZC_STARPLACE +#endif + +// Packet: 0x0254 +#if PACKETVER >= 20050817 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE +#endif + +// Packet: 0x0255 +#if PACKETVER >= 20050829 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM +#endif + +// Packet: 0x0256 +#if PACKETVER >= 20050829 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM +#endif + +// Packet: 0x0257 +#if PACKETVER >= 20050829 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE +#endif + +// Packet: 0x0258 +#if PACKETVER >= 20050912 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK +#endif + +// Packet: 0x0259 +#if PACKETVER >= 20050912 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD +#endif + +// Packet: 0x025a +#if PACKETVER >= 20051010 +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST +#endif + +// Packet: 0x025b +#if PACKETVER >= 20051010 +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM +#endif + +// Packet: 0x025c +#if PACKETVER >= 20051013 +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO +#endif + +// Packet: 0x025d +#if PACKETVER >= 20051017 +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP +#endif + +// Packet: 0x025e +#if PACKETVER >= 20051017 +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP +#endif + +// Packet: 0x025f +#if PACKETVER >= 20051024 +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS +#endif + +// Packet: 0x0260 +#if PACKETVER >= 20051024 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS +#endif + + +#endif /* COMMON_PACKETS2005_LEN_SAK_H */ diff --git a/src/common/packets/packets2006_len_ad.h b/src/common/packets/packets2006_len_ad.h new file mode 100644 index 000000000..a7997e885 --- /dev/null +++ b/src/common/packets/packets2006_len_ad.h @@ -0,0 +1,1925 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2006_LEN_AD_H +#define COMMON_PACKETS2006_LEN_AD_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20061030 +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20060102 +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20060327 +packetLen(0x0072, 25) // CZ_ENTER +#elif PACKETVER >= 20060102 +packetLen(0x0072, 20) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20060327 +packetLen(0x007e, 102) // CZ_REQUEST_TIME +#elif PACKETVER >= 20060102 +packetLen(0x007e, 103) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20060327 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20060102 +packetLen(0x0085, 13) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20060327 +packetLen(0x0089, 8) // CZ_REQUEST_ACT +#elif PACKETVER >= 20060102 +packetLen(0x0089, 10) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20060327 +packetLen(0x008c, 11) +#elif PACKETVER >= 20060102 +packetLen(0x008c, 15) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20060327 +packetLen(0x0094, 14) // CZ_REQNAME +#elif PACKETVER >= 20060102 +packetLen(0x0094, 16) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20060327 +packetLen(0x009b, 26) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20060102 +packetLen(0x009b, 33) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20060327 +packetLen(0x009f, 14) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20060102 +packetLen(0x009f, 17) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20060327 +packetLen(0x00a2, 15) // CZ_ITEM_THROW +#elif PACKETVER >= 20060102 +packetLen(0x00a2, 12) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20060327 +packetLen(0x00a7, 8) +#elif PACKETVER >= 20060102 +packetLen(0x00a7, 6) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20060327 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20060102 +packetLen(0x00f5, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20060327 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME +#elif PACKETVER >= 20060102 +packetLen(0x00f7, 26) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20060327 +packetLen(0x0113, 22) // CZ_USE_SKILL +#elif PACKETVER >= 20060102 +packetLen(0x0113, 23) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20060327 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20060102 +packetLen(0x0116, 14) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20060327 +packetLen(0x0190, 19) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20060102 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 64) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +#if PACKETVER >= 20061207 +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD +#elif PACKETVER >= 20060102 +packetLen(0x023e, 4) // HC_REQUEST_CHARACTER_PASSWORD +#endif + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +#if PACKETVER >= 20060109 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY +#endif + +// Packet: 0x0262 +#if PACKETVER >= 20060109 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY +#endif + +// Packet: 0x0263 +#if PACKETVER >= 20060109 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS +#endif + +// Packet: 0x0264 +#if PACKETVER >= 20060109 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY +#endif + +// Packet: 0x0265 +#if PACKETVER >= 20060109 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY +#endif + +// Packet: 0x0266 +#if PACKETVER >= 20060109 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS +#endif + +// Packet: 0x0267 +#if PACKETVER >= 20060109 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST +#endif + +// Packet: 0x0268 +#if PACKETVER >= 20060109 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY +#endif + +// Packet: 0x0269 +#if PACKETVER >= 20060109 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY +#endif + +// Packet: 0x026a +#if PACKETVER >= 20060109 +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE +#endif + +// Packet: 0x026b +#if PACKETVER >= 20060109 +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY +#endif + +// Packet: 0x026c +#if PACKETVER >= 20060109 +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE +#endif + +// Packet: 0x026d +#if PACKETVER >= 20060109 +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS +#endif + +// Packet: 0x026f +#if PACKETVER >= 20060109 +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN +#endif + +// Packet: 0x0270 +#if PACKETVER >= 20060109 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO +#endif + +// Packet: 0x0271 +#if PACKETVER >= 20060126 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO +#elif PACKETVER >= 20060109 +packetLen(0x0271, 38) // CA_ACK_LOGIN_ACCOUNT_INFO +#endif + +// Packet: 0x0272 +#if PACKETVER >= 20060109 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO +#endif + +// Packet: 0x0273 +#if PACKETVER >= 20060313 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN +#elif PACKETVER >= 20060306 +packetLen(0x0273, 6) // CZ_REQ_MAIL_RETURN +#endif + +// Packet: 0x0274 +#if PACKETVER >= 20060306 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#endif + +// Packet: 0x0277 +#if PACKETVER >= 20060424 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG +#endif + +// Packet: 0x0278 +#if PACKETVER >= 20060607 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG +#endif + +// Packet: 0x0279 +#if PACKETVER >= 20060607 +packetLen(0x0279, 2) // CZ_HUNTINGLIST +#endif + +// Packet: 0x027a +#if PACKETVER >= 20060607 +packetLen(0x027a, -1) // ZC_HUNTINGLIST +#endif + +// Packet: 0x027b +#if PACKETVER >= 20060626 +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT +#endif + +// Packet: 0x027c +#if PACKETVER >= 20060626 +packetLen(0x027c, 60) // CA_LOGIN4 +#endif + +// Packet: 0x027d +#if PACKETVER >= 20060703 +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE +#endif + +// Packet: 0x027e +#if PACKETVER >= 20060710 +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT +#endif + +// Packet: 0x027f +#if PACKETVER >= 20060821 +packetLen(0x027f, 8) // CA_CLIENT_TYPE +#elif PACKETVER >= 20060731 +packetLen(0x027f, 4) // CA_CLIENT_TYPE +#endif + +// Packet: 0x0280 +#if PACKETVER >= 20060918 +packetLen(0x0280, 12) // ZC_GANGSI_POINT +#elif PACKETVER >= 20060904 +packetLen(0x0280, 10) // ZC_GANGSI_POINT +#endif + +// Packet: 0x0281 +#if PACKETVER >= 20060918 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#elif PACKETVER >= 20060904 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +#if PACKETVER >= 20060918 +packetLen(0x0282, 284) // ZC_GANGSI_RANK +#elif PACKETVER >= 20060904 +packetLen(0x0282, 282) // ZC_GANGSI_RANK +#endif + +// Packet: 0x0283 +#if PACKETVER >= 20060904 +packetLen(0x0283, 6) // ZC_AID +#endif + +// Packet: 0x0284 +#if PACKETVER >= 20060911 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 +#endif + +// Packet: 0x0285 +#if PACKETVER >= 20060918 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION +#endif + +// Packet: 0x0286 +#if PACKETVER >= 20060918 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION +#endif + +// Packet: 0x028a +#if PACKETVER >= 20060927 +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE +#endif + +// Packet: 0x028b +#if PACKETVER >= 20061030 +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED +#endif + +// Packet: 0x028c +#if PACKETVER >= 20061030 +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED +#endif + +// Packet: 0x028d +#if PACKETVER >= 20061030 +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME +#endif + +// Packet: 0x028e +#if PACKETVER >= 20061030 +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME +#endif + +// Packet: 0x028f +#if PACKETVER >= 20061030 +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME +#endif + +// Packet: 0x0290 +#if PACKETVER >= 20061030 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME +#endif + +// Packet: 0x0291 +#if PACKETVER >= 20061030 +packetLen(0x0291, 4) // ZC_MSG +#endif + +// Packet: 0x0292 +#if PACKETVER >= 20061030 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION +#endif + +// Packet: 0x0293 +#if PACKETVER >= 20061204 +packetLen(0x0293, 70) // ZC_BOSS_INFO +#elif PACKETVER >= 20061030 +packetLen(0x0293, 66) // ZC_BOSS_INFO +#endif + +// Packet: 0x0294 +#if PACKETVER >= 20061204 +packetLen(0x0294, 10) // ZC_READ_BOOK +#endif + +// Packet: 0x0295 +#if PACKETVER >= 20061218 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20061211 +packetLen(0x0295, 4) // ZC_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0296 +#if PACKETVER >= 20061218 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20061211 +packetLen(0x0296, 4) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0297 +#if PACKETVER >= 20061218 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20061211 +packetLen(0x0297, 4) // ZC_CART_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0298 +#if PACKETVER >= 20061211 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER +#endif + +// Packet: 0x0299 +#if PACKETVER >= 20061211 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE +#endif + +// Packet: 0x029a +#if PACKETVER >= 20061218 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#endif + +// Packet: 0x029b +#if PACKETVER >= 20061226 +packetLen(0x029b, 70) // ZC_MER_INIT +#endif + +// Packet: 0x029c +#if PACKETVER >= 20061226 +packetLen(0x029c, 66) // ZC_MER_PROPERTY +#endif + +// Packet: 0x029d +#if PACKETVER >= 20061226 +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST +#endif + +// Packet: 0x029e +#if PACKETVER >= 20061226 +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE +#endif + +// Packet: 0x029f +#if PACKETVER >= 20061226 +packetLen(0x029f, 3) // CZ_MER_COMMAND +#endif + +// Packet: 0x02a0 +#if PACKETVER >= 20061226 +packetLen(0x02a0, 10) // CZ_UNUSED_MER_USE_SKILL +#endif + +// Packet: 0x02a1 +#if PACKETVER >= 20061226 +packetLen(0x02a1, 4) // CZ_UNUSED_MER_UPGRADE_SKILLLEVEL +#endif + +// Packet: 0x02a2 +#if PACKETVER >= 20061226 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE +#endif + + +#endif /* COMMON_PACKETS2006_LEN_AD_H */ diff --git a/src/common/packets/packets2006_len_main.h b/src/common/packets/packets2006_len_main.h new file mode 100644 index 000000000..4185bbe16 --- /dev/null +++ b/src/common/packets/packets2006_len_main.h @@ -0,0 +1,1919 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2006_LEN_MAIN_H +#define COMMON_PACKETS2006_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20061030 +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20060102 +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20060327 +packetLen(0x0072, 25) // CZ_ENTER +#elif PACKETVER >= 20060102 +packetLen(0x0072, 20) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20060327 +packetLen(0x007e, 102) // CZ_REQUEST_TIME +#elif PACKETVER >= 20060102 +packetLen(0x007e, 103) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20060327 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20060102 +packetLen(0x0085, 13) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20060327 +packetLen(0x0089, 8) // CZ_REQUEST_ACT +#elif PACKETVER >= 20060102 +packetLen(0x0089, 10) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20060327 +packetLen(0x008c, 11) +#elif PACKETVER >= 20060102 +packetLen(0x008c, 15) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20060327 +packetLen(0x0094, 14) // CZ_REQNAME +#elif PACKETVER >= 20060102 +packetLen(0x0094, 16) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20060327 +packetLen(0x009b, 26) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20060102 +packetLen(0x009b, 33) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20060327 +packetLen(0x009f, 14) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20060102 +packetLen(0x009f, 17) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20060327 +packetLen(0x00a2, 15) // CZ_ITEM_THROW +#elif PACKETVER >= 20060102 +packetLen(0x00a2, 12) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20060327 +packetLen(0x00a7, 8) +#elif PACKETVER >= 20060102 +packetLen(0x00a7, 6) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20060327 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20060102 +packetLen(0x00f5, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20060327 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME +#elif PACKETVER >= 20060102 +packetLen(0x00f7, 26) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20060327 +packetLen(0x0113, 22) // CZ_USE_SKILL +#elif PACKETVER >= 20060102 +packetLen(0x0113, 23) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20060327 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20060102 +packetLen(0x0116, 14) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20060327 +packetLen(0x0190, 19) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20060102 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 64) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +#if PACKETVER >= 20061207 +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD +#elif PACKETVER >= 20060102 +packetLen(0x023e, 4) // HC_REQUEST_CHARACTER_PASSWORD +#endif + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +#if PACKETVER >= 20060109 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY +#endif + +// Packet: 0x0262 +#if PACKETVER >= 20060109 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY +#endif + +// Packet: 0x0263 +#if PACKETVER >= 20060109 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS +#endif + +// Packet: 0x0264 +#if PACKETVER >= 20060109 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY +#endif + +// Packet: 0x0265 +#if PACKETVER >= 20060109 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY +#endif + +// Packet: 0x0266 +#if PACKETVER >= 20060109 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS +#endif + +// Packet: 0x0267 +#if PACKETVER >= 20060109 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST +#endif + +// Packet: 0x0268 +#if PACKETVER >= 20060109 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY +#endif + +// Packet: 0x0269 +#if PACKETVER >= 20060109 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY +#endif + +// Packet: 0x026a +#if PACKETVER >= 20060109 +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE +#endif + +// Packet: 0x026b +#if PACKETVER >= 20060109 +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY +#endif + +// Packet: 0x026c +#if PACKETVER >= 20060109 +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE +#endif + +// Packet: 0x026d +#if PACKETVER >= 20060109 +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS +#endif + +// Packet: 0x026f +#if PACKETVER >= 20060109 +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN +#endif + +// Packet: 0x0270 +#if PACKETVER >= 20060109 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO +#endif + +// Packet: 0x0271 +#if PACKETVER >= 20060126 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO +#elif PACKETVER >= 20060109 +packetLen(0x0271, 38) // CA_ACK_LOGIN_ACCOUNT_INFO +#endif + +// Packet: 0x0272 +#if PACKETVER >= 20060109 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO +#endif + +// Packet: 0x0273 +#if PACKETVER >= 20060313 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN +#elif PACKETVER >= 20060306 +packetLen(0x0273, 6) // CZ_REQ_MAIL_RETURN +#endif + +// Packet: 0x0274 +#if PACKETVER >= 20060306 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#endif + +// Packet: 0x0277 +#if PACKETVER >= 20060424 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG +#endif + +// Packet: 0x0278 +#if PACKETVER >= 20060607 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG +#endif + +// Packet: 0x0279 +#if PACKETVER >= 20060607 +packetLen(0x0279, 2) // CZ_HUNTINGLIST +#endif + +// Packet: 0x027a +#if PACKETVER >= 20060607 +packetLen(0x027a, -1) // ZC_HUNTINGLIST +#endif + +// Packet: 0x027b +#if PACKETVER >= 20060626 +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT +#endif + +// Packet: 0x027c +#if PACKETVER >= 20060626 +packetLen(0x027c, 60) // CA_LOGIN4 +#endif + +// Packet: 0x027d +#if PACKETVER >= 20060703 +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE +#endif + +// Packet: 0x027e +#if PACKETVER >= 20060710 +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT +#endif + +// Packet: 0x027f +#if PACKETVER >= 20060821 +packetLen(0x027f, 8) // CA_CLIENT_TYPE +#elif PACKETVER >= 20060731 +packetLen(0x027f, 4) // CA_CLIENT_TYPE +#endif + +// Packet: 0x0280 +#if PACKETVER >= 20060918 +packetLen(0x0280, 12) // ZC_GANGSI_POINT +#elif PACKETVER >= 20060904 +packetLen(0x0280, 10) // ZC_GANGSI_POINT +#endif + +// Packet: 0x0281 +#if PACKETVER >= 20060918 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#elif PACKETVER >= 20060904 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +#if PACKETVER >= 20060918 +packetLen(0x0282, 284) // ZC_GANGSI_RANK +#elif PACKETVER >= 20060904 +packetLen(0x0282, 282) // ZC_GANGSI_RANK +#endif + +// Packet: 0x0283 +#if PACKETVER >= 20060904 +packetLen(0x0283, 6) // ZC_AID +#endif + +// Packet: 0x0284 +#if PACKETVER >= 20060911 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 +#endif + +// Packet: 0x0285 +#if PACKETVER >= 20060918 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION +#endif + +// Packet: 0x0286 +#if PACKETVER >= 20060918 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION +#endif + +// Packet: 0x028a +#if PACKETVER >= 20060927 +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE +#endif + +// Packet: 0x028b +#if PACKETVER >= 20061030 +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED +#endif + +// Packet: 0x028c +#if PACKETVER >= 20061030 +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED +#endif + +// Packet: 0x028d +#if PACKETVER >= 20061030 +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME +#endif + +// Packet: 0x028e +#if PACKETVER >= 20061030 +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME +#endif + +// Packet: 0x028f +#if PACKETVER >= 20061030 +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME +#endif + +// Packet: 0x0290 +#if PACKETVER >= 20061030 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME +#endif + +// Packet: 0x0291 +#if PACKETVER >= 20061030 +packetLen(0x0291, 4) // ZC_MSG +#endif + +// Packet: 0x0292 +#if PACKETVER >= 20061030 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION +#endif + +// Packet: 0x0293 +#if PACKETVER >= 20061204 +packetLen(0x0293, 70) // ZC_BOSS_INFO +#elif PACKETVER >= 20061030 +packetLen(0x0293, 66) // ZC_BOSS_INFO +#endif + +// Packet: 0x0294 +#if PACKETVER >= 20061204 +packetLen(0x0294, 10) // ZC_READ_BOOK +#endif + +// Packet: 0x0295 +#if PACKETVER >= 20061218 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20061211 +packetLen(0x0295, 4) // ZC_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0296 +#if PACKETVER >= 20061218 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20061211 +packetLen(0x0296, 4) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0297 +#if PACKETVER >= 20061218 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20061211 +packetLen(0x0297, 4) // ZC_CART_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0298 +#if PACKETVER >= 20061211 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER +#endif + +// Packet: 0x0299 +#if PACKETVER >= 20061211 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE +#endif + +// Packet: 0x029a +#if PACKETVER >= 20061218 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#endif + +// Packet: 0x029b +#if PACKETVER >= 20061226 +packetLen(0x029b, 70) // ZC_MER_INIT +#endif + +// Packet: 0x029c +#if PACKETVER >= 20061226 +packetLen(0x029c, 66) // ZC_MER_PROPERTY +#endif + +// Packet: 0x029d +#if PACKETVER >= 20061226 +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST +#endif + +// Packet: 0x029e +#if PACKETVER >= 20061226 +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE +#endif + +// Packet: 0x029f +#if PACKETVER >= 20061226 +packetLen(0x029f, 3) // CZ_MER_COMMAND +#endif + +// Packet: 0x02a0 +#if PACKETVER >= 20061226 +packetLen(0x02a0, 10) // CZ_UNUSED_MER_USE_SKILL +#endif + +// Packet: 0x02a1 +#if PACKETVER >= 20061226 +packetLen(0x02a1, 4) // CZ_UNUSED_MER_UPGRADE_SKILLLEVEL +#endif + +// Packet: 0x02a2 +#if PACKETVER >= 20061226 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE +#endif + + +#endif /* COMMON_PACKETS2006_LEN_MAIN_H */ diff --git a/src/common/packets/packets2006_len_sak.h b/src/common/packets/packets2006_len_sak.h new file mode 100644 index 000000000..c158acf5b --- /dev/null +++ b/src/common/packets/packets2006_len_sak.h @@ -0,0 +1,1932 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2006_LEN_SAK_H +#define COMMON_PACKETS2006_LEN_SAK_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20061023 +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20060102 +packetLen(0x006d, 108) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20060327 +packetLen(0x0072, 26) // CZ_ENTER +#elif PACKETVER >= 20060102 +packetLen(0x0072, 34) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20060327 +packetLen(0x007e, 120) // CZ_REQUEST_TIME +#elif PACKETVER >= 20060102 +packetLen(0x007e, 113) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20060327 +packetLen(0x0085, 12) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20060102 +packetLen(0x0085, 17) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 13) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20060327 +packetLen(0x008c, 12) +#elif PACKETVER >= 20060102 +packetLen(0x008c, 8) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20060327 +packetLen(0x0094, 23) // CZ_REQNAME +#elif PACKETVER >= 20060102 +packetLen(0x0094, 31) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20060327 +packetLen(0x009b, 37) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20060102 +packetLen(0x009b, 32) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20060327 +packetLen(0x009f, 24) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20060102 +packetLen(0x009f, 19) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20060327 +packetLen(0x00a2, 11) // CZ_ITEM_THROW +#elif PACKETVER >= 20060102 +packetLen(0x00a2, 9) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20060327 +packetLen(0x00a7, 15) +#elif PACKETVER >= 20060102 +packetLen(0x00a7, 11) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 13) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20060327 +packetLen(0x00f7, 26) // CZ_REQUEST_TIME +#elif PACKETVER >= 20060102 +packetLen(0x00f7, 18) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20060327 +packetLen(0x0113, 40) // CZ_USE_SKILL +#elif PACKETVER >= 20060102 +packetLen(0x0113, 33) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20060327 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20060102 +packetLen(0x0116, 12) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20060327 +packetLen(0x0190, 18) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20060102 +packetLen(0x0190, 24) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 64) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +#if PACKETVER >= 20061207 +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD +#elif PACKETVER >= 20060102 +packetLen(0x023e, 4) // HC_REQUEST_CHARACTER_PASSWORD +#endif + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +#if PACKETVER >= 20060109 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY +#endif + +// Packet: 0x0262 +#if PACKETVER >= 20060109 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY +#endif + +// Packet: 0x0263 +#if PACKETVER >= 20060109 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS +#endif + +// Packet: 0x0264 +#if PACKETVER >= 20060109 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY +#endif + +// Packet: 0x0265 +#if PACKETVER >= 20060109 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY +#endif + +// Packet: 0x0266 +#if PACKETVER >= 20060109 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS +#endif + +// Packet: 0x0267 +#if PACKETVER >= 20060109 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST +#endif + +// Packet: 0x0268 +#if PACKETVER >= 20060109 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY +#endif + +// Packet: 0x0269 +#if PACKETVER >= 20060109 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY +#endif + +// Packet: 0x026a +#if PACKETVER >= 20060109 +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE +#endif + +// Packet: 0x026b +#if PACKETVER >= 20060109 +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY +#endif + +// Packet: 0x026c +#if PACKETVER >= 20060109 +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE +#endif + +// Packet: 0x026d +#if PACKETVER >= 20060109 +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS +#endif + +// Packet: 0x026f +#if PACKETVER >= 20060109 +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN +#endif + +// Packet: 0x0270 +#if PACKETVER >= 20060109 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO +#endif + +// Packet: 0x0271 +#if PACKETVER >= 20060126 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO +#elif PACKETVER >= 20060109 +packetLen(0x0271, 38) // CA_ACK_LOGIN_ACCOUNT_INFO +#endif + +// Packet: 0x0272 +#if PACKETVER >= 20060109 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO +#endif + +// Packet: 0x0273 +#if PACKETVER >= 20060313 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN +#elif PACKETVER >= 20060306 +packetLen(0x0273, 6) // CZ_REQ_MAIL_RETURN +#endif + +// Packet: 0x0274 +#if PACKETVER >= 20060306 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#endif + +// Packet: 0x0277 +#if PACKETVER >= 20060424 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG +#endif + +// Packet: 0x0278 +#if PACKETVER >= 20060607 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG +#endif + +// Packet: 0x0279 +#if PACKETVER >= 20060607 +packetLen(0x0279, 2) // CZ_HUNTINGLIST +#endif + +// Packet: 0x027a +#if PACKETVER >= 20060607 +packetLen(0x027a, -1) // ZC_HUNTINGLIST +#endif + +// Packet: 0x027b +#if PACKETVER >= 20060626 +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT +#endif + +// Packet: 0x027c +#if PACKETVER >= 20060626 +packetLen(0x027c, 60) // CA_LOGIN4 +#endif + +// Packet: 0x027d +#if PACKETVER >= 20060703 +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE +#endif + +// Packet: 0x027e +#if PACKETVER >= 20060710 +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT +#endif + +// Packet: 0x027f +#if PACKETVER >= 20060821 +packetLen(0x027f, 8) // CA_CLIENT_TYPE +#elif PACKETVER >= 20060731 +packetLen(0x027f, 4) // CA_CLIENT_TYPE +#endif + +// Packet: 0x0280 +#if PACKETVER >= 20060918 +packetLen(0x0280, 12) // ZC_GANGSI_POINT +#elif PACKETVER >= 20060904 +packetLen(0x0280, 10) // ZC_GANGSI_POINT +#endif + +// Packet: 0x0281 +#if PACKETVER >= 20060918 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#elif PACKETVER >= 20060904 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +#if PACKETVER >= 20060918 +packetLen(0x0282, 284) // ZC_GANGSI_RANK +#elif PACKETVER >= 20060904 +packetLen(0x0282, 282) // ZC_GANGSI_RANK +#endif + +// Packet: 0x0283 +#if PACKETVER >= 20060904 +packetLen(0x0283, 6) // ZC_AID +#endif + +// Packet: 0x0284 +#if PACKETVER >= 20060911 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 +#endif + +// Packet: 0x0285 +#if PACKETVER >= 20060918 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION +#endif + +// Packet: 0x0286 +#if PACKETVER >= 20060918 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION +#endif + +// Packet: 0x0287 +#if PACKETVER >= 20061204 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#endif + +// Packet: 0x0288 +#if PACKETVER >= 20061204 +packetLen(0x0288, 6) // CZ_PC_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0289 +#if PACKETVER >= 20061204 +packetLen(0x0289, 8) // ZC_PC_CASH_POINT_UPDATE +#endif + +// Packet: 0x028a +#if PACKETVER >= 20060927 +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE +#endif + +// Packet: 0x028b +#if PACKETVER >= 20061023 +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED +#endif + +// Packet: 0x028c +#if PACKETVER >= 20061023 +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED +#endif + +// Packet: 0x028d +#if PACKETVER >= 20061023 +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME +#endif + +// Packet: 0x028e +#if PACKETVER >= 20061023 +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME +#endif + +// Packet: 0x028f +#if PACKETVER >= 20061023 +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME +#endif + +// Packet: 0x0290 +#if PACKETVER >= 20061023 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME +#endif + +// Packet: 0x0291 +#if PACKETVER >= 20061030 +packetLen(0x0291, 4) // ZC_MSG +#endif + +// Packet: 0x0292 +#if PACKETVER >= 20061030 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION +#endif + +// Packet: 0x0293 +#if PACKETVER >= 20061204 +packetLen(0x0293, 70) // ZC_BOSS_INFO +#elif PACKETVER >= 20061030 +packetLen(0x0293, 66) // ZC_BOSS_INFO +#endif + +// Packet: 0x0294 +#if PACKETVER >= 20061204 +packetLen(0x0294, 10) // ZC_READ_BOOK +#endif + +// Packet: 0x0295 +#if PACKETVER >= 20061218 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20061211 +packetLen(0x0295, 4) // ZC_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0296 +#if PACKETVER >= 20061218 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20061211 +packetLen(0x0296, 4) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0297 +#if PACKETVER >= 20061218 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20061211 +packetLen(0x0297, 4) // ZC_CART_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0298 +#if PACKETVER >= 20061211 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER +#endif + +// Packet: 0x0299 +#if PACKETVER >= 20061211 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE +#endif + +// Packet: 0x029a +#if PACKETVER >= 20061218 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#endif + +// Packet: 0x029b +#if PACKETVER >= 20061226 +packetLen(0x029b, 70) // ZC_MER_INIT +#endif + +// Packet: 0x029c +#if PACKETVER >= 20061226 +packetLen(0x029c, 66) // ZC_MER_PROPERTY +#endif + +// Packet: 0x029d +#if PACKETVER >= 20061226 +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST +#endif + +// Packet: 0x029e +#if PACKETVER >= 20061226 +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE +#endif + +// Packet: 0x029f +#if PACKETVER >= 20061226 +packetLen(0x029f, 3) // CZ_MER_COMMAND +#endif + +// Packet: 0x02a0 +#if PACKETVER >= 20061226 +packetLen(0x02a0, 10) // CZ_UNUSED_MER_USE_SKILL +#endif + +// Packet: 0x02a1 +#if PACKETVER >= 20061226 +packetLen(0x02a1, 4) // CZ_UNUSED_MER_UPGRADE_SKILLLEVEL +#endif + +// Packet: 0x02a2 +#if PACKETVER >= 20061226 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE +#endif + + +#endif /* COMMON_PACKETS2006_LEN_SAK_H */ diff --git a/src/common/packets/packets2007_len_ad.h b/src/common/packets/packets2007_len_ad.h new file mode 100644 index 000000000..f7c2a7e87 --- /dev/null +++ b/src/common/packets/packets2007_len_ad.h @@ -0,0 +1,2223 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2007_LEN_AD_H +#define COMMON_PACKETS2007_LEN_AD_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20070212 +packetLen(0x0072, 22) // CZ_ENTER +#elif PACKETVER >= 20070108 +packetLen(0x0072, 14) // CZ_ENTER +#elif PACKETVER >= 20070102 +packetLen(0x0072, 25) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +#if PACKETVER >= 20071127 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20070102 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY +#endif + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +#if PACKETVER >= 20071127 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20070102 +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC +#endif + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20070212 +packetLen(0x007e, 105) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070108 +packetLen(0x007e, 109) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070102 +packetLen(0x007e, 102) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20070212 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20070108 +packetLen(0x0085, 18) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20070102 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20070212 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#elif PACKETVER >= 20070108 +packetLen(0x0089, 14) // CZ_REQUEST_ACT +#elif PACKETVER >= 20070102 +packetLen(0x0089, 8) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20070212 +packetLen(0x008c, 14) +#elif PACKETVER >= 20070108 +packetLen(0x008c, 10) +#elif PACKETVER >= 20070102 +packetLen(0x008c, 11) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20070212 +packetLen(0x0094, 19) // CZ_REQNAME +#elif PACKETVER >= 20070108 +packetLen(0x0094, 25) // CZ_REQNAME +#elif PACKETVER >= 20070102 +packetLen(0x0094, 14) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20070212 +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20070108 +packetLen(0x009b, 32) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20070102 +packetLen(0x009b, 26) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20070212 +packetLen(0x009f, 20) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20070108 +packetLen(0x009f, 18) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20070102 +packetLen(0x009f, 14) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20070212 +packetLen(0x00a2, 14) // CZ_ITEM_THROW +#elif PACKETVER >= 20070108 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20070102 +packetLen(0x00a2, 15) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20070212 +packetLen(0x00a7, 9) +#elif PACKETVER >= 20070108 +packetLen(0x00a7, 14) +#elif PACKETVER >= 20070102 +packetLen(0x00a7, 8) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20070212 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20070108 +packetLen(0x00f5, 14) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20070102 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20070212 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070108 +packetLen(0x00f7, 12) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070102 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20070212 +packetLen(0x0113, 25) // CZ_USE_SKILL +#elif PACKETVER >= 20070108 +packetLen(0x0113, 29) // CZ_USE_SKILL +#elif PACKETVER >= 20070102 +packetLen(0x0113, 22) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20070212 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20070108 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20070102 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20070212 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20070108 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20070102 +packetLen(0x0190, 19) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +#if PACKETVER >= 20070528 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20070102 +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +#if PACKETVER >= 20071127 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20070102 +packetLen(0x022c, 64) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +#if PACKETVER >= 20070423 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20070416 +// removed +#elif PACKETVER >= 20070227 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#endif + +// Packet: 0x0288 +#if PACKETVER >= 20070711 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20070423 +packetLen(0x0288, 6) // CZ_PC_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20070416 +// removed +#elif PACKETVER >= 20070227 +packetLen(0x0288, 6) // CZ_PC_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0289 +#if PACKETVER >= 20070711 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE +#elif PACKETVER >= 20070423 +packetLen(0x0289, 8) // ZC_PC_CASH_POINT_UPDATE +#elif PACKETVER >= 20070416 +// removed +#elif PACKETVER >= 20070227 +packetLen(0x0289, 8) // ZC_PC_CASH_POINT_UPDATE +#endif + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +#if PACKETVER >= 20071127 +packetLen(0x029b, 80) // ZC_MER_INIT +#elif PACKETVER >= 20070122 +packetLen(0x029b, 72) // ZC_MER_INIT +#elif PACKETVER >= 20070102 +packetLen(0x029b, 70) // ZC_MER_INIT +#endif + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a3 +#if PACKETVER >= 20070129 +// removed +#elif PACKETVER >= 20070122 +packetLen(0x02a3, 18) // ZC_GAMEGUARD_LINGO_KEY +#endif + +// Packet: 0x02a4 +#if PACKETVER >= 20070129 +// removed +#elif PACKETVER >= 20070122 +packetLen(0x02a4, 2) // CZ_GAMEGUARD_LINGO_READY +#endif + +// Packet: 0x02a5 +#if PACKETVER >= 20070129 +packetLen(0x02a5, 8) // CZ_KSY_EVENT +#endif + +// Packet: 0x02a6 +#if PACKETVER >= 20070611 +packetLen(0x02a6, 22) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20070611 +packetLen(0x02a7, 22) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a8 +#if PACKETVER >= 20070611 +packetLen(0x02a8, 162) // ZC_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02a9 +#if PACKETVER >= 20070611 +packetLen(0x02a9, 58) // CZ_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02aa +#if PACKETVER >= 20070205 +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD +#endif + +// Packet: 0x02ab +#if PACKETVER >= 20070205 +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD +#endif + +// Packet: 0x02ac +#if PACKETVER >= 20070205 +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD +#endif + +// Packet: 0x02ad +#if PACKETVER >= 20070227 +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD +#endif + +// Packet: 0x02ae +#if PACKETVER >= 20070807 +// removed +#elif PACKETVER >= 20070711 +packetLen(0x02ae, 10) // ZC_UNUSED_SRPACKET_INIT +#endif + +// Packet: 0x02af +#if PACKETVER >= 20070807 +// removed +#elif PACKETVER >= 20070711 +packetLen(0x02af, 2) // CZ_SRPACKET_START +#endif + +// Packet: 0x02b0 +#if PACKETVER >= 20070514 +packetLen(0x02b0, 85) // CA_LOGIN_HAN +#endif + +// Packet: 0x02b1 +#if PACKETVER >= 20070724 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST +#endif + +// Packet: 0x02b2 +#if PACKETVER >= 20070807 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION +#endif + +// Packet: 0x02b3 +#if PACKETVER >= 20070821 +packetLen(0x02b3, 107) // ZC_ADD_QUEST +#elif PACKETVER >= 20070813 +packetLen(0x02b3, 103) // ZC_ADD_QUEST +#elif PACKETVER >= 20070731 +packetLen(0x02b3, 31) // ZC_ADD_QUEST +#elif PACKETVER >= 20070703 +packetLen(0x02b3, 7) // ZC_ADD_QUEST +#elif PACKETVER >= 20070622 +packetLen(0x02b3, 26) // ZC_ADD_QUEST +#endif + +// Packet: 0x02b4 +#if PACKETVER >= 20070622 +packetLen(0x02b4, 6) // ZC_DEL_QUEST +#endif + +// Packet: 0x02b5 +#if PACKETVER >= 20070813 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT +#elif PACKETVER >= 20070807 +// removed +#elif PACKETVER >= 20070703 +packetLen(0x02b5, 12) // ZC_UPDATE_MISSION_HUNT +#elif PACKETVER >= 20070622 +packetLen(0x02b5, 18) // ZC_UPDATE_MISSION_HUNT +#endif + +// Packet: 0x02b6 +#if PACKETVER >= 20070622 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST +#endif + +// Packet: 0x02b7 +#if PACKETVER >= 20070807 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST +#elif PACKETVER >= 20070622 +packetLen(0x02b7, 10) // ZC_ACTIVE_QUEST +#endif + +// Packet: 0x02b8 +#if PACKETVER >= 20070604 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY +#endif + +// Packet: 0x02b9 +#if PACKETVER >= 20070611 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST +#endif + +// Packet: 0x02ba +#if PACKETVER >= 20070618 +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE +#elif PACKETVER >= 20070611 +packetLen(0x02ba, 9) // CZ_SHORTCUT_KEY_CHANGE +#endif + +// Packet: 0x02bb +#if PACKETVER >= 20070622 +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED +#elif PACKETVER >= 20070605 +packetLen(0x02bb, 4) // ZC_EQUIPITEM_DAMAGED +#endif + +// Packet: 0x02bc +#if PACKETVER >= 20070622 +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME +#endif + +// Packet: 0x02bf +#if PACKETVER >= 20070807 +packetLen(0x02bf, 10) // ZC_SRPACKETR2_INIT +#endif + +// Packet: 0x02c0 +#if PACKETVER >= 20070807 +packetLen(0x02c0, 2) // CZ_SRPACKETR2_START +#endif + +// Packet: 0x02c1 +#if PACKETVER >= 20070813 +packetLen(0x02c1, -1) // ZC_NPC_CHAT +#endif + +// Packet: 0x02c2 +#if PACKETVER >= 20070821 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG +#endif + +// Packet: 0x02c3 +#if PACKETVER >= 20070828 +// removed +#elif PACKETVER >= 20070821 +packetLen(0x02c3, 4) +#endif + +// Packet: 0x02c4 +#if PACKETVER >= 20070821 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +#if PACKETVER >= 20070821 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK +#endif + +// Packet: 0x02c6 +#if PACKETVER >= 20070821 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c7 +#if PACKETVER >= 20070821 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK +#endif + +// Packet: 0x02c8 +#if PACKETVER >= 20070821 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG +#endif + +// Packet: 0x02c9 +#if PACKETVER >= 20070821 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG +#endif + +// Packet: 0x02ca +#if PACKETVER >= 20070821 +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR +#endif + +// Packet: 0x02cb +#if PACKETVER >= 20071023 +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO +#elif PACKETVER >= 20070828 +packetLen(0x02cb, 20) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO +#endif + +// Packet: 0x02cc +#if PACKETVER >= 20070828 +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY +#endif + +// Packet: 0x02cd +#if PACKETVER >= 20071023 +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO +#elif PACKETVER >= 20070828 +packetLen(0x02cd, 26) // ZC_MEMORIALDUNGEON_INFO +#endif + +// Packet: 0x02ce +#if PACKETVER >= 20070828 +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY +#endif + +// Packet: 0x02cf +#if PACKETVER >= 20070828 +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND +#endif + +// Packet: 0x02d0 +#if PACKETVER >= 20070904 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 +#endif + +// Packet: 0x02d1 +#if PACKETVER >= 20070904 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 +#endif + +// Packet: 0x02d2 +#if PACKETVER >= 20070904 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 +#endif + +// Packet: 0x02d3 +#if PACKETVER >= 20070904 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP +#endif + +// Packet: 0x02d4 +#if PACKETVER >= 20070904 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#endif + +// Packet: 0x02d5 +#if PACKETVER >= 20070911 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT +#endif + +// Packet: 0x02d6 +#if PACKETVER >= 20070918 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE +#endif + +// Packet: 0x02d7 +#if PACKETVER >= 20070918 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE +#endif + +// Packet: 0x02d8 +#if PACKETVER >= 20070918 +packetLen(0x02d8, 10) // CZ_CONFIG +#endif + +// Packet: 0x02d9 +#if PACKETVER >= 20070918 +packetLen(0x02d9, 10) // ZC_CONFIG +#endif + +// Packet: 0x02da +#if PACKETVER >= 20070918 +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY +#endif + +// Packet: 0x02db +#if PACKETVER >= 20071002 +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT +#endif + +// Packet: 0x02dc +#if PACKETVER >= 20071002 +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT +#endif + +// Packet: 0x02dd +#if PACKETVER >= 20071002 +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO +#endif + +// Packet: 0x02de +#if PACKETVER >= 20071002 +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT +#endif + +// Packet: 0x02df +#if PACKETVER >= 20071002 +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION +#endif + +// Packet: 0x02e0 +#if PACKETVER >= 20071002 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP +#endif + +// Packet: 0x02e1 +#if PACKETVER >= 20071113 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 +#endif + +// Packet: 0x02e2 +#if PACKETVER >= 20071120 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN +#endif + +// Packet: 0x02e3 +#if PACKETVER >= 20071120 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN +#endif + +// Packet: 0x02e4 +#if PACKETVER >= 20071120 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN +#endif + +// Packet: 0x02e5 +#if PACKETVER >= 20071120 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN +#endif + +// Packet: 0x02e6 +#if PACKETVER >= 20071120 +packetLen(0x02e6, 6) // CZ_BOT_CHECK +#endif + +// Packet: 0x02e7 +#if PACKETVER >= 20071127 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY +#endif + + +#endif /* COMMON_PACKETS2007_LEN_AD_H */ diff --git a/src/common/packets/packets2007_len_main.h b/src/common/packets/packets2007_len_main.h new file mode 100644 index 000000000..750ce6610 --- /dev/null +++ b/src/common/packets/packets2007_len_main.h @@ -0,0 +1,2217 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2007_LEN_MAIN_H +#define COMMON_PACKETS2007_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20070212 +packetLen(0x0072, 22) // CZ_ENTER +#elif PACKETVER >= 20070108 +packetLen(0x0072, 14) // CZ_ENTER +#elif PACKETVER >= 20070102 +packetLen(0x0072, 25) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +#if PACKETVER >= 20071127 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20070102 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY +#endif + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +#if PACKETVER >= 20071127 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20070102 +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC +#endif + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20070212 +packetLen(0x007e, 105) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070108 +packetLen(0x007e, 109) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070102 +packetLen(0x007e, 102) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20070212 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20070108 +packetLen(0x0085, 18) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20070102 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20070212 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#elif PACKETVER >= 20070108 +packetLen(0x0089, 14) // CZ_REQUEST_ACT +#elif PACKETVER >= 20070102 +packetLen(0x0089, 8) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20070212 +packetLen(0x008c, 14) +#elif PACKETVER >= 20070108 +packetLen(0x008c, 10) +#elif PACKETVER >= 20070102 +packetLen(0x008c, 11) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20070212 +packetLen(0x0094, 19) // CZ_REQNAME +#elif PACKETVER >= 20070108 +packetLen(0x0094, 25) // CZ_REQNAME +#elif PACKETVER >= 20070102 +packetLen(0x0094, 14) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20070212 +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20070108 +packetLen(0x009b, 32) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20070102 +packetLen(0x009b, 26) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20070212 +packetLen(0x009f, 20) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20070108 +packetLen(0x009f, 18) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20070102 +packetLen(0x009f, 14) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20070212 +packetLen(0x00a2, 14) // CZ_ITEM_THROW +#elif PACKETVER >= 20070108 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20070102 +packetLen(0x00a2, 15) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20070212 +packetLen(0x00a7, 9) +#elif PACKETVER >= 20070108 +packetLen(0x00a7, 14) +#elif PACKETVER >= 20070102 +packetLen(0x00a7, 8) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20070212 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20070108 +packetLen(0x00f5, 14) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20070102 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20070212 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070108 +packetLen(0x00f7, 12) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070102 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20070212 +packetLen(0x0113, 25) // CZ_USE_SKILL +#elif PACKETVER >= 20070108 +packetLen(0x0113, 29) // CZ_USE_SKILL +#elif PACKETVER >= 20070102 +packetLen(0x0113, 22) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20070212 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20070108 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20070102 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20070212 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20070108 +packetLen(0x0190, 9) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20070102 +packetLen(0x0190, 19) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +#if PACKETVER >= 20070528 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20070102 +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +#if PACKETVER >= 20071127 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20070102 +packetLen(0x022c, 64) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +#if PACKETVER >= 20070423 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20070416 +// removed +#elif PACKETVER >= 20070227 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#endif + +// Packet: 0x0288 +#if PACKETVER >= 20070711 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20070423 +packetLen(0x0288, 6) // CZ_PC_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20070416 +// removed +#elif PACKETVER >= 20070227 +packetLen(0x0288, 6) // CZ_PC_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0289 +#if PACKETVER >= 20070711 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE +#elif PACKETVER >= 20070423 +packetLen(0x0289, 8) // ZC_PC_CASH_POINT_UPDATE +#elif PACKETVER >= 20070416 +// removed +#elif PACKETVER >= 20070227 +packetLen(0x0289, 8) // ZC_PC_CASH_POINT_UPDATE +#endif + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +#if PACKETVER >= 20071127 +packetLen(0x029b, 80) // ZC_MER_INIT +#elif PACKETVER >= 20070122 +packetLen(0x029b, 72) // ZC_MER_INIT +#elif PACKETVER >= 20070102 +packetLen(0x029b, 70) // ZC_MER_INIT +#endif + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a3 +#if PACKETVER >= 20070129 +// removed +#elif PACKETVER >= 20070122 +packetLen(0x02a3, 18) // ZC_GAMEGUARD_LINGO_KEY +#endif + +// Packet: 0x02a4 +#if PACKETVER >= 20070129 +// removed +#elif PACKETVER >= 20070122 +packetLen(0x02a4, 2) // CZ_GAMEGUARD_LINGO_READY +#endif + +// Packet: 0x02a5 +#if PACKETVER >= 20070129 +packetLen(0x02a5, 8) // CZ_KSY_EVENT +#endif + +// Packet: 0x02a6 +#if PACKETVER >= 20070611 +packetLen(0x02a6, 22) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20070611 +packetLen(0x02a7, 22) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a8 +#if PACKETVER >= 20070611 +packetLen(0x02a8, 162) // ZC_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02a9 +#if PACKETVER >= 20070611 +packetLen(0x02a9, 58) // CZ_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02aa +#if PACKETVER >= 20070205 +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD +#endif + +// Packet: 0x02ab +#if PACKETVER >= 20070205 +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD +#endif + +// Packet: 0x02ac +#if PACKETVER >= 20070205 +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD +#endif + +// Packet: 0x02ad +#if PACKETVER >= 20070227 +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD +#endif + +// Packet: 0x02ae +#if PACKETVER >= 20070807 +// removed +#elif PACKETVER >= 20070711 +packetLen(0x02ae, 10) // ZC_UNUSED_SRPACKET_INIT +#endif + +// Packet: 0x02af +#if PACKETVER >= 20070807 +// removed +#elif PACKETVER >= 20070711 +packetLen(0x02af, 2) // CZ_SRPACKET_START +#endif + +// Packet: 0x02b0 +#if PACKETVER >= 20070514 +packetLen(0x02b0, 85) // CA_LOGIN_HAN +#endif + +// Packet: 0x02b1 +#if PACKETVER >= 20070724 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST +#endif + +// Packet: 0x02b2 +#if PACKETVER >= 20070807 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION +#endif + +// Packet: 0x02b3 +#if PACKETVER >= 20070821 +packetLen(0x02b3, 107) // ZC_ADD_QUEST +#elif PACKETVER >= 20070813 +packetLen(0x02b3, 103) // ZC_ADD_QUEST +#elif PACKETVER >= 20070731 +packetLen(0x02b3, 31) // ZC_ADD_QUEST +#elif PACKETVER >= 20070703 +packetLen(0x02b3, 7) // ZC_ADD_QUEST +#elif PACKETVER >= 20070622 +packetLen(0x02b3, 26) // ZC_ADD_QUEST +#endif + +// Packet: 0x02b4 +#if PACKETVER >= 20070622 +packetLen(0x02b4, 6) // ZC_DEL_QUEST +#endif + +// Packet: 0x02b5 +#if PACKETVER >= 20070813 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT +#elif PACKETVER >= 20070807 +// removed +#elif PACKETVER >= 20070703 +packetLen(0x02b5, 12) // ZC_UPDATE_MISSION_HUNT +#elif PACKETVER >= 20070622 +packetLen(0x02b5, 18) // ZC_UPDATE_MISSION_HUNT +#endif + +// Packet: 0x02b6 +#if PACKETVER >= 20070622 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST +#endif + +// Packet: 0x02b7 +#if PACKETVER >= 20070807 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST +#elif PACKETVER >= 20070622 +packetLen(0x02b7, 10) // ZC_ACTIVE_QUEST +#endif + +// Packet: 0x02b8 +#if PACKETVER >= 20070604 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY +#endif + +// Packet: 0x02b9 +#if PACKETVER >= 20070611 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST +#endif + +// Packet: 0x02ba +#if PACKETVER >= 20070618 +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE +#elif PACKETVER >= 20070611 +packetLen(0x02ba, 9) // CZ_SHORTCUT_KEY_CHANGE +#endif + +// Packet: 0x02bb +#if PACKETVER >= 20070622 +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED +#elif PACKETVER >= 20070605 +packetLen(0x02bb, 4) // ZC_EQUIPITEM_DAMAGED +#endif + +// Packet: 0x02bc +#if PACKETVER >= 20070622 +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME +#endif + +// Packet: 0x02bf +#if PACKETVER >= 20070807 +packetLen(0x02bf, 10) // ZC_SRPACKETR2_INIT +#endif + +// Packet: 0x02c0 +#if PACKETVER >= 20070807 +packetLen(0x02c0, 2) // CZ_SRPACKETR2_START +#endif + +// Packet: 0x02c1 +#if PACKETVER >= 20070813 +packetLen(0x02c1, -1) // ZC_NPC_CHAT +#endif + +// Packet: 0x02c2 +#if PACKETVER >= 20070821 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG +#endif + +// Packet: 0x02c3 +#if PACKETVER >= 20070828 +// removed +#elif PACKETVER >= 20070821 +packetLen(0x02c3, 4) +#endif + +// Packet: 0x02c4 +#if PACKETVER >= 20070821 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +#if PACKETVER >= 20070821 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK +#endif + +// Packet: 0x02c6 +#if PACKETVER >= 20070821 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c7 +#if PACKETVER >= 20070821 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK +#endif + +// Packet: 0x02c8 +#if PACKETVER >= 20070821 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG +#endif + +// Packet: 0x02c9 +#if PACKETVER >= 20070821 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG +#endif + +// Packet: 0x02ca +#if PACKETVER >= 20070821 +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR +#endif + +// Packet: 0x02cb +#if PACKETVER >= 20071023 +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO +#elif PACKETVER >= 20070828 +packetLen(0x02cb, 20) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO +#endif + +// Packet: 0x02cc +#if PACKETVER >= 20070828 +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY +#endif + +// Packet: 0x02cd +#if PACKETVER >= 20071023 +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO +#elif PACKETVER >= 20070828 +packetLen(0x02cd, 26) // ZC_MEMORIALDUNGEON_INFO +#endif + +// Packet: 0x02ce +#if PACKETVER >= 20070828 +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY +#endif + +// Packet: 0x02cf +#if PACKETVER >= 20070828 +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND +#endif + +// Packet: 0x02d0 +#if PACKETVER >= 20070904 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 +#endif + +// Packet: 0x02d1 +#if PACKETVER >= 20070904 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 +#endif + +// Packet: 0x02d2 +#if PACKETVER >= 20070904 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 +#endif + +// Packet: 0x02d3 +#if PACKETVER >= 20070904 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP +#endif + +// Packet: 0x02d4 +#if PACKETVER >= 20070904 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#endif + +// Packet: 0x02d5 +#if PACKETVER >= 20070911 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT +#endif + +// Packet: 0x02d6 +#if PACKETVER >= 20070918 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE +#endif + +// Packet: 0x02d7 +#if PACKETVER >= 20070918 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE +#endif + +// Packet: 0x02d8 +#if PACKETVER >= 20070918 +packetLen(0x02d8, 10) // CZ_CONFIG +#endif + +// Packet: 0x02d9 +#if PACKETVER >= 20070918 +packetLen(0x02d9, 10) // ZC_CONFIG +#endif + +// Packet: 0x02da +#if PACKETVER >= 20070918 +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY +#endif + +// Packet: 0x02db +#if PACKETVER >= 20071002 +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT +#endif + +// Packet: 0x02dc +#if PACKETVER >= 20071002 +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT +#endif + +// Packet: 0x02dd +#if PACKETVER >= 20071002 +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO +#endif + +// Packet: 0x02de +#if PACKETVER >= 20071002 +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT +#endif + +// Packet: 0x02df +#if PACKETVER >= 20071002 +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION +#endif + +// Packet: 0x02e0 +#if PACKETVER >= 20071002 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP +#endif + +// Packet: 0x02e1 +#if PACKETVER >= 20071113 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 +#endif + +// Packet: 0x02e2 +#if PACKETVER >= 20071120 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN +#endif + +// Packet: 0x02e3 +#if PACKETVER >= 20071120 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN +#endif + +// Packet: 0x02e4 +#if PACKETVER >= 20071120 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN +#endif + +// Packet: 0x02e5 +#if PACKETVER >= 20071120 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN +#endif + +// Packet: 0x02e6 +#if PACKETVER >= 20071120 +packetLen(0x02e6, 6) // CZ_BOT_CHECK +#endif + +// Packet: 0x02e7 +#if PACKETVER >= 20071127 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY +#endif + + +#endif /* COMMON_PACKETS2007_LEN_MAIN_H */ diff --git a/src/common/packets/packets2007_len_sak.h b/src/common/packets/packets2007_len_sak.h new file mode 100644 index 000000000..443613ef7 --- /dev/null +++ b/src/common/packets/packets2007_len_sak.h @@ -0,0 +1,2203 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2007_LEN_SAK_H +#define COMMON_PACKETS2007_LEN_SAK_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20070212 +packetLen(0x0072, 25) // CZ_ENTER +#elif PACKETVER >= 20070108 +packetLen(0x0072, 30) // CZ_ENTER +#elif PACKETVER >= 20070102 +packetLen(0x0072, 26) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +#if PACKETVER >= 20071106 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20070102 +packetLen(0x0078, 54) // ZC_NOTIFY_STANDENTRY +#endif + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +#if PACKETVER >= 20071106 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20070102 +packetLen(0x007c, 41) // ZC_NOTIFY_STANDENTRY_NPC +#endif + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20070212 +packetLen(0x007e, 102) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070102 +packetLen(0x007e, 120) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20070212 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20070108 +packetLen(0x0085, 14) // CZ_REQUEST_MOVE +#elif PACKETVER >= 20070102 +packetLen(0x0085, 12) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20070212 +packetLen(0x0089, 8) // CZ_REQUEST_ACT +#elif PACKETVER >= 20070108 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#elif PACKETVER >= 20070102 +packetLen(0x0089, 13) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20070212 +packetLen(0x008c, 11) +#elif PACKETVER >= 20070108 +packetLen(0x008c, 17) +#elif PACKETVER >= 20070102 +packetLen(0x008c, 12) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20070212 +packetLen(0x0094, 14) // CZ_REQNAME +#elif PACKETVER >= 20070108 +packetLen(0x0094, 17) // CZ_REQNAME +#elif PACKETVER >= 20070102 +packetLen(0x0094, 23) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20070212 +packetLen(0x009b, 26) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20070108 +packetLen(0x009b, 35) // CZ_CHANGE_DIRECTION +#elif PACKETVER >= 20070102 +packetLen(0x009b, 37) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20070212 +packetLen(0x009f, 14) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20070108 +packetLen(0x009f, 21) // CZ_ITEM_PICKUP +#elif PACKETVER >= 20070102 +packetLen(0x009f, 24) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20070212 +packetLen(0x00a2, 15) // CZ_ITEM_THROW +#elif PACKETVER >= 20070108 +packetLen(0x00a2, 10) // CZ_ITEM_THROW +#elif PACKETVER >= 20070102 +packetLen(0x00a2, 11) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20070108 +packetLen(0x00a7, 8) +#elif PACKETVER >= 20070102 +packetLen(0x00a7, 15) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20070212 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20070108 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#elif PACKETVER >= 20070102 +packetLen(0x00f5, 13) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20070212 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070108 +packetLen(0x00f7, 15) // CZ_REQUEST_TIME +#elif PACKETVER >= 20070102 +packetLen(0x00f7, 26) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20070212 +packetLen(0x0113, 22) // CZ_USE_SKILL +#elif PACKETVER >= 20070102 +packetLen(0x0113, 40) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20070212 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20070108 +packetLen(0x0116, 19) // CZ_USE_SKILL_TOGROUND +#elif PACKETVER >= 20070102 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20070212 +packetLen(0x0190, 19) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20070108 +packetLen(0x0190, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#elif PACKETVER >= 20070102 +packetLen(0x0190, 18) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +#if PACKETVER >= 20070507 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20070102 +packetLen(0x01fd, 4) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +#if PACKETVER >= 20071106 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20070102 +packetLen(0x022c, 64) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +#if PACKETVER >= 20070711 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20070102 +packetLen(0x0288, 6) // CZ_PC_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0289 +#if PACKETVER >= 20070711 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE +#elif PACKETVER >= 20070102 +packetLen(0x0289, 8) // ZC_PC_CASH_POINT_UPDATE +#endif + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +#if PACKETVER >= 20071106 +packetLen(0x029b, 80) // ZC_MER_INIT +#elif PACKETVER >= 20070122 +packetLen(0x029b, 72) // ZC_MER_INIT +#elif PACKETVER >= 20070102 +packetLen(0x029b, 70) // ZC_MER_INIT +#endif + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a3 +#if PACKETVER >= 20070129 +// removed +#elif PACKETVER >= 20070122 +packetLen(0x02a3, 18) // ZC_GAMEGUARD_LINGO_KEY +#endif + +// Packet: 0x02a4 +#if PACKETVER >= 20070129 +// removed +#elif PACKETVER >= 20070122 +packetLen(0x02a4, 2) // CZ_GAMEGUARD_LINGO_READY +#endif + +// Packet: 0x02a5 +#if PACKETVER >= 20070129 +packetLen(0x02a5, 8) // CZ_KSY_EVENT +#endif + +// Packet: 0x02a6 +#if PACKETVER >= 20070611 +packetLen(0x02a6, 22) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20070611 +packetLen(0x02a7, 22) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a8 +#if PACKETVER >= 20070611 +packetLen(0x02a8, 162) // ZC_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02a9 +#if PACKETVER >= 20070611 +packetLen(0x02a9, 58) // CZ_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02aa +#if PACKETVER >= 20070205 +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD +#endif + +// Packet: 0x02ab +#if PACKETVER >= 20070205 +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD +#endif + +// Packet: 0x02ac +#if PACKETVER >= 20070205 +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD +#endif + +// Packet: 0x02ad +#if PACKETVER >= 20070227 +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD +#endif + +// Packet: 0x02ae +#if PACKETVER >= 20070807 +// removed +#elif PACKETVER >= 20070711 +packetLen(0x02ae, 10) // ZC_UNUSED_SRPACKET_INIT +#endif + +// Packet: 0x02af +#if PACKETVER >= 20070807 +// removed +#elif PACKETVER >= 20070711 +packetLen(0x02af, 2) // CZ_SRPACKET_START +#endif + +// Packet: 0x02b0 +#if PACKETVER >= 20070514 +packetLen(0x02b0, 85) // CA_LOGIN_HAN +#endif + +// Packet: 0x02b1 +#if PACKETVER >= 20070724 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST +#endif + +// Packet: 0x02b2 +#if PACKETVER >= 20070807 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION +#endif + +// Packet: 0x02b3 +#if PACKETVER >= 20070821 +packetLen(0x02b3, 107) // ZC_ADD_QUEST +#elif PACKETVER >= 20070813 +packetLen(0x02b3, 103) // ZC_ADD_QUEST +#elif PACKETVER >= 20070731 +packetLen(0x02b3, 31) // ZC_ADD_QUEST +#elif PACKETVER >= 20070628 +packetLen(0x02b3, 7) // ZC_ADD_QUEST +#elif PACKETVER >= 20070622 +packetLen(0x02b3, 26) // ZC_ADD_QUEST +#endif + +// Packet: 0x02b4 +#if PACKETVER >= 20070622 +packetLen(0x02b4, 6) // ZC_DEL_QUEST +#endif + +// Packet: 0x02b5 +#if PACKETVER >= 20070813 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT +#elif PACKETVER >= 20070807 +// removed +#elif PACKETVER >= 20070628 +packetLen(0x02b5, 12) // ZC_UPDATE_MISSION_HUNT +#elif PACKETVER >= 20070622 +packetLen(0x02b5, 18) // ZC_UPDATE_MISSION_HUNT +#endif + +// Packet: 0x02b6 +#if PACKETVER >= 20070622 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST +#endif + +// Packet: 0x02b7 +#if PACKETVER >= 20070807 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST +#elif PACKETVER >= 20070622 +packetLen(0x02b7, 10) // ZC_ACTIVE_QUEST +#endif + +// Packet: 0x02b8 +#if PACKETVER >= 20070604 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY +#endif + +// Packet: 0x02b9 +#if PACKETVER >= 20070611 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST +#endif + +// Packet: 0x02ba +#if PACKETVER >= 20070618 +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE +#elif PACKETVER >= 20070611 +packetLen(0x02ba, 9) // CZ_SHORTCUT_KEY_CHANGE +#endif + +// Packet: 0x02bb +#if PACKETVER >= 20070622 +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED +#elif PACKETVER >= 20070605 +packetLen(0x02bb, 4) // ZC_EQUIPITEM_DAMAGED +#endif + +// Packet: 0x02bc +#if PACKETVER >= 20070622 +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME +#endif + +// Packet: 0x02bf +#if PACKETVER >= 20070807 +packetLen(0x02bf, 10) // ZC_SRPACKETR2_INIT +#endif + +// Packet: 0x02c0 +#if PACKETVER >= 20070807 +packetLen(0x02c0, 2) // CZ_SRPACKETR2_START +#endif + +// Packet: 0x02c1 +#if PACKETVER >= 20070813 +packetLen(0x02c1, -1) // ZC_NPC_CHAT +#endif + +// Packet: 0x02c2 +#if PACKETVER >= 20070821 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG +#endif + +// Packet: 0x02c3 +#if PACKETVER >= 20070828 +// removed +#elif PACKETVER >= 20070821 +packetLen(0x02c3, 4) +#endif + +// Packet: 0x02c4 +#if PACKETVER >= 20070821 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +#if PACKETVER >= 20070821 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK +#endif + +// Packet: 0x02c6 +#if PACKETVER >= 20070821 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c7 +#if PACKETVER >= 20070821 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK +#endif + +// Packet: 0x02c8 +#if PACKETVER >= 20070821 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG +#endif + +// Packet: 0x02c9 +#if PACKETVER >= 20070821 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG +#endif + +// Packet: 0x02ca +#if PACKETVER >= 20070821 +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR +#endif + +// Packet: 0x02cb +#if PACKETVER >= 20071023 +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO +#elif PACKETVER >= 20070828 +packetLen(0x02cb, 20) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO +#endif + +// Packet: 0x02cc +#if PACKETVER >= 20070828 +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY +#endif + +// Packet: 0x02cd +#if PACKETVER >= 20071023 +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO +#elif PACKETVER >= 20070828 +packetLen(0x02cd, 26) // ZC_MEMORIALDUNGEON_INFO +#endif + +// Packet: 0x02ce +#if PACKETVER >= 20070828 +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY +#endif + +// Packet: 0x02cf +#if PACKETVER >= 20070828 +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND +#endif + +// Packet: 0x02d0 +#if PACKETVER >= 20070904 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 +#endif + +// Packet: 0x02d1 +#if PACKETVER >= 20070904 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 +#endif + +// Packet: 0x02d2 +#if PACKETVER >= 20070904 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 +#endif + +// Packet: 0x02d3 +#if PACKETVER >= 20070904 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP +#endif + +// Packet: 0x02d4 +#if PACKETVER >= 20070904 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#endif + +// Packet: 0x02d5 +#if PACKETVER >= 20070911 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT +#endif + +// Packet: 0x02d6 +#if PACKETVER >= 20070918 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE +#endif + +// Packet: 0x02d7 +#if PACKETVER >= 20070918 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE +#endif + +// Packet: 0x02d8 +#if PACKETVER >= 20070918 +packetLen(0x02d8, 10) // CZ_CONFIG +#endif + +// Packet: 0x02d9 +#if PACKETVER >= 20070918 +packetLen(0x02d9, 10) // ZC_CONFIG +#endif + +// Packet: 0x02da +#if PACKETVER >= 20070918 +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY +#endif + +// Packet: 0x02db +#if PACKETVER >= 20071002 +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT +#endif + +// Packet: 0x02dc +#if PACKETVER >= 20071002 +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT +#endif + +// Packet: 0x02dd +#if PACKETVER >= 20071002 +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO +#endif + +// Packet: 0x02de +#if PACKETVER >= 20071002 +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT +#endif + +// Packet: 0x02df +#if PACKETVER >= 20071002 +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION +#endif + +// Packet: 0x02e0 +#if PACKETVER >= 20071002 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP +#endif + +// Packet: 0x02e1 +#if PACKETVER >= 20071113 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 +#endif + +// Packet: 0x02e2 +#if PACKETVER >= 20071120 +packetLen(0x02e2, 14) // CZ_USE_ITEM_NEW_JAPEN +#endif + +// Packet: 0x02e3 +#if PACKETVER >= 20071120 +packetLen(0x02e3, 25) // CZ_USE_SKILL_NEW_JAPEN +#endif + +// Packet: 0x02e4 +#if PACKETVER >= 20071120 +packetLen(0x02e4, 8) // CZ_ITEM_PICKUP_NEW_JAPEN +#endif + +// Packet: 0x02e5 +#if PACKETVER >= 20071120 +packetLen(0x02e5, 8) // CZ_REQUEST_MOVE_NEW_JAPEN +#endif + +// Packet: 0x02e6 +#if PACKETVER >= 20071120 +packetLen(0x02e6, 6) // CZ_BOT_CHECK +#endif + +// Packet: 0x02e7 +#if PACKETVER >= 20071127 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY +#endif + + +#endif /* COMMON_PACKETS2007_LEN_SAK_H */ diff --git a/src/common/packets/packets2008_len_ad.h b/src/common/packets/packets2008_len_ad.h new file mode 100644 index 000000000..0d0aaf186 --- /dev/null +++ b/src/common/packets/packets2008_len_ad.h @@ -0,0 +1,18487 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2008_LEN_AD_H +#define COMMON_PACKETS2008_LEN_AD_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +#if PACKETVER >= 20080701 +packetLen(0x0073, 71) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080624 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080617 +packetLen(0x0073, 32) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080603 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080528 +packetLen(0x0073, 6) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080520 +packetLen(0x0073, 2) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080513 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080507 +packetLen(0x0073, 97) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080429 +packetLen(0x0073, 2) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080422 +packetLen(0x0073, 4) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080415 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080408 +packetLen(0x0073, 24) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080401 +packetLen(0x0073, 10) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080325 +packetLen(0x0073, 5) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080318 +packetLen(0x0073, 3) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080311 +packetLen(0x0073, 6) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080304 +packetLen(0x0073, 14) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080226 +packetLen(0x0073, 53) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080219 +packetLen(0x0073, 22) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080124 +packetLen(0x0073, 66) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080102 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER +#endif + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +#if PACKETVER >= 20080701 +packetLen(0x0075, 30) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080624 +packetLen(0x0075, 5) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080617 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080610 +packetLen(0x0075, 8) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080603 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080528 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080520 +packetLen(0x0075, 12) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080513 +packetLen(0x0075, 30) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080507 +packetLen(0x0075, 8) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080429 +packetLen(0x0075, 26) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080422 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080408 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080401 +packetLen(0x0075, 39) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080325 +packetLen(0x0075, 4) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080318 +packetLen(0x0075, 2) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080311 +packetLen(0x0075, 30) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080304 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080226 +packetLen(0x0075, 8) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080219 +packetLen(0x0075, 28) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080124 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080102 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#endif + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +#if PACKETVER >= 20080701 +packetLen(0x0077, 2) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080624 +packetLen(0x0077, 6) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080617 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080610 +packetLen(0x0077, 14) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080603 +packetLen(0x0077, 86) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080528 +packetLen(0x0077, 8) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080520 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080422 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080415 +packetLen(0x0077, 4) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080408 +packetLen(0x0077, 13) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080401 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080325 +packetLen(0x0077, 10) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080318 +packetLen(0x0077, 8) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080311 +packetLen(0x0077, 30) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080304 +packetLen(0x0077, 10) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080226 +packetLen(0x0077, 14) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080219 +packetLen(0x0077, 2) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080124 +packetLen(0x0077, 3) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080102 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER +#endif + +// Packet: 0x0078 +#if PACKETVER >= 20080701 +packetLen(0x0078, 20) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080617 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080603 +packetLen(0x0078, 14) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080528 +packetLen(0x0078, 22) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080520 +packetLen(0x0078, 14) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080507 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080429 +packetLen(0x0078, 8) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080415 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080408 +packetLen(0x0078, 14) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080325 +packetLen(0x0078, 8) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080318 +packetLen(0x0078, 2) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0078, 53) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0078, 11) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080226 +packetLen(0x0078, 6) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080124 +packetLen(0x0078, 32) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +#endif + +// Packet: 0x0079 +#if PACKETVER >= 20080701 +packetLen(0x0079, 4) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080617 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080610 +packetLen(0x0079, 3) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080528 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080520 +packetLen(0x0079, 54) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080513 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080507 +packetLen(0x0079, 57) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080429 +packetLen(0x0079, 10) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080422 +packetLen(0x0079, 14) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080415 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080401 +packetLen(0x0079, 6) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080325 +packetLen(0x0079, 7) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080318 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0079, 8) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0079, 4) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080226 +packetLen(0x0079, 2) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0079, 27) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080124 +packetLen(0x0079, 2) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY +#endif + +// Packet: 0x007a +#if PACKETVER >= 20080701 +packetLen(0x007a, 2) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080617 +packetLen(0x007a, 6) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080610 +packetLen(0x007a, 53) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080513 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080507 +packetLen(0x007a, 3) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080429 +packetLen(0x007a, 8) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080408 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080401 +packetLen(0x007a, 114) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080325 +packetLen(0x007a, 22) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080318 +packetLen(0x007a, 282) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080311 +packetLen(0x007a, 5) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080304 +packetLen(0x007a, 2) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080226 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080219 +packetLen(0x007a, 29) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080124 +packetLen(0x007a, 2) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080102 +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY +#endif + +// Packet: 0x007b +#if PACKETVER >= 20080603 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080528 +packetLen(0x007b, 42) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080520 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080513 +packetLen(0x007b, 11) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080507 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080429 +packetLen(0x007b, 6) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080415 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080408 +packetLen(0x007b, 2) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080325 +packetLen(0x007b, 6) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080318 +packetLen(0x007b, 11) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080311 +packetLen(0x007b, 186) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080304 +packetLen(0x007b, 30) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080226 +packetLen(0x007b, 5) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080219 +packetLen(0x007b, 2) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080124 +packetLen(0x007b, 14) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080102 +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY +#endif + +// Packet: 0x007c +#if PACKETVER >= 20080701 +packetLen(0x007c, 5) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080624 +packetLen(0x007c, 16) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080528 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080520 +packetLen(0x007c, 3) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080513 +packetLen(0x007c, 7) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080429 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080422 +packetLen(0x007c, 65) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080415 +packetLen(0x007c, 8) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080408 +packetLen(0x007c, 11) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080401 +packetLen(0x007c, 8) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080325 +packetLen(0x007c, 10) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080318 +packetLen(0x007c, 2) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080311 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080304 +packetLen(0x007c, 3) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080226 +packetLen(0x007c, 8) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080219 +packetLen(0x007c, 186) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080124 +packetLen(0x007c, 31) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080102 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +#endif + +// Packet: 0x007d +#if PACKETVER >= 20080617 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080610 +packetLen(0x007d, 26) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080603 +packetLen(0x007d, 6) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080528 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080520 +packetLen(0x007d, 9) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080513 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080507 +packetLen(0x007d, 10) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080429 +packetLen(0x007d, 11) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080422 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080415 +packetLen(0x007d, 30) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080401 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080325 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080311 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080304 +packetLen(0x007d, 14) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080226 +packetLen(0x007d, 26) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080219 +packetLen(0x007d, 3) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080124 +packetLen(0x007d, 22) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080102 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#endif + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +#if PACKETVER >= 20080624 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080617 +packetLen(0x007f, 5) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080603 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080528 +packetLen(0x007f, 13) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080520 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080513 +packetLen(0x007f, 10) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080507 +packetLen(0x007f, 3) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080429 +packetLen(0x007f, 6) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080422 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080415 +packetLen(0x007f, 7) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080408 +packetLen(0x007f, 3) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080401 +packetLen(0x007f, 182) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080325 +packetLen(0x007f, 10) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080318 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080311 +packetLen(0x007f, 10) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080304 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080226 +packetLen(0x007f, 54) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080219 +packetLen(0x007f, 4) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080124 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080102 +packetLen(0x007f, 6) // ZC_NOTIFY_TIME +#endif + +// Packet: 0x0080 +#if PACKETVER >= 20080624 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080617 +packetLen(0x0080, 2) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080603 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080528 +packetLen(0x0080, 22) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080520 +packetLen(0x0080, 10) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080513 +packetLen(0x0080, 6) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080422 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080415 +packetLen(0x0080, 5) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080325 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080318 +packetLen(0x0080, 60) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080311 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080304 +packetLen(0x0080, 28) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080226 +packetLen(0x0080, 4) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080219 +packetLen(0x0080, 10) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080124 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080102 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH +#endif + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +#if PACKETVER >= 20080624 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080617 +packetLen(0x0083, 34) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080610 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080603 +packetLen(0x0083, 13) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080528 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080520 +packetLen(0x0083, 4) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080513 +packetLen(0x0083, 5) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080507 +packetLen(0x0083, 30) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080429 +packetLen(0x0083, 282) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080422 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080415 +packetLen(0x0083, 5) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080408 +packetLen(0x0083, 28) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080325 +packetLen(0x0083, 30) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080318 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080311 +packetLen(0x0083, 21) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080304 +packetLen(0x0083, 10) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080226 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080219 +packetLen(0x0083, 10) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080102 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT +#endif + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +#if PACKETVER >= 20080701 +packetLen(0x0086, 2) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080610 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080603 +packetLen(0x0086, 3) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080528 +packetLen(0x0086, 17) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080520 +packetLen(0x0086, 30) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080513 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080507 +packetLen(0x0086, 32) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080429 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080422 +packetLen(0x0086, 24) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080415 +packetLen(0x0086, 8) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080408 +packetLen(0x0086, 10) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080401 +packetLen(0x0086, 22) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080325 +packetLen(0x0086, 2) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080318 +packetLen(0x0086, 22) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080311 +packetLen(0x0086, 14) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080304 +packetLen(0x0086, 79) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080226 +packetLen(0x0086, 14) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080219 +packetLen(0x0086, 10) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080124 +packetLen(0x0086, 7) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080102 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE +#endif + +// Packet: 0x0087 +#if PACKETVER >= 20080701 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080624 +packetLen(0x0087, 4) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080610 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080603 +packetLen(0x0087, 27) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080528 +packetLen(0x0087, 282) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080520 +packetLen(0x0087, 10) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080513 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080429 +packetLen(0x0087, 2) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080422 +packetLen(0x0087, 6) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080415 +packetLen(0x0087, 14) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080408 +packetLen(0x0087, 11) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080401 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080325 +packetLen(0x0087, 14) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080318 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0087, 26) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080226 +packetLen(0x0087, 6) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0087, 14) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080124 +packetLen(0x0087, 31) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE +#endif + +// Packet: 0x0088 +#if PACKETVER >= 20080701 +packetLen(0x0088, 19) // ZC_STOPMOVE +#elif PACKETVER >= 20080624 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080617 +packetLen(0x0088, 10) // ZC_STOPMOVE +#elif PACKETVER >= 20080610 +packetLen(0x0088, 19) // ZC_STOPMOVE +#elif PACKETVER >= 20080603 +packetLen(0x0088, 60) // ZC_STOPMOVE +#elif PACKETVER >= 20080528 +packetLen(0x0088, 15) // ZC_STOPMOVE +#elif PACKETVER >= 20080520 +packetLen(0x0088, 6) // ZC_STOPMOVE +#elif PACKETVER >= 20080513 +packetLen(0x0088, 7) // ZC_STOPMOVE +#elif PACKETVER >= 20080429 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080422 +packetLen(0x0088, 3) // ZC_STOPMOVE +#elif PACKETVER >= 20080415 +packetLen(0x0088, 86) // ZC_STOPMOVE +#elif PACKETVER >= 20080408 +packetLen(0x0088, 10) // ZC_STOPMOVE +#elif PACKETVER >= 20080401 +packetLen(0x0088, 282) // ZC_STOPMOVE +#elif PACKETVER >= 20080325 +packetLen(0x0088, 3) // ZC_STOPMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0088, 97) // ZC_STOPMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0088, 30) // ZC_STOPMOVE +#elif PACKETVER >= 20080124 +packetLen(0x0088, 4) // ZC_STOPMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0088, 10) // ZC_STOPMOVE +#endif + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +#if PACKETVER >= 20080624 +packetLen(0x008a, 6) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080617 +packetLen(0x008a, 2) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080610 +packetLen(0x008a, 28) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080603 +packetLen(0x008a, 68) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080528 +packetLen(0x008a, 9) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080520 +packetLen(0x008a, 29) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080513 +packetLen(0x008a, 11) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080507 +packetLen(0x008a, 26) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080429 +packetLen(0x008a, 23) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080422 +packetLen(0x008a, 6) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080408 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080401 +packetLen(0x008a, 28) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080325 +packetLen(0x008a, 30) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080318 +packetLen(0x008a, 5) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080304 +packetLen(0x008a, 6) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080226 +packetLen(0x008a, 10) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080219 +packetLen(0x008a, 6) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080124 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080102 +packetLen(0x008a, 29) // ZC_NOTIFY_ACT +#endif + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +#if PACKETVER >= 20080701 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080624 +packetLen(0x008d, 10) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080617 +packetLen(0x008d, 282) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080610 +packetLen(0x008d, 60) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080603 +packetLen(0x008d, 6) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080528 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080520 +packetLen(0x008d, 4) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080513 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080507 +packetLen(0x008d, 66) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080429 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080422 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080415 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080408 +packetLen(0x008d, 6) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080401 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080325 +packetLen(0x008d, 7) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080318 +packetLen(0x008d, 8) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080311 +packetLen(0x008d, 7) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080304 +packetLen(0x008d, 4) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080226 +packetLen(0x008d, 6) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080219 +packetLen(0x008d, 79) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080124 +packetLen(0x008d, 6) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080102 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#endif + +// Packet: 0x008e +#if PACKETVER >= 20080701 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080624 +packetLen(0x008e, 5) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080617 +packetLen(0x008e, 6) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080610 +packetLen(0x008e, 10) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080603 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080528 +packetLen(0x008e, 7) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080520 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080513 +packetLen(0x008e, 282) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080507 +packetLen(0x008e, 2) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080429 +packetLen(0x008e, 6) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080422 +packetLen(0x008e, 3) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080415 +packetLen(0x008e, 2) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080408 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080401 +packetLen(0x008e, 4) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080325 +packetLen(0x008e, 28) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080318 +packetLen(0x008e, 186) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080311 +packetLen(0x008e, 7) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080304 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080226 +packetLen(0x008e, 7) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080219 +packetLen(0x008e, 33) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080102 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#endif + +// Packet: 0x0090 +#if PACKETVER >= 20080701 +packetLen(0x0090, 10) // CZ_CONTACTNPC +#elif PACKETVER >= 20080617 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20080610 +packetLen(0x0090, 6) // CZ_CONTACTNPC +#elif PACKETVER >= 20080528 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20080520 +packetLen(0x0090, 3) // CZ_CONTACTNPC +#elif PACKETVER >= 20080513 +packetLen(0x0090, 7) // CZ_CONTACTNPC +#elif PACKETVER >= 20080507 +packetLen(0x0090, 4) // CZ_CONTACTNPC +#elif PACKETVER >= 20080429 +packetLen(0x0090, 19) // CZ_CONTACTNPC +#elif PACKETVER >= 20080422 +packetLen(0x0090, 7) // CZ_CONTACTNPC +#elif PACKETVER >= 20080415 +packetLen(0x0090, 36) // CZ_CONTACTNPC +#elif PACKETVER >= 20080408 +packetLen(0x0090, 20) // CZ_CONTACTNPC +#elif PACKETVER >= 20080401 +packetLen(0x0090, 53) // CZ_CONTACTNPC +#elif PACKETVER >= 20080325 +packetLen(0x0090, 5) // CZ_CONTACTNPC +#elif PACKETVER >= 20080318 +packetLen(0x0090, 6) // CZ_CONTACTNPC +#elif PACKETVER >= 20080311 +packetLen(0x0090, 2) // CZ_CONTACTNPC +#elif PACKETVER >= 20080304 +packetLen(0x0090, 17) // CZ_CONTACTNPC +#elif PACKETVER >= 20080226 +packetLen(0x0090, 4) // CZ_CONTACTNPC +#elif PACKETVER >= 20080219 +packetLen(0x0090, 2) // CZ_CONTACTNPC +#elif PACKETVER >= 20080124 +packetLen(0x0090, 24) // CZ_CONTACTNPC +#elif PACKETVER >= 20080102 +packetLen(0x0090, 7) // CZ_CONTACTNPC +#endif + +// Packet: 0x0091 +#if PACKETVER >= 20080701 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080624 +packetLen(0x0091, 8) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080617 +packetLen(0x0091, 2) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080610 +packetLen(0x0091, 21) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080603 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080528 +packetLen(0x0091, 14) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080520 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080513 +packetLen(0x0091, 5) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080507 +packetLen(0x0091, 6) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080429 +packetLen(0x0091, 30) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080422 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080415 +packetLen(0x0091, 182) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080408 +packetLen(0x0091, 58) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080401 +packetLen(0x0091, 15) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080325 +packetLen(0x0091, 2) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080318 +packetLen(0x0091, 6) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0091, 8) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0091, 57) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080226 +packetLen(0x0091, 4) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080124 +packetLen(0x0091, 79) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE +#endif + +// Packet: 0x0092 +#if PACKETVER >= 20080701 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080624 +packetLen(0x0092, 15) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080617 +packetLen(0x0092, 7) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080610 +packetLen(0x0092, 20) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080603 +packetLen(0x0092, 26) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080528 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080520 +packetLen(0x0092, 6) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080513 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080507 +packetLen(0x0092, 7) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080429 +packetLen(0x0092, 32) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080422 +packetLen(0x0092, 6) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080415 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080408 +packetLen(0x0092, 21) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080401 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080325 +packetLen(0x0092, 26) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080318 +packetLen(0x0092, 81) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0092, 10) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0092, 5) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080226 +packetLen(0x0092, 3) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080124 +packetLen(0x0092, 4) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE +#endif + +// Packet: 0x0093 +#if PACKETVER >= 20080701 +packetLen(0x0093, 4) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080624 +packetLen(0x0093, 6) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080617 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080610 +packetLen(0x0093, 5) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080528 +packetLen(0x0093, 3) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080520 +packetLen(0x0093, 22) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080513 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080507 +packetLen(0x0093, 26) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080422 +packetLen(0x0093, 6) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080415 +packetLen(0x0093, 3) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080408 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080401 +packetLen(0x0093, 3) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080325 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080318 +packetLen(0x0093, 8) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080311 +packetLen(0x0093, 11) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080304 +packetLen(0x0093, 26) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080226 +packetLen(0x0093, 5) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080219 +packetLen(0x0093, 67) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080124 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080102 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE +#endif + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +#if PACKETVER >= 20080701 +packetLen(0x0095, 6) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080624 +packetLen(0x0095, 10) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080610 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080603 +packetLen(0x0095, 54) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080528 +packetLen(0x0095, 2) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080520 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080513 +packetLen(0x0095, 9) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080507 +packetLen(0x0095, 22) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080408 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080401 +packetLen(0x0095, 10) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080325 +packetLen(0x0095, 4) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080318 +packetLen(0x0095, 3) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080311 +packetLen(0x0095, 59) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080304 +packetLen(0x0095, 30) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080226 +packetLen(0x0095, 39) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080219 +packetLen(0x0095, 2) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080102 +packetLen(0x0095, 30) // ZC_ACK_REQNAME +#endif + +// Packet: 0x0096 +#if PACKETVER >= 20080701 +packetLen(0x0096, 10) // CZ_WHISPER +#elif PACKETVER >= 20080610 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080603 +packetLen(0x0096, 10) // CZ_WHISPER +#elif PACKETVER >= 20080528 +packetLen(0x0096, 31) // CZ_WHISPER +#elif PACKETVER >= 20080513 +packetLen(0x0096, 6) // CZ_WHISPER +#elif PACKETVER >= 20080422 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080415 +packetLen(0x0096, 26) // CZ_WHISPER +#elif PACKETVER >= 20080401 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080325 +packetLen(0x0096, 5) // CZ_WHISPER +#elif PACKETVER >= 20080318 +packetLen(0x0096, 7) // CZ_WHISPER +#elif PACKETVER >= 20080311 +packetLen(0x0096, 10) // CZ_WHISPER +#elif PACKETVER >= 20080226 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080219 +packetLen(0x0096, 3) // CZ_WHISPER +#elif PACKETVER >= 20080124 +packetLen(0x0096, 6) // CZ_WHISPER +#elif PACKETVER >= 20080102 +packetLen(0x0096, -1) // CZ_WHISPER +#endif + +// Packet: 0x0097 +#if PACKETVER >= 20080701 +packetLen(0x0097, 282) // ZC_WHISPER +#elif PACKETVER >= 20080624 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20080617 +packetLen(0x0097, 10) // ZC_WHISPER +#elif PACKETVER >= 20080610 +packetLen(0x0097, 8) // ZC_WHISPER +#elif PACKETVER >= 20080603 +packetLen(0x0097, 5) // ZC_WHISPER +#elif PACKETVER >= 20080528 +packetLen(0x0097, 7) // ZC_WHISPER +#elif PACKETVER >= 20080520 +packetLen(0x0097, 8) // ZC_WHISPER +#elif PACKETVER >= 20080513 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20080507 +packetLen(0x0097, 30) // ZC_WHISPER +#elif PACKETVER >= 20080429 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20080422 +packetLen(0x0097, 29) // ZC_WHISPER +#elif PACKETVER >= 20080415 +packetLen(0x0097, 16) // ZC_WHISPER +#elif PACKETVER >= 20080408 +packetLen(0x0097, 30) // ZC_WHISPER +#elif PACKETVER >= 20080401 +packetLen(0x0097, 53) // ZC_WHISPER +#elif PACKETVER >= 20080325 +packetLen(0x0097, 26) // ZC_WHISPER +#elif PACKETVER >= 20080318 +packetLen(0x0097, 3) // ZC_WHISPER +#elif PACKETVER >= 20080311 +packetLen(0x0097, 33) // ZC_WHISPER +#elif PACKETVER >= 20080304 +packetLen(0x0097, 7) // ZC_WHISPER +#elif PACKETVER >= 20080219 +packetLen(0x0097, 23) // ZC_WHISPER +#elif PACKETVER >= 20080102 +packetLen(0x0097, -1) // ZC_WHISPER +#endif + +// Packet: 0x0098 +#if PACKETVER >= 20080701 +packetLen(0x0098, 8) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080624 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080617 +packetLen(0x0098, 24) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080610 +packetLen(0x0098, 26) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080528 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080520 +packetLen(0x0098, 16) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080513 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080507 +packetLen(0x0098, 13) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080429 +packetLen(0x0098, 58) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080408 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080401 +packetLen(0x0098, 26) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080325 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080318 +packetLen(0x0098, 26) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080311 +packetLen(0x0098, 60) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080304 +packetLen(0x0098, 182) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080226 +packetLen(0x0098, 2) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080219 +packetLen(0x0098, 8) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080124 +packetLen(0x0098, 10) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080102 +packetLen(0x0098, 3) // ZC_ACK_WHISPER +#endif + +// Packet: 0x0099 +#if PACKETVER >= 20080701 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080624 +packetLen(0x0099, 30) // CZ_BROADCAST +#elif PACKETVER >= 20080617 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080610 +packetLen(0x0099, 9) // CZ_BROADCAST +#elif PACKETVER >= 20080603 +packetLen(0x0099, 4) // CZ_BROADCAST +#elif PACKETVER >= 20080528 +packetLen(0x0099, 60) // CZ_BROADCAST +#elif PACKETVER >= 20080520 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080507 +packetLen(0x0099, 8) // CZ_BROADCAST +#elif PACKETVER >= 20080429 +packetLen(0x0099, 2) // CZ_BROADCAST +#elif PACKETVER >= 20080408 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080401 +packetLen(0x0099, 6) // CZ_BROADCAST +#elif PACKETVER >= 20080325 +packetLen(0x0099, 54) // CZ_BROADCAST +#elif PACKETVER >= 20080318 +packetLen(0x0099, 6) // CZ_BROADCAST +#elif PACKETVER >= 20080311 +packetLen(0x0099, 66) // CZ_BROADCAST +#elif PACKETVER >= 20080304 +packetLen(0x0099, 10) // CZ_BROADCAST +#elif PACKETVER >= 20080226 +packetLen(0x0099, 34) // CZ_BROADCAST +#elif PACKETVER >= 20080219 +packetLen(0x0099, 2) // CZ_BROADCAST +#elif PACKETVER >= 20080102 +packetLen(0x0099, -1) // CZ_BROADCAST +#endif + +// Packet: 0x009a +#if PACKETVER >= 20080701 +packetLen(0x009a, 3) // ZC_BROADCAST +#elif PACKETVER >= 20080617 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080610 +packetLen(0x009a, 90) // ZC_BROADCAST +#elif PACKETVER >= 20080603 +packetLen(0x009a, 29) // ZC_BROADCAST +#elif PACKETVER >= 20080528 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080520 +packetLen(0x009a, 10) // ZC_BROADCAST +#elif PACKETVER >= 20080513 +packetLen(0x009a, 28) // ZC_BROADCAST +#elif PACKETVER >= 20080422 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080415 +packetLen(0x009a, 33) // ZC_BROADCAST +#elif PACKETVER >= 20080408 +packetLen(0x009a, 9) // ZC_BROADCAST +#elif PACKETVER >= 20080325 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080318 +packetLen(0x009a, 59) // ZC_BROADCAST +#elif PACKETVER >= 20080311 +packetLen(0x009a, 57) // ZC_BROADCAST +#elif PACKETVER >= 20080304 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080226 +packetLen(0x009a, 4) // ZC_BROADCAST +#elif PACKETVER >= 20080219 +packetLen(0x009a, 10) // ZC_BROADCAST +#elif PACKETVER >= 20080124 +packetLen(0x009a, 4) // ZC_BROADCAST +#elif PACKETVER >= 20080102 +packetLen(0x009a, -1) // ZC_BROADCAST +#endif + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +#if PACKETVER >= 20080701 +packetLen(0x009c, 67) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080617 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080610 +packetLen(0x009c, 6) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080603 +packetLen(0x009c, 4) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080528 +packetLen(0x009c, 26) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080520 +packetLen(0x009c, 67) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080513 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080507 +packetLen(0x009c, 6) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080429 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080422 +packetLen(0x009c, 10) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080415 +packetLen(0x009c, 66) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080408 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080401 +packetLen(0x009c, 8) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080325 +packetLen(0x009c, 3) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080318 +packetLen(0x009c, 282) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080311 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080304 +packetLen(0x009c, 71) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080226 +packetLen(0x009c, 4) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080219 +packetLen(0x009c, 7) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080124 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080102 +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION +#endif + +// Packet: 0x009d +#if PACKETVER >= 20080701 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080624 +packetLen(0x009d, 10) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x009d, 13) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x009d, 3) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x009d, 6) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080528 +packetLen(0x009d, 8) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080520 +packetLen(0x009d, 10) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080513 +packetLen(0x009d, 29) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080507 +packetLen(0x009d, 59) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080429 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x009d, 6) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080415 +packetLen(0x009d, 32) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x009d, 26) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080325 +packetLen(0x009d, 57) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x009d, 13) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x009d, 19) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x009d, 57) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x009d, 10) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +#endif + +// Packet: 0x009e +#if PACKETVER >= 20080701 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080624 +packetLen(0x009e, 3) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x009e, 10) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x009e, 4) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080528 +packetLen(0x009e, 3) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080520 +packetLen(0x009e, 186) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080513 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080507 +packetLen(0x009e, 6) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080429 +packetLen(0x009e, 2) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x009e, 11) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080415 +packetLen(0x009e, 9) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x009e, 39) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x009e, 5) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x009e, 10) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x009e, 282) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x009e, 11) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x009e, 97) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +#if PACKETVER >= 20080701 +packetLen(0x00a0, 30) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080617 +packetLen(0x00a0, 6) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00a0, 26) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00a0, 8) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00a0, 3) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00a0, 14) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00a0, 12) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00a0, 8) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00a0, 8) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00a0, 6) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00a0, 13) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00a0, 28) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00a0, 27) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00a0, 39) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00a0, 5) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#endif + +// Packet: 0x00a1 +#if PACKETVER >= 20080701 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080624 +packetLen(0x00a1, 44) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080617 +packetLen(0x00a1, 60) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080528 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080520 +packetLen(0x00a1, 60) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080513 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080507 +packetLen(0x00a1, 11) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080422 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080415 +packetLen(0x00a1, 16) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080408 +packetLen(0x00a1, 3) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080401 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080325 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080318 +packetLen(0x00a1, 53) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080311 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080304 +packetLen(0x00a1, 21) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080226 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080219 +packetLen(0x00a1, 60) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080124 +packetLen(0x00a1, 30) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080102 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#endif + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +#if PACKETVER >= 20080701 +packetLen(0x00a3, 28) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00a3, 3) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a3, 10) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00a3, 4) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00a3, 15) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00a3, 10) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x00a3, 16) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00a3, 8) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x00a3, 28) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00a3, 4) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00a3, 2) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a3, 65) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00a3, 6) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a3, 30) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a3, 44) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#endif + +// Packet: 0x00a4 +#if PACKETVER >= 20080701 +packetLen(0x00a4, 86) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a4, 10) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00a4, 3) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00a4, 14) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00a4, 33) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x00a4, 60) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00a4, 22) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00a4, 2) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x00a4, 6) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00a4, 7) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00a4, 27) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a4, 6) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a4, 15) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a4, 30) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00a4, 10) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#endif + +// Packet: 0x00a5 +#if PACKETVER >= 20080617 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a5, 7) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00a5, 9) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00a5, 28) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00a5, 4) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x00a5, 8) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00a5, 9) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a5, 282) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00a5, 30) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a5, 28) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a5, 3) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00a5, 4) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#endif + +// Packet: 0x00a6 +#if PACKETVER >= 20080701 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00a6, 16) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00a6, 10) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00a6, 2) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00a6, 30) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00a6, 10) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00a6, 282) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00a6, 59) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x00a6, 7) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00a6, 10) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00a6, 3) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a6, 26) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a6, 16) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00a6, 2) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#endif + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +#if PACKETVER >= 20080701 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00a8, 6) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00a8, 6) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00a8, 10) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00a8, 90) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00a8, 3) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00a8, 13) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00a8, 4) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00a8, 2) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00a8, 30) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00a8, 6) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00a8, 3) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00a8, 10) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00a8, 20) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +#endif + +// Packet: 0x00a9 +#if PACKETVER >= 20080701 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080617 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080610 +packetLen(0x00a9, 282) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080603 +packetLen(0x00a9, 114) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080528 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080520 +packetLen(0x00a9, 79) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080513 +packetLen(0x00a9, 3) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080507 +packetLen(0x00a9, 26) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080429 +packetLen(0x00a9, 8) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080422 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080415 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080408 +packetLen(0x00a9, 2) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080401 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080325 +packetLen(0x00a9, 8) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080311 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080304 +packetLen(0x00a9, 11) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080226 +packetLen(0x00a9, 26) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080219 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080124 +packetLen(0x00a9, 10) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080102 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#endif + +// Packet: 0x00aa +#if PACKETVER >= 20080624 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00aa, 4) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00aa, 10) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00aa, 6) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00aa, 2) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00aa, 4) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00aa, 6) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080415 +packetLen(0x00aa, 3) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00aa, 31) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00aa, 16) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00aa, 55) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00aa, 3) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00aa, 11) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00aa, 2) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00aa, 6) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK +#endif + +// Packet: 0x00ab +#if PACKETVER >= 20080701 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080617 +packetLen(0x00ab, 6) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080610 +packetLen(0x00ab, 16) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080603 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080528 +packetLen(0x00ab, 53) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080520 +packetLen(0x00ab, 36) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080513 +packetLen(0x00ab, 26) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080507 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080429 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080422 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080415 +packetLen(0x00ab, 7) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080401 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080325 +packetLen(0x00ab, 8) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080318 +packetLen(0x00ab, 9) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080311 +packetLen(0x00ab, 14) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080304 +packetLen(0x00ab, 2) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080226 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080219 +packetLen(0x00ab, 57) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080124 +packetLen(0x00ab, 86) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080102 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#endif + +// Packet: 0x00ac +#if PACKETVER >= 20080701 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00ac, 8) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080617 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00ac, 3) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00ac, 10) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00ac, 67) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080415 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00ac, 8) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00ac, 3) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00ac, 10) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00ac, 3) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK +#endif + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +#if PACKETVER >= 20080701 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00af, 5) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00af, 10) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00af, 29) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00af, 2) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00af, 10) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00af, 2) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00af, 26) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00af, 2) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00af, 7) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00af, 4) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#endif + +// Packet: 0x00b0 +#if PACKETVER >= 20080701 +packetLen(0x00b0, 7) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x00b0, 3) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00b0, 6) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00b0, 3) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x00b0, 6) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00b0, 28) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00b0, 12) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00b0, 4) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00b0, 2) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00b0, 10) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00b0, 11) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00b0, 7) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00b0, 2) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +#endif + +// Packet: 0x00b1 +#if PACKETVER >= 20080701 +packetLen(0x00b1, 3) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00b1, 11) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00b1, 2) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00b1, 6) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00b1, 97) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00b1, 26) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00b1, 58) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00b1, 30) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00b1, 2) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00b1, 30) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00b1, 14) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00b1, 9) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE +#endif + +// Packet: 0x00b2 +#if PACKETVER >= 20080624 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080617 +packetLen(0x00b2, 10) // CZ_RESTART +#elif PACKETVER >= 20080610 +packetLen(0x00b2, 13) // CZ_RESTART +#elif PACKETVER >= 20080603 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080528 +packetLen(0x00b2, 2) // CZ_RESTART +#elif PACKETVER >= 20080520 +packetLen(0x00b2, 6) // CZ_RESTART +#elif PACKETVER >= 20080513 +packetLen(0x00b2, 58) // CZ_RESTART +#elif PACKETVER >= 20080507 +packetLen(0x00b2, 6) // CZ_RESTART +#elif PACKETVER >= 20080429 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080422 +packetLen(0x00b2, 3) // CZ_RESTART +#elif PACKETVER >= 20080415 +packetLen(0x00b2, 14) // CZ_RESTART +#elif PACKETVER >= 20080408 +packetLen(0x00b2, 67) // CZ_RESTART +#elif PACKETVER >= 20080401 +packetLen(0x00b2, 4) // CZ_RESTART +#elif PACKETVER >= 20080325 +packetLen(0x00b2, 5) // CZ_RESTART +#elif PACKETVER >= 20080318 +packetLen(0x00b2, 3) // CZ_RESTART +#elif PACKETVER >= 20080311 +packetLen(0x00b2, 5) // CZ_RESTART +#elif PACKETVER >= 20080304 +packetLen(0x00b2, 8) // CZ_RESTART +#elif PACKETVER >= 20080226 +packetLen(0x00b2, 9) // CZ_RESTART +#elif PACKETVER >= 20080219 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080124 +packetLen(0x00b2, 2) // CZ_RESTART +#elif PACKETVER >= 20080102 +packetLen(0x00b2, 3) // CZ_RESTART +#endif + +// Packet: 0x00b3 +#if PACKETVER >= 20080701 +packetLen(0x00b3, 14) // ZC_RESTART_ACK +#elif PACKETVER >= 20080617 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00b3, 6) // ZC_RESTART_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00b3, 30) // ZC_RESTART_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00b3, 6) // ZC_RESTART_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00b3, 2) // ZC_RESTART_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00b3, 4) // ZC_RESTART_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080415 +packetLen(0x00b3, 6) // ZC_RESTART_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00b3, 5) // ZC_RESTART_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00b3, 35) // ZC_RESTART_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00b3, 7) // ZC_RESTART_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00b3, 10) // ZC_RESTART_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00b3, 55) // ZC_RESTART_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00b3, 28) // ZC_RESTART_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00b3, 3) // ZC_RESTART_ACK +#endif + +// Packet: 0x00b4 +#if PACKETVER >= 20080617 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080610 +packetLen(0x00b4, 6) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080603 +packetLen(0x00b4, 33) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080528 +packetLen(0x00b4, 3) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080520 +packetLen(0x00b4, 10) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080513 +packetLen(0x00b4, 4) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080429 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080422 +packetLen(0x00b4, 6) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080415 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080408 +packetLen(0x00b4, 282) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080401 +packetLen(0x00b4, 34) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080325 +packetLen(0x00b4, 6) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080318 +packetLen(0x00b4, 2) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x00b4, 36) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x00b4, 2) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x00b4, 43) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x00b4, 4) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#endif + +// Packet: 0x00b5 +#if PACKETVER >= 20080701 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080624 +packetLen(0x00b5, 12) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080617 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080610 +packetLen(0x00b5, 3) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080603 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080528 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080520 +packetLen(0x00b5, 2) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080513 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080507 +packetLen(0x00b5, 5) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080429 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080422 +packetLen(0x00b5, 19) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080415 +packetLen(0x00b5, 14) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080408 +packetLen(0x00b5, 90) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080401 +packetLen(0x00b5, 14) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080325 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080318 +packetLen(0x00b5, 11) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x00b5, 8) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x00b5, 4) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x00b5, 30) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080124 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#endif + +// Packet: 0x00b6 +#if PACKETVER >= 20080701 +packetLen(0x00b6, 8) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080624 +packetLen(0x00b6, 7) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080617 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080610 +packetLen(0x00b6, 3) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080603 +packetLen(0x00b6, 39) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080528 +packetLen(0x00b6, 11) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080429 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080422 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080415 +packetLen(0x00b6, 3) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080408 +packetLen(0x00b6, 8) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080401 +packetLen(0x00b6, 3) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080325 +packetLen(0x00b6, 16) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080318 +packetLen(0x00b6, 12) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x00b6, 4) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x00b6, 3) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080124 +packetLen(0x00b6, 14) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#endif + +// Packet: 0x00b7 +#if PACKETVER >= 20080701 +packetLen(0x00b7, 22) // ZC_MENU_LIST +#elif PACKETVER >= 20080617 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080610 +packetLen(0x00b7, 2) // ZC_MENU_LIST +#elif PACKETVER >= 20080528 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080520 +packetLen(0x00b7, 58) // ZC_MENU_LIST +#elif PACKETVER >= 20080513 +packetLen(0x00b7, 6) // ZC_MENU_LIST +#elif PACKETVER >= 20080507 +packetLen(0x00b7, 20) // ZC_MENU_LIST +#elif PACKETVER >= 20080429 +packetLen(0x00b7, 2) // ZC_MENU_LIST +#elif PACKETVER >= 20080422 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080415 +packetLen(0x00b7, 5) // ZC_MENU_LIST +#elif PACKETVER >= 20080408 +packetLen(0x00b7, 14) // ZC_MENU_LIST +#elif PACKETVER >= 20080401 +packetLen(0x00b7, 8) // ZC_MENU_LIST +#elif PACKETVER >= 20080325 +packetLen(0x00b7, 6) // ZC_MENU_LIST +#elif PACKETVER >= 20080318 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080311 +packetLen(0x00b7, 42) // ZC_MENU_LIST +#elif PACKETVER >= 20080304 +packetLen(0x00b7, 13) // ZC_MENU_LIST +#elif PACKETVER >= 20080226 +packetLen(0x00b7, 32) // ZC_MENU_LIST +#elif PACKETVER >= 20080219 +packetLen(0x00b7, 3) // ZC_MENU_LIST +#elif PACKETVER >= 20080124 +packetLen(0x00b7, 21) // ZC_MENU_LIST +#elif PACKETVER >= 20080102 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#endif + +// Packet: 0x00b8 +#if PACKETVER >= 20080701 +packetLen(0x00b8, 20) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080624 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080617 +packetLen(0x00b8, 9) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080610 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080603 +packetLen(0x00b8, 6) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080528 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080520 +packetLen(0x00b8, 53) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080513 +packetLen(0x00b8, 8) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080507 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080429 +packetLen(0x00b8, 4) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080422 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080415 +packetLen(0x00b8, 11) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080408 +packetLen(0x00b8, 9) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080401 +packetLen(0x00b8, 30) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080325 +packetLen(0x00b8, 5) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080318 +packetLen(0x00b8, 6) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080311 +packetLen(0x00b8, 16) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080304 +packetLen(0x00b8, 28) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080226 +packetLen(0x00b8, 5) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080219 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080124 +packetLen(0x00b8, 4) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080102 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU +#endif + +// Packet: 0x00b9 +#if PACKETVER >= 20080701 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080624 +packetLen(0x00b9, 2) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080617 +packetLen(0x00b9, 9) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080610 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080603 +packetLen(0x00b9, 66) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080513 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080507 +packetLen(0x00b9, 30) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080429 +packetLen(0x00b9, 26) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080415 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080408 +packetLen(0x00b9, 2) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080401 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080325 +packetLen(0x00b9, 9) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080318 +packetLen(0x00b9, 11) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080311 +packetLen(0x00b9, 29) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080304 +packetLen(0x00b9, 10) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080226 +packetLen(0x00b9, 58) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080219 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080124 +packetLen(0x00b9, 8) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080102 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#endif + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +#if PACKETVER >= 20080701 +packetLen(0x00bb, 60) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x00bb, 4) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00bb, 36) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00bb, 6) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00bb, 10) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00bb, 13) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00bb, 55) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00bb, 6) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00bb, 3) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00bb, 20) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00bb, 2) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00bb, 182) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00bb, 12) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE +#endif + +// Packet: 0x00bc +#if PACKETVER >= 20080701 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00bc, 4) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080617 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00bc, 26) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00bc, 14) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00bc, 22) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00bc, 14) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080415 +packetLen(0x00bc, 44) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00bc, 11) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00bc, 3) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00bc, 7) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00bc, 3) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00bc, 14) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#endif + +// Packet: 0x00bd +#if PACKETVER >= 20080701 +packetLen(0x00bd, 60) // ZC_STATUS +#elif PACKETVER >= 20080624 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080617 +packetLen(0x00bd, 79) // ZC_STATUS +#elif PACKETVER >= 20080610 +packetLen(0x00bd, 18) // ZC_STATUS +#elif PACKETVER >= 20080603 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20080528 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080520 +packetLen(0x00bd, 26) // ZC_STATUS +#elif PACKETVER >= 20080513 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080507 +packetLen(0x00bd, 7) // ZC_STATUS +#elif PACKETVER >= 20080422 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080415 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20080401 +packetLen(0x00bd, 4) // ZC_STATUS +#elif PACKETVER >= 20080325 +packetLen(0x00bd, 7) // ZC_STATUS +#elif PACKETVER >= 20080318 +packetLen(0x00bd, 12) // ZC_STATUS +#elif PACKETVER >= 20080304 +packetLen(0x00bd, 2) // ZC_STATUS +#elif PACKETVER >= 20080226 +packetLen(0x00bd, 58) // ZC_STATUS +#elif PACKETVER >= 20080219 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20080124 +packetLen(0x00bd, 4) // ZC_STATUS +#elif PACKETVER >= 20080102 +packetLen(0x00bd, 44) // ZC_STATUS +#endif + +// Packet: 0x00be +#if PACKETVER >= 20080701 +packetLen(0x00be, 6) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x00be, 57) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00be, 44) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00be, 3) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00be, 54) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00be, 8) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00be, 30) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00be, 4) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00be, 4) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00be, 11) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00be, 10) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +#endif + +// Packet: 0x00bf +#if PACKETVER >= 20080610 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080603 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080528 +packetLen(0x00bf, 65) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080520 +packetLen(0x00bf, 8) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080513 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080507 +packetLen(0x00bf, 11) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080429 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080422 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080408 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080401 +packetLen(0x00bf, 32) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080325 +packetLen(0x00bf, 60) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080304 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080226 +packetLen(0x00bf, 29) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080219 +packetLen(0x00bf, 12) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080124 +packetLen(0x00bf, 6) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080102 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#endif + +// Packet: 0x00c0 +#if PACKETVER >= 20080701 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080624 +packetLen(0x00c0, 10) // ZC_EMOTION +#elif PACKETVER >= 20080617 +packetLen(0x00c0, 60) // ZC_EMOTION +#elif PACKETVER >= 20080610 +packetLen(0x00c0, 39) // ZC_EMOTION +#elif PACKETVER >= 20080603 +packetLen(0x00c0, 26) // ZC_EMOTION +#elif PACKETVER >= 20080528 +packetLen(0x00c0, 30) // ZC_EMOTION +#elif PACKETVER >= 20080520 +packetLen(0x00c0, 2) // ZC_EMOTION +#elif PACKETVER >= 20080513 +packetLen(0x00c0, 186) // ZC_EMOTION +#elif PACKETVER >= 20080507 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080429 +packetLen(0x00c0, 13) // ZC_EMOTION +#elif PACKETVER >= 20080422 +packetLen(0x00c0, 9) // ZC_EMOTION +#elif PACKETVER >= 20080415 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080408 +packetLen(0x00c0, 7) // ZC_EMOTION +#elif PACKETVER >= 20080401 +packetLen(0x00c0, 2) // ZC_EMOTION +#elif PACKETVER >= 20080325 +packetLen(0x00c0, 10) // ZC_EMOTION +#elif PACKETVER >= 20080318 +packetLen(0x00c0, 26) // ZC_EMOTION +#elif PACKETVER >= 20080304 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080226 +packetLen(0x00c0, 21) // ZC_EMOTION +#elif PACKETVER >= 20080219 +packetLen(0x00c0, 6) // ZC_EMOTION +#elif PACKETVER >= 20080124 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080102 +packetLen(0x00c0, 7) // ZC_EMOTION +#endif + +// Packet: 0x00c1 +#if PACKETVER >= 20080701 +packetLen(0x00c1, 6) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080610 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080603 +packetLen(0x00c1, 81) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080507 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080422 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080415 +packetLen(0x00c1, 57) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080401 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080325 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080318 +packetLen(0x00c1, 4) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080311 +packetLen(0x00c1, 16) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080304 +packetLen(0x00c1, 9) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080226 +packetLen(0x00c1, 6) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080219 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080124 +packetLen(0x00c1, 282) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080102 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#endif + +// Packet: 0x00c2 +#if PACKETVER >= 20080701 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080624 +packetLen(0x00c2, 8) // ZC_USER_COUNT +#elif PACKETVER >= 20080617 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080610 +packetLen(0x00c2, 2) // ZC_USER_COUNT +#elif PACKETVER >= 20080603 +packetLen(0x00c2, 90) // ZC_USER_COUNT +#elif PACKETVER >= 20080507 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080429 +packetLen(0x00c2, 16) // ZC_USER_COUNT +#elif PACKETVER >= 20080422 +packetLen(0x00c2, 4) // ZC_USER_COUNT +#elif PACKETVER >= 20080415 +packetLen(0x00c2, 5) // ZC_USER_COUNT +#elif PACKETVER >= 20080408 +packetLen(0x00c2, 2) // ZC_USER_COUNT +#elif PACKETVER >= 20080401 +packetLen(0x00c2, 26) // ZC_USER_COUNT +#elif PACKETVER >= 20080325 +packetLen(0x00c2, 10) // ZC_USER_COUNT +#elif PACKETVER >= 20080318 +packetLen(0x00c2, 54) // ZC_USER_COUNT +#elif PACKETVER >= 20080311 +packetLen(0x00c2, 4) // ZC_USER_COUNT +#elif PACKETVER >= 20080304 +packetLen(0x00c2, 39) // ZC_USER_COUNT +#elif PACKETVER >= 20080226 +packetLen(0x00c2, 282) // ZC_USER_COUNT +#elif PACKETVER >= 20080219 +packetLen(0x00c2, 4) // ZC_USER_COUNT +#elif PACKETVER >= 20080124 +packetLen(0x00c2, 3) // ZC_USER_COUNT +#elif PACKETVER >= 20080102 +packetLen(0x00c2, 6) // ZC_USER_COUNT +#endif + +// Packet: 0x00c3 +#if PACKETVER >= 20080701 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x00c3, 3) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00c3, 42) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00c3, 10) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00c3, 4) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00c3, 66) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00c3, 3) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00c3, 68) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00c3, 26) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00c3, 28) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00c3, 10) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +#endif + +// Packet: 0x00c4 +#if PACKETVER >= 20080701 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080624 +packetLen(0x00c4, 14) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080617 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080603 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080528 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080520 +packetLen(0x00c4, 2) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080513 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080507 +packetLen(0x00c4, 29) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080429 +packetLen(0x00c4, 71) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080422 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080415 +packetLen(0x00c4, 11) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080408 +packetLen(0x00c4, 2) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080401 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080325 +packetLen(0x00c4, 3) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080318 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080304 +packetLen(0x00c4, 4) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080226 +packetLen(0x00c4, 114) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080219 +packetLen(0x00c4, 2) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080124 +packetLen(0x00c4, 4) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080102 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#endif + +// Packet: 0x00c5 +#if PACKETVER >= 20080624 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080617 +packetLen(0x00c5, 9) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080610 +packetLen(0x00c5, 114) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080603 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080528 +packetLen(0x00c5, 10) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080520 +packetLen(0x00c5, 4) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080513 +packetLen(0x00c5, 6) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080507 +packetLen(0x00c5, 8) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080429 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080422 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080401 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080325 +packetLen(0x00c5, 30) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080318 +packetLen(0x00c5, 3) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080311 +packetLen(0x00c5, 9) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080124 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080102 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE +#endif + +// Packet: 0x00c6 +#if PACKETVER >= 20080617 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00c6, 8) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00c6, 8) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00c6, 21) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x00c6, 4) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00c6, 31) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c6, 5) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c6, 13) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c6, 3) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#endif + +// Packet: 0x00c7 +#if PACKETVER >= 20080701 +packetLen(0x00c7, 182) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00c7, 3) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00c7, 22) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00c7, 4) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x00c7, 53) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00c7, 26) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00c7, 58) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00c7, 90) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c7, 67) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c7, 5) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c7, 90) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#endif + +// Packet: 0x00c8 +#if PACKETVER >= 20080701 +packetLen(0x00c8, 2) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00c8, 4) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00c8, 15) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00c8, 6) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00c8, 66) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00c8, 2) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00c8, 14) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c8, 53) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c8, 10) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00c8, 6) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#endif + +// Packet: 0x00c9 +#if PACKETVER >= 20080701 +packetLen(0x00c9, 39) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00c9, 36) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00c9, 9) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00c9, 30) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00c9, 10) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00c9, 6) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c9, 6) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c9, 10) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00c9, 5) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#endif + +// Packet: 0x00ca +#if PACKETVER >= 20080610 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080603 +packetLen(0x00ca, 31) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080513 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080507 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080429 +packetLen(0x00ca, 7) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080422 +packetLen(0x00ca, 6) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080415 +packetLen(0x00ca, 17) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080408 +packetLen(0x00ca, 14) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080401 +packetLen(0x00ca, 2) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080325 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080318 +packetLen(0x00ca, 4) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080311 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080304 +packetLen(0x00ca, 9) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080226 +packetLen(0x00ca, 23) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080219 +packetLen(0x00ca, 86) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080124 +packetLen(0x00ca, 36) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080102 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#endif + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +#if PACKETVER >= 20080701 +packetLen(0x00cc, 33) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080617 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080610 +packetLen(0x00cc, 28) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080603 +packetLen(0x00cc, 2) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080520 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080513 +packetLen(0x00cc, 26) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080507 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080429 +packetLen(0x00cc, 10) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080422 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080415 +packetLen(0x00cc, 2) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080401 +packetLen(0x00cc, 3) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080325 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080318 +packetLen(0x00cc, 10) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080311 +packetLen(0x00cc, 14) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080304 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080226 +packetLen(0x00cc, 7) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080124 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080102 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#endif + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +#if PACKETVER >= 20080701 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080624 +packetLen(0x00ce, 4) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080617 +packetLen(0x00ce, 11) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080610 +packetLen(0x00ce, 22) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080603 +packetLen(0x00ce, 102) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080528 +packetLen(0x00ce, 11) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080520 +packetLen(0x00ce, 3) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080513 +packetLen(0x00ce, 9) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080507 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080429 +packetLen(0x00ce, 114) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080422 +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080415 +packetLen(0x00ce, 10) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080408 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080401 +packetLen(0x00ce, 30) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080325 +packetLen(0x00ce, 10) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080318 +packetLen(0x00ce, 7) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080311 +packetLen(0x00ce, 10) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080304 +packetLen(0x00ce, 8) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080226 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080124 +packetLen(0x00ce, 6) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080102 +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER +#endif + +// Packet: 0x00cf +#if PACKETVER >= 20080624 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080617 +packetLen(0x00cf, 30) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080610 +packetLen(0x00cf, 57) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080603 +packetLen(0x00cf, 6) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080528 +packetLen(0x00cf, 5) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080520 +packetLen(0x00cf, 8) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080513 +packetLen(0x00cf, 2) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080507 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080429 +packetLen(0x00cf, 5) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080422 +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080415 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080408 +packetLen(0x00cf, 6) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080401 +packetLen(0x00cf, 60) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080325 +packetLen(0x00cf, 2) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080318 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080311 +packetLen(0x00cf, 6) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080304 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080226 +packetLen(0x00cf, 16) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080219 +packetLen(0x00cf, 9) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080124 +packetLen(0x00cf, 11) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080102 +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC +#endif + +// Packet: 0x00d0 +#if PACKETVER >= 20080610 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080603 +packetLen(0x00d0, 10) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080528 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080520 +packetLen(0x00d0, 30) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080513 +packetLen(0x00d0, 114) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080507 +packetLen(0x00d0, 14) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080429 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080422 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080415 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080408 +packetLen(0x00d0, 4) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080401 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080325 +packetLen(0x00d0, 8) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080318 +packetLen(0x00d0, 14) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080311 +packetLen(0x00d0, 10) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080226 +packetLen(0x00d0, 2) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080219 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080124 +packetLen(0x00d0, 182) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080102 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#endif + +// Packet: 0x00d1 +#if PACKETVER >= 20080701 +packetLen(0x00d1, 26) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080624 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080610 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080603 +packetLen(0x00d1, 5) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080528 +packetLen(0x00d1, 10) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080520 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080513 +packetLen(0x00d1, 54) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080507 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080429 +packetLen(0x00d1, 3) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080422 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080415 +packetLen(0x00d1, 43) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080408 +packetLen(0x00d1, 67) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080401 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080325 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080318 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080304 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080226 +packetLen(0x00d1, 10) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080219 +packetLen(0x00d1, 13) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080124 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080102 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC +#endif + +// Packet: 0x00d2 +#if PACKETVER >= 20080701 +packetLen(0x00d2, 16) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080610 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080603 +packetLen(0x00d2, 7) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080528 +packetLen(0x00d2, 11) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080520 +packetLen(0x00d2, 9) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080513 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080507 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080422 +packetLen(0x00d2, 10) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080415 +packetLen(0x00d2, 8) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080408 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080401 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080325 +packetLen(0x00d2, 7) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080318 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080311 +packetLen(0x00d2, 30) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080304 +packetLen(0x00d2, 16) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080226 +packetLen(0x00d2, 14) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080219 +packetLen(0x00d2, 20) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080102 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE +#endif + +// Packet: 0x00d3 +#if PACKETVER >= 20080701 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080624 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080603 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080528 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080520 +packetLen(0x00d3, 3) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080513 +packetLen(0x00d3, 26) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080429 +packetLen(0x00d3, 3) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080422 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080415 +packetLen(0x00d3, 20) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080408 +packetLen(0x00d3, 19) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080401 +packetLen(0x00d3, 33) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080325 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080318 +packetLen(0x00d3, 12) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080311 +packetLen(0x00d3, 14) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080226 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080219 +packetLen(0x00d3, 26) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080124 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080102 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#endif + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +#if PACKETVER >= 20080701 +packetLen(0x00d5, 7) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080603 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080528 +packetLen(0x00d5, 81) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080513 +packetLen(0x00d5, 8) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080507 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080429 +packetLen(0x00d5, 26) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080415 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080408 +packetLen(0x00d5, 60) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080401 +packetLen(0x00d5, 21) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080325 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080318 +packetLen(0x00d5, 114) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d5, 2) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d5, 3) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d5, 10) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080124 +packetLen(0x00d5, 7) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#endif + +// Packet: 0x00d6 +#if PACKETVER >= 20080701 +packetLen(0x00d6, 15) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080624 +packetLen(0x00d6, 6) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080617 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080610 +packetLen(0x00d6, 26) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080603 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080528 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080520 +packetLen(0x00d6, 26) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080513 +packetLen(0x00d6, 16) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080429 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080422 +packetLen(0x00d6, 282) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080415 +packetLen(0x00d6, 21) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080408 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080401 +packetLen(0x00d6, 10) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080325 +packetLen(0x00d6, 58) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080318 +packetLen(0x00d6, 6) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d6, 8) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d6, 68) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d6, 30) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080124 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#endif + +// Packet: 0x00d7 +#if PACKETVER >= 20080701 +packetLen(0x00d7, 10) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080624 +packetLen(0x00d7, 26) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080603 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080528 +packetLen(0x00d7, 8) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080520 +packetLen(0x00d7, 9) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080513 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080507 +packetLen(0x00d7, 39) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080408 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080401 +packetLen(0x00d7, 8) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080325 +packetLen(0x00d7, 5) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080318 +packetLen(0x00d7, 4) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080311 +packetLen(0x00d7, 67) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080304 +packetLen(0x00d7, 24) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080226 +packetLen(0x00d7, 28) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080219 +packetLen(0x00d7, 3) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080124 +packetLen(0x00d7, 8) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080102 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#endif + +// Packet: 0x00d8 +#if PACKETVER >= 20080617 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00d8, 30) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080603 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080528 +packetLen(0x00d8, 5) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080520 +packetLen(0x00d8, 7) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080513 +packetLen(0x00d8, 53) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080507 +packetLen(0x00d8, 17) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080415 +packetLen(0x00d8, 9) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080408 +packetLen(0x00d8, 26) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00d8, 2) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080318 +packetLen(0x00d8, 30) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d8, 2) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d8, 16) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d8, 2) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080124 +packetLen(0x00d8, 4) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM +#endif + +// Packet: 0x00d9 +#if PACKETVER >= 20080603 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080528 +packetLen(0x00d9, 4) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080520 +packetLen(0x00d9, 5) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080513 +packetLen(0x00d9, 10) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080507 +packetLen(0x00d9, 3) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080429 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080401 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080318 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d9, 7) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d9, 3) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080124 +packetLen(0x00d9, 282) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#endif + +// Packet: 0x00da +#if PACKETVER >= 20080701 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080624 +packetLen(0x00da, 53) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080603 +packetLen(0x00da, 24) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080513 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080507 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080415 +packetLen(0x00da, 6) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080408 +packetLen(0x00da, 31) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080401 +packetLen(0x00da, 13) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080318 +packetLen(0x00da, 30) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00da, 8) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00da, 14) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00da, 54) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080124 +packetLen(0x00da, 18) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +#endif + +// Packet: 0x00db +#if PACKETVER >= 20080701 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080624 +packetLen(0x00db, 7) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080603 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080528 +packetLen(0x00db, 3) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080520 +packetLen(0x00db, 4) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080513 +packetLen(0x00db, 30) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080429 +packetLen(0x00db, 2) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00db, 67) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080415 +packetLen(0x00db, 33) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080408 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080401 +packetLen(0x00db, 18) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00db, 2) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00db, 6) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00db, 31) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00db, 26) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00db, 4) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#endif + +// Packet: 0x00dc +#if PACKETVER >= 20080701 +packetLen(0x00dc, 6) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080617 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080610 +packetLen(0x00dc, 2) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080603 +packetLen(0x00dc, 11) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080528 +packetLen(0x00dc, 27) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080520 +packetLen(0x00dc, 30) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080513 +packetLen(0x00dc, 12) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080429 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080422 +packetLen(0x00dc, 32) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080415 +packetLen(0x00dc, 6) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080408 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080401 +packetLen(0x00dc, 30) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080325 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080318 +packetLen(0x00dc, 29) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080311 +packetLen(0x00dc, 6) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080304 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080226 +packetLen(0x00dc, 3) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080219 +packetLen(0x00dc, 29) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080124 +packetLen(0x00dc, 13) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080102 +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY +#endif + +// Packet: 0x00dd +#if PACKETVER >= 20080701 +packetLen(0x00dd, 6) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080610 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080603 +packetLen(0x00dd, 20) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080528 +packetLen(0x00dd, 7) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080520 +packetLen(0x00dd, 28) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080429 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080422 +packetLen(0x00dd, 28) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080415 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080408 +packetLen(0x00dd, 15) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080325 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080318 +packetLen(0x00dd, 22) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080311 +packetLen(0x00dd, 10) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080304 +packetLen(0x00dd, 6) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080226 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080219 +packetLen(0x00dd, 3) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080124 +packetLen(0x00dd, 8) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080102 +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT +#endif + +// Packet: 0x00de +#if PACKETVER >= 20080701 +packetLen(0x00de, 5) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080624 +packetLen(0x00de, 54) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080603 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080528 +packetLen(0x00de, 57) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080520 +packetLen(0x00de, 4) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080513 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080507 +packetLen(0x00de, 15) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080429 +packetLen(0x00de, 11) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080415 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080408 +packetLen(0x00de, 18) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080401 +packetLen(0x00de, 5) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080325 +packetLen(0x00de, 6) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080318 +packetLen(0x00de, 8) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00de, 6) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00de, 34) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080124 +packetLen(0x00de, 3) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#endif + +// Packet: 0x00df +#if PACKETVER >= 20080701 +packetLen(0x00df, 34) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080624 +packetLen(0x00df, 11) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080617 +packetLen(0x00df, 30) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080610 +packetLen(0x00df, 10) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080603 +packetLen(0x00df, 4) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080528 +packetLen(0x00df, 90) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080520 +packetLen(0x00df, 23) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080513 +packetLen(0x00df, 6) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080507 +packetLen(0x00df, 3) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080429 +packetLen(0x00df, 8) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080422 +packetLen(0x00df, 12) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080415 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080408 +packetLen(0x00df, 282) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080401 +packetLen(0x00df, 3) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080325 +packetLen(0x00df, 5) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080318 +packetLen(0x00df, 23) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00df, 9) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00df, 7) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080124 +packetLen(0x00df, 27) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#endif + +// Packet: 0x00e0 +#if PACKETVER >= 20080701 +packetLen(0x00e0, 9) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00e0, 6) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x00e0, 10) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00e0, 4) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00e0, 21) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00e0, 71) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00e0, 7) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00e0, 43) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00e0, 31) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00e0, 18) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE +#endif + +// Packet: 0x00e1 +#if PACKETVER >= 20080610 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00e1, 2) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00e1, 20) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x00e1, 4) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00e1, 6) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00e1, 43) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00e1, 2) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00e1, 60) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00e1, 22) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00e1, 21) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00e1, 2) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00e1, 60) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00e1, 81) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00e1, 12) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE +#endif + +// Packet: 0x00e2 +#if PACKETVER >= 20080624 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080617 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080610 +packetLen(0x00e2, 282) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080603 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080528 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080520 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080513 +packetLen(0x00e2, 2) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080507 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080429 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080422 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080415 +packetLen(0x00e2, 282) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080408 +packetLen(0x00e2, 11) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080401 +packetLen(0x00e2, 5) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080325 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080318 +packetLen(0x00e2, 79) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080311 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080304 +packetLen(0x00e2, 31) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080226 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080219 +packetLen(0x00e2, 30) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080124 +packetLen(0x00e2, 10) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080102 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#endif + +// Packet: 0x00e3 +#if PACKETVER >= 20080701 +packetLen(0x00e3, 26) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080624 +packetLen(0x00e3, 6) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080617 +packetLen(0x00e3, 58) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080603 +packetLen(0x00e3, 30) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080528 +packetLen(0x00e3, 35) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080429 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080415 +packetLen(0x00e3, 8) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080408 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080401 +packetLen(0x00e3, 58) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00e3, 10) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080318 +packetLen(0x00e3, 7) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00e3, 12) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080124 +packetLen(0x00e3, 14) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +#endif + +// Packet: 0x00e4 +#if PACKETVER >= 20080701 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e4, 36) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00e4, 86) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e4, 33) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e4, 58) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e4, 13) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e4, 10) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e4, 14) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e4, 10) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e4, 54) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e4, 14) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e4, 7) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#endif + +// Packet: 0x00e5 +#if PACKETVER >= 20080701 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e5, 3) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00e5, 28) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e5, 2) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e5, 6) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e5, 28) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e5, 5) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e5, 3) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e5, 2) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e5, 10) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e5, 6) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e5, 5) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e5, 10) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e5, 6) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e5, 11) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e5, 29) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM +#endif + +// Packet: 0x00e6 +#if PACKETVER >= 20080701 +packetLen(0x00e6, 6) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e6, 14) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00e6, 9) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e6, 6) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e6, 2) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e6, 43) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e6, 26) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e6, 79) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e6, 11) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e6, 67) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e6, 15) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e6, 16) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e6, 53) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e6, 10) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e6, 114) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM +#endif + +// Packet: 0x00e7 +#if PACKETVER >= 20080701 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e7, 30) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e7, 14) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00e7, 182) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e7, 14) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e7, 90) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e7, 182) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e7, 6) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e7, 4) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e7, 8) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e7, 6) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e7, 68) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#endif + +// Packet: 0x00e8 +#if PACKETVER >= 20080701 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e8, 114) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00e8, 5) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e8, 66) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e8, 10) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e8, 86) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e8, 6) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e8, 2) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e8, 30) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e8, 4) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e8, 6) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e8, 6) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e8, 2) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e8, 26) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00e9 +#if PACKETVER >= 20080617 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e9, 8) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e9, 4) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e9, 2) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e9, 7) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e9, 4) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e9, 8) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e9, 2) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e9, 6) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e9, 30) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e9, 2) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e9, 21) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00ea +#if PACKETVER >= 20080701 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ea, 39) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00ea, 90) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ea, 30) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ea, 3) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00ea, 26) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ea, 6) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00ea, 4) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ea, 15) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ea, 3) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ea, 2) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ea, 10) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ea, 6) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ea, 14) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00eb +#if PACKETVER >= 20080624 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00eb, 5) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00eb, 54) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00eb, 11) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00eb, 36) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00eb, 5) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00eb, 15) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00eb, 86) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00eb, 12) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00eb, 19) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00eb, 17) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM +#endif + +// Packet: 0x00ec +#if PACKETVER >= 20080701 +packetLen(0x00ec, 55) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ec, 4) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00ec, 6) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ec, 14) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ec, 81) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00ec, 11) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ec, 34) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ec, 10) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00ec, 14) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ec, 11) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ec, 9) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ec, 30) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ec, 20) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ec, 2) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ec, 11) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ec, 9) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM +#endif + +// Packet: 0x00ed +#if PACKETVER >= 20080701 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ed, 20) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ed, 7) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ed, 3) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00ed, 8) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00ed, 6) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00ed, 3) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ed, 5) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ed, 3) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ed, 7) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ed, 4) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ed, 86) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ed, 30) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM +#endif + +// Packet: 0x00ee +#if PACKETVER >= 20080701 +packetLen(0x00ee, 14) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00ee, 81) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ee, 6) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ee, 18) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ee, 3) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ee, 3) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00ee, 30) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ee, 8) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ee, 26) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ee, 5) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ee, 11) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ee, 10) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ee, 90) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ee, 4) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM +#endif + +// Packet: 0x00ef +#if PACKETVER >= 20080701 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ef, 10) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00ef, 30) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00ef, 9) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ef, 11) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ef, 30) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ef, 26) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00ef, 28) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00ef, 4) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ef, 7) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ef, 57) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ef, 10) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ef, 90) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ef, 6) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ef, 7) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#endif + +// Packet: 0x00f0 +#if PACKETVER >= 20080701 +packetLen(0x00f0, 11) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00f0, 60) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00f0, 6) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00f0, 14) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00f0, 43) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00f0, 30) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00f0, 2) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00f0, 90) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00f0, 24) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00f0, 6) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00f0, 7) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00f0, 27) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00f0, 6) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#endif + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +#if PACKETVER >= 20080701 +packetLen(0x00f2, 4) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080624 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080617 +packetLen(0x00f2, 10) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080610 +packetLen(0x00f2, 39) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080603 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080528 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080520 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080513 +packetLen(0x00f2, 39) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080507 +packetLen(0x00f2, 54) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080429 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080422 +packetLen(0x00f2, 31) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080415 +packetLen(0x00f2, 10) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080408 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080401 +packetLen(0x00f2, 86) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080325 +packetLen(0x00f2, 60) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080318 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080311 +packetLen(0x00f2, 26) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080304 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080226 +packetLen(0x00f2, 14) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080219 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080124 +packetLen(0x00f2, 13) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080102 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#endif + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +#if PACKETVER >= 20080624 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080617 +packetLen(0x00f4, 11) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080528 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080513 +packetLen(0x00f4, 3) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080507 +packetLen(0x00f4, 8) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080429 +packetLen(0x00f4, 2) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080422 +packetLen(0x00f4, 3) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080415 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080408 +packetLen(0x00f4, 35) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080401 +packetLen(0x00f4, 282) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080325 +packetLen(0x00f4, 6) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080318 +packetLen(0x00f4, 8) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080311 +packetLen(0x00f4, 2) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080304 +packetLen(0x00f4, 8) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080226 +packetLen(0x00f4, 6) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080219 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080124 +packetLen(0x00f4, 10) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080102 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE +#endif + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +#if PACKETVER >= 20080701 +packetLen(0x00f6, 11) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080624 +packetLen(0x00f6, 6) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080617 +packetLen(0x00f6, 26) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080610 +packetLen(0x00f6, 6) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080603 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080528 +packetLen(0x00f6, 10) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080520 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080513 +packetLen(0x00f6, 6) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080422 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080415 +packetLen(0x00f6, 4) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080408 +packetLen(0x00f6, 65) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080401 +packetLen(0x00f6, 7) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080325 +packetLen(0x00f6, 6) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080318 +packetLen(0x00f6, 2) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080311 +packetLen(0x00f6, 7) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080304 +packetLen(0x00f6, 65) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080226 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080219 +packetLen(0x00f6, 23) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080124 +packetLen(0x00f6, 39) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080102 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE +#endif + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +#if PACKETVER >= 20080701 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080624 +packetLen(0x00f8, 26) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080617 +packetLen(0x00f8, 17) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080610 +packetLen(0x00f8, 30) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080603 +packetLen(0x00f8, 10) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080528 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080513 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080507 +packetLen(0x00f8, 6) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080422 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080415 +packetLen(0x00f8, 6) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080408 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080401 +packetLen(0x00f8, 3) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080325 +packetLen(0x00f8, 6) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080318 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080311 +packetLen(0x00f8, 12) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080304 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080226 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080219 +packetLen(0x00f8, 12) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080124 +packetLen(0x00f8, 43) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080102 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#endif + +// Packet: 0x00f9 +#if PACKETVER >= 20080701 +packetLen(0x00f9, 6) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x00f9, 10) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00f9, 6) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00f9, 3) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00f9, 5) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x00f9, 13) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00f9, 6) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00f9, 8) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00f9, 10) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00f9, 114) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00f9, 12) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00f9, 4) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00f9, 8) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00f9, 10) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#endif + +// Packet: 0x00fa +#if PACKETVER >= 20080603 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00fa, 8) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00fa, 4) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00fa, 30) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00fa, 26) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x00fa, 15) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00fa, 30) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00fa, 29) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00fa, 30) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00fa, 10) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fa, 20) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fa, 10) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00fa, 6) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#endif + +// Packet: 0x00fb +#if PACKETVER >= 20080701 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20080624 +packetLen(0x00fb, 26) // ZC_GROUP_LIST +#elif PACKETVER >= 20080617 +packetLen(0x00fb, 3) // ZC_GROUP_LIST +#elif PACKETVER >= 20080610 +packetLen(0x00fb, 4) // ZC_GROUP_LIST +#elif PACKETVER >= 20080603 +packetLen(0x00fb, 17) // ZC_GROUP_LIST +#elif PACKETVER >= 20080528 +packetLen(0x00fb, 4) // ZC_GROUP_LIST +#elif PACKETVER >= 20080520 +packetLen(0x00fb, 29) // ZC_GROUP_LIST +#elif PACKETVER >= 20080513 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20080507 +packetLen(0x00fb, 28) // ZC_GROUP_LIST +#elif PACKETVER >= 20080429 +packetLen(0x00fb, 6) // ZC_GROUP_LIST +#elif PACKETVER >= 20080408 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20080401 +packetLen(0x00fb, 3) // ZC_GROUP_LIST +#elif PACKETVER >= 20080318 +packetLen(0x00fb, 26) // ZC_GROUP_LIST +#elif PACKETVER >= 20080311 +packetLen(0x00fb, 2) // ZC_GROUP_LIST +#elif PACKETVER >= 20080304 +packetLen(0x00fb, 4) // ZC_GROUP_LIST +#elif PACKETVER >= 20080226 +packetLen(0x00fb, 5) // ZC_GROUP_LIST +#elif PACKETVER >= 20080219 +packetLen(0x00fb, 10) // ZC_GROUP_LIST +#elif PACKETVER >= 20080124 +packetLen(0x00fb, 5) // ZC_GROUP_LIST +#elif PACKETVER >= 20080102 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#endif + +// Packet: 0x00fc +#if PACKETVER >= 20080701 +packetLen(0x00fc, 22) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x00fc, 18) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00fc, 53) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00fc, 17) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00fc, 27) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fc, 24) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fc, 30) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fc, 19) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00fc, 2) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#endif + +// Packet: 0x00fd +#if PACKETVER >= 20080617 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00fd, 6) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x00fd, 97) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00fd, 3) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00fd, 2) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00fd, 8) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00fd, 2) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00fd, 8) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00fd, 18) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fd, 3) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fd, 20) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fd, 11) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00fd, 42) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP +#endif + +// Packet: 0x00fe +#if PACKETVER >= 20080617 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00fe, 2) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00fe, 6) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00fe, 6) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00fe, 186) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00fe, 4) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00fe, 32) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fe, 4) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fe, 186) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fe, 7) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fe, 6) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00fe, 4) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP +#endif + +// Packet: 0x00ff +#if PACKETVER >= 20080701 +packetLen(0x00ff, 5) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x00ff, 7) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00ff, 4) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00ff, 22) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00ff, 282) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00ff, 6) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00ff, 79) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00ff, 2) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00ff, 3) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00ff, 59) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00ff, 282) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00ff, 6) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00ff, 32) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#endif + +// Packet: 0x0100 +#if PACKETVER >= 20080617 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x0100, 186) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x0100, 14) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x0100, 6) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x0100, 27) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x0100, 8) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x0100, 17) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x0100, 30) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x0100, 28) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x0100, 54) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x0100, 3) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x0100, 54) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x0100, 3) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#endif + +// Packet: 0x0101 +#if PACKETVER >= 20080701 +packetLen(0x0101, 5) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x0101, 24) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x0101, 2) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x0101, 2) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x0101, 58) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x0101, 11) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x0101, 5) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x0101, 11) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x0101, 26) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x0101, 5) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x0101, 97) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x0101, 23) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x0101, 10) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x0101, 4) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#endif + +// Packet: 0x0102 +#if PACKETVER >= 20080610 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080603 +packetLen(0x0102, 26) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080528 +packetLen(0x0102, 17) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080520 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080513 +packetLen(0x0102, 11) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080422 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080415 +packetLen(0x0102, 81) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080408 +packetLen(0x0102, 2) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080401 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080325 +packetLen(0x0102, 54) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080318 +packetLen(0x0102, 4) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080311 +packetLen(0x0102, 2) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080304 +packetLen(0x0102, 14) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080226 +packetLen(0x0102, 26) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080219 +packetLen(0x0102, 68) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080124 +packetLen(0x0102, 15) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#endif + +// Packet: 0x0103 +#if PACKETVER >= 20080701 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080624 +packetLen(0x0103, 8) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080617 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080610 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080603 +packetLen(0x0103, 10) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080528 +packetLen(0x0103, 79) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080520 +packetLen(0x0103, 6) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080513 +packetLen(0x0103, 16) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080507 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080429 +packetLen(0x0103, 6) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080422 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080415 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080408 +packetLen(0x0103, 11) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080401 +packetLen(0x0103, 4) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080318 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080311 +packetLen(0x0103, 8) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080226 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080219 +packetLen(0x0103, 5) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080124 +packetLen(0x0103, 58) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080102 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#endif + +// Packet: 0x0104 +#if PACKETVER >= 20080701 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080624 +packetLen(0x0104, 60) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x0104, 3) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x0104, 26) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x0104, 17) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x0104, 8) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x0104, 282) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x0104, 12) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x0104, 30) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x0104, 26) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x0104, 11) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x0104, 8) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x0104, 15) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x0104, 8) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x0104, 6) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x0104, 21) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x0104, 6) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0105 +#if PACKETVER >= 20080617 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x0105, 26) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x0105, 6) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x0105, 3) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x0105, 5) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x0105, 4) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x0105, 23) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x0105, 4) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x0105, 3) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x0105, 10) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x0105, 26) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x0105, 6) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP +#endif + +// Packet: 0x0106 +#if PACKETVER >= 20080701 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080617 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080610 +packetLen(0x0106, 9) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080528 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080513 +packetLen(0x0106, 2) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080507 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080429 +packetLen(0x0106, 27) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080422 +packetLen(0x0106, 29) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080415 +packetLen(0x0106, 282) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080408 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080401 +packetLen(0x0106, 5) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080325 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080318 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080311 +packetLen(0x0106, 26) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080226 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080219 +packetLen(0x0106, 21) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080124 +packetLen(0x0106, 8) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080102 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#endif + +// Packet: 0x0107 +#if PACKETVER >= 20080624 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080617 +packetLen(0x0107, 3) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080603 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080528 +packetLen(0x0107, 6) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080520 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080513 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080507 +packetLen(0x0107, 6) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080429 +packetLen(0x0107, 2) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080325 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080318 +packetLen(0x0107, 6) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080226 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080219 +packetLen(0x0107, 5) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080124 +packetLen(0x0107, 3) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080102 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM +#endif + +// Packet: 0x0108 +#if PACKETVER >= 20080624 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080617 +packetLen(0x0108, 54) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080610 +packetLen(0x0108, 2) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080528 +packetLen(0x0108, 11) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080520 +packetLen(0x0108, 97) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080513 +packetLen(0x0108, 30) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080507 +packetLen(0x0108, 6) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080429 +packetLen(0x0108, 32) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080415 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080408 +packetLen(0x0108, 3) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080401 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080325 +packetLen(0x0108, 7) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080318 +packetLen(0x0108, 182) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080311 +packetLen(0x0108, 4) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080226 +packetLen(0x0108, 3) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080219 +packetLen(0x0108, 97) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080124 +packetLen(0x0108, 6) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080102 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#endif + +// Packet: 0x0109 +#if PACKETVER >= 20080701 +packetLen(0x0109, 31) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080624 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080617 +packetLen(0x0109, 7) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080610 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080603 +packetLen(0x0109, 5) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080528 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080513 +packetLen(0x0109, 6) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080507 +packetLen(0x0109, 26) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080429 +packetLen(0x0109, 67) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080422 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080415 +packetLen(0x0109, 102) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080408 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080401 +packetLen(0x0109, 33) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080325 +packetLen(0x0109, 26) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080318 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080311 +packetLen(0x0109, 10) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080304 +packetLen(0x0109, 4) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080226 +packetLen(0x0109, 2) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080219 +packetLen(0x0109, 14) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080124 +packetLen(0x0109, 12) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080102 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#endif + +// Packet: 0x010a +#if PACKETVER >= 20080610 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x010a, 34) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x010a, 102) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x010a, 3) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x010a, 30) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x010a, 31) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x010a, 114) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x010a, 27) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x010a, 12) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x010a, 8) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#endif + +// Packet: 0x010b +#if PACKETVER >= 20080701 +packetLen(0x010b, 3) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080624 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080617 +packetLen(0x010b, 8) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080610 +packetLen(0x010b, 26) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080603 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080520 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080513 +packetLen(0x010b, 4) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080429 +packetLen(0x010b, 3) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080422 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080415 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080408 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080401 +packetLen(0x010b, 28) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080325 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080318 +packetLen(0x010b, 17) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080311 +packetLen(0x010b, 3) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080304 +packetLen(0x010b, 114) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080226 +packetLen(0x010b, 9) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080219 +packetLen(0x010b, 24) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080102 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#endif + +// Packet: 0x010c +#if PACKETVER >= 20080701 +packetLen(0x010c, 7) // ZC_MVP +#elif PACKETVER >= 20080624 +packetLen(0x010c, 23) // ZC_MVP +#elif PACKETVER >= 20080610 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080603 +packetLen(0x010c, 31) // ZC_MVP +#elif PACKETVER >= 20080528 +packetLen(0x010c, 30) // ZC_MVP +#elif PACKETVER >= 20080520 +packetLen(0x010c, 8) // ZC_MVP +#elif PACKETVER >= 20080507 +packetLen(0x010c, 2) // ZC_MVP +#elif PACKETVER >= 20080429 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080422 +packetLen(0x010c, 26) // ZC_MVP +#elif PACKETVER >= 20080408 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080401 +packetLen(0x010c, 6) // ZC_MVP +#elif PACKETVER >= 20080325 +packetLen(0x010c, 11) // ZC_MVP +#elif PACKETVER >= 20080318 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080311 +packetLen(0x010c, 282) // ZC_MVP +#elif PACKETVER >= 20080304 +packetLen(0x010c, 2) // ZC_MVP +#elif PACKETVER >= 20080226 +packetLen(0x010c, 14) // ZC_MVP +#elif PACKETVER >= 20080219 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080124 +packetLen(0x010c, 4) // ZC_MVP +#elif PACKETVER >= 20080102 +packetLen(0x010c, 6) // ZC_MVP +#endif + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +#if PACKETVER >= 20080701 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080624 +packetLen(0x010e, 33) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080617 +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080610 +packetLen(0x010e, 8) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080603 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080528 +packetLen(0x010e, 2) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080520 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080513 +packetLen(0x010e, 14) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080507 +packetLen(0x010e, 10) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080429 +packetLen(0x010e, 67) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080415 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080408 +packetLen(0x010e, 12) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080401 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080325 +packetLen(0x010e, 30) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080318 +packetLen(0x010e, 53) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080311 +packetLen(0x010e, 71) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080304 +packetLen(0x010e, 26) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080226 +packetLen(0x010e, 7) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080219 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080124 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080102 +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE +#endif + +// Packet: 0x010f +#if PACKETVER >= 20080701 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080624 +packetLen(0x010f, 2) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080617 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080610 +packetLen(0x010f, 30) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080603 +packetLen(0x010f, 5) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080528 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080520 +packetLen(0x010f, 6) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080513 +packetLen(0x010f, 17) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080507 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080429 +packetLen(0x010f, 11) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080422 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080415 +packetLen(0x010f, 4) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080408 +packetLen(0x010f, 8) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080325 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080318 +packetLen(0x010f, 6) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080311 +packetLen(0x010f, 2) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080304 +packetLen(0x010f, 17) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080226 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080219 +packetLen(0x010f, 30) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080124 +packetLen(0x010f, 11) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080102 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#endif + +// Packet: 0x0110 +#if PACKETVER >= 20080617 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080610 +packetLen(0x0110, 3) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080603 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080528 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080520 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080513 +packetLen(0x0110, 4) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080507 +packetLen(0x0110, 3) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080408 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080401 +packetLen(0x0110, 6) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080325 +packetLen(0x0110, 35) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080318 +packetLen(0x0110, 8) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080311 +packetLen(0x0110, 4) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080226 +packetLen(0x0110, 8) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080219 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080124 +packetLen(0x0110, 2) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080102 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#endif + +// Packet: 0x0111 +#if PACKETVER >= 20080701 +packetLen(0x0111, 17) // ZC_ADD_SKILL +#elif PACKETVER >= 20080624 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080617 +packetLen(0x0111, 2) // ZC_ADD_SKILL +#elif PACKETVER >= 20080610 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080603 +packetLen(0x0111, 11) // ZC_ADD_SKILL +#elif PACKETVER >= 20080528 +packetLen(0x0111, 23) // ZC_ADD_SKILL +#elif PACKETVER >= 20080507 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080429 +packetLen(0x0111, 10) // ZC_ADD_SKILL +#elif PACKETVER >= 20080422 +packetLen(0x0111, 4) // ZC_ADD_SKILL +#elif PACKETVER >= 20080415 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080408 +packetLen(0x0111, 26) // ZC_ADD_SKILL +#elif PACKETVER >= 20080401 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080325 +packetLen(0x0111, 282) // ZC_ADD_SKILL +#elif PACKETVER >= 20080318 +packetLen(0x0111, 23) // ZC_ADD_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x0111, 6) // ZC_ADD_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x0111, 4) // ZC_ADD_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x0111, 60) // ZC_ADD_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x0111, 32) // ZC_ADD_SKILL +#elif PACKETVER >= 20080124 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x0111, 39) // ZC_ADD_SKILL +#endif + +// Packet: 0x0112 +#if PACKETVER >= 20080701 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080624 +packetLen(0x0112, 15) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080617 +packetLen(0x0112, 59) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080610 +packetLen(0x0112, 6) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080603 +packetLen(0x0112, 14) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080528 +packetLen(0x0112, 7) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080520 +packetLen(0x0112, 30) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080513 +packetLen(0x0112, 10) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080429 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080422 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080408 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080401 +packetLen(0x0112, 6) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080325 +packetLen(0x0112, 11) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080318 +packetLen(0x0112, 6) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080311 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080304 +packetLen(0x0112, 29) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080226 +packetLen(0x0112, 13) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080219 +packetLen(0x0112, 7) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080124 +packetLen(0x0112, 26) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080102 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL +#endif + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +#if PACKETVER >= 20080701 +packetLen(0x0114, 10) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080624 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080617 +packetLen(0x0114, 15) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080610 +packetLen(0x0114, 11) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080603 +packetLen(0x0114, 7) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080528 +packetLen(0x0114, 6) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080520 +packetLen(0x0114, 30) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080513 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080507 +packetLen(0x0114, 4) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080429 +packetLen(0x0114, 3) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080408 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080401 +packetLen(0x0114, 26) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080325 +packetLen(0x0114, 182) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080318 +packetLen(0x0114, 6) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x0114, 29) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x0114, 10) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080124 +packetLen(0x0114, 8) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL +#endif + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +#if PACKETVER >= 20080603 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080528 +packetLen(0x0117, 6) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080520 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080513 +packetLen(0x0117, 5) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080507 +packetLen(0x0117, 6) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080422 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080415 +packetLen(0x0117, 29) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080408 +packetLen(0x0117, 28) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080401 +packetLen(0x0117, 26) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080325 +packetLen(0x0117, 29) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080318 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080311 +packetLen(0x0117, 11) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080304 +packetLen(0x0117, 6) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080226 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080219 +packetLen(0x0117, 10) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080124 +packetLen(0x0117, 8) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080102 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL +#endif + +// Packet: 0x0118 +#if PACKETVER >= 20080701 +packetLen(0x0118, 67) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080617 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080610 +packetLen(0x0118, 22) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080603 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080528 +packetLen(0x0118, 8) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080520 +packetLen(0x0118, 90) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080513 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080507 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080429 +packetLen(0x0118, 29) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080422 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080401 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080325 +packetLen(0x0118, 14) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080318 +packetLen(0x0118, 5) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080311 +packetLen(0x0118, 282) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080304 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080226 +packetLen(0x0118, 54) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080219 +packetLen(0x0118, 7) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080124 +packetLen(0x0118, 54) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080102 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#endif + +// Packet: 0x0119 +#if PACKETVER >= 20080603 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x0119, 10) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x0119, 4) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x0119, 23) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x0119, 6) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x0119, 17) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x0119, 2) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x0119, 3) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x0119, 8) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x0119, 282) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x0119, 2) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x0119, 58) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x0119, 6) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x0119, 13) // ZC_STATE_CHANGE +#endif + +// Packet: 0x011a +#if PACKETVER >= 20080701 +packetLen(0x011a, 11) // ZC_USE_SKILL +#elif PACKETVER >= 20080624 +packetLen(0x011a, 3) // ZC_USE_SKILL +#elif PACKETVER >= 20080617 +packetLen(0x011a, 6) // ZC_USE_SKILL +#elif PACKETVER >= 20080610 +packetLen(0x011a, 26) // ZC_USE_SKILL +#elif PACKETVER >= 20080603 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080528 +packetLen(0x011a, 8) // ZC_USE_SKILL +#elif PACKETVER >= 20080520 +packetLen(0x011a, 6) // ZC_USE_SKILL +#elif PACKETVER >= 20080513 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080507 +packetLen(0x011a, 3) // ZC_USE_SKILL +#elif PACKETVER >= 20080429 +packetLen(0x011a, 17) // ZC_USE_SKILL +#elif PACKETVER >= 20080408 +packetLen(0x011a, 4) // ZC_USE_SKILL +#elif PACKETVER >= 20080401 +packetLen(0x011a, 8) // ZC_USE_SKILL +#elif PACKETVER >= 20080325 +packetLen(0x011a, 36) // ZC_USE_SKILL +#elif PACKETVER >= 20080318 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x011a, 6) // ZC_USE_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x011a, 2) // ZC_USE_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x011a, 10) // ZC_USE_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x011a, 11) // ZC_USE_SKILL +#elif PACKETVER >= 20080124 +packetLen(0x011a, 2) // ZC_USE_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x011a, 15) // ZC_USE_SKILL +#endif + +// Packet: 0x011b +#if PACKETVER >= 20080528 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080520 +packetLen(0x011b, 2) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080513 +packetLen(0x011b, 58) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080507 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080429 +packetLen(0x011b, 10) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080422 +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080415 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080408 +packetLen(0x011b, 4) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080401 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080325 +packetLen(0x011b, 39) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080311 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080304 +packetLen(0x011b, 58) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080226 +packetLen(0x011b, 2) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080124 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080102 +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT +#endif + +// Packet: 0x011c +#if PACKETVER >= 20080617 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080610 +packetLen(0x011c, 14) // ZC_WARPLIST +#elif PACKETVER >= 20080603 +packetLen(0x011c, 8) // ZC_WARPLIST +#elif PACKETVER >= 20080528 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080520 +packetLen(0x011c, 2) // ZC_WARPLIST +#elif PACKETVER >= 20080513 +packetLen(0x011c, 8) // ZC_WARPLIST +#elif PACKETVER >= 20080507 +packetLen(0x011c, 282) // ZC_WARPLIST +#elif PACKETVER >= 20080429 +packetLen(0x011c, 5) // ZC_WARPLIST +#elif PACKETVER >= 20080422 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080415 +packetLen(0x011c, 31) // ZC_WARPLIST +#elif PACKETVER >= 20080408 +packetLen(0x011c, 3) // ZC_WARPLIST +#elif PACKETVER >= 20080401 +packetLen(0x011c, 7) // ZC_WARPLIST +#elif PACKETVER >= 20080325 +packetLen(0x011c, 26) // ZC_WARPLIST +#elif PACKETVER >= 20080318 +packetLen(0x011c, 6) // ZC_WARPLIST +#elif PACKETVER >= 20080311 +packetLen(0x011c, 3) // ZC_WARPLIST +#elif PACKETVER >= 20080304 +packetLen(0x011c, 32) // ZC_WARPLIST +#elif PACKETVER >= 20080226 +packetLen(0x011c, 6) // ZC_WARPLIST +#elif PACKETVER >= 20080219 +packetLen(0x011c, 4) // ZC_WARPLIST +#elif PACKETVER >= 20080124 +packetLen(0x011c, 2) // ZC_WARPLIST +#elif PACKETVER >= 20080102 +packetLen(0x011c, 68) // ZC_WARPLIST +#endif + +// Packet: 0x011d +#if PACKETVER >= 20080624 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080617 +packetLen(0x011d, 10) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080610 +packetLen(0x011d, 28) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080603 +packetLen(0x011d, 3) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080528 +packetLen(0x011d, 14) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080520 +packetLen(0x011d, 23) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080513 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080507 +packetLen(0x011d, 81) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080422 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080415 +packetLen(0x011d, 6) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080408 +packetLen(0x011d, 4) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080325 +packetLen(0x011d, 10) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080318 +packetLen(0x011d, 7) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080311 +packetLen(0x011d, 3) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080304 +packetLen(0x011d, 7) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080219 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080124 +packetLen(0x011d, 26) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080102 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +#endif + +// Packet: 0x011e +#if PACKETVER >= 20080624 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080617 +packetLen(0x011e, 33) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080610 +packetLen(0x011e, 5) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080603 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080528 +packetLen(0x011e, 6) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080513 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080507 +packetLen(0x011e, 9) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080429 +packetLen(0x011e, 10) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080422 +packetLen(0x011e, 282) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080415 +packetLen(0x011e, 30) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080408 +packetLen(0x011e, 32) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080401 +packetLen(0x011e, 9) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080325 +packetLen(0x011e, 18) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080318 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080311 +packetLen(0x011e, 6) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080304 +packetLen(0x011e, 18) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080219 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080124 +packetLen(0x011e, 7) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080102 +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT +#endif + +// Packet: 0x011f +#if PACKETVER >= 20080701 +packetLen(0x011f, 11) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080624 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x011f, 30) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x011f, 10) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x011f, 3) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080528 +packetLen(0x011f, 282) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080520 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080513 +packetLen(0x011f, 30) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080507 +packetLen(0x011f, 6) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080429 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x011f, 12) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080415 +packetLen(0x011f, 2) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x011f, 6) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080325 +packetLen(0x011f, 10) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x011f, 60) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x011f, 2) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x011f, 8) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x011f, 5) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x011f, 2) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x011f, 16) // ZC_SKILL_ENTRY +#endif + +// Packet: 0x0120 +#if PACKETVER >= 20080701 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080624 +packetLen(0x0120, 27) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080617 +packetLen(0x0120, 14) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080610 +packetLen(0x0120, 79) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080603 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080528 +packetLen(0x0120, 28) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080520 +packetLen(0x0120, 5) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080513 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080507 +packetLen(0x0120, 54) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080429 +packetLen(0x0120, 7) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080422 +packetLen(0x0120, 4) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080408 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080401 +packetLen(0x0120, 5) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080318 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080311 +packetLen(0x0120, 5) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080304 +packetLen(0x0120, 54) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080226 +packetLen(0x0120, 7) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080219 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080124 +packetLen(0x0120, 39) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080102 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +#endif + +// Packet: 0x0121 +#if PACKETVER >= 20080701 +packetLen(0x0121, 8) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080624 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080610 +packetLen(0x0121, 5) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080603 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080528 +packetLen(0x0121, 4) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080520 +packetLen(0x0121, 26) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080513 +packetLen(0x0121, 27) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080507 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080429 +packetLen(0x0121, 60) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080415 +packetLen(0x0121, 6) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080408 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080401 +packetLen(0x0121, 2) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080325 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080318 +packetLen(0x0121, 29) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080311 +packetLen(0x0121, 2) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080304 +packetLen(0x0121, 29) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080226 +packetLen(0x0121, 282) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080219 +packetLen(0x0121, 6) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080124 +packetLen(0x0121, 60) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080102 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO +#endif + +// Packet: 0x0122 +#if PACKETVER >= 20080701 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x0122, 58) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x0122, 12) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x0122, 15) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x0122, 4) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x0122, 10) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x0122, 30) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x0122, 186) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x0122, 30) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x0122, 16) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0122, 7) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0122, 28) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0122, 8) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#endif + +// Packet: 0x0123 +#if PACKETVER >= 20080701 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x0123, 6) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x0123, 23) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x0123, 30) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x0123, 28) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x0123, 6) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x0123, 2) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x0123, 8) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x0123, 26) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x0123, 35) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x0123, 33) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x0123, 14) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0123, 5) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0123, 9) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0123, 6) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0123, 16) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x0123, 58) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#endif + +// Packet: 0x0124 +#if PACKETVER >= 20080701 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080624 +packetLen(0x0124, 26) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080617 +packetLen(0x0124, 4) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080610 +packetLen(0x0124, 58) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080603 +packetLen(0x0124, 54) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080528 +packetLen(0x0124, 32) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080520 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080513 +packetLen(0x0124, 22) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080507 +packetLen(0x0124, 2) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080429 +packetLen(0x0124, 31) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080422 +packetLen(0x0124, 71) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080415 +packetLen(0x0124, 22) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080408 +packetLen(0x0124, 6) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080325 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080318 +packetLen(0x0124, 6) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x0124, 4) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x0124, 3) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x0124, 36) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x0124, 6) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080124 +packetLen(0x0124, 11) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +#endif + +// Packet: 0x0125 +#if PACKETVER >= 20080701 +packetLen(0x0125, 10) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080624 +packetLen(0x0125, 7) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080617 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080610 +packetLen(0x0125, 86) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080603 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080528 +packetLen(0x0125, 2) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080520 +packetLen(0x0125, 44) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080513 +packetLen(0x0125, 57) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080507 +packetLen(0x0125, 2) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080429 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080422 +packetLen(0x0125, 32) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080415 +packetLen(0x0125, 29) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080408 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080401 +packetLen(0x0125, 11) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080325 +packetLen(0x0125, 53) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080318 +packetLen(0x0125, 2) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080311 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080304 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080219 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080124 +packetLen(0x0125, 26) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080102 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART +#endif + +// Packet: 0x0126 +#if PACKETVER >= 20080701 +packetLen(0x0126, 3) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080624 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080617 +packetLen(0x0126, 43) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080610 +packetLen(0x0126, 97) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080603 +packetLen(0x0126, 12) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080507 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080429 +packetLen(0x0126, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080422 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080415 +packetLen(0x0126, 4) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080408 +packetLen(0x0126, 14) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080401 +packetLen(0x0126, 3) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080325 +packetLen(0x0126, 30) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080318 +packetLen(0x0126, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x0126, 7) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x0126, 27) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x0126, 11) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080124 +packetLen(0x0126, 26) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#endif + +// Packet: 0x0127 +#if PACKETVER >= 20080701 +packetLen(0x0127, 9) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080528 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080520 +packetLen(0x0127, 2) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080513 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080507 +packetLen(0x0127, 6) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080429 +packetLen(0x0127, 10) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080422 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080415 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080408 +packetLen(0x0127, 26) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080401 +packetLen(0x0127, 2) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080325 +packetLen(0x0127, 6) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080318 +packetLen(0x0127, 67) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080311 +packetLen(0x0127, 5) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080304 +packetLen(0x0127, 18) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080226 +packetLen(0x0127, 12) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080219 +packetLen(0x0127, 4) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080124 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080102 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#endif + +// Packet: 0x0128 +#if PACKETVER >= 20080701 +packetLen(0x0128, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080624 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080617 +packetLen(0x0128, 3) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080610 +packetLen(0x0128, 31) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080603 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080528 +packetLen(0x0128, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080520 +packetLen(0x0128, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080507 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080429 +packetLen(0x0128, 13) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080422 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080415 +packetLen(0x0128, 22) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080408 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080401 +packetLen(0x0128, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080318 +packetLen(0x0128, 3) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x0128, 58) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x0128, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x0128, 17) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080124 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#endif + +// Packet: 0x0129 +#if PACKETVER >= 20080701 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080624 +packetLen(0x0129, 182) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080617 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080610 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080603 +packetLen(0x0129, 6) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080520 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080513 +packetLen(0x0129, 7) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080507 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080429 +packetLen(0x0129, 4) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080422 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080415 +packetLen(0x0129, 60) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080408 +packetLen(0x0129, 6) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080401 +packetLen(0x0129, 14) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080325 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080318 +packetLen(0x0129, 3) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080304 +packetLen(0x0129, 4) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080226 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080219 +packetLen(0x0129, 10) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080124 +packetLen(0x0129, 28) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080102 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#endif + +// Packet: 0x012a +#if PACKETVER >= 20080624 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080617 +packetLen(0x012a, 6) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080610 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080603 +packetLen(0x012a, 11) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080528 +packetLen(0x012a, 8) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080520 +packetLen(0x012a, 9) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080513 +packetLen(0x012a, 6) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080507 +packetLen(0x012a, 14) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080429 +packetLen(0x012a, 22) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080422 +packetLen(0x012a, 2) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080415 +packetLen(0x012a, 3) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080408 +packetLen(0x012a, 282) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080401 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080325 +packetLen(0x012a, 3) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080318 +packetLen(0x012a, 4) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080304 +packetLen(0x012a, 8) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080226 +packetLen(0x012a, 3) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080219 +packetLen(0x012a, 5) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080102 +packetLen(0x012a, 2) // CZ_REQ_CARTOFF +#endif + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +#if PACKETVER >= 20080610 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080603 +packetLen(0x012c, 5) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080528 +packetLen(0x012c, 58) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080520 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080513 +packetLen(0x012c, 2) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080507 +packetLen(0x012c, 10) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080429 +packetLen(0x012c, 39) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080422 +packetLen(0x012c, 8) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080415 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080408 +packetLen(0x012c, 30) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080401 +packetLen(0x012c, 8) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080325 +packetLen(0x012c, 4) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080318 +packetLen(0x012c, 10) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x012c, 14) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x012c, 30) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x012c, 20) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x012c, 9) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080124 +packetLen(0x012c, 19) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART +#endif + +// Packet: 0x012d +#if PACKETVER >= 20080701 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080624 +packetLen(0x012d, 26) // ZC_OPENSTORE +#elif PACKETVER >= 20080617 +packetLen(0x012d, 3) // ZC_OPENSTORE +#elif PACKETVER >= 20080610 +packetLen(0x012d, 8) // ZC_OPENSTORE +#elif PACKETVER >= 20080603 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080528 +packetLen(0x012d, 30) // ZC_OPENSTORE +#elif PACKETVER >= 20080520 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080513 +packetLen(0x012d, 34) // ZC_OPENSTORE +#elif PACKETVER >= 20080507 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080429 +packetLen(0x012d, 4) // ZC_OPENSTORE +#elif PACKETVER >= 20080422 +packetLen(0x012d, 81) // ZC_OPENSTORE +#elif PACKETVER >= 20080415 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080408 +packetLen(0x012d, 33) // ZC_OPENSTORE +#elif PACKETVER >= 20080401 +packetLen(0x012d, 3) // ZC_OPENSTORE +#elif PACKETVER >= 20080325 +packetLen(0x012d, 6) // ZC_OPENSTORE +#elif PACKETVER >= 20080318 +packetLen(0x012d, 2) // ZC_OPENSTORE +#elif PACKETVER >= 20080311 +packetLen(0x012d, 30) // ZC_OPENSTORE +#elif PACKETVER >= 20080304 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080219 +packetLen(0x012d, 14) // ZC_OPENSTORE +#elif PACKETVER >= 20080124 +packetLen(0x012d, 26) // ZC_OPENSTORE +#elif PACKETVER >= 20080102 +packetLen(0x012d, 4) // ZC_OPENSTORE +#endif + +// Packet: 0x012e +#if PACKETVER >= 20080701 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080624 +packetLen(0x012e, 6) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080617 +packetLen(0x012e, 31) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080520 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080513 +packetLen(0x012e, 5) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080507 +packetLen(0x012e, 102) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080429 +packetLen(0x012e, 3) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080422 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080415 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080408 +packetLen(0x012e, 26) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080401 +packetLen(0x012e, 7) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080325 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080318 +packetLen(0x012e, 4) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080311 +packetLen(0x012e, 14) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080304 +packetLen(0x012e, 6) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080219 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080102 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#endif + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +#if PACKETVER >= 20080617 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080610 +packetLen(0x0130, 30) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080603 +packetLen(0x0130, 4) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080528 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080520 +packetLen(0x0130, 282) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080507 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080429 +packetLen(0x0130, 4) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080422 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080415 +packetLen(0x0130, 2) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080408 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080401 +packetLen(0x0130, 81) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080325 +packetLen(0x0130, 4) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080318 +packetLen(0x0130, 66) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080304 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0130, 28) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0130, 5) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080124 +packetLen(0x0130, 8) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#endif + +// Packet: 0x0131 +#if PACKETVER >= 20080624 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x0131, 3) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x0131, 12) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x0131, 35) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080528 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080520 +packetLen(0x0131, 3) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080513 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080507 +packetLen(0x0131, 35) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080429 +packetLen(0x0131, 14) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x0131, 8) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080415 +packetLen(0x0131, 3) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x0131, 11) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080325 +packetLen(0x0131, 4) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x0131, 6) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0131, 14) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x0131, 29) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0131, 26) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0131, 86) // ZC_STORE_ENTRY +#endif + +// Packet: 0x0132 +#if PACKETVER >= 20080701 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080624 +packetLen(0x0132, 4) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x0132, 10) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x0132, 14) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x0132, 16) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080325 +packetLen(0x0132, 30) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x0132, 11) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0132, 36) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x0132, 2) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +#endif + +// Packet: 0x0133 +#if PACKETVER >= 20080701 +packetLen(0x0133, 11) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080617 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080610 +packetLen(0x0133, 7) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080603 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080528 +packetLen(0x0133, 8) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080520 +packetLen(0x0133, 57) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080513 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080507 +packetLen(0x0133, 26) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080429 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080422 +packetLen(0x0133, 14) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080415 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080408 +packetLen(0x0133, 5) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080401 +packetLen(0x0133, 24) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080304 +packetLen(0x0133, 26) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0133, 10) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0133, 8) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080124 +packetLen(0x0133, 3) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#endif + +// Packet: 0x0134 +#if PACKETVER >= 20080701 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080624 +packetLen(0x0134, 29) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080617 +packetLen(0x0134, 8) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080610 +packetLen(0x0134, 67) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080603 +packetLen(0x0134, 30) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080528 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080520 +packetLen(0x0134, 7) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080513 +packetLen(0x0134, 282) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080507 +packetLen(0x0134, 16) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080422 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080415 +packetLen(0x0134, 71) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080408 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080401 +packetLen(0x0134, 28) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080325 +packetLen(0x0134, 7) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080318 +packetLen(0x0134, 20) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0134, 26) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0134, 3) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0134, 4) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#endif + +// Packet: 0x0135 +#if PACKETVER >= 20080624 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080617 +packetLen(0x0135, 13) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080610 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080603 +packetLen(0x0135, 60) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080520 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080513 +packetLen(0x0135, 9) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080507 +packetLen(0x0135, 8) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080429 +packetLen(0x0135, 29) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080422 +packetLen(0x0135, 4) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080415 +packetLen(0x0135, 2) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080401 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080325 +packetLen(0x0135, 6) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0135, 2) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0135, 6) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0135, 65) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080124 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC +#endif + +// Packet: 0x0136 +#if PACKETVER >= 20080701 +packetLen(0x0136, 54) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x0136, 5) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x0136, 8) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x0136, 11) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x0136, 10) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x0136, 30) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x0136, 3) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x0136, 28) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x0136, 10) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x0136, 6) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0136, 30) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0136, 10) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0136, 2) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#endif + +// Packet: 0x0137 +#if PACKETVER >= 20080701 +packetLen(0x0137, 9) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080624 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080617 +packetLen(0x0137, 71) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080610 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080603 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080528 +packetLen(0x0137, 8) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080429 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080422 +packetLen(0x0137, 30) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080415 +packetLen(0x0137, 27) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080408 +packetLen(0x0137, 7) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080401 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080325 +packetLen(0x0137, 32) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080318 +packetLen(0x0137, 22) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080311 +packetLen(0x0137, 86) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080226 +packetLen(0x0137, 5) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080219 +packetLen(0x0137, 10) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080124 +packetLen(0x0137, 7) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080102 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#endif + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +#if PACKETVER >= 20080701 +packetLen(0x0139, 26) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080624 +packetLen(0x0139, 10) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080617 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080610 +packetLen(0x0139, 5) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080603 +packetLen(0x0139, 2) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080513 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080507 +packetLen(0x0139, 9) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080429 +packetLen(0x0139, 28) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080422 +packetLen(0x0139, 29) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080415 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080408 +packetLen(0x0139, 11) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080401 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080325 +packetLen(0x0139, 3) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080318 +packetLen(0x0139, 14) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080311 +packetLen(0x0139, 31) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080304 +packetLen(0x0139, 6) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080226 +packetLen(0x0139, 81) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080219 +packetLen(0x0139, 6) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080124 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080102 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#endif + +// Packet: 0x013a +#if PACKETVER >= 20080701 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080624 +packetLen(0x013a, 2) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080617 +packetLen(0x013a, 3) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080610 +packetLen(0x013a, 30) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080603 +packetLen(0x013a, 39) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080513 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080507 +packetLen(0x013a, 182) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080429 +packetLen(0x013a, 6) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080422 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080415 +packetLen(0x013a, 6) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080408 +packetLen(0x013a, 55) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080401 +packetLen(0x013a, 12) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080325 +packetLen(0x013a, 3) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080318 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080311 +packetLen(0x013a, 6) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080304 +packetLen(0x013a, 32) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080226 +packetLen(0x013a, 58) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080124 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080102 +packetLen(0x013a, 4) // ZC_ATTACK_RANGE +#endif + +// Packet: 0x013b +#if PACKETVER >= 20080701 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080624 +packetLen(0x013b, 22) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080617 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080610 +packetLen(0x013b, 22) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080603 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080528 +packetLen(0x013b, 5) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080520 +packetLen(0x013b, 10) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080513 +packetLen(0x013b, 18) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080507 +packetLen(0x013b, 2) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080429 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080422 +packetLen(0x013b, 15) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080415 +packetLen(0x013b, 7) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080408 +packetLen(0x013b, 30) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080401 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080325 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080318 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080311 +packetLen(0x013b, 23) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080304 +packetLen(0x013b, 22) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080226 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080219 +packetLen(0x013b, 16) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080124 +packetLen(0x013b, 2) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080102 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#endif + +// Packet: 0x013c +#if PACKETVER >= 20080701 +packetLen(0x013c, 6) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080624 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080617 +packetLen(0x013c, 12) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080610 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080603 +packetLen(0x013c, 53) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080528 +packetLen(0x013c, 8) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080520 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080513 +packetLen(0x013c, 11) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080507 +packetLen(0x013c, 6) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080429 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080422 +packetLen(0x013c, 33) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080415 +packetLen(0x013c, 8) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080408 +packetLen(0x013c, 6) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080401 +packetLen(0x013c, 12) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080325 +packetLen(0x013c, 3) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080318 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080311 +packetLen(0x013c, 6) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080304 +packetLen(0x013c, 66) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080226 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080219 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080124 +packetLen(0x013c, 11) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080102 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +#endif + +// Packet: 0x013d +#if PACKETVER >= 20080701 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080624 +packetLen(0x013d, 3) // ZC_RECOVERY +#elif PACKETVER >= 20080617 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080610 +packetLen(0x013d, 7) // ZC_RECOVERY +#elif PACKETVER >= 20080603 +packetLen(0x013d, 2) // ZC_RECOVERY +#elif PACKETVER >= 20080528 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080520 +packetLen(0x013d, 8) // ZC_RECOVERY +#elif PACKETVER >= 20080513 +packetLen(0x013d, 31) // ZC_RECOVERY +#elif PACKETVER >= 20080507 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080429 +packetLen(0x013d, 10) // ZC_RECOVERY +#elif PACKETVER >= 20080422 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080415 +packetLen(0x013d, 26) // ZC_RECOVERY +#elif PACKETVER >= 20080408 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080401 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080325 +packetLen(0x013d, 3) // ZC_RECOVERY +#elif PACKETVER >= 20080318 +packetLen(0x013d, 282) // ZC_RECOVERY +#elif PACKETVER >= 20080311 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080304 +packetLen(0x013d, 3) // ZC_RECOVERY +#elif PACKETVER >= 20080226 +packetLen(0x013d, 2) // ZC_RECOVERY +#elif PACKETVER >= 20080219 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080124 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080102 +packetLen(0x013d, 6) // ZC_RECOVERY +#endif + +// Packet: 0x013e +#if PACKETVER >= 20080701 +packetLen(0x013e, 26) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080624 +packetLen(0x013e, 3) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080603 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080528 +packetLen(0x013e, 6) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080520 +packetLen(0x013e, 20) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080513 +packetLen(0x013e, 7) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080507 +packetLen(0x013e, 21) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080429 +packetLen(0x013e, 8) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080422 +packetLen(0x013e, 7) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080408 +packetLen(0x013e, 6) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080401 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080325 +packetLen(0x013e, 15) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080318 +packetLen(0x013e, 11) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080311 +packetLen(0x013e, 2) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080304 +packetLen(0x013e, 4) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080226 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080219 +packetLen(0x013e, 30) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080124 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080102 +packetLen(0x013e, 24) // ZC_USESKILL_ACK +#endif + +// Packet: 0x013f +#if PACKETVER >= 20080701 +packetLen(0x013f, 30) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080624 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080617 +packetLen(0x013f, 2) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080610 +packetLen(0x013f, 7) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080603 +packetLen(0x013f, 11) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080528 +packetLen(0x013f, 2) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080520 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080513 +packetLen(0x013f, 29) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080507 +packetLen(0x013f, 20) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080422 +packetLen(0x013f, 26) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080415 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080408 +packetLen(0x013f, 8) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080401 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080325 +packetLen(0x013f, 28) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080318 +packetLen(0x013f, 54) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080311 +packetLen(0x013f, 282) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080304 +packetLen(0x013f, 6) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080226 +packetLen(0x013f, 5) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080219 +packetLen(0x013f, 58) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080124 +packetLen(0x013f, 9) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080102 +packetLen(0x013f, 26) // CZ_ITEM_CREATE +#endif + +// Packet: 0x0140 +#if PACKETVER >= 20080701 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080624 +packetLen(0x0140, 2) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080617 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080610 +packetLen(0x0140, 11) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080603 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080528 +packetLen(0x0140, 6) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080520 +packetLen(0x0140, 8) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080513 +packetLen(0x0140, 6) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080507 +packetLen(0x0140, 4) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080429 +packetLen(0x0140, 3) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080422 +packetLen(0x0140, 22) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080415 +packetLen(0x0140, 7) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080408 +packetLen(0x0140, 53) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080401 +packetLen(0x0140, 10) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080325 +packetLen(0x0140, 27) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080318 +packetLen(0x0140, 33) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080311 +packetLen(0x0140, 3) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080304 +packetLen(0x0140, 6) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080226 +packetLen(0x0140, 11) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080219 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080124 +packetLen(0x0140, 2) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080102 +packetLen(0x0140, 22) // CZ_MOVETO_MAP +#endif + +// Packet: 0x0141 +#if PACKETVER >= 20080624 +packetLen(0x0141, 4) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080617 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080610 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080603 +packetLen(0x0141, 5) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080528 +packetLen(0x0141, 18) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080520 +packetLen(0x0141, 4) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080513 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080507 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080429 +packetLen(0x0141, 60) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080422 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080415 +packetLen(0x0141, 7) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080408 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080401 +packetLen(0x0141, 3) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080325 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080318 +packetLen(0x0141, 11) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080311 +packetLen(0x0141, 9) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080304 +packetLen(0x0141, 30) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080226 +packetLen(0x0141, 22) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080219 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080124 +packetLen(0x0141, 35) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080102 +packetLen(0x0141, 14) // ZC_COUPLESTATUS +#endif + +// Packet: 0x0142 +#if PACKETVER >= 20080701 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080617 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080610 +packetLen(0x0142, 32) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080603 +packetLen(0x0142, 2) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080528 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080520 +packetLen(0x0142, 7) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080513 +packetLen(0x0142, 15) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080422 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080408 +packetLen(0x0142, 11) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080401 +packetLen(0x0142, 9) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080325 +packetLen(0x0142, 67) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080318 +packetLen(0x0142, 26) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080311 +packetLen(0x0142, 30) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080304 +packetLen(0x0142, 4) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080226 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080219 +packetLen(0x0142, 2) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080124 +packetLen(0x0142, 3) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080102 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG +#endif + +// Packet: 0x0143 +#if PACKETVER >= 20080617 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080610 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080603 +packetLen(0x0143, 7) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080528 +packetLen(0x0143, 26) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080520 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080513 +packetLen(0x0143, 97) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080507 +packetLen(0x0143, 2) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080422 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080415 +packetLen(0x0143, 2) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080408 +packetLen(0x0143, 53) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080401 +packetLen(0x0143, 27) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080325 +packetLen(0x0143, 28) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080318 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080304 +packetLen(0x0143, 3) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080226 +packetLen(0x0143, 8) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080219 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080124 +packetLen(0x0143, 67) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080102 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +#endif + +// Packet: 0x0144 +#if PACKETVER >= 20080701 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080624 +packetLen(0x0144, 2) // ZC_COMPASS +#elif PACKETVER >= 20080617 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080610 +packetLen(0x0144, 81) // ZC_COMPASS +#elif PACKETVER >= 20080603 +packetLen(0x0144, 22) // ZC_COMPASS +#elif PACKETVER >= 20080528 +packetLen(0x0144, 3) // ZC_COMPASS +#elif PACKETVER >= 20080520 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080513 +packetLen(0x0144, 4) // ZC_COMPASS +#elif PACKETVER >= 20080507 +packetLen(0x0144, 7) // ZC_COMPASS +#elif PACKETVER >= 20080415 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080408 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20080401 +packetLen(0x0144, 65) // ZC_COMPASS +#elif PACKETVER >= 20080325 +packetLen(0x0144, 282) // ZC_COMPASS +#elif PACKETVER >= 20080318 +packetLen(0x0144, 7) // ZC_COMPASS +#elif PACKETVER >= 20080311 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20080304 +packetLen(0x0144, 2) // ZC_COMPASS +#elif PACKETVER >= 20080226 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20080219 +packetLen(0x0144, 10) // ZC_COMPASS +#elif PACKETVER >= 20080124 +packetLen(0x0144, 2) // ZC_COMPASS +#elif PACKETVER >= 20080102 +packetLen(0x0144, 23) // ZC_COMPASS +#endif + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +#if PACKETVER >= 20080624 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080617 +packetLen(0x0146, 23) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080610 +packetLen(0x0146, 5) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080603 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080528 +packetLen(0x0146, 10) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080513 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080507 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080429 +packetLen(0x0146, 65) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080422 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080408 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080401 +packetLen(0x0146, 10) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080325 +packetLen(0x0146, 2) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080318 +packetLen(0x0146, 42) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x0146, 10) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x0146, 7) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x0146, 10) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080124 +packetLen(0x0146, 8) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#endif + +// Packet: 0x0147 +#if PACKETVER >= 20080701 +packetLen(0x0147, 282) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080624 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080617 +packetLen(0x0147, 18) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080610 +packetLen(0x0147, 8) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080528 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080520 +packetLen(0x0147, 114) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080513 +packetLen(0x0147, 282) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080507 +packetLen(0x0147, 4) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080429 +packetLen(0x0147, 20) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080422 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080415 +packetLen(0x0147, 8) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080401 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080325 +packetLen(0x0147, 90) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x0147, 6) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x0147, 16) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x0147, 11) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080124 +packetLen(0x0147, 2) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL +#endif + +// Packet: 0x0148 +#if PACKETVER >= 20080617 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20080610 +packetLen(0x0148, 2) // ZC_RESURRECTION +#elif PACKETVER >= 20080528 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20080513 +packetLen(0x0148, 6) // ZC_RESURRECTION +#elif PACKETVER >= 20080507 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20080429 +packetLen(0x0148, 14) // ZC_RESURRECTION +#elif PACKETVER >= 20080422 +packetLen(0x0148, 2) // ZC_RESURRECTION +#elif PACKETVER >= 20080415 +packetLen(0x0148, 39) // ZC_RESURRECTION +#elif PACKETVER >= 20080408 +packetLen(0x0148, 10) // ZC_RESURRECTION +#elif PACKETVER >= 20080401 +packetLen(0x0148, 7) // ZC_RESURRECTION +#elif PACKETVER >= 20080325 +packetLen(0x0148, 10) // ZC_RESURRECTION +#elif PACKETVER >= 20080318 +packetLen(0x0148, 6) // ZC_RESURRECTION +#elif PACKETVER >= 20080311 +packetLen(0x0148, 54) // ZC_RESURRECTION +#elif PACKETVER >= 20080304 +packetLen(0x0148, 282) // ZC_RESURRECTION +#elif PACKETVER >= 20080226 +packetLen(0x0148, 6) // ZC_RESURRECTION +#elif PACKETVER >= 20080219 +packetLen(0x0148, 4) // ZC_RESURRECTION +#elif PACKETVER >= 20080124 +packetLen(0x0148, 3) // ZC_RESURRECTION +#elif PACKETVER >= 20080102 +packetLen(0x0148, 8) // ZC_RESURRECTION +#endif + +// Packet: 0x0149 +#if PACKETVER >= 20080701 +packetLen(0x0149, 14) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080624 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080610 +packetLen(0x0149, 8) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080603 +packetLen(0x0149, 7) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080528 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080520 +packetLen(0x0149, 27) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080513 +packetLen(0x0149, 71) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080429 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080422 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080415 +packetLen(0x0149, 5) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080408 +packetLen(0x0149, 17) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080401 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080325 +packetLen(0x0149, 2) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080318 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080311 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080304 +packetLen(0x0149, 5) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080226 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080219 +packetLen(0x0149, 53) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080124 +packetLen(0x0149, 4) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080102 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT +#endif + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +#if PACKETVER >= 20080701 +packetLen(0x014c, 26) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080624 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080617 +packetLen(0x014c, 17) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080610 +packetLen(0x014c, 4) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080603 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080528 +packetLen(0x014c, 16) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080507 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080429 +packetLen(0x014c, 12) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080415 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080408 +packetLen(0x014c, 4) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080401 +packetLen(0x014c, 55) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080325 +packetLen(0x014c, 10) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080318 +packetLen(0x014c, 9) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080311 +packetLen(0x014c, 17) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080226 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080219 +packetLen(0x014c, 4) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080102 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#endif + +// Packet: 0x014d +#if PACKETVER >= 20080701 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080624 +packetLen(0x014d, 9) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080603 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080528 +packetLen(0x014d, 30) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080520 +packetLen(0x014d, 282) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080513 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080507 +packetLen(0x014d, 3) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080429 +packetLen(0x014d, 4) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080422 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080415 +packetLen(0x014d, 6) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080401 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080318 +packetLen(0x014d, 10) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080311 +packetLen(0x014d, 9) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080304 +packetLen(0x014d, 11) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080226 +packetLen(0x014d, 8) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080219 +packetLen(0x014d, 10) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080124 +packetLen(0x014d, 8) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080102 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#endif + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +#if PACKETVER >= 20080617 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080603 +packetLen(0x014f, 3) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080528 +packetLen(0x014f, 13) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080507 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080429 +packetLen(0x014f, 23) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080422 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080408 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080401 +packetLen(0x014f, 58) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080325 +packetLen(0x014f, 4) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080318 +packetLen(0x014f, 3) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080304 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080226 +packetLen(0x014f, 97) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080219 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080124 +packetLen(0x014f, 30) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080102 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#endif + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +#if PACKETVER >= 20080701 +packetLen(0x0154, 11) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080617 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080610 +packetLen(0x0154, 13) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080603 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080528 +packetLen(0x0154, 5) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080513 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080507 +packetLen(0x0154, 16) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080422 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080415 +packetLen(0x0154, 6) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080408 +packetLen(0x0154, 10) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080401 +packetLen(0x0154, 39) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080325 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080318 +packetLen(0x0154, 30) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080311 +packetLen(0x0154, 7) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080304 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080226 +packetLen(0x0154, 6) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080219 +packetLen(0x0154, 8) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080102 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#endif + +// Packet: 0x0155 +#if PACKETVER >= 20080624 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080617 +packetLen(0x0155, 12) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080610 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080603 +packetLen(0x0155, 12) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080520 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080513 +packetLen(0x0155, 27) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080507 +packetLen(0x0155, 10) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080422 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080408 +packetLen(0x0155, 6) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080325 +packetLen(0x0155, 22) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080311 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080304 +packetLen(0x0155, 8) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080226 +packetLen(0x0155, 66) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080219 +packetLen(0x0155, 15) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080102 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#endif + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +#if PACKETVER >= 20080701 +packetLen(0x0159, 7) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x0159, 26) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0159, 3) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0159, 27) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0159, 15) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0159, 30) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0159, 29) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0159, 10) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0159, 39) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0159, 6) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0159, 186) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0159, 33) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +#endif + +// Packet: 0x015a +#if PACKETVER >= 20080617 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x015a, 24) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x015a, 2) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x015a, 31) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x015a, 15) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x015a, 4) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x015a, 14) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x015a, 23) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x015a, 33) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x015a, 26) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x015a, 27) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x015a, 3) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x015a, 6) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x015a, 8) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x015a, 26) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD +#endif + +// Packet: 0x015b +#if PACKETVER >= 20080701 +packetLen(0x015b, 6) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x015b, 20) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x015b, 32) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x015b, 59) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x015b, 79) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x015b, 4) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x015b, 97) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x015b, 26) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x015b, 30) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x015b, 2) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x015b, 24) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x015b, 4) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x015b, 33) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x015b, 22) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x015b, 6) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#endif + +// Packet: 0x015c +#if PACKETVER >= 20080624 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x015c, 6) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x015c, 7) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x015c, 6) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x015c, 2) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x015c, 8) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x015c, 18) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x015c, 57) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x015c, 30) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x015c, 15) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x015c, 3) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x015c, 5) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x015c, 14) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD +#endif + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +#if PACKETVER >= 20080701 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080624 +packetLen(0x015e, 30) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080610 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080603 +packetLen(0x015e, 4) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080520 +packetLen(0x015e, 3) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080513 +packetLen(0x015e, 2) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080507 +packetLen(0x015e, 9) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080429 +packetLen(0x015e, 10) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080422 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080415 +packetLen(0x015e, 32) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080408 +packetLen(0x015e, 30) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080401 +packetLen(0x015e, 10) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080325 +packetLen(0x015e, 15) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080318 +packetLen(0x015e, 28) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080311 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080304 +packetLen(0x015e, 3) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080226 +packetLen(0x015e, 54) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080219 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080124 +packetLen(0x015e, 16) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080102 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#endif + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +#if PACKETVER >= 20080701 +packetLen(0x0160, 5) // ZC_POSITION_INFO +#elif PACKETVER >= 20080624 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080617 +packetLen(0x0160, 11) // ZC_POSITION_INFO +#elif PACKETVER >= 20080610 +packetLen(0x0160, 5) // ZC_POSITION_INFO +#elif PACKETVER >= 20080603 +packetLen(0x0160, 186) // ZC_POSITION_INFO +#elif PACKETVER >= 20080528 +packetLen(0x0160, 2) // ZC_POSITION_INFO +#elif PACKETVER >= 20080520 +packetLen(0x0160, 8) // ZC_POSITION_INFO +#elif PACKETVER >= 20080507 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080429 +packetLen(0x0160, 6) // ZC_POSITION_INFO +#elif PACKETVER >= 20080408 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080401 +packetLen(0x0160, 8) // ZC_POSITION_INFO +#elif PACKETVER >= 20080325 +packetLen(0x0160, 4) // ZC_POSITION_INFO +#elif PACKETVER >= 20080318 +packetLen(0x0160, 14) // ZC_POSITION_INFO +#elif PACKETVER >= 20080304 +packetLen(0x0160, 26) // ZC_POSITION_INFO +#elif PACKETVER >= 20080226 +packetLen(0x0160, 2) // ZC_POSITION_INFO +#elif PACKETVER >= 20080219 +packetLen(0x0160, 102) // ZC_POSITION_INFO +#elif PACKETVER >= 20080124 +packetLen(0x0160, 6) // ZC_POSITION_INFO +#elif PACKETVER >= 20080102 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#endif + +// Packet: 0x0161 +#if PACKETVER >= 20080701 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080624 +packetLen(0x0161, 16) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080617 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080610 +packetLen(0x0161, 5) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080603 +packetLen(0x0161, 16) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080528 +packetLen(0x0161, 6) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080520 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080513 +packetLen(0x0161, 6) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080507 +packetLen(0x0161, 4) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080422 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080415 +packetLen(0x0161, 15) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080408 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080401 +packetLen(0x0161, 6) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080325 +packetLen(0x0161, 282) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080318 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080311 +packetLen(0x0161, 30) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080304 +packetLen(0x0161, 7) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080226 +packetLen(0x0161, 21) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080219 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080124 +packetLen(0x0161, 8) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080102 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#endif + +// Packet: 0x0162 +#if PACKETVER >= 20080701 +packetLen(0x0162, 81) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080624 +packetLen(0x0162, 23) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080617 +packetLen(0x0162, 22) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080610 +packetLen(0x0162, 18) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080603 +packetLen(0x0162, 30) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080528 +packetLen(0x0162, 66) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080520 +packetLen(0x0162, 10) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080513 +packetLen(0x0162, 3) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080507 +packetLen(0x0162, 30) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080429 +packetLen(0x0162, 6) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080422 +packetLen(0x0162, 13) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080415 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080408 +packetLen(0x0162, 3) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080401 +packetLen(0x0162, 282) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080325 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080311 +packetLen(0x0162, 6) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080226 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080219 +packetLen(0x0162, 26) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080124 +packetLen(0x0162, 6) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080102 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#endif + +// Packet: 0x0163 +#if PACKETVER >= 20080610 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0163, 44) // ZC_BAN_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0163, 68) // ZC_BAN_LIST +#elif PACKETVER >= 20080520 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080513 +packetLen(0x0163, 42) // ZC_BAN_LIST +#elif PACKETVER >= 20080507 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080429 +packetLen(0x0163, 2) // ZC_BAN_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0163, 86) // ZC_BAN_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0163, 8) // ZC_BAN_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0163, 4) // ZC_BAN_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0163, 30) // ZC_BAN_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0163, -1) // ZC_BAN_LIST +#endif + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +#if PACKETVER >= 20080701 +packetLen(0x0165, 54) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0165, 4) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0165, 114) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0165, 11) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0165, 10) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0165, 182) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0165, 5) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0165, 97) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0165, 26) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0165, 102) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0165, 4) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0165, 29) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0165, 6) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD +#endif + +// Packet: 0x0166 +#if PACKETVER >= 20080701 +packetLen(0x0166, 4) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080617 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080610 +packetLen(0x0166, 27) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080603 +packetLen(0x0166, 2) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080528 +packetLen(0x0166, 4) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080520 +packetLen(0x0166, 16) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080513 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080507 +packetLen(0x0166, 7) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080429 +packetLen(0x0166, 6) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080415 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080401 +packetLen(0x0166, 6) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080325 +packetLen(0x0166, 3) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080318 +packetLen(0x0166, 68) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080311 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080304 +packetLen(0x0166, 5) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080226 +packetLen(0x0166, 18) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080102 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#endif + +// Packet: 0x0167 +#if PACKETVER >= 20080617 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0167, 9) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0167, 67) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0167, 26) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0167, 86) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0167, 6) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0167, 4) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0167, 42) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0167, 7) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0167, 4) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0167, 14) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0167, 7) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0167, 6) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0167, 71) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0167, 2) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0167, 58) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD +#endif + +// Packet: 0x0168 +#if PACKETVER >= 20080701 +packetLen(0x0168, 6) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x0168, 9) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0168, 11) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0168, 282) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0168, 15) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0168, 2) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0168, 10) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0168, 2) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0168, 10) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0168, 11) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0168, 10) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0168, 22) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0168, 3) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0168, 6) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0168, 4) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +#endif + +// Packet: 0x0169 +#if PACKETVER >= 20080701 +packetLen(0x0169, 5) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0169, 4) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0169, 2) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0169, 9) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0169, 282) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0169, 5) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0169, 2) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0169, 5) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0169, 6) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0169, 4) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0169, 6) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#endif + +// Packet: 0x016a +#if PACKETVER >= 20080701 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x016a, 6) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x016a, 10) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x016a, 4) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x016a, 6) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x016a, 24) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x016a, 6) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x016a, 22) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x016a, 97) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x016a, 7) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x016a, 44) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x016a, 32) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x016a, 26) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x016a, 2) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x016a, 4) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x016a, 3) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD +#endif + +// Packet: 0x016b +#if PACKETVER >= 20080624 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x016b, 6) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x016b, 10) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x016b, 4) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x016b, 8) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x016b, 27) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x016b, 22) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x016b, 20) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x016b, 6) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x016b, 11) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x016b, 10) // CZ_JOIN_GUILD +#endif + +// Packet: 0x016c +#if PACKETVER >= 20080701 +packetLen(0x016c, 7) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080624 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080617 +packetLen(0x016c, 10) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080610 +packetLen(0x016c, 28) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080603 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080528 +packetLen(0x016c, 54) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080520 +packetLen(0x016c, 30) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080513 +packetLen(0x016c, 14) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080507 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080429 +packetLen(0x016c, 57) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080422 +packetLen(0x016c, 10) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080408 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080401 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080325 +packetLen(0x016c, 32) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080318 +packetLen(0x016c, 22) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080311 +packetLen(0x016c, 4) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080304 +packetLen(0x016c, 2) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080226 +packetLen(0x016c, 8) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080219 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080124 +packetLen(0x016c, 9) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080102 +packetLen(0x016c, 43) // ZC_UPDATE_GDID +#endif + +// Packet: 0x016d +#if PACKETVER >= 20080701 +packetLen(0x016d, 3) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080617 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080610 +packetLen(0x016d, 3) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080603 +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080528 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080520 +packetLen(0x016d, 13) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080507 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080429 +packetLen(0x016d, 10) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080422 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080415 +packetLen(0x016d, 4) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080408 +packetLen(0x016d, 3) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080401 +packetLen(0x016d, 4) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080325 +packetLen(0x016d, 6) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080318 +packetLen(0x016d, 19) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080311 +packetLen(0x016d, 22) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080304 +packetLen(0x016d, 8) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080226 +packetLen(0x016d, 3) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080219 +packetLen(0x016d, 30) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080124 +packetLen(0x016d, 2) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080102 +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT +#endif + +// Packet: 0x016e +#if PACKETVER >= 20080701 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080624 +packetLen(0x016e, 2) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080617 +packetLen(0x016e, 39) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080520 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080513 +packetLen(0x016e, 15) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080429 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080422 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080415 +packetLen(0x016e, 42) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080401 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080325 +packetLen(0x016e, 2) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080318 +packetLen(0x016e, 3) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080311 +packetLen(0x016e, 4) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080304 +packetLen(0x016e, 30) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080226 +packetLen(0x016e, 4) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080219 +packetLen(0x016e, 3) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080124 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080102 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +#endif + +// Packet: 0x016f +#if PACKETVER >= 20080701 +packetLen(0x016f, 44) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080624 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080617 +packetLen(0x016f, 2) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080603 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080528 +packetLen(0x016f, 2) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080507 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080429 +packetLen(0x016f, 14) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080422 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080415 +packetLen(0x016f, 6) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080408 +packetLen(0x016f, 7) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080401 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080325 +packetLen(0x016f, 22) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080318 +packetLen(0x016f, 9) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080311 +packetLen(0x016f, 182) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080304 +packetLen(0x016f, 12) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080226 +packetLen(0x016f, 6) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080219 +packetLen(0x016f, 4) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080124 +packetLen(0x016f, 29) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080102 +packetLen(0x016f, 182) // ZC_GUILD_NOTICE +#endif + +// Packet: 0x0170 +#if PACKETVER >= 20080701 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x0170, 20) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0170, 30) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0170, 102) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0170, 6) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0170, 26) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0170, 22) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0170, 282) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0170, 6) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0170, 4) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0170, 81) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0170, 30) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0170, 60) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#endif + +// Packet: 0x0171 +#if PACKETVER >= 20080701 +packetLen(0x0171, 8) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x0171, 3) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0171, 10) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0171, 282) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0171, 6) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0171, 7) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0171, 5) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0171, 23) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0171, 8) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0171, 3) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0171, 6) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0171, 67) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0171, 6) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0171, 10) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD +#endif + +// Packet: 0x0172 +#if PACKETVER >= 20080624 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0172, 102) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0172, 3) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0172, 6) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0172, 28) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0172, 2) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0172, 6) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0172, 14) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0172, 3) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0172, 53) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0172, 22) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0172, 14) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +#endif + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +#if PACKETVER >= 20080701 +packetLen(0x0177, 2) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080624 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080617 +packetLen(0x0177, 4) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0177, 31) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0177, 58) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0177, 4) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080513 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080507 +packetLen(0x0177, 30) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080429 +packetLen(0x0177, 26) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0177, 28) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0177, 114) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080408 +packetLen(0x0177, 10) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080401 +packetLen(0x0177, 4) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080325 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0177, 11) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0177, 27) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0177, 34) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0177, 3) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0177, 2) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0177, 30) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#endif + +// Packet: 0x0178 +#if PACKETVER >= 20080624 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080617 +packetLen(0x0178, 10) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080603 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080528 +packetLen(0x0178, 33) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080520 +packetLen(0x0178, 7) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080513 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080429 +packetLen(0x0178, 6) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080415 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080408 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080401 +packetLen(0x0178, 7) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080325 +packetLen(0x0178, 6) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080318 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080311 +packetLen(0x0178, 11) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080304 +packetLen(0x0178, 6) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080226 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080219 +packetLen(0x0178, 30) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080124 +packetLen(0x0178, 68) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080102 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +#endif + +// Packet: 0x0179 +#if PACKETVER >= 20080701 +packetLen(0x0179, 59) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080624 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080617 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080610 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080603 +packetLen(0x0179, 27) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080528 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080520 +packetLen(0x0179, 11) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080513 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080507 +packetLen(0x0179, 43) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080429 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080422 +packetLen(0x0179, 55) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080415 +packetLen(0x0179, 4) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080408 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080401 +packetLen(0x0179, 10) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080325 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080318 +packetLen(0x0179, 8) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080311 +packetLen(0x0179, 2) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080304 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080219 +packetLen(0x0179, 3) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080124 +packetLen(0x0179, 15) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080102 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY +#endif + +// Packet: 0x017a +#if PACKETVER >= 20080701 +packetLen(0x017a, 29) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080610 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080603 +packetLen(0x017a, 28) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080528 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080520 +packetLen(0x017a, 6) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080513 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080507 +packetLen(0x017a, 6) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080429 +packetLen(0x017a, 5) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080415 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080408 +packetLen(0x017a, 2) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080401 +packetLen(0x017a, 31) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080325 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080318 +packetLen(0x017a, 8) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080311 +packetLen(0x017a, 6) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080304 +packetLen(0x017a, 13) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080219 +packetLen(0x017a, 30) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080124 +packetLen(0x017a, 7) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080102 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#endif + +// Packet: 0x017b +#if PACKETVER >= 20080701 +packetLen(0x017b, 2) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080617 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080610 +packetLen(0x017b, 2) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080603 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080528 +packetLen(0x017b, 4) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080520 +packetLen(0x017b, 68) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080513 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080507 +packetLen(0x017b, 53) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080429 +packetLen(0x017b, 8) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080415 +packetLen(0x017b, 6) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080408 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080401 +packetLen(0x017b, 6) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080325 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080318 +packetLen(0x017b, 11) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080311 +packetLen(0x017b, 3) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080304 +packetLen(0x017b, 4) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080226 +packetLen(0x017b, 9) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080219 +packetLen(0x017b, 18) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080124 +packetLen(0x017b, 3) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080102 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#endif + +// Packet: 0x017c +#if PACKETVER >= 20080701 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080624 +packetLen(0x017c, 55) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080617 +packetLen(0x017c, 26) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080610 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080603 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080528 +packetLen(0x017c, 21) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080520 +packetLen(0x017c, 39) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080513 +packetLen(0x017c, 7) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080422 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080408 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080401 +packetLen(0x017c, 31) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080311 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080304 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080226 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080219 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080124 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080102 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#endif + +// Packet: 0x017d +#if PACKETVER >= 20080701 +packetLen(0x017d, 33) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080610 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080603 +packetLen(0x017d, 3) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080528 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080520 +packetLen(0x017d, 4) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080422 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080415 +packetLen(0x017d, 11) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080408 +packetLen(0x017d, 6) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080401 +packetLen(0x017d, 8) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080325 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080318 +packetLen(0x017d, 28) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080311 +packetLen(0x017d, 34) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080304 +packetLen(0x017d, 30) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080219 +packetLen(0x017d, 8) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080124 +packetLen(0x017d, 10) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080102 +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION +#endif + +// Packet: 0x017e +#if PACKETVER >= 20080701 +packetLen(0x017e, 4) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080624 +packetLen(0x017e, 6) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080617 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080610 +packetLen(0x017e, 2) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080603 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080528 +packetLen(0x017e, 29) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080520 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080513 +packetLen(0x017e, 3) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080507 +packetLen(0x017e, 32) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080429 +packetLen(0x017e, 3) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080422 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080415 +packetLen(0x017e, 14) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080408 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080401 +packetLen(0x017e, 4) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080325 +packetLen(0x017e, 14) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080318 +packetLen(0x017e, 3) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080311 +packetLen(0x017e, 31) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080304 +packetLen(0x017e, 10) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080226 +packetLen(0x017e, 7) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080219 +packetLen(0x017e, 28) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080124 +packetLen(0x017e, 7) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080102 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#endif + +// Packet: 0x017f +#if PACKETVER >= 20080624 +packetLen(0x017f, 2) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080520 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080513 +packetLen(0x017f, 54) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080507 +packetLen(0x017f, 11) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080429 +packetLen(0x017f, 4) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080415 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080408 +packetLen(0x017f, 20) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080401 +packetLen(0x017f, 6) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080325 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080318 +packetLen(0x017f, 4) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080311 +packetLen(0x017f, 35) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080304 +packetLen(0x017f, 14) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080226 +packetLen(0x017f, 30) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080219 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080124 +packetLen(0x017f, 30) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080102 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#endif + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +#if PACKETVER >= 20080617 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080610 +packetLen(0x0188, 29) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080603 +packetLen(0x0188, 14) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080528 +packetLen(0x0188, 3) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080520 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080513 +packetLen(0x0188, 10) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080507 +packetLen(0x0188, 2) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080415 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080408 +packetLen(0x0188, 7) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080401 +packetLen(0x0188, 6) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080325 +packetLen(0x0188, 30) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080318 +packetLen(0x0188, 3) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080311 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080304 +packetLen(0x0188, 2) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080226 +packetLen(0x0188, 30) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080219 +packetLen(0x0188, 27) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080124 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080102 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING +#endif + +// Packet: 0x0189 +#if PACKETVER >= 20080624 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080617 +packetLen(0x0189, 55) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080610 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080603 +packetLen(0x0189, 7) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080528 +packetLen(0x0189, 24) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080520 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080513 +packetLen(0x0189, 10) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080415 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080408 +packetLen(0x0189, 58) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080401 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080325 +packetLen(0x0189, 31) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080318 +packetLen(0x0189, 30) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080311 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080304 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080226 +packetLen(0x0189, 17) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080219 +packetLen(0x0189, 8) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080124 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080102 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO +#endif + +// Packet: 0x018a +#if PACKETVER >= 20080701 +packetLen(0x018a, 6) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080624 +packetLen(0x018a, 14) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080617 +packetLen(0x018a, 18) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080610 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080603 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080528 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080520 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080429 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080422 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080415 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080408 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080401 +packetLen(0x018a, 32) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080325 +packetLen(0x018a, 6) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080318 +packetLen(0x018a, 14) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080311 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080304 +packetLen(0x018a, 7) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080226 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080219 +packetLen(0x018a, 7) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080124 +packetLen(0x018a, 5) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080102 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#endif + +// Packet: 0x018b +#if PACKETVER >= 20080701 +packetLen(0x018b, 66) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080610 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080603 +packetLen(0x018b, 182) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080528 +packetLen(0x018b, 12) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080520 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080513 +packetLen(0x018b, 3) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080507 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080429 +packetLen(0x018b, 102) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080408 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080401 +packetLen(0x018b, 3) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080325 +packetLen(0x018b, 6) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080318 +packetLen(0x018b, 30) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080311 +packetLen(0x018b, 7) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080304 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080226 +packetLen(0x018b, 10) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080124 +packetLen(0x018b, 6) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080102 +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT +#endif + +// Packet: 0x018c +#if PACKETVER >= 20080701 +packetLen(0x018c, 14) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080624 +packetLen(0x018c, 8) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080617 +packetLen(0x018c, 31) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080610 +packetLen(0x018c, 282) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080603 +packetLen(0x018c, 8) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080528 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080520 +packetLen(0x018c, 102) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080513 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080507 +packetLen(0x018c, 21) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080401 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080325 +packetLen(0x018c, 8) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080318 +packetLen(0x018c, 6) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080304 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080226 +packetLen(0x018c, 2) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080219 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080124 +packetLen(0x018c, 6) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080102 +packetLen(0x018c, 29) // ZC_MONSTER_INFO +#endif + +// Packet: 0x018d +#if PACKETVER >= 20080701 +packetLen(0x018d, 2) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x018d, 8) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x018d, 65) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x018d, 9) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x018d, 2) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x018d, 59) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x018d, 79) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x018d, 7) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x018d, 8) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x018d, 39) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x018d, 22) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x018d, 4) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#endif + +// Packet: 0x018e +#if PACKETVER >= 20080701 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080624 +packetLen(0x018e, 14) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080617 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080610 +packetLen(0x018e, 59) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080603 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080528 +packetLen(0x018e, 5) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080520 +packetLen(0x018e, 11) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080513 +packetLen(0x018e, 2) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080429 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080422 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080415 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080408 +packetLen(0x018e, 27) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080401 +packetLen(0x018e, 3) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080325 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080318 +packetLen(0x018e, 65) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080311 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080304 +packetLen(0x018e, 58) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080226 +packetLen(0x018e, 4) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080219 +packetLen(0x018e, 39) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080124 +packetLen(0x018e, 3) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080102 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#endif + +// Packet: 0x018f +#if PACKETVER >= 20080617 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080610 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080603 +packetLen(0x018f, 12) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080520 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080513 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080507 +packetLen(0x018f, 7) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080429 +packetLen(0x018f, 14) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080422 +packetLen(0x018f, 10) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080415 +packetLen(0x018f, 30) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080408 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080401 +packetLen(0x018f, 11) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080325 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080318 +packetLen(0x018f, 7) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080311 +packetLen(0x018f, 11) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080304 +packetLen(0x018f, 3) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080226 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080219 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080124 +packetLen(0x018f, 8) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080102 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#endif + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +#if PACKETVER >= 20080701 +packetLen(0x0194, 42) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080624 +packetLen(0x0194, 26) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080617 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080610 +packetLen(0x0194, 2) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080528 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080520 +packetLen(0x0194, 2) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080513 +packetLen(0x0194, 4) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080507 +packetLen(0x0194, 53) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080429 +packetLen(0x0194, 59) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080422 +packetLen(0x0194, 8) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080415 +packetLen(0x0194, 11) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080408 +packetLen(0x0194, 21) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080401 +packetLen(0x0194, 3) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080325 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080318 +packetLen(0x0194, 16) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080311 +packetLen(0x0194, 8) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080304 +packetLen(0x0194, 3) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080226 +packetLen(0x0194, 4) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080219 +packetLen(0x0194, 14) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080124 +packetLen(0x0194, 282) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080102 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID +#endif + +// Packet: 0x0195 +#if PACKETVER >= 20080701 +packetLen(0x0195, 26) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080610 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080603 +packetLen(0x0195, 53) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080528 +packetLen(0x0195, 2) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080513 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080507 +packetLen(0x0195, 2) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080429 +packetLen(0x0195, 31) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080422 +packetLen(0x0195, 66) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080415 +packetLen(0x0195, 2) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080408 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080401 +packetLen(0x0195, 2) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080325 +packetLen(0x0195, 60) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080318 +packetLen(0x0195, 29) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080311 +packetLen(0x0195, 15) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080304 +packetLen(0x0195, 28) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080226 +packetLen(0x0195, 3) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080219 +packetLen(0x0195, 43) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080124 +packetLen(0x0195, 6) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080102 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL +#endif + +// Packet: 0x0196 +#if PACKETVER >= 20080701 +packetLen(0x0196, 15) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x0196, 10) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x0196, 67) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x0196, 22) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x0196, 3) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x0196, 10) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x0196, 31) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x0196, 30) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x0196, 11) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x0196, 6) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x0196, 27) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x0196, 6) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x0196, 2) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x0196, 4) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x0196, 26) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE +#endif + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +#if PACKETVER >= 20080701 +packetLen(0x0199, 7) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080624 +packetLen(0x0199, 29) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080617 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080610 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080603 +packetLen(0x0199, 33) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080528 +packetLen(0x0199, 11) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080520 +packetLen(0x0199, 5) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080513 +packetLen(0x0199, 28) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080507 +packetLen(0x0199, 8) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080415 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080408 +packetLen(0x0199, 6) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080401 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080325 +packetLen(0x0199, 44) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080318 +packetLen(0x0199, 2) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080311 +packetLen(0x0199, 17) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080304 +packetLen(0x0199, 8) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080226 +packetLen(0x0199, 6) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080219 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080124 +packetLen(0x0199, 5) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080102 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY +#endif + +// Packet: 0x019a +#if PACKETVER >= 20080701 +packetLen(0x019a, 58) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080624 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080617 +packetLen(0x019a, 11) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080610 +packetLen(0x019a, 6) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080603 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080528 +packetLen(0x019a, 6) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080520 +packetLen(0x019a, 17) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080513 +packetLen(0x019a, 3) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080507 +packetLen(0x019a, 8) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080429 +packetLen(0x019a, 2) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080415 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080408 +packetLen(0x019a, 3) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080401 +packetLen(0x019a, 6) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080325 +packetLen(0x019a, 11) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080318 +packetLen(0x019a, 4) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080311 +packetLen(0x019a, 30) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080304 +packetLen(0x019a, 35) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080226 +packetLen(0x019a, 42) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080219 +packetLen(0x019a, 10) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080124 +packetLen(0x019a, 57) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080102 +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING +#endif + +// Packet: 0x019b +#if PACKETVER >= 20080624 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080617 +packetLen(0x019b, 4) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080610 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080603 +packetLen(0x019b, 2) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080528 +packetLen(0x019b, 27) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080520 +packetLen(0x019b, 18) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080513 +packetLen(0x019b, 68) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080507 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080429 +packetLen(0x019b, 17) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080415 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080408 +packetLen(0x019b, 29) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080401 +packetLen(0x019b, 54) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080318 +packetLen(0x019b, 8) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080311 +packetLen(0x019b, 6) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080304 +packetLen(0x019b, 2) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080226 +packetLen(0x019b, 65) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080219 +packetLen(0x019b, 2) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080124 +packetLen(0x019b, 30) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080102 +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT +#endif + +// Packet: 0x019c +#if PACKETVER >= 20080701 +packetLen(0x019c, 282) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080624 +packetLen(0x019c, 29) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080617 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080610 +packetLen(0x019c, 6) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080603 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080528 +packetLen(0x019c, 55) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080520 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080513 +packetLen(0x019c, 81) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080507 +packetLen(0x019c, 18) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080429 +packetLen(0x019c, 79) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080422 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080415 +packetLen(0x019c, 8) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080408 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080401 +packetLen(0x019c, 54) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080325 +packetLen(0x019c, 23) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080318 +packetLen(0x019c, 43) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080311 +packetLen(0x019c, 8) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080226 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080219 +packetLen(0x019c, 2) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080124 +packetLen(0x019c, 186) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080102 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#endif + +// Packet: 0x019d +#if PACKETVER >= 20080701 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080624 +packetLen(0x019d, 30) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080603 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080528 +packetLen(0x019d, 2) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080520 +packetLen(0x019d, 8) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080513 +packetLen(0x019d, 11) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080429 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080422 +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080415 +packetLen(0x019d, 18) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080408 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080401 +packetLen(0x019d, 68) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080325 +packetLen(0x019d, 4) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080318 +packetLen(0x019d, 14) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080311 +packetLen(0x019d, 4) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080226 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080219 +packetLen(0x019d, 18) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080124 +packetLen(0x019d, 22) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080102 +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE +#endif + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +#if PACKETVER >= 20080701 +packetLen(0x019f, 36) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080610 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080603 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080528 +packetLen(0x019f, 20) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080520 +packetLen(0x019f, 18) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080513 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080507 +packetLen(0x019f, 26) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080429 +packetLen(0x019f, 3) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080422 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080415 +packetLen(0x019f, 8) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080408 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080401 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080325 +packetLen(0x019f, 34) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080318 +packetLen(0x019f, 10) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080311 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080304 +packetLen(0x019f, 23) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080226 +packetLen(0x019f, 79) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080124 +packetLen(0x019f, 2) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080102 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#endif + +// Packet: 0x01a0 +#if PACKETVER >= 20080701 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080624 +packetLen(0x01a0, 5) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080617 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080610 +packetLen(0x01a0, 11) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080603 +packetLen(0x01a0, 29) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080528 +packetLen(0x01a0, 4) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080520 +packetLen(0x01a0, 42) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080513 +packetLen(0x01a0, 24) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080507 +packetLen(0x01a0, 23) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080429 +packetLen(0x01a0, 11) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080408 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080401 +packetLen(0x01a0, 30) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080325 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080318 +packetLen(0x01a0, 17) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080311 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080304 +packetLen(0x01a0, 22) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080226 +packetLen(0x01a0, 8) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080219 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080124 +packetLen(0x01a0, 7) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080102 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER +#endif + +// Packet: 0x01a1 +#if PACKETVER >= 20080701 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#elif PACKETVER >= 20080617 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080610 +packetLen(0x01a1, 10) // CZ_COMMAND_PET +#elif PACKETVER >= 20080603 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080528 +packetLen(0x01a1, 7) // CZ_COMMAND_PET +#elif PACKETVER >= 20080520 +packetLen(0x01a1, 21) // CZ_COMMAND_PET +#elif PACKETVER >= 20080507 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080429 +packetLen(0x01a1, 7) // CZ_COMMAND_PET +#elif PACKETVER >= 20080422 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#elif PACKETVER >= 20080415 +packetLen(0x01a1, 28) // CZ_COMMAND_PET +#elif PACKETVER >= 20080408 +packetLen(0x01a1, 282) // CZ_COMMAND_PET +#elif PACKETVER >= 20080401 +packetLen(0x01a1, 30) // CZ_COMMAND_PET +#elif PACKETVER >= 20080325 +packetLen(0x01a1, 7) // CZ_COMMAND_PET +#elif PACKETVER >= 20080318 +packetLen(0x01a1, 4) // CZ_COMMAND_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a1, 53) // CZ_COMMAND_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a1, 26) // CZ_COMMAND_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a1, 6) // CZ_COMMAND_PET +#elif PACKETVER >= 20080124 +packetLen(0x01a1, 5) // CZ_COMMAND_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#endif + +// Packet: 0x01a2 +#if PACKETVER >= 20080701 +packetLen(0x01a2, 2) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080624 +packetLen(0x01a2, 3) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080610 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080603 +packetLen(0x01a2, 28) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080520 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080513 +packetLen(0x01a2, 54) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080507 +packetLen(0x01a2, 27) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080429 +packetLen(0x01a2, 2) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080422 +packetLen(0x01a2, 30) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080415 +packetLen(0x01a2, 68) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080408 +packetLen(0x01a2, 6) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080401 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080318 +packetLen(0x01a2, 2) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a2, 4) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a2, 6) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a2, 7) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a2, 8) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080124 +packetLen(0x01a2, 6) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET +#endif + +// Packet: 0x01a3 +#if PACKETVER >= 20080701 +packetLen(0x01a3, 31) // ZC_FEED_PET +#elif PACKETVER >= 20080624 +packetLen(0x01a3, 8) // ZC_FEED_PET +#elif PACKETVER >= 20080610 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080603 +packetLen(0x01a3, 26) // ZC_FEED_PET +#elif PACKETVER >= 20080528 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080520 +packetLen(0x01a3, 26) // ZC_FEED_PET +#elif PACKETVER >= 20080513 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080507 +packetLen(0x01a3, 5) // ZC_FEED_PET +#elif PACKETVER >= 20080429 +packetLen(0x01a3, 9) // ZC_FEED_PET +#elif PACKETVER >= 20080422 +packetLen(0x01a3, 30) // ZC_FEED_PET +#elif PACKETVER >= 20080415 +packetLen(0x01a3, 3) // ZC_FEED_PET +#elif PACKETVER >= 20080318 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a3, 32) // ZC_FEED_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a3, 6) // ZC_FEED_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a3, 4) // ZC_FEED_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a3, 11) // ZC_FEED_PET +#elif PACKETVER >= 20080124 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a3, 5) // ZC_FEED_PET +#endif + +// Packet: 0x01a4 +#if PACKETVER >= 20080617 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080610 +packetLen(0x01a4, 4) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080603 +packetLen(0x01a4, 10) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080528 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080520 +packetLen(0x01a4, 34) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080513 +packetLen(0x01a4, 2) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080507 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080429 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080422 +packetLen(0x01a4, 102) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080415 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080408 +packetLen(0x01a4, 16) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080401 +packetLen(0x01a4, 36) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080325 +packetLen(0x01a4, 8) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080318 +packetLen(0x01a4, 2) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a4, 4) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a4, 10) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080124 +packetLen(0x01a4, 8) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET +#endif + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +#if PACKETVER >= 20080701 +packetLen(0x01a6, 4) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080617 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080610 +packetLen(0x01a6, 3) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080603 +packetLen(0x01a6, 10) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080520 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080513 +packetLen(0x01a6, 4) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080507 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080429 +packetLen(0x01a6, 30) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080422 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080415 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080401 +packetLen(0x01a6, 2) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080325 +packetLen(0x01a6, 3) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080318 +packetLen(0x01a6, 26) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080311 +packetLen(0x01a6, 2) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080304 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080226 +packetLen(0x01a6, 10) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080219 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080124 +packetLen(0x01a6, 27) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080102 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#endif + +// Packet: 0x01a7 +#if PACKETVER >= 20080701 +packetLen(0x01a7, 2) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080617 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080603 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080528 +packetLen(0x01a7, 30) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080520 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080513 +packetLen(0x01a7, 18) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080507 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080429 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080422 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080415 +packetLen(0x01a7, 18) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080408 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080401 +packetLen(0x01a7, 22) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080325 +packetLen(0x01a7, 16) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080318 +packetLen(0x01a7, 26) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080311 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080226 +packetLen(0x01a7, 2) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080219 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080124 +packetLen(0x01a7, 3) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080102 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#endif + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +#if PACKETVER >= 20080624 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080610 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080603 +packetLen(0x01aa, 43) // ZC_PET_ACT +#elif PACKETVER >= 20080528 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080520 +packetLen(0x01aa, 28) // ZC_PET_ACT +#elif PACKETVER >= 20080513 +packetLen(0x01aa, 60) // ZC_PET_ACT +#elif PACKETVER >= 20080507 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080422 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080415 +packetLen(0x01aa, 8) // ZC_PET_ACT +#elif PACKETVER >= 20080408 +packetLen(0x01aa, 28) // ZC_PET_ACT +#elif PACKETVER >= 20080401 +packetLen(0x01aa, 7) // ZC_PET_ACT +#elif PACKETVER >= 20080318 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080311 +packetLen(0x01aa, 9) // ZC_PET_ACT +#elif PACKETVER >= 20080304 +packetLen(0x01aa, 67) // ZC_PET_ACT +#elif PACKETVER >= 20080219 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080124 +packetLen(0x01aa, 54) // ZC_PET_ACT +#elif PACKETVER >= 20080102 +packetLen(0x01aa, 10) // ZC_PET_ACT +#endif + +// Packet: 0x01ab +#if PACKETVER >= 20080701 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080624 +packetLen(0x01ab, 60) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080617 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080610 +packetLen(0x01ab, 11) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080528 +packetLen(0x01ab, 6) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080520 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080513 +packetLen(0x01ab, 30) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080507 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080429 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080422 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080415 +packetLen(0x01ab, 35) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080408 +packetLen(0x01ab, 79) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080401 +packetLen(0x01ab, 18) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080325 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080311 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080304 +packetLen(0x01ab, 4) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080226 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080219 +packetLen(0x01ab, 3) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080124 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080102 +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER +#endif + +// Packet: 0x01ac +#if PACKETVER >= 20080610 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080603 +packetLen(0x01ac, 59) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080528 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080520 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080513 +packetLen(0x01ac, 44) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080507 +packetLen(0x01ac, 10) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080429 +packetLen(0x01ac, 14) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080422 +packetLen(0x01ac, 3) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080415 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080408 +packetLen(0x01ac, 29) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080325 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080318 +packetLen(0x01ac, 97) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080311 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080304 +packetLen(0x01ac, 2) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080226 +packetLen(0x01ac, 4) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080219 +packetLen(0x01ac, 26) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080124 +packetLen(0x01ac, 17) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080102 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#endif + +// Packet: 0x01ad +#if PACKETVER >= 20080624 +packetLen(0x01ad, 2) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080617 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080610 +packetLen(0x01ad, 10) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080603 +packetLen(0x01ad, 4) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080528 +packetLen(0x01ad, 8) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080429 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080422 +packetLen(0x01ad, 6) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080415 +packetLen(0x01ad, 26) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080408 +packetLen(0x01ad, 4) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080401 +packetLen(0x01ad, 14) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080325 +packetLen(0x01ad, 39) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080318 +packetLen(0x01ad, 6) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080311 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080304 +packetLen(0x01ad, 10) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080226 +packetLen(0x01ad, 4) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080219 +packetLen(0x01ad, 54) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080124 +packetLen(0x01ad, 5) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080102 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#endif + +// Packet: 0x01ae +#if PACKETVER >= 20080701 +packetLen(0x01ae, 7) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080624 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080617 +packetLen(0x01ae, 2) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080610 +packetLen(0x01ae, 43) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080528 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080520 +packetLen(0x01ae, 8) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080429 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080422 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080415 +packetLen(0x01ae, 6) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080408 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080401 +packetLen(0x01ae, 14) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080318 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080311 +packetLen(0x01ae, 26) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080304 +packetLen(0x01ae, 15) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080226 +packetLen(0x01ae, 2) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080219 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080124 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080102 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#endif + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +#if PACKETVER >= 20080701 +packetLen(0x01b0, 8) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x01b0, 4) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x01b0, 8) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x01b0, 6) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x01b0, 21) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x01b0, 3) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x01b0, 6) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x01b0, 16) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x01b0, 6) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x01b0, 2) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x01b0, 3) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x01b0, 6) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x01b0, 2) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x01b0, 3) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE +#endif + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +#if PACKETVER >= 20080624 +packetLen(0x01b2, 6) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080617 +packetLen(0x01b2, 3) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080610 +packetLen(0x01b2, 2) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080603 +packetLen(0x01b2, 57) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080528 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080520 +packetLen(0x01b2, 54) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080507 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080429 +packetLen(0x01b2, 14) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080401 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080325 +packetLen(0x01b2, 14) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080318 +packetLen(0x01b2, 28) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080311 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080304 +packetLen(0x01b2, 10) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080226 +packetLen(0x01b2, 282) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080219 +packetLen(0x01b2, 26) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080124 +packetLen(0x01b2, 11) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080102 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#endif + +// Packet: 0x01b3 +#if PACKETVER >= 20080610 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080603 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080528 +packetLen(0x01b3, 60) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080520 +packetLen(0x01b3, 71) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080513 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080507 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080422 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080415 +packetLen(0x01b3, 22) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080408 +packetLen(0x01b3, 6) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080401 +packetLen(0x01b3, 4) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080325 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080318 +packetLen(0x01b3, 33) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080311 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080304 +packetLen(0x01b3, 9) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080226 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080219 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080124 +packetLen(0x01b3, 20) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080102 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 +#endif + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +#if PACKETVER >= 20080701 +packetLen(0x01b6, 12) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080624 +packetLen(0x01b6, 31) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080617 +packetLen(0x01b6, 26) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080610 +packetLen(0x01b6, 55) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080603 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080528 +packetLen(0x01b6, 33) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080513 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080507 +packetLen(0x01b6, 7) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080429 +packetLen(0x01b6, 86) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080422 +packetLen(0x01b6, 23) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080408 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080401 +packetLen(0x01b6, 60) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080325 +packetLen(0x01b6, 12) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080318 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080311 +packetLen(0x01b6, 3) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080304 +packetLen(0x01b6, 2) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080226 +packetLen(0x01b6, 18) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080219 +packetLen(0x01b6, 22) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080124 +packetLen(0x01b6, 6) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080102 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 +#endif + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +#if PACKETVER >= 20080701 +packetLen(0x01b9, 14) // ZC_DISPEL +#elif PACKETVER >= 20080617 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080610 +packetLen(0x01b9, 6) // ZC_DISPEL +#elif PACKETVER >= 20080603 +packetLen(0x01b9, 8) // ZC_DISPEL +#elif PACKETVER >= 20080429 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080422 +packetLen(0x01b9, 7) // ZC_DISPEL +#elif PACKETVER >= 20080415 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080408 +packetLen(0x01b9, 4) // ZC_DISPEL +#elif PACKETVER >= 20080401 +packetLen(0x01b9, 10) // ZC_DISPEL +#elif PACKETVER >= 20080325 +packetLen(0x01b9, 26) // ZC_DISPEL +#elif PACKETVER >= 20080318 +packetLen(0x01b9, 9) // ZC_DISPEL +#elif PACKETVER >= 20080311 +packetLen(0x01b9, 3) // ZC_DISPEL +#elif PACKETVER >= 20080304 +packetLen(0x01b9, 30) // ZC_DISPEL +#elif PACKETVER >= 20080226 +packetLen(0x01b9, 60) // ZC_DISPEL +#elif PACKETVER >= 20080219 +packetLen(0x01b9, 2) // ZC_DISPEL +#elif PACKETVER >= 20080124 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080102 +packetLen(0x01b9, 6) // ZC_DISPEL +#endif + +// Packet: 0x01ba +#if PACKETVER >= 20080701 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080624 +packetLen(0x01ba, 6) // CZ_REMOVE_AID +#elif PACKETVER >= 20080617 +packetLen(0x01ba, 3) // CZ_REMOVE_AID +#elif PACKETVER >= 20080528 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080520 +packetLen(0x01ba, 7) // CZ_REMOVE_AID +#elif PACKETVER >= 20080513 +packetLen(0x01ba, 22) // CZ_REMOVE_AID +#elif PACKETVER >= 20080507 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080429 +packetLen(0x01ba, 3) // CZ_REMOVE_AID +#elif PACKETVER >= 20080415 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +#elif PACKETVER >= 20080408 +packetLen(0x01ba, 6) // CZ_REMOVE_AID +#elif PACKETVER >= 20080401 +packetLen(0x01ba, 4) // CZ_REMOVE_AID +#elif PACKETVER >= 20080325 +packetLen(0x01ba, 81) // CZ_REMOVE_AID +#elif PACKETVER >= 20080311 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080304 +packetLen(0x01ba, 8) // CZ_REMOVE_AID +#elif PACKETVER >= 20080226 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080219 +packetLen(0x01ba, 14) // CZ_REMOVE_AID +#elif PACKETVER >= 20080124 +packetLen(0x01ba, 60) // CZ_REMOVE_AID +#elif PACKETVER >= 20080102 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +#endif + +// Packet: 0x01bb +#if PACKETVER >= 20080603 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080528 +packetLen(0x01bb, 16) // CZ_SHIFT +#elif PACKETVER >= 20080513 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080429 +packetLen(0x01bb, 2) // CZ_SHIFT +#elif PACKETVER >= 20080422 +packetLen(0x01bb, 26) // CZ_SHIFT +#elif PACKETVER >= 20080415 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080408 +packetLen(0x01bb, 3) // CZ_SHIFT +#elif PACKETVER >= 20080401 +packetLen(0x01bb, 4) // CZ_SHIFT +#elif PACKETVER >= 20080325 +packetLen(0x01bb, 43) // CZ_SHIFT +#elif PACKETVER >= 20080318 +packetLen(0x01bb, 31) // CZ_SHIFT +#elif PACKETVER >= 20080311 +packetLen(0x01bb, 4) // CZ_SHIFT +#elif PACKETVER >= 20080304 +packetLen(0x01bb, 8) // CZ_SHIFT +#elif PACKETVER >= 20080226 +packetLen(0x01bb, 6) // CZ_SHIFT +#elif PACKETVER >= 20080219 +packetLen(0x01bb, 3) // CZ_SHIFT +#elif PACKETVER >= 20080124 +packetLen(0x01bb, 81) // CZ_SHIFT +#elif PACKETVER >= 20080102 +packetLen(0x01bb, 26) // CZ_SHIFT +#endif + +// Packet: 0x01bc +#if PACKETVER >= 20080617 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080610 +packetLen(0x01bc, 2) // CZ_RECALL +#elif PACKETVER >= 20080603 +packetLen(0x01bc, 282) // CZ_RECALL +#elif PACKETVER >= 20080528 +packetLen(0x01bc, 7) // CZ_RECALL +#elif PACKETVER >= 20080520 +packetLen(0x01bc, 10) // CZ_RECALL +#elif PACKETVER >= 20080513 +packetLen(0x01bc, 20) // CZ_RECALL +#elif PACKETVER >= 20080507 +packetLen(0x01bc, 39) // CZ_RECALL +#elif PACKETVER >= 20080429 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080422 +packetLen(0x01bc, 26) // CZ_RECALL +#elif PACKETVER >= 20080415 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080408 +packetLen(0x01bc, 8) // CZ_RECALL +#elif PACKETVER >= 20080401 +packetLen(0x01bc, 4) // CZ_RECALL +#elif PACKETVER >= 20080325 +packetLen(0x01bc, 26) // CZ_RECALL +#elif PACKETVER >= 20080318 +packetLen(0x01bc, 4) // CZ_RECALL +#elif PACKETVER >= 20080311 +packetLen(0x01bc, 9) // CZ_RECALL +#elif PACKETVER >= 20080304 +packetLen(0x01bc, 6) // CZ_RECALL +#elif PACKETVER >= 20080226 +packetLen(0x01bc, 86) // CZ_RECALL +#elif PACKETVER >= 20080219 +packetLen(0x01bc, 9) // CZ_RECALL +#elif PACKETVER >= 20080124 +packetLen(0x01bc, 10) // CZ_RECALL +#elif PACKETVER >= 20080102 +packetLen(0x01bc, 26) // CZ_RECALL +#endif + +// Packet: 0x01bd +#if PACKETVER >= 20080701 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20080624 +packetLen(0x01bd, 22) // CZ_RECALL_GID +#elif PACKETVER >= 20080617 +packetLen(0x01bd, 44) // CZ_RECALL_GID +#elif PACKETVER >= 20080610 +packetLen(0x01bd, 3) // CZ_RECALL_GID +#elif PACKETVER >= 20080603 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080528 +packetLen(0x01bd, 9) // CZ_RECALL_GID +#elif PACKETVER >= 20080520 +packetLen(0x01bd, 35) // CZ_RECALL_GID +#elif PACKETVER >= 20080507 +packetLen(0x01bd, 4) // CZ_RECALL_GID +#elif PACKETVER >= 20080429 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080422 +packetLen(0x01bd, 26) // CZ_RECALL_GID +#elif PACKETVER >= 20080415 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080408 +packetLen(0x01bd, 102) // CZ_RECALL_GID +#elif PACKETVER >= 20080401 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080325 +packetLen(0x01bd, 21) // CZ_RECALL_GID +#elif PACKETVER >= 20080311 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20080304 +packetLen(0x01bd, 102) // CZ_RECALL_GID +#elif PACKETVER >= 20080226 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080219 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20080124 +packetLen(0x01bd, 2) // CZ_RECALL_GID +#elif PACKETVER >= 20080102 +packetLen(0x01bd, 26) // CZ_RECALL_GID +#endif + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +#if PACKETVER >= 20080701 +packetLen(0x01c3, 10) // ZC_BROADCAST2 +#elif PACKETVER >= 20080624 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080617 +packetLen(0x01c3, 6) // ZC_BROADCAST2 +#elif PACKETVER >= 20080610 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080603 +packetLen(0x01c3, 58) // ZC_BROADCAST2 +#elif PACKETVER >= 20080520 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080513 +packetLen(0x01c3, 66) // ZC_BROADCAST2 +#elif PACKETVER >= 20080507 +packetLen(0x01c3, 7) // ZC_BROADCAST2 +#elif PACKETVER >= 20080429 +packetLen(0x01c3, 3) // ZC_BROADCAST2 +#elif PACKETVER >= 20080422 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080415 +packetLen(0x01c3, 30) // ZC_BROADCAST2 +#elif PACKETVER >= 20080408 +packetLen(0x01c3, 6) // ZC_BROADCAST2 +#elif PACKETVER >= 20080401 +packetLen(0x01c3, 14) // ZC_BROADCAST2 +#elif PACKETVER >= 20080325 +packetLen(0x01c3, 30) // ZC_BROADCAST2 +#elif PACKETVER >= 20080318 +packetLen(0x01c3, 9) // ZC_BROADCAST2 +#elif PACKETVER >= 20080311 +packetLen(0x01c3, 58) // ZC_BROADCAST2 +#elif PACKETVER >= 20080304 +packetLen(0x01c3, 4) // ZC_BROADCAST2 +#elif PACKETVER >= 20080226 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080219 +packetLen(0x01c3, 14) // ZC_BROADCAST2 +#elif PACKETVER >= 20080124 +packetLen(0x01c3, 3) // ZC_BROADCAST2 +#elif PACKETVER >= 20080102 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#endif + +// Packet: 0x01c4 +#if PACKETVER >= 20080617 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080610 +packetLen(0x01c4, 33) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080528 +packetLen(0x01c4, 6) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080520 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080513 +packetLen(0x01c4, 3) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080507 +packetLen(0x01c4, 31) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080429 +packetLen(0x01c4, 53) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080422 +packetLen(0x01c4, 34) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080415 +packetLen(0x01c4, 11) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080408 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080401 +packetLen(0x01c4, 2) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080325 +packetLen(0x01c4, 21) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080311 +packetLen(0x01c4, 2) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080219 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080124 +packetLen(0x01c4, 28) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080102 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#endif + +// Packet: 0x01c5 +#if PACKETVER >= 20080624 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080617 +packetLen(0x01c5, 8) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080610 +packetLen(0x01c5, 26) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080603 +packetLen(0x01c5, 30) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080528 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080520 +packetLen(0x01c5, 11) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080513 +packetLen(0x01c5, 3) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080429 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080422 +packetLen(0x01c5, 4) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080415 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080408 +packetLen(0x01c5, 7) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080401 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080325 +packetLen(0x01c5, 31) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080318 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080311 +packetLen(0x01c5, 10) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080226 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080219 +packetLen(0x01c5, 28) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080124 +packetLen(0x01c5, 90) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080102 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +#endif + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +#if PACKETVER >= 20080624 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080617 +packetLen(0x01c8, 65) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080610 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080603 +packetLen(0x01c8, 8) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080513 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080507 +packetLen(0x01c8, 29) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080429 +packetLen(0x01c8, 8) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080415 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080408 +packetLen(0x01c8, 26) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080401 +packetLen(0x01c8, 2) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080325 +packetLen(0x01c8, 4) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080318 +packetLen(0x01c8, 6) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080311 +packetLen(0x01c8, 4) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080304 +packetLen(0x01c8, 11) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080226 +packetLen(0x01c8, 8) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080219 +packetLen(0x01c8, 6) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080124 +packetLen(0x01c8, 5) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080102 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 +#endif + +// Packet: 0x01c9 +#if PACKETVER >= 20080701 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080624 +packetLen(0x01c9, 11) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080617 +packetLen(0x01c9, 3) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080610 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080603 +packetLen(0x01c9, 4) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080528 +packetLen(0x01c9, 14) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080513 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080507 +packetLen(0x01c9, 6) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080429 +packetLen(0x01c9, 4) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080415 +packetLen(0x01c9, 58) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080408 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080401 +packetLen(0x01c9, 7) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080325 +packetLen(0x01c9, 2) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080318 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01c9, 2) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01c9, 22) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01c9, 26) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080124 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 +#endif + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +#if PACKETVER >= 20080701 +packetLen(0x01cd, 10) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080617 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080610 +packetLen(0x01cd, 102) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080603 +packetLen(0x01cd, 4) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080513 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080507 +packetLen(0x01cd, 10) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080429 +packetLen(0x01cd, 3) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080422 +packetLen(0x01cd, 10) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080415 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080408 +packetLen(0x01cd, 12) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080401 +packetLen(0x01cd, 6) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080325 +packetLen(0x01cd, 14) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080318 +packetLen(0x01cd, 2) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080311 +packetLen(0x01cd, 6) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080304 +packetLen(0x01cd, 5) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080226 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080219 +packetLen(0x01cd, 8) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080124 +packetLen(0x01cd, 10) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080102 +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST +#endif + +// Packet: 0x01ce +#if PACKETVER >= 20080624 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080617 +packetLen(0x01ce, 27) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080610 +packetLen(0x01ce, 3) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080603 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080528 +packetLen(0x01ce, 22) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080520 +packetLen(0x01ce, 53) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080513 +packetLen(0x01ce, 4) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080507 +packetLen(0x01ce, 65) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080429 +packetLen(0x01ce, 2) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080422 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080408 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080401 +packetLen(0x01ce, 26) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080325 +packetLen(0x01ce, 3) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080318 +packetLen(0x01ce, 21) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080304 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080226 +packetLen(0x01ce, 2) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080219 +packetLen(0x01ce, 28) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080102 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#endif + +// Packet: 0x01cf +#if PACKETVER >= 20080701 +packetLen(0x01cf, 3) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080624 +packetLen(0x01cf, 11) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080617 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080610 +packetLen(0x01cf, 2) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080603 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080528 +packetLen(0x01cf, 15) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080520 +packetLen(0x01cf, 26) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080513 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080507 +packetLen(0x01cf, 2) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080415 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080408 +packetLen(0x01cf, 39) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080401 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080325 +packetLen(0x01cf, 186) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080318 +packetLen(0x01cf, 6) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080311 +packetLen(0x01cf, 23) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080304 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080226 +packetLen(0x01cf, 102) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080124 +packetLen(0x01cf, 5) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080102 +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST +#endif + +// Packet: 0x01d0 +#if PACKETVER >= 20080701 +packetLen(0x01d0, 3) // ZC_SPIRITS +#elif PACKETVER >= 20080624 +packetLen(0x01d0, 9) // ZC_SPIRITS +#elif PACKETVER >= 20080617 +packetLen(0x01d0, 53) // ZC_SPIRITS +#elif PACKETVER >= 20080610 +packetLen(0x01d0, 7) // ZC_SPIRITS +#elif PACKETVER >= 20080603 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080528 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080520 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080513 +packetLen(0x01d0, 10) // ZC_SPIRITS +#elif PACKETVER >= 20080422 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080415 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080408 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080401 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080325 +packetLen(0x01d0, 65) // ZC_SPIRITS +#elif PACKETVER >= 20080318 +packetLen(0x01d0, 39) // ZC_SPIRITS +#elif PACKETVER >= 20080304 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080226 +packetLen(0x01d0, 26) // ZC_SPIRITS +#elif PACKETVER >= 20080219 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080124 +packetLen(0x01d0, 6) // ZC_SPIRITS +#elif PACKETVER >= 20080102 +packetLen(0x01d0, 8) // ZC_SPIRITS +#endif + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +#if PACKETVER >= 20080701 +packetLen(0x01d2, 2) // ZC_COMBODELAY +#elif PACKETVER >= 20080624 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080617 +packetLen(0x01d2, 7) // ZC_COMBODELAY +#elif PACKETVER >= 20080603 +packetLen(0x01d2, 4) // ZC_COMBODELAY +#elif PACKETVER >= 20080520 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080513 +packetLen(0x01d2, 8) // ZC_COMBODELAY +#elif PACKETVER >= 20080507 +packetLen(0x01d2, 58) // ZC_COMBODELAY +#elif PACKETVER >= 20080415 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080408 +packetLen(0x01d2, 18) // ZC_COMBODELAY +#elif PACKETVER >= 20080401 +packetLen(0x01d2, 6) // ZC_COMBODELAY +#elif PACKETVER >= 20080325 +packetLen(0x01d2, 12) // ZC_COMBODELAY +#elif PACKETVER >= 20080318 +packetLen(0x01d2, 30) // ZC_COMBODELAY +#elif PACKETVER >= 20080311 +packetLen(0x01d2, 19) // ZC_COMBODELAY +#elif PACKETVER >= 20080304 +packetLen(0x01d2, 6) // ZC_COMBODELAY +#elif PACKETVER >= 20080226 +packetLen(0x01d2, 8) // ZC_COMBODELAY +#elif PACKETVER >= 20080219 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080124 +packetLen(0x01d2, 53) // ZC_COMBODELAY +#elif PACKETVER >= 20080102 +packetLen(0x01d2, 10) // ZC_COMBODELAY +#endif + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +#if PACKETVER >= 20080701 +packetLen(0x01d4, 8) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080624 +packetLen(0x01d4, 54) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080617 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080610 +packetLen(0x01d4, 20) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080520 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080513 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080401 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080325 +packetLen(0x01d4, 19) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080318 +packetLen(0x01d4, 60) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080311 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080304 +packetLen(0x01d4, 3) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080226 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080219 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080124 +packetLen(0x01d4, 15) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080102 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#endif + +// Packet: 0x01d5 +#if PACKETVER >= 20080701 +packetLen(0x01d5, 3) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080624 +packetLen(0x01d5, 27) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080610 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080603 +packetLen(0x01d5, 9) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080528 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080520 +packetLen(0x01d5, 6) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080507 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080429 +packetLen(0x01d5, 4) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080408 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080401 +packetLen(0x01d5, 97) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080325 +packetLen(0x01d5, 6) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080318 +packetLen(0x01d5, 34) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080311 +packetLen(0x01d5, 13) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080304 +packetLen(0x01d5, 5) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080226 +packetLen(0x01d5, 6) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080219 +packetLen(0x01d5, 16) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080102 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#endif + +// Packet: 0x01d6 +#if PACKETVER >= 20080701 +packetLen(0x01d6, 30) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080624 +packetLen(0x01d6, 3) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080617 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080610 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080603 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080528 +packetLen(0x01d6, 8) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080520 +packetLen(0x01d6, 2) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080513 +packetLen(0x01d6, 35) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080507 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080429 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080422 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080415 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080408 +packetLen(0x01d6, 54) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080401 +packetLen(0x01d6, 11) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080325 +packetLen(0x01d6, 54) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080318 +packetLen(0x01d6, 58) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080311 +packetLen(0x01d6, 5) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080304 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080226 +packetLen(0x01d6, 10) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080219 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080124 +packetLen(0x01d6, 16) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080102 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 +#endif + +// Packet: 0x01d7 +#if PACKETVER >= 20080701 +packetLen(0x01d7, 14) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080624 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080617 +packetLen(0x01d7, 8) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080610 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080603 +packetLen(0x01d7, 5) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080528 +packetLen(0x01d7, 9) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080520 +packetLen(0x01d7, 282) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080513 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080507 +packetLen(0x01d7, 2) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080408 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080401 +packetLen(0x01d7, 3) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080325 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080318 +packetLen(0x01d7, 4) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080311 +packetLen(0x01d7, 28) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080304 +packetLen(0x01d7, 54) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080226 +packetLen(0x01d7, 2) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080219 +packetLen(0x01d7, 35) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080124 +packetLen(0x01d7, 2) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080102 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +#endif + +// Packet: 0x01d8 +#if PACKETVER >= 20080701 +packetLen(0x01d8, 6) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080624 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080617 +packetLen(0x01d8, 6) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080610 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080603 +packetLen(0x01d8, 11) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080528 +packetLen(0x01d8, 3) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080520 +packetLen(0x01d8, 6) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080513 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080507 +packetLen(0x01d8, 6) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080429 +packetLen(0x01d8, 186) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080415 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080408 +packetLen(0x01d8, 4) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080401 +packetLen(0x01d8, 27) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080325 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080318 +packetLen(0x01d8, 5) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01d8, 2) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01d8, 10) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01d8, 15) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080124 +packetLen(0x01d8, 3) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +#endif + +// Packet: 0x01d9 +#if PACKETVER >= 20080701 +packetLen(0x01d9, 39) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080624 +packetLen(0x01d9, 15) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080617 +packetLen(0x01d9, 22) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080610 +packetLen(0x01d9, 8) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080528 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080520 +packetLen(0x01d9, 4) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080513 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080507 +packetLen(0x01d9, 60) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080429 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080422 +packetLen(0x01d9, 6) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080415 +packetLen(0x01d9, 26) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080408 +packetLen(0x01d9, 2) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080325 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080318 +packetLen(0x01d9, 282) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01d9, 28) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01d9, 42) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01d9, 8) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01d9, 282) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080124 +packetLen(0x01d9, 8) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +#endif + +// Packet: 0x01da +#if PACKETVER >= 20080701 +packetLen(0x01da, 32) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080624 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080617 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080610 +packetLen(0x01da, 12) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080603 +packetLen(0x01da, 10) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080528 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080520 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080513 +packetLen(0x01da, 5) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080507 +packetLen(0x01da, 10) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080429 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080422 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080415 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080408 +packetLen(0x01da, 8) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080401 +packetLen(0x01da, 9) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080325 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080318 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01da, 79) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080124 +packetLen(0x01da, 12) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#endif + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +#if PACKETVER >= 20080701 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080624 +packetLen(0x01de, 22) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080617 +packetLen(0x01de, 14) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080603 +packetLen(0x01de, 6) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080528 +packetLen(0x01de, 14) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080520 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080513 +packetLen(0x01de, 8) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080507 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080429 +packetLen(0x01de, 3) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080422 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080415 +packetLen(0x01de, 30) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080408 +packetLen(0x01de, 2) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080401 +packetLen(0x01de, 15) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080325 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080318 +packetLen(0x01de, 15) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080311 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080304 +packetLen(0x01de, 7) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080226 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080219 +packetLen(0x01de, 3) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080124 +packetLen(0x01de, 2) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080102 +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 +#endif + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +#if PACKETVER >= 20080701 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080624 +packetLen(0x01e1, 6) // ZC_SPIRITS2 +#elif PACKETVER >= 20080603 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080528 +packetLen(0x01e1, 43) // ZC_SPIRITS2 +#elif PACKETVER >= 20080520 +packetLen(0x01e1, 32) // ZC_SPIRITS2 +#elif PACKETVER >= 20080513 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080507 +packetLen(0x01e1, 3) // ZC_SPIRITS2 +#elif PACKETVER >= 20080429 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080422 +packetLen(0x01e1, 6) // ZC_SPIRITS2 +#elif PACKETVER >= 20080415 +packetLen(0x01e1, 8) // ZC_SPIRITS2 +#elif PACKETVER >= 20080408 +packetLen(0x01e1, 71) // ZC_SPIRITS2 +#elif PACKETVER >= 20080401 +packetLen(0x01e1, 2) // ZC_SPIRITS2 +#elif PACKETVER >= 20080325 +packetLen(0x01e1, 17) // ZC_SPIRITS2 +#elif PACKETVER >= 20080318 +packetLen(0x01e1, 60) // ZC_SPIRITS2 +#elif PACKETVER >= 20080304 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080226 +packetLen(0x01e1, 32) // ZC_SPIRITS2 +#elif PACKETVER >= 20080219 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080124 +packetLen(0x01e1, 11) // ZC_SPIRITS2 +#elif PACKETVER >= 20080102 +packetLen(0x01e1, 8) // ZC_SPIRITS2 +#endif + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +#if PACKETVER >= 20080624 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080617 +packetLen(0x01e7, 6) // CZ_DORIDORI +#elif PACKETVER >= 20080610 +packetLen(0x01e7, 4) // CZ_DORIDORI +#elif PACKETVER >= 20080603 +packetLen(0x01e7, 14) // CZ_DORIDORI +#elif PACKETVER >= 20080528 +packetLen(0x01e7, 39) // CZ_DORIDORI +#elif PACKETVER >= 20080520 +packetLen(0x01e7, 22) // CZ_DORIDORI +#elif PACKETVER >= 20080513 +packetLen(0x01e7, 6) // CZ_DORIDORI +#elif PACKETVER >= 20080507 +packetLen(0x01e7, 54) // CZ_DORIDORI +#elif PACKETVER >= 20080429 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080422 +packetLen(0x01e7, 2) // CZ_DORIDORI +#elif PACKETVER >= 20080415 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080408 +packetLen(0x01e7, 60) // CZ_DORIDORI +#elif PACKETVER >= 20080401 +packetLen(0x01e7, 5) // CZ_DORIDORI +#elif PACKETVER >= 20080325 +packetLen(0x01e7, 20) // CZ_DORIDORI +#elif PACKETVER >= 20080318 +packetLen(0x01e7, 18) // CZ_DORIDORI +#elif PACKETVER >= 20080311 +packetLen(0x01e7, 55) // CZ_DORIDORI +#elif PACKETVER >= 20080304 +packetLen(0x01e7, 26) // CZ_DORIDORI +#elif PACKETVER >= 20080219 +packetLen(0x01e7, 2) // CZ_DORIDORI +#elif PACKETVER >= 20080124 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080102 +packetLen(0x01e7, 2) // CZ_DORIDORI +#endif + +// Packet: 0x01e8 +#if PACKETVER >= 20080701 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080624 +packetLen(0x01e8, 22) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080617 +packetLen(0x01e8, 14) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080610 +packetLen(0x01e8, 27) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080603 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080528 +packetLen(0x01e8, 53) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080520 +packetLen(0x01e8, 3) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080513 +packetLen(0x01e8, 10) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080507 +packetLen(0x01e8, 14) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080429 +packetLen(0x01e8, 10) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080422 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080415 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080408 +packetLen(0x01e8, 16) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080401 +packetLen(0x01e8, 10) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080318 +packetLen(0x01e8, 4) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080311 +packetLen(0x01e8, 6) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080304 +packetLen(0x01e8, 4) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080226 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080219 +packetLen(0x01e8, 6) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080124 +packetLen(0x01e8, 44) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080102 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#endif + +// Packet: 0x01e9 +#if PACKETVER >= 20080701 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080624 +packetLen(0x01e9, 282) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080617 +packetLen(0x01e9, 6) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080610 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080528 +packetLen(0x01e9, 3) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080507 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080429 +packetLen(0x01e9, 5) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080422 +packetLen(0x01e9, 3) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080415 +packetLen(0x01e9, 2) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080408 +packetLen(0x01e9, 34) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080401 +packetLen(0x01e9, 8) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080325 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080318 +packetLen(0x01e9, 8) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080311 +packetLen(0x01e9, 2) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080304 +packetLen(0x01e9, 4) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080226 +packetLen(0x01e9, 12) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080219 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080124 +packetLen(0x01e9, 6) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080102 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 +#endif + +// Packet: 0x01ea +#if PACKETVER >= 20080701 +packetLen(0x01ea, 97) // ZC_CONGRATULATION +#elif PACKETVER >= 20080624 +packetLen(0x01ea, 79) // ZC_CONGRATULATION +#elif PACKETVER >= 20080617 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080610 +packetLen(0x01ea, 4) // ZC_CONGRATULATION +#elif PACKETVER >= 20080603 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080528 +packetLen(0x01ea, 2) // ZC_CONGRATULATION +#elif PACKETVER >= 20080513 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080507 +packetLen(0x01ea, 12) // ZC_CONGRATULATION +#elif PACKETVER >= 20080429 +packetLen(0x01ea, 22) // ZC_CONGRATULATION +#elif PACKETVER >= 20080422 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080415 +packetLen(0x01ea, 282) // ZC_CONGRATULATION +#elif PACKETVER >= 20080401 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080325 +packetLen(0x01ea, 27) // ZC_CONGRATULATION +#elif PACKETVER >= 20080318 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080311 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20080304 +packetLen(0x01ea, 60) // ZC_CONGRATULATION +#elif PACKETVER >= 20080219 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20080124 +packetLen(0x01ea, 10) // ZC_CONGRATULATION +#elif PACKETVER >= 20080102 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#endif + +// Packet: 0x01eb +#if PACKETVER >= 20080624 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080617 +packetLen(0x01eb, 7) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080610 +packetLen(0x01eb, 4) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080528 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080520 +packetLen(0x01eb, 4) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080513 +packetLen(0x01eb, 30) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080507 +packetLen(0x01eb, 114) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080429 +packetLen(0x01eb, 27) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080422 +packetLen(0x01eb, 30) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080415 +packetLen(0x01eb, 9) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080408 +packetLen(0x01eb, 13) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080401 +packetLen(0x01eb, 5) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080311 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080304 +packetLen(0x01eb, 30) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080226 +packetLen(0x01eb, 11) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080219 +packetLen(0x01eb, 26) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080124 +packetLen(0x01eb, 53) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080102 +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM +#endif + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +#if PACKETVER >= 20080701 +packetLen(0x01ed, 14) // CZ_CHOPOKGI +#elif PACKETVER >= 20080624 +packetLen(0x01ed, 6) // CZ_CHOPOKGI +#elif PACKETVER >= 20080610 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080603 +packetLen(0x01ed, 30) // CZ_CHOPOKGI +#elif PACKETVER >= 20080528 +packetLen(0x01ed, 4) // CZ_CHOPOKGI +#elif PACKETVER >= 20080520 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080513 +packetLen(0x01ed, 14) // CZ_CHOPOKGI +#elif PACKETVER >= 20080507 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080429 +packetLen(0x01ed, 30) // CZ_CHOPOKGI +#elif PACKETVER >= 20080422 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#elif PACKETVER >= 20080415 +packetLen(0x01ed, 3) // CZ_CHOPOKGI +#elif PACKETVER >= 20080408 +packetLen(0x01ed, 22) // CZ_CHOPOKGI +#elif PACKETVER >= 20080325 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080318 +packetLen(0x01ed, 10) // CZ_CHOPOKGI +#elif PACKETVER >= 20080311 +packetLen(0x01ed, 5) // CZ_CHOPOKGI +#elif PACKETVER >= 20080304 +packetLen(0x01ed, 4) // CZ_CHOPOKGI +#elif PACKETVER >= 20080226 +packetLen(0x01ed, 10) // CZ_CHOPOKGI +#elif PACKETVER >= 20080219 +packetLen(0x01ed, 22) // CZ_CHOPOKGI +#elif PACKETVER >= 20080124 +packetLen(0x01ed, 6) // CZ_CHOPOKGI +#elif PACKETVER >= 20080102 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#endif + +// Packet: 0x01ee +#if PACKETVER >= 20080701 +packetLen(0x01ee, 8) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080617 +packetLen(0x01ee, 23) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080610 +packetLen(0x01ee, 8) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080528 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080520 +packetLen(0x01ee, 26) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x01ee, 2) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x01ee, 2) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x01ee, 71) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x01ee, 11) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x01ee, 8) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01ef +#if PACKETVER >= 20080701 +packetLen(0x01ef, 7) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080617 +packetLen(0x01ef, 10) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080603 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080528 +packetLen(0x01ef, 6) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080520 +packetLen(0x01ef, 14) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x01ef, 8) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x01ef, 7) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080429 +packetLen(0x01ef, 30) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x01ef, 16) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080415 +packetLen(0x01ef, 3) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x01ef, 6) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x01ef, 29) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x01ef, 8) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x01ef, 35) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x01ef, 6) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f0 +#if PACKETVER >= 20080701 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x01f0, 8) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080617 +packetLen(0x01f0, 16) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080603 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080528 +packetLen(0x01f0, 8) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080520 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x01f0, 26) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080429 +packetLen(0x01f0, 7) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080415 +packetLen(0x01f0, 53) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x01f0, 22) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x01f0, 44) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x01f0, 13) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x01f0, 39) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x01f0, 4) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x01f0, 2) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x01f0, 30) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +#if PACKETVER >= 20080701 +packetLen(0x01f2, 12) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080603 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080528 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080513 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080507 +packetLen(0x01f2, 22) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080429 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080422 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080415 +packetLen(0x01f2, 8) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080408 +packetLen(0x01f2, 186) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080401 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080325 +packetLen(0x01f2, 6) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080318 +packetLen(0x01f2, 2) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080311 +packetLen(0x01f2, 28) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080304 +packetLen(0x01f2, 26) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080226 +packetLen(0x01f2, 27) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080219 +packetLen(0x01f2, 31) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080124 +packetLen(0x01f2, 14) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080102 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#endif + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +#if PACKETVER >= 20080701 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080624 +packetLen(0x01f4, 54) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080610 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080603 +packetLen(0x01f4, 7) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080520 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080513 +packetLen(0x01f4, 67) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080507 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080429 +packetLen(0x01f4, 28) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080422 +packetLen(0x01f4, 22) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080415 +packetLen(0x01f4, 6) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080408 +packetLen(0x01f4, 14) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080401 +packetLen(0x01f4, 6) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080325 +packetLen(0x01f4, 3) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080318 +packetLen(0x01f4, 10) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080311 +packetLen(0x01f4, 7) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080304 +packetLen(0x01f4, 12) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080226 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080124 +packetLen(0x01f4, 6) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080102 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f5 +#if PACKETVER >= 20080624 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080617 +packetLen(0x01f5, 6) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080603 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080528 +packetLen(0x01f5, 60) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080520 +packetLen(0x01f5, 5) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080513 +packetLen(0x01f5, 60) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080507 +packetLen(0x01f5, 4) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080429 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080422 +packetLen(0x01f5, 11) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080415 +packetLen(0x01f5, 4) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080408 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080401 +packetLen(0x01f5, 6) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080325 +packetLen(0x01f5, 14) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080318 +packetLen(0x01f5, 55) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080311 +packetLen(0x01f5, 30) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080304 +packetLen(0x01f5, 3) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080226 +packetLen(0x01f5, 10) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080219 +packetLen(0x01f5, 114) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080124 +packetLen(0x01f5, 7) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080102 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +#if PACKETVER >= 20080701 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x01fc, 7) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x01fc, 186) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x01fc, 71) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x01fc, 4) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x01fc, 26) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x01fc, 4) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x01fc, 59) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x01fc, 7) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x01fc, 6) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x01fc, 4) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x01fc, 282) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#endif + +// Packet: 0x01fd +#if PACKETVER >= 20080701 +packetLen(0x01fd, 13) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080617 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080610 +packetLen(0x01fd, 10) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080603 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080528 +packetLen(0x01fd, 26) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080520 +packetLen(0x01fd, 8) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080513 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080507 +packetLen(0x01fd, 6) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080429 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080422 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080415 +packetLen(0x01fd, 54) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080408 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080401 +packetLen(0x01fd, 6) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080325 +packetLen(0x01fd, 8) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080318 +packetLen(0x01fd, 6) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080311 +packetLen(0x01fd, 39) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080304 +packetLen(0x01fd, 6) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080226 +packetLen(0x01fd, 8) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080219 +packetLen(0x01fd, 26) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080124 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080102 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +#if PACKETVER >= 20080701 +packetLen(0x01fe, 30) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080624 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080617 +packetLen(0x01fe, 11) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080610 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080603 +packetLen(0x01fe, 4) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080513 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080507 +packetLen(0x01fe, 7) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080415 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080408 +packetLen(0x01fe, 8) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080401 +packetLen(0x01fe, 54) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080325 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080318 +packetLen(0x01fe, 20) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080311 +packetLen(0x01fe, 18) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080304 +packetLen(0x01fe, 22) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080226 +packetLen(0x01fe, 2) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080219 +packetLen(0x01fe, 13) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080124 +packetLen(0x01fe, 16) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080102 +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR +#endif + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +#if PACKETVER >= 20080701 +packetLen(0x0201, 9) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080624 +packetLen(0x0201, 3) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0201, 29) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0201, 26) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080513 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080507 +packetLen(0x0201, 67) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080429 +packetLen(0x0201, 33) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0201, 68) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0201, 58) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080408 +packetLen(0x0201, 54) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080401 +packetLen(0x0201, 7) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080325 +packetLen(0x0201, 5) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0201, 11) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0201, 282) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0201, 6) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0201, 7) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0201, 282) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#endif + +// Packet: 0x0202 +#if PACKETVER >= 20080610 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080603 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x0202, 11) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x0202, 3) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x0202, 19) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080429 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080422 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080415 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080408 +packetLen(0x0202, 3) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0202, 33) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x0202, 11) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0202, 44) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +#if PACKETVER >= 20080701 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080624 +packetLen(0x0203, 3) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080603 +packetLen(0x0203, 7) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x0203, 34) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x0203, 4) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x0203, 7) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080429 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080422 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080401 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x0203, 3) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x0203, 67) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0203, 60) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0203, 7) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0203, 4) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x0203, 6) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#endif + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +#if PACKETVER >= 20080701 +packetLen(0x0206, 2) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080624 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080617 +packetLen(0x0206, 30) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080603 +packetLen(0x0206, 3) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080520 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080513 +packetLen(0x0206, 6) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080429 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080422 +packetLen(0x0206, 7) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080415 +packetLen(0x0206, 4) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080408 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080401 +packetLen(0x0206, 59) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080325 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080318 +packetLen(0x0206, 30) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080311 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080304 +packetLen(0x0206, 9) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080226 +packetLen(0x0206, 8) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080219 +packetLen(0x0206, 7) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080124 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080102 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#endif + +// Packet: 0x0207 +#if PACKETVER >= 20080701 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080624 +packetLen(0x0207, 2) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080617 +packetLen(0x0207, 11) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0207, 7) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x0207, 28) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x0207, 2) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080429 +packetLen(0x0207, 5) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080422 +packetLen(0x0207, 2) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080408 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080401 +packetLen(0x0207, 102) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x0207, 8) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x0207, 2) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x0207, 6) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0207, 26) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0207, 66) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x0207, 28) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0208 +#if PACKETVER >= 20080701 +packetLen(0x0208, 2) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080624 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080617 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0208, 15) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080603 +packetLen(0x0208, 10) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x0208, 26) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x0208, 10) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x0208, 60) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080429 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080415 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080408 +packetLen(0x0208, 5) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080401 +packetLen(0x0208, 22) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x0208, 10) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0208, 71) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x0208, 65) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0209 +#if PACKETVER >= 20080701 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080624 +packetLen(0x0209, 9) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080617 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0209, 39) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080520 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080513 +packetLen(0x0209, 8) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080507 +packetLen(0x0209, 5) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080429 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0209, 18) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080408 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080401 +packetLen(0x0209, 10) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080325 +packetLen(0x0209, 3) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0209, 4) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0209, 10) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0209, 30) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0209, 10) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST +#endif + +// Packet: 0x020a +#if PACKETVER >= 20080701 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080624 +packetLen(0x020a, 68) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080617 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x020a, 186) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080603 +packetLen(0x020a, 11) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x020a, 32) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x020a, 30) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x020a, 2) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x020a, 71) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080422 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080415 +packetLen(0x020a, 6) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080408 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080401 +packetLen(0x020a, 14) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x020a, 13) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x020a, 7) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x020a, 6) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x020a, 11) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x020a, 20) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x020a, 2) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +#endif + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +#if PACKETVER >= 20080701 +packetLen(0x020e, 10) // ZC_STARSKILL +#elif PACKETVER >= 20080624 +packetLen(0x020e, 5) // ZC_STARSKILL +#elif PACKETVER >= 20080603 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080528 +packetLen(0x020e, 7) // ZC_STARSKILL +#elif PACKETVER >= 20080520 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080513 +packetLen(0x020e, 32) // ZC_STARSKILL +#elif PACKETVER >= 20080507 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080429 +packetLen(0x020e, 54) // ZC_STARSKILL +#elif PACKETVER >= 20080415 +packetLen(0x020e, 4) // ZC_STARSKILL +#elif PACKETVER >= 20080408 +packetLen(0x020e, 3) // ZC_STARSKILL +#elif PACKETVER >= 20080401 +packetLen(0x020e, 6) // ZC_STARSKILL +#elif PACKETVER >= 20080318 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080311 +packetLen(0x020e, 6) // ZC_STARSKILL +#elif PACKETVER >= 20080304 +packetLen(0x020e, 27) // ZC_STARSKILL +#elif PACKETVER >= 20080226 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080219 +packetLen(0x020e, 8) // ZC_STARSKILL +#elif PACKETVER >= 20080124 +packetLen(0x020e, 102) // ZC_STARSKILL +#elif PACKETVER >= 20080102 +packetLen(0x020e, 32) // ZC_STARSKILL +#endif + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +#if PACKETVER >= 20080701 +packetLen(0x0217, 7) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0217, 4) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0217, 53) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0217, 6) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080528 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080520 +packetLen(0x0217, 8) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0217, 65) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0217, 8) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0217, 15) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0217, 8) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0217, 13) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0217, 4) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0217, 26) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0217, 44) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0217, 5) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0217, 3) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#endif + +// Packet: 0x0218 +#if PACKETVER >= 20080701 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080624 +packetLen(0x0218, 10) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0218, 68) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0218, 30) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0218, 5) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080520 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0218, 18) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0218, 67) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0218, 6) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0218, 14) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0218, 4) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0218, 8) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0218, 26) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0218, 6) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#endif + +// Packet: 0x0219 +#if PACKETVER >= 20080624 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0219, 8) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0219, 4) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080528 +packetLen(0x0219, 30) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0219, 12) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0219, 9) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0219, 28) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0219, 4) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0219, 15) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0219, 3) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0219, 17) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0219, 8) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +#endif + +// Packet: 0x021a +#if PACKETVER >= 20080701 +packetLen(0x021a, 6) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080624 +packetLen(0x021a, 11) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080617 +packetLen(0x021a, 97) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080610 +packetLen(0x021a, 23) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080603 +packetLen(0x021a, 30) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080528 +packetLen(0x021a, 26) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080513 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080507 +packetLen(0x021a, 3) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080429 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080422 +packetLen(0x021a, 16) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080408 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080401 +packetLen(0x021a, 11) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080325 +packetLen(0x021a, 8) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080318 +packetLen(0x021a, 6) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080311 +packetLen(0x021a, 8) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080304 +packetLen(0x021a, 5) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080226 +packetLen(0x021a, 30) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080219 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080124 +packetLen(0x021a, 10) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080102 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +#endif + +// Packet: 0x021b +#if PACKETVER >= 20080701 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080624 +packetLen(0x021b, 4) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080617 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080610 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080603 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080520 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080513 +packetLen(0x021b, 4) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080507 +packetLen(0x021b, 8) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080429 +packetLen(0x021b, 2) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080422 +packetLen(0x021b, 44) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080415 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080408 +packetLen(0x021b, 9) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080401 +packetLen(0x021b, 6) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080325 +packetLen(0x021b, 11) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080318 +packetLen(0x021b, 3) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080311 +packetLen(0x021b, 15) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080304 +packetLen(0x021b, 14) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080226 +packetLen(0x021b, 6) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080219 +packetLen(0x021b, 15) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080124 +packetLen(0x021b, 54) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080102 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#endif + +// Packet: 0x021c +#if PACKETVER >= 20080617 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080610 +packetLen(0x021c, 8) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080603 +packetLen(0x021c, 13) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080528 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080520 +packetLen(0x021c, 2) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080513 +packetLen(0x021c, 5) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080507 +packetLen(0x021c, 8) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080429 +packetLen(0x021c, 18) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080422 +packetLen(0x021c, 3) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080415 +packetLen(0x021c, 5) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080408 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080401 +packetLen(0x021c, 4) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080325 +packetLen(0x021c, 102) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080318 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080311 +packetLen(0x021c, 6) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080304 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080226 +packetLen(0x021c, 4) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080219 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080124 +packetLen(0x021c, 30) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080102 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#endif + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +#if PACKETVER >= 20080701 +packetLen(0x0224, 4) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080624 +packetLen(0x0224, 42) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080610 +packetLen(0x0224, 4) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080603 +packetLen(0x0224, 14) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080528 +packetLen(0x0224, 9) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080520 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080513 +packetLen(0x0224, 3) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080507 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080429 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080422 +packetLen(0x0224, 8) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080415 +packetLen(0x0224, 27) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080408 +packetLen(0x0224, 81) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080401 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080325 +packetLen(0x0224, 2) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080318 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080311 +packetLen(0x0224, 20) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080304 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080226 +packetLen(0x0224, 2) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080219 +packetLen(0x0224, 12) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080124 +packetLen(0x0224, 9) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080102 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#endif + +// Packet: 0x0225 +#if PACKETVER >= 20080701 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080624 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0225, 7) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0225, 32) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0225, 14) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080520 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0225, 10) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0225, 9) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0225, 3) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0225, 4) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0225, 3) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0225, 5) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0225, 5) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0225, 29) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0225, 10) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0225, 3) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0225, 6) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#endif + +// Packet: 0x0226 +#if PACKETVER >= 20080624 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0226, 3) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0226, 2) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080528 +packetLen(0x0226, 36) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0226, 2) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0226, 30) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0226, 2) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0226, 9) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0226, 3) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0226, 22) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0226, 3) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0226, 42) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0226, 4) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +#endif + +// Packet: 0x0227 +#if PACKETVER >= 20080701 +packetLen(0x0227, 2) // ZC_GAME_GUARD +#elif PACKETVER >= 20080617 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080610 +packetLen(0x0227, 10) // ZC_GAME_GUARD +#elif PACKETVER >= 20080603 +packetLen(0x0227, 6) // ZC_GAME_GUARD +#elif PACKETVER >= 20080528 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080520 +packetLen(0x0227, 10) // ZC_GAME_GUARD +#elif PACKETVER >= 20080513 +packetLen(0x0227, 4) // ZC_GAME_GUARD +#elif PACKETVER >= 20080507 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080429 +packetLen(0x0227, 26) // ZC_GAME_GUARD +#elif PACKETVER >= 20080422 +packetLen(0x0227, 8) // ZC_GAME_GUARD +#elif PACKETVER >= 20080415 +packetLen(0x0227, 2) // ZC_GAME_GUARD +#elif PACKETVER >= 20080408 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080325 +packetLen(0x0227, 6) // ZC_GAME_GUARD +#elif PACKETVER >= 20080318 +packetLen(0x0227, 15) // ZC_GAME_GUARD +#elif PACKETVER >= 20080311 +packetLen(0x0227, 7) // ZC_GAME_GUARD +#elif PACKETVER >= 20080304 +packetLen(0x0227, 2) // ZC_GAME_GUARD +#elif PACKETVER >= 20080226 +packetLen(0x0227, 31) // ZC_GAME_GUARD +#elif PACKETVER >= 20080219 +packetLen(0x0227, 4) // ZC_GAME_GUARD +#elif PACKETVER >= 20080124 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080102 +packetLen(0x0227, 18) // ZC_GAME_GUARD +#endif + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +#if PACKETVER >= 20080701 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080624 +packetLen(0x0229, 2) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080617 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080610 +packetLen(0x0229, 21) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080603 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080528 +packetLen(0x0229, 2) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080520 +packetLen(0x0229, 31) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080507 +packetLen(0x0229, 5) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080429 +packetLen(0x0229, 2) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080422 +packetLen(0x0229, 3) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080415 +packetLen(0x0229, 7) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080408 +packetLen(0x0229, 5) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080401 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080325 +packetLen(0x0229, 6) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080318 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080311 +packetLen(0x0229, 22) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080304 +packetLen(0x0229, 33) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080226 +packetLen(0x0229, 182) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080219 +packetLen(0x0229, 6) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080124 +packetLen(0x0229, 22) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080102 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +#endif + +// Packet: 0x022a +#if PACKETVER >= 20080701 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080624 +packetLen(0x022a, 2) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080617 +packetLen(0x022a, 8) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080520 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080513 +packetLen(0x022a, 5) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080507 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080429 +packetLen(0x022a, 3) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080422 +packetLen(0x022a, 23) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080415 +packetLen(0x022a, 3) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080408 +packetLen(0x022a, 10) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080401 +packetLen(0x022a, 8) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080325 +packetLen(0x022a, 114) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080318 +packetLen(0x022a, 2) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080311 +packetLen(0x022a, 10) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080304 +packetLen(0x022a, 2) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080226 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080219 +packetLen(0x022a, 2) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080124 +packetLen(0x022a, 8) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080102 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#endif + +// Packet: 0x022b +#if PACKETVER >= 20080701 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080624 +packetLen(0x022b, 90) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080617 +packetLen(0x022b, 6) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080610 +packetLen(0x022b, 2) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080603 +packetLen(0x022b, 18) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080528 +packetLen(0x022b, 7) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080520 +packetLen(0x022b, 10) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080513 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080507 +packetLen(0x022b, 6) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080429 +packetLen(0x022b, 26) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080415 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080408 +packetLen(0x022b, 27) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080401 +packetLen(0x022b, 6) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080325 +packetLen(0x022b, 282) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080318 +packetLen(0x022b, 102) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080311 +packetLen(0x022b, 10) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080304 +packetLen(0x022b, 8) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080219 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080124 +packetLen(0x022b, 23) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080102 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20080603 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080520 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080513 +packetLen(0x022c, 8) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080507 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080429 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080422 +packetLen(0x022c, 33) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080415 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080408 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080401 +packetLen(0x022c, 4) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080325 +packetLen(0x022c, 68) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080318 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080304 +packetLen(0x022c, 10) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080226 +packetLen(0x022c, 31) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080219 +packetLen(0x022c, 53) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080124 +packetLen(0x022c, 22) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080102 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +#if PACKETVER >= 20080701 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20080520 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20080513 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20080507 +packetLen(0x022d, 29) // CZ_COMMAND_MER +#elif PACKETVER >= 20080429 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20080422 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20080408 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20080401 +packetLen(0x022d, 30) // CZ_COMMAND_MER +#elif PACKETVER >= 20080325 +packetLen(0x022d, 11) // CZ_COMMAND_MER +#elif PACKETVER >= 20080318 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20080311 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20080226 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20080219 +packetLen(0x022d, 9) // CZ_COMMAND_MER +#elif PACKETVER >= 20080124 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20080102 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +#if PACKETVER >= 20080701 +packetLen(0x022e, 30) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080624 +packetLen(0x022e, 4) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080610 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080603 +packetLen(0x022e, 10) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080520 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080513 +packetLen(0x022e, 4) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080507 +packetLen(0x022e, 8) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080429 +packetLen(0x022e, 3) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080422 +packetLen(0x022e, 7) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080415 +packetLen(0x022e, 30) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080408 +packetLen(0x022e, 9) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080401 +packetLen(0x022e, 2) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080325 +packetLen(0x022e, 4) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080318 +packetLen(0x022e, 28) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080311 +packetLen(0x022e, 5) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080304 +packetLen(0x022e, 55) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080226 +packetLen(0x022e, 9) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080219 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080124 +packetLen(0x022e, 4) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080102 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#endif + +// Packet: 0x022f +#if PACKETVER >= 20080701 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080624 +packetLen(0x022f, 10) // ZC_FEED_MER +#elif PACKETVER >= 20080617 +packetLen(0x022f, 4) // ZC_FEED_MER +#elif PACKETVER >= 20080610 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080603 +packetLen(0x022f, 22) // ZC_FEED_MER +#elif PACKETVER >= 20080528 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080520 +packetLen(0x022f, 26) // ZC_FEED_MER +#elif PACKETVER >= 20080429 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080422 +packetLen(0x022f, 7) // ZC_FEED_MER +#elif PACKETVER >= 20080415 +packetLen(0x022f, 3) // ZC_FEED_MER +#elif PACKETVER >= 20080401 +packetLen(0x022f, 10) // ZC_FEED_MER +#elif PACKETVER >= 20080325 +packetLen(0x022f, 67) // ZC_FEED_MER +#elif PACKETVER >= 20080318 +packetLen(0x022f, 7) // ZC_FEED_MER +#elif PACKETVER >= 20080304 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080226 +packetLen(0x022f, 26) // ZC_FEED_MER +#elif PACKETVER >= 20080219 +packetLen(0x022f, 282) // ZC_FEED_MER +#elif PACKETVER >= 20080124 +packetLen(0x022f, 6) // ZC_FEED_MER +#elif PACKETVER >= 20080102 +packetLen(0x022f, 5) // ZC_FEED_MER +#endif + +// Packet: 0x0230 +#if PACKETVER >= 20080624 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080617 +packetLen(0x0230, 4) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080520 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080513 +packetLen(0x0230, 6) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080507 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080429 +packetLen(0x0230, 6) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080415 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080401 +packetLen(0x0230, 43) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080325 +packetLen(0x0230, 8) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080318 +packetLen(0x0230, 4) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080311 +packetLen(0x0230, 3) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080304 +packetLen(0x0230, 16) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080226 +packetLen(0x0230, 28) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080219 +packetLen(0x0230, 54) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080124 +packetLen(0x0230, 3) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080102 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +#endif + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +#if PACKETVER >= 20080701 +packetLen(0x0232, 28) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080624 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080617 +packetLen(0x0232, 6) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080610 +packetLen(0x0232, 30) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080603 +packetLen(0x0232, 2) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080528 +packetLen(0x0232, 4) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080520 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080513 +packetLen(0x0232, 17) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080429 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080422 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080415 +packetLen(0x0232, 10) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080408 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080401 +packetLen(0x0232, 2) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080325 +packetLen(0x0232, 10) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080318 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080311 +packetLen(0x0232, 5) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080304 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080226 +packetLen(0x0232, 2) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080219 +packetLen(0x0232, 36) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080124 +packetLen(0x0232, 17) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080102 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#endif + +// Packet: 0x0233 +#if PACKETVER >= 20080624 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080617 +packetLen(0x0233, 10) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080610 +packetLen(0x0233, 66) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080603 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080528 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080520 +packetLen(0x0233, 15) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080513 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080507 +packetLen(0x0233, 68) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080429 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080422 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080415 +packetLen(0x0233, 10) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080408 +packetLen(0x0233, 22) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080325 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080318 +packetLen(0x0233, 2) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080311 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080304 +packetLen(0x0233, 2) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080226 +packetLen(0x0233, 4) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080219 +packetLen(0x0233, 8) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080124 +packetLen(0x0233, 23) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080102 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#endif + +// Packet: 0x0234 +#if PACKETVER >= 20080624 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080617 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080528 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080520 +packetLen(0x0234, 10) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080429 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080422 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080415 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080408 +packetLen(0x0234, 2) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080401 +packetLen(0x0234, 16) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080325 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080318 +packetLen(0x0234, 3) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080311 +packetLen(0x0234, 43) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080304 +packetLen(0x0234, 4) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080226 +packetLen(0x0234, 15) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080219 +packetLen(0x0234, 282) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080124 +packetLen(0x0234, 26) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080102 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#endif + +// Packet: 0x0235 +#if PACKETVER >= 20080701 +packetLen(0x0235, 6) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080617 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0235, 6) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0235, 12) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080520 +packetLen(0x0235, 5) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0235, 28) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080408 +packetLen(0x0235, 2) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080401 +packetLen(0x0235, 19) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080325 +packetLen(0x0235, 42) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0235, 44) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0235, 10) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0235, 33) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0235, 15) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0235, 30) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#endif + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +#if PACKETVER >= 20080701 +packetLen(0x0237, 29) // CZ_KILLER_RANK +#elif PACKETVER >= 20080624 +packetLen(0x0237, 14) // CZ_KILLER_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0237, 5) // CZ_KILLER_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0237, 4) // CZ_KILLER_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080528 +packetLen(0x0237, 19) // CZ_KILLER_RANK +#elif PACKETVER >= 20080520 +packetLen(0x0237, 3) // CZ_KILLER_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0237, 24) // CZ_KILLER_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0237, 60) // CZ_KILLER_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0237, 20) // CZ_KILLER_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0237, 8) // CZ_KILLER_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0237, 54) // CZ_KILLER_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0237, 3) // CZ_KILLER_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0237, 10) // CZ_KILLER_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0237, 3) // CZ_KILLER_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0237, 4) // CZ_KILLER_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#endif + +// Packet: 0x0238 +#if PACKETVER >= 20080624 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0238, 21) // ZC_KILLER_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0238, 10) // ZC_KILLER_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0238, 10) // ZC_KILLER_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0238, 27) // ZC_KILLER_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0238, 14) // ZC_KILLER_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0238, 282) // ZC_KILLER_RANK +#endif + +// Packet: 0x0239 +#if PACKETVER >= 20080701 +packetLen(0x0239, 30) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080624 +packetLen(0x0239, 8) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080610 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080603 +packetLen(0x0239, 2) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080528 +packetLen(0x0239, 29) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080520 +packetLen(0x0239, 282) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080513 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080507 +packetLen(0x0239, 5) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080429 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080422 +packetLen(0x0239, 5) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080415 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080408 +packetLen(0x0239, 36) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080401 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080325 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080318 +packetLen(0x0239, 26) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080311 +packetLen(0x0239, 8) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080304 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080226 +packetLen(0x0239, 39) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080219 +packetLen(0x0239, 8) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080124 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080102 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +#endif + +// Packet: 0x023a +#if PACKETVER >= 20080701 +packetLen(0x023a, 13) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080624 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080617 +packetLen(0x023a, 10) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080513 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080507 +packetLen(0x023a, 28) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080429 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080422 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080415 +packetLen(0x023a, 2) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080401 +packetLen(0x023a, 6) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080325 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080318 +packetLen(0x023a, 8) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080311 +packetLen(0x023a, 10) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080304 +packetLen(0x023a, 2) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080226 +packetLen(0x023a, 6) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080219 +packetLen(0x023a, 11) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080124 +packetLen(0x023a, 71) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080102 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#endif + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +#if PACKETVER >= 20080701 +packetLen(0x023c, 60) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080617 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080610 +packetLen(0x023c, 4) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080513 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080507 +packetLen(0x023c, 30) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080429 +packetLen(0x023c, 3) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080422 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080415 +packetLen(0x023c, 10) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080408 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080401 +packetLen(0x023c, 12) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080325 +packetLen(0x023c, 79) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080318 +packetLen(0x023c, 10) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080311 +packetLen(0x023c, 21) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080226 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080219 +packetLen(0x023c, 5) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080124 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080102 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#endif + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +#if PACKETVER >= 20080617 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080610 +packetLen(0x0274, 4) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080603 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080528 +packetLen(0x0274, 10) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080520 +packetLen(0x0274, 30) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080513 +packetLen(0x0274, 7) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080507 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080429 +packetLen(0x0274, 7) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080422 +packetLen(0x0274, 282) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080415 +packetLen(0x0274, 6) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080408 +packetLen(0x0274, 3) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080401 +packetLen(0x0274, 2) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080325 +packetLen(0x0274, 53) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080318 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080311 +packetLen(0x0274, 67) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080304 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080226 +packetLen(0x0274, 24) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080219 +packetLen(0x0274, 32) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080124 +packetLen(0x0274, 3) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080102 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#endif + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +#if PACKETVER >= 20080701 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x0287, 26) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x0287, 2) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x0287, 11) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x0287, 31) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x0287, 3) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x0287, 2) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x0287, 4) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x0287, 32) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0287, 18) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0287, 10) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0287, 11) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x0287, 3) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#endif + +// Packet: 0x0288 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +#if PACKETVER >= 20080701 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x0295, 31) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080610 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080603 +packetLen(0x0295, 30) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x0295, 6) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080429 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x0295, 53) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080415 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x0295, 10) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x0295, 2) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x0295, 66) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x0295, 8) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x0295, 4) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x0295, 5) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x0295, 3) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x0295, 6) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x0295, 34) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0296 +#if PACKETVER >= 20080624 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080617 +packetLen(0x0296, 19) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080610 +packetLen(0x0296, 17) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080528 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080520 +packetLen(0x0296, 5) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x0296, 53) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x0296, 3) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080415 +packetLen(0x0296, 28) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x0296, 14) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x0296, 20) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x0296, 9) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x0296, 29) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x0296, 90) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x0296, 6) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x0296, 5) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x0296, 4) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0297 +#if PACKETVER >= 20080701 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x0297, 4) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080610 +packetLen(0x0297, 6) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080603 +packetLen(0x0297, 9) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080429 +packetLen(0x0297, 2) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x0297, 8) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x0297, 3) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x0297, 36) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x0297, 2) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x0297, 11) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x0297, 5) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x0297, 29) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +#if PACKETVER >= 20080610 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080603 +packetLen(0x029a, 28) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080528 +packetLen(0x029a, 7) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080520 +packetLen(0x029a, 55) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080513 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080507 +packetLen(0x029a, 12) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080429 +packetLen(0x029a, 44) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080422 +packetLen(0x029a, 11) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080408 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080401 +packetLen(0x029a, 14) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080325 +packetLen(0x029a, 2) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080318 +packetLen(0x029a, 16) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080311 +packetLen(0x029a, 8) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080304 +packetLen(0x029a, 21) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080226 +packetLen(0x029a, 3) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080219 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080124 +packetLen(0x029a, 30) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080102 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#endif + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +#if PACKETVER >= 20080122 +// removed +#elif PACKETVER >= 20080108 +packetLen(0x02a6, 204) // ZC_HACKSH_CPX_MSG +#elif PACKETVER >= 20080102 +packetLen(0x02a6, 22) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20080122 +// removed +#elif PACKETVER >= 20080108 +packetLen(0x02a7, 204) // CZ_HACKSH_CPX_MSG +#elif PACKETVER >= 20080102 +packetLen(0x02a7, 22) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a8 +#if PACKETVER >= 20080108 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02a8, 162) // ZC_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02a9 +#if PACKETVER >= 20080108 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02a9, 58) // CZ_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02bf +#if PACKETVER >= 20080318 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02bf, 10) // ZC_SRPACKETR2_INIT +#endif + +// Packet: 0x02c0 +#if PACKETVER >= 20080318 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02c0, 2) // CZ_SRPACKETR2_START +#endif + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +#if PACKETVER >= 20080304 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080226 +packetLen(0x02d4, 30) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080219 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080124 +packetLen(0x02d4, 32) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080102 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#endif + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +#if PACKETVER >= 20080617 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080610 +packetLen(0x02e1, 26) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080603 +packetLen(0x02e1, 8) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080528 +packetLen(0x02e1, 10) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080520 +packetLen(0x02e1, 6) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080513 +packetLen(0x02e1, 55) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080507 +packetLen(0x02e1, 22) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080408 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080401 +packetLen(0x02e1, 9) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080325 +packetLen(0x02e1, 26) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080311 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080304 +packetLen(0x02e1, 8) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080102 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 +#endif + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +#if PACKETVER >= 20080624 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080617 +packetLen(0x02ec, 42) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080610 +packetLen(0x02ec, 6) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080603 +packetLen(0x02ec, 4) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080528 +packetLen(0x02ec, 6) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080520 +packetLen(0x02ec, 14) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080513 +packetLen(0x02ec, 11) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080507 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080429 +packetLen(0x02ec, 43) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080422 +packetLen(0x02ec, 60) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080415 +packetLen(0x02ec, 3) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080408 +packetLen(0x02ec, 6) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080401 +packetLen(0x02ec, 17) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080325 +packetLen(0x02ec, 29) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080318 +packetLen(0x02ec, 10) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080311 +packetLen(0x02ec, 12) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080304 +packetLen(0x02ec, 60) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080102 +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 +#endif + +// Packet: 0x02ed +#if PACKETVER >= 20080624 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080617 +packetLen(0x02ed, 60) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080610 +packetLen(0x02ed, 7) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080603 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080528 +packetLen(0x02ed, 97) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080520 +packetLen(0x02ed, 11) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080513 +packetLen(0x02ed, 21) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080507 +packetLen(0x02ed, 10) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080429 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080422 +packetLen(0x02ed, 30) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080415 +packetLen(0x02ed, 53) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080408 +packetLen(0x02ed, 7) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080401 +packetLen(0x02ed, 11) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080325 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080318 +packetLen(0x02ed, 6) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080304 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080102 +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 +#endif + +// Packet: 0x02ee +#if PACKETVER >= 20080610 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080603 +packetLen(0x02ee, 2) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080528 +packetLen(0x02ee, 3) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080520 +packetLen(0x02ee, 28) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080507 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080429 +packetLen(0x02ee, 4) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080422 +packetLen(0x02ee, 97) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080415 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080408 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080401 +packetLen(0x02ee, 42) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080325 +packetLen(0x02ee, 4) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080318 +packetLen(0x02ee, 13) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080311 +packetLen(0x02ee, 81) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080304 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080102 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#endif + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +#if PACKETVER >= 20080318 +packetLen(0x02f0, 10) // ZC_PROGRESS +#endif + +// Packet: 0x02f1 +#if PACKETVER >= 20080318 +packetLen(0x02f1, 2) // CZ_PROGRESS +#endif + +// Packet: 0x02f2 +#if PACKETVER >= 20080318 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL +#endif + +// Packet: 0x02f3 +#if PACKETVER >= 20080701 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080624 +packetLen(0x02f3, 2) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080617 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080610 +packetLen(0x02f3, 30) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080603 +packetLen(0x02f3, 9) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080528 +packetLen(0x02f3, 26) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080520 +packetLen(0x02f3, 5) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080513 +packetLen(0x02f3, 3) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080507 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080429 +packetLen(0x02f3, 7) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080422 +packetLen(0x02f3, 3) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080415 +packetLen(0x02f3, 67) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080408 +packetLen(0x02f3, 23) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080401 +packetLen(0x02f3, 71) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080325 +packetLen(0x02f3, 2) // CZ_IRMAIL_SEND +#endif + +// Packet: 0x02f4 +#if PACKETVER >= 20080617 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080610 +packetLen(0x02f4, 30) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080507 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080429 +packetLen(0x02f4, 29) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080422 +packetLen(0x02f4, 6) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080408 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080401 +packetLen(0x02f4, 9) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080325 +packetLen(0x02f4, 4) // ZC_IRMAIL_SEND_RES +#endif + +// Packet: 0x02f5 +#if PACKETVER >= 20080701 +packetLen(0x02f5, 8) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080624 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080617 +packetLen(0x02f5, 26) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080610 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080603 +packetLen(0x02f5, 28) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080528 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080520 +packetLen(0x02f5, 2) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080513 +packetLen(0x02f5, 3) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080507 +packetLen(0x02f5, 5) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080429 +packetLen(0x02f5, 8) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080422 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080415 +packetLen(0x02f5, 60) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080401 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080325 +packetLen(0x02f5, 86) // ZC_IRMAIL_NOTIFY +#endif + +// Packet: 0x02f6 +#if PACKETVER >= 20080624 +packetLen(0x02f6, 8) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080617 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080610 +packetLen(0x02f6, 5) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080603 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080528 +packetLen(0x02f6, 2) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080520 +packetLen(0x02f6, 12) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080513 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080507 +packetLen(0x02f6, 5) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080429 +packetLen(0x02f6, 22) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080422 +packetLen(0x02f6, 5) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080415 +packetLen(0x02f6, 2) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080408 +packetLen(0x02f6, 8) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080401 +packetLen(0x02f6, 6) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080325 +packetLen(0x02f6, 4) // CZ_IRMAIL_LIST +#endif + +// Packet: 0x02f7 +#if PACKETVER >= 20080624 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080617 +packetLen(0x02f7, 26) +#elif PACKETVER >= 20080610 +packetLen(0x02f7, 12) +#elif PACKETVER >= 20080603 +packetLen(0x02f7, 22) +#elif PACKETVER >= 20080528 +packetLen(0x02f7, 8) +#elif PACKETVER >= 20080520 +packetLen(0x02f7, 6) +#elif PACKETVER >= 20080513 +packetLen(0x02f7, 10) +#elif PACKETVER >= 20080507 +packetLen(0x02f7, 30) +#elif PACKETVER >= 20080429 +packetLen(0x02f7, 7) +#elif PACKETVER >= 20080422 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080415 +packetLen(0x02f7, 6) +#elif PACKETVER >= 20080408 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080401 +packetLen(0x02f7, 26) +#elif PACKETVER >= 20080325 +packetLen(0x02f7, -1) +#endif + +// Packet: 0x02f8 +#if PACKETVER >= 20080701 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20080624 +packetLen(0x02f8, 12) +#elif PACKETVER >= 20080617 +packetLen(0x02f8, 3) +#elif PACKETVER >= 20080610 +packetLen(0x02f8, 2) +#elif PACKETVER >= 20080520 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20080513 +packetLen(0x02f8, 30) +#elif PACKETVER >= 20080422 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20080415 +packetLen(0x02f8, 3) +#elif PACKETVER >= 20080408 +packetLen(0x02f8, 10) +#elif PACKETVER >= 20080401 +packetLen(0x02f8, 29) +#elif PACKETVER >= 20080325 +packetLen(0x02f8, 7) +#endif + +// Packet: 0x02f9 +#if PACKETVER >= 20080701 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080624 +packetLen(0x02f9, 43) +#elif PACKETVER >= 20080617 +packetLen(0x02f9, 2) +#elif PACKETVER >= 20080610 +packetLen(0x02f9, 71) +#elif PACKETVER >= 20080528 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080520 +packetLen(0x02f9, 4) +#elif PACKETVER >= 20080513 +packetLen(0x02f9, 28) +#elif PACKETVER >= 20080507 +packetLen(0x02f9, 26) +#elif PACKETVER >= 20080429 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080422 +packetLen(0x02f9, 5) +#elif PACKETVER >= 20080415 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080408 +packetLen(0x02f9, 8) +#elif PACKETVER >= 20080325 +packetLen(0x02f9, 6) +#endif + +// Packet: 0x02fa +#if PACKETVER >= 20080701 +packetLen(0x02fa, 8) +#elif PACKETVER >= 20080617 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02fa, 6) +#elif PACKETVER >= 20080603 +packetLen(0x02fa, 65) +#elif PACKETVER >= 20080528 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20080520 +packetLen(0x02fa, 6) +#elif PACKETVER >= 20080513 +packetLen(0x02fa, 27) +#elif PACKETVER >= 20080507 +packetLen(0x02fa, 33) +#elif PACKETVER >= 20080429 +packetLen(0x02fa, 68) +#elif PACKETVER >= 20080422 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20080415 +packetLen(0x02fa, 54) +#elif PACKETVER >= 20080408 +packetLen(0x02fa, 2) +#elif PACKETVER >= 20080401 +packetLen(0x02fa, 16) +#elif PACKETVER >= 20080325 +packetLen(0x02fa, 3) +#endif + +// Packet: 0x02fb +#if PACKETVER >= 20080701 +packetLen(0x02fb, 4) +#elif PACKETVER >= 20080624 +packetLen(0x02fb, 11) +#elif PACKETVER >= 20080617 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02fb, 29) +#elif PACKETVER >= 20080603 +packetLen(0x02fb, 8) +#elif PACKETVER >= 20080528 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080513 +packetLen(0x02fb, 6) +#elif PACKETVER >= 20080507 +packetLen(0x02fb, 8) +#elif PACKETVER >= 20080422 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080415 +packetLen(0x02fb, 10) +#elif PACKETVER >= 20080408 +packetLen(0x02fb, 4) +#elif PACKETVER >= 20080401 +packetLen(0x02fb, 10) +#elif PACKETVER >= 20080325 +packetLen(0x02fb, 3) +#endif + +// Packet: 0x02fc +#if PACKETVER >= 20080701 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080624 +packetLen(0x02fc, 8) +#elif PACKETVER >= 20080617 +packetLen(0x02fc, 5) +#elif PACKETVER >= 20080520 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080513 +packetLen(0x02fc, 2) +#elif PACKETVER >= 20080507 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080429 +packetLen(0x02fc, 4) +#elif PACKETVER >= 20080408 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080401 +packetLen(0x02fc, 3) +#elif PACKETVER >= 20080325 +packetLen(0x02fc, -1) +#endif + +// Packet: 0x02fd +#if PACKETVER >= 20080701 +packetLen(0x02fd, 30) +#elif PACKETVER >= 20080624 +packetLen(0x02fd, 18) +#elif PACKETVER >= 20080617 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02fd, 54) +#elif PACKETVER >= 20080528 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080520 +packetLen(0x02fd, 8) +#elif PACKETVER >= 20080507 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080429 +packetLen(0x02fd, 2) +#elif PACKETVER >= 20080415 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080408 +packetLen(0x02fd, 30) +#elif PACKETVER >= 20080401 +packetLen(0x02fd, 29) +#elif PACKETVER >= 20080325 +packetLen(0x02fd, 3) +#endif + +// Packet: 0x02fe +#if PACKETVER >= 20080617 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20080603 +packetLen(0x02fe, 2) +#elif PACKETVER >= 20080528 +packetLen(0x02fe, 6) +#elif PACKETVER >= 20080513 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20080507 +packetLen(0x02fe, 4) +#elif PACKETVER >= 20080429 +packetLen(0x02fe, 8) +#elif PACKETVER >= 20080422 +packetLen(0x02fe, 11) +#elif PACKETVER >= 20080415 +packetLen(0x02fe, 28) +#elif PACKETVER >= 20080408 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20080401 +packetLen(0x02fe, 2) +#elif PACKETVER >= 20080325 +packetLen(0x02fe, -1) +#endif + +// Packet: 0x02ff +#if PACKETVER >= 20080624 +packetLen(0x02ff, 2) +#elif PACKETVER >= 20080617 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02ff, 11) +#elif PACKETVER >= 20080603 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080528 +packetLen(0x02ff, 6) +#elif PACKETVER >= 20080520 +packetLen(0x02ff, 12) +#elif PACKETVER >= 20080507 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080429 +packetLen(0x02ff, 4) +#elif PACKETVER >= 20080422 +packetLen(0x02ff, 8) +#elif PACKETVER >= 20080415 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080408 +packetLen(0x02ff, 30) +#elif PACKETVER >= 20080325 +packetLen(0x02ff, 6) +#endif + +// Packet: 0x0300 +#if PACKETVER >= 20080701 +packetLen(0x0300, 4) +#elif PACKETVER >= 20080624 +packetLen(0x0300, 13) +#elif PACKETVER >= 20080617 +packetLen(0x0300, 16) +#elif PACKETVER >= 20080610 +packetLen(0x0300, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0300, 26) +#elif PACKETVER >= 20080520 +packetLen(0x0300, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0300, 13) +#elif PACKETVER >= 20080507 +packetLen(0x0300, 14) +#elif PACKETVER >= 20080429 +packetLen(0x0300, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0300, 17) +#elif PACKETVER >= 20080415 +packetLen(0x0300, 20) +#elif PACKETVER >= 20080325 +packetLen(0x0300, -1) +#endif + +// Packet: 0x0301 +#if PACKETVER >= 20080701 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0301, 6) +#elif PACKETVER >= 20080617 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0301, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0301, 15) +#elif PACKETVER >= 20080513 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0301, 10) +#elif PACKETVER >= 20080429 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0301, 14) +#elif PACKETVER >= 20080415 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0301, 6) +#elif PACKETVER >= 20080401 +packetLen(0x0301, -1) +#endif + +// Packet: 0x0302 +#if PACKETVER >= 20080701 +packetLen(0x0302, 5) +#elif PACKETVER >= 20080624 +packetLen(0x0302, 21) +#elif PACKETVER >= 20080617 +packetLen(0x0302, 3) +#elif PACKETVER >= 20080610 +packetLen(0x0302, 68) +#elif PACKETVER >= 20080528 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0302, 58) +#elif PACKETVER >= 20080513 +packetLen(0x0302, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0302, 2) +#elif PACKETVER >= 20080422 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0302, 3) +#elif PACKETVER >= 20080401 +packetLen(0x0302, -1) +#endif + +// Packet: 0x0303 +#if PACKETVER >= 20080701 +packetLen(0x0303, 3) +#elif PACKETVER >= 20080624 +packetLen(0x0303, 58) +#elif PACKETVER >= 20080617 +packetLen(0x0303, 30) +#elif PACKETVER >= 20080610 +packetLen(0x0303, 22) +#elif PACKETVER >= 20080603 +packetLen(0x0303, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0303, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0303, 14) +#elif PACKETVER >= 20080513 +packetLen(0x0303, 4) +#elif PACKETVER >= 20080507 +packetLen(0x0303, 10) +#elif PACKETVER >= 20080422 +packetLen(0x0303, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0303, 282) +#elif PACKETVER >= 20080401 +packetLen(0x0303, -1) +#endif + +// Packet: 0x0304 +#if PACKETVER >= 20080624 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0304, 20) +#elif PACKETVER >= 20080610 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0304, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0304, 2) +#elif PACKETVER >= 20080520 +packetLen(0x0304, 14) +#elif PACKETVER >= 20080513 +packetLen(0x0304, 10) +#elif PACKETVER >= 20080507 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0304, 16) +#elif PACKETVER >= 20080415 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0304, 6) +#elif PACKETVER >= 20080401 +packetLen(0x0304, -1) +#endif + +// Packet: 0x0305 +#if PACKETVER >= 20080701 +packetLen(0x0305, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0305, 2) +#elif PACKETVER >= 20080617 +packetLen(0x0305, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0305, 15) +#elif PACKETVER >= 20080603 +packetLen(0x0305, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0305, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0305, 2) +#elif PACKETVER >= 20080513 +packetLen(0x0305, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0305, 8) +#elif PACKETVER >= 20080429 +packetLen(0x0305, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0305, 27) +#elif PACKETVER >= 20080401 +packetLen(0x0305, -1) +#endif + +// Packet: 0x0306 +#if PACKETVER >= 20080701 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0306, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0306, 23) +#elif PACKETVER >= 20080520 +packetLen(0x0306, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0306, 10) +#elif PACKETVER >= 20080422 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0306, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0306, 5) +#elif PACKETVER >= 20080401 +packetLen(0x0306, -1) +#endif + +// Packet: 0x0307 +#if PACKETVER >= 20080624 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0307, 30) +#elif PACKETVER >= 20080610 +packetLen(0x0307, 58) +#elif PACKETVER >= 20080603 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0307, 15) +#elif PACKETVER >= 20080520 +packetLen(0x0307, 10) +#elif PACKETVER >= 20080513 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0307, 16) +#elif PACKETVER >= 20080422 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0307, 2) +#elif PACKETVER >= 20080401 +packetLen(0x0307, -1) +#endif + +// Packet: 0x0308 +#if PACKETVER >= 20080617 +packetLen(0x0308, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0308, 182) +#elif PACKETVER >= 20080603 +packetLen(0x0308, 15) +#elif PACKETVER >= 20080528 +packetLen(0x0308, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0308, 5) +#elif PACKETVER >= 20080513 +packetLen(0x0308, 7) +#elif PACKETVER >= 20080507 +packetLen(0x0308, 4) +#elif PACKETVER >= 20080429 +packetLen(0x0308, 15) +#elif PACKETVER >= 20080422 +packetLen(0x0308, 7) +#elif PACKETVER >= 20080415 +packetLen(0x0308, 6) +#elif PACKETVER >= 20080408 +packetLen(0x0308, 10) +#endif + +// Packet: 0x0309 +#if PACKETVER >= 20080701 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0309, 14) +#elif PACKETVER >= 20080617 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0309, 10) +#elif PACKETVER >= 20080528 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0309, 2) +#elif PACKETVER >= 20080513 +packetLen(0x0309, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0309, 14) +#elif PACKETVER >= 20080429 +packetLen(0x0309, 15) +#elif PACKETVER >= 20080422 +packetLen(0x0309, 5) +#elif PACKETVER >= 20080415 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0309, 6) +#endif + +// Packet: 0x030a +#if PACKETVER >= 20080701 +packetLen(0x030a, 6) +#elif PACKETVER >= 20080624 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080617 +packetLen(0x030a, 35) +#elif PACKETVER >= 20080610 +packetLen(0x030a, 10) +#elif PACKETVER >= 20080528 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080520 +packetLen(0x030a, 16) +#elif PACKETVER >= 20080513 +packetLen(0x030a, 6) +#elif PACKETVER >= 20080507 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080429 +packetLen(0x030a, 9) +#elif PACKETVER >= 20080408 +packetLen(0x030a, -1) +#endif + +// Packet: 0x030b +#if PACKETVER >= 20080701 +packetLen(0x030b, 6) +#elif PACKETVER >= 20080624 +packetLen(0x030b, 7) +#elif PACKETVER >= 20080610 +packetLen(0x030b, -1) +#elif PACKETVER >= 20080603 +packetLen(0x030b, 10) +#elif PACKETVER >= 20080528 +packetLen(0x030b, 6) +#elif PACKETVER >= 20080520 +packetLen(0x030b, 65) +#elif PACKETVER >= 20080513 +packetLen(0x030b, 16) +#elif PACKETVER >= 20080507 +packetLen(0x030b, 15) +#elif PACKETVER >= 20080429 +packetLen(0x030b, -1) +#elif PACKETVER >= 20080422 +packetLen(0x030b, 17) +#elif PACKETVER >= 20080408 +packetLen(0x030b, 10) +#endif + +// Packet: 0x030c +#if PACKETVER >= 20080701 +packetLen(0x030c, -1) +#elif PACKETVER >= 20080624 +packetLen(0x030c, 2) +#elif PACKETVER >= 20080617 +packetLen(0x030c, 6) +#elif PACKETVER >= 20080610 +packetLen(0x030c, 282) +#elif PACKETVER >= 20080603 +packetLen(0x030c, 36) +#elif PACKETVER >= 20080520 +packetLen(0x030c, 2) +#elif PACKETVER >= 20080513 +packetLen(0x030c, 12) +#elif PACKETVER >= 20080422 +packetLen(0x030c, -1) +#elif PACKETVER >= 20080415 +packetLen(0x030c, 10) +#elif PACKETVER >= 20080408 +packetLen(0x030c, 66) +#endif + +// Packet: 0x030d +#if PACKETVER >= 20080701 +packetLen(0x030d, 16) +#elif PACKETVER >= 20080624 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080617 +packetLen(0x030d, 282) +#elif PACKETVER >= 20080610 +packetLen(0x030d, 10) +#elif PACKETVER >= 20080603 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080528 +packetLen(0x030d, 71) +#elif PACKETVER >= 20080520 +packetLen(0x030d, 4) +#elif PACKETVER >= 20080513 +packetLen(0x030d, 6) +#elif PACKETVER >= 20080422 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080415 +packetLen(0x030d, 19) +#elif PACKETVER >= 20080408 +packetLen(0x030d, 10) +#endif + +// Packet: 0x030e +#if PACKETVER >= 20080701 +packetLen(0x030e, -1) +#elif PACKETVER >= 20080624 +packetLen(0x030e, 13) +#elif PACKETVER >= 20080617 +packetLen(0x030e, -1) +#elif PACKETVER >= 20080610 +packetLen(0x030e, 2) +#elif PACKETVER >= 20080603 +packetLen(0x030e, 21) +#elif PACKETVER >= 20080528 +packetLen(0x030e, 10) +#elif PACKETVER >= 20080520 +packetLen(0x030e, 2) +#elif PACKETVER >= 20080513 +packetLen(0x030e, 10) +#elif PACKETVER >= 20080507 +packetLen(0x030e, -1) +#elif PACKETVER >= 20080422 +packetLen(0x030e, 6) +#elif PACKETVER >= 20080415 +packetLen(0x030e, 2) +#elif PACKETVER >= 20080408 +packetLen(0x030e, 3) +#endif + +// Packet: 0x030f +#if PACKETVER >= 20080701 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x030f, 17) +#elif PACKETVER >= 20080617 +packetLen(0x030f, 10) +#elif PACKETVER >= 20080603 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080528 +packetLen(0x030f, 2) +#elif PACKETVER >= 20080520 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080513 +packetLen(0x030f, 67) +#elif PACKETVER >= 20080507 +packetLen(0x030f, 2) +#elif PACKETVER >= 20080429 +packetLen(0x030f, 6) +#elif PACKETVER >= 20080422 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080415 +packetLen(0x030f, 14) +#elif PACKETVER >= 20080408 +packetLen(0x030f, -1) +#endif + +// Packet: 0x0310 +#if PACKETVER >= 20080701 +packetLen(0x0310, 27) +#elif PACKETVER >= 20080624 +packetLen(0x0310, 10) +#elif PACKETVER >= 20080617 +packetLen(0x0310, 16) +#elif PACKETVER >= 20080610 +packetLen(0x0310, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0310, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0310, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0310, 182) +#elif PACKETVER >= 20080507 +packetLen(0x0310, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0310, 2) +#elif PACKETVER >= 20080422 +packetLen(0x0310, 57) +#elif PACKETVER >= 20080415 +packetLen(0x0310, 59) +#elif PACKETVER >= 20080408 +packetLen(0x0310, -1) +#endif + +// Packet: 0x0311 +#if PACKETVER >= 20080701 +packetLen(0x0311, 2) +#elif PACKETVER >= 20080624 +packetLen(0x0311, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0311, 6) +#elif PACKETVER >= 20080610 +packetLen(0x0311, 30) +#elif PACKETVER >= 20080603 +packetLen(0x0311, 7) +#elif PACKETVER >= 20080528 +packetLen(0x0311, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0311, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0311, 4) +#elif PACKETVER >= 20080415 +packetLen(0x0311, 7) +#elif PACKETVER >= 20080408 +packetLen(0x0311, 10) +#endif + +// Packet: 0x0312 +#if PACKETVER >= 20080617 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0312, 34) +#elif PACKETVER >= 20080603 +packetLen(0x0312, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0312, 13) +#elif PACKETVER >= 20080507 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0312, 81) +#elif PACKETVER >= 20080422 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0312, 67) +#elif PACKETVER >= 20080408 +packetLen(0x0312, 6) +#endif + +// Packet: 0x0313 +#if PACKETVER >= 20080701 +packetLen(0x0313, 3) +#elif PACKETVER >= 20080624 +packetLen(0x0313, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0313, 3) +#elif PACKETVER >= 20080528 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0313, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0313, 26) +#elif PACKETVER >= 20080429 +packetLen(0x0313, 282) +#elif PACKETVER >= 20080422 +packetLen(0x0313, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0313, 26) +#elif PACKETVER >= 20080408 +packetLen(0x0313, 2) +#endif + +// Packet: 0x0314 +#if PACKETVER >= 20080624 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0314, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0314, 4) +#elif PACKETVER >= 20080520 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0314, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0314, 2) +#elif PACKETVER >= 20080429 +packetLen(0x0314, 4) +#elif PACKETVER >= 20080422 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0314, 29) +#elif PACKETVER >= 20080408 +packetLen(0x0314, 12) +#endif + +// Packet: 0x0315 +#if PACKETVER >= 20080701 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0315, 14) +#elif PACKETVER >= 20080617 +packetLen(0x0315, 8) +#elif PACKETVER >= 20080610 +packetLen(0x0315, 10) +#elif PACKETVER >= 20080528 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0315, 67) +#elif PACKETVER >= 20080513 +packetLen(0x0315, 60) +#elif PACKETVER >= 20080429 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0315, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0315, 14) +#elif PACKETVER >= 20080408 +packetLen(0x0315, 44) +#endif + +// Packet: 0x0316 +#if PACKETVER >= 20080701 +packetLen(0x0316, 8) +#elif PACKETVER >= 20080624 +packetLen(0x0316, 97) +#elif PACKETVER >= 20080617 +packetLen(0x0316, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0316, 8) +#elif PACKETVER >= 20080603 +packetLen(0x0316, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0316, 30) +#elif PACKETVER >= 20080520 +packetLen(0x0316, 11) +#elif PACKETVER >= 20080513 +packetLen(0x0316, 23) +#elif PACKETVER >= 20080507 +packetLen(0x0316, 14) +#elif PACKETVER >= 20080429 +packetLen(0x0316, 9) +#elif PACKETVER >= 20080422 +packetLen(0x0316, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0316, 6) +#elif PACKETVER >= 20080408 +packetLen(0x0316, 16) +#endif + +// Packet: 0x0317 +#if PACKETVER >= 20080701 +packetLen(0x0317, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0317, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0317, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0317, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0317, 21) +#elif PACKETVER >= 20080520 +packetLen(0x0317, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0317, 7) +#elif PACKETVER >= 20080507 +packetLen(0x0317, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0317, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0317, 14) +#elif PACKETVER >= 20080408 +packetLen(0x0317, -1) +#endif + +// Packet: 0x0318 +#if PACKETVER >= 20080701 +packetLen(0x0318, 6) +#elif PACKETVER >= 20080610 +packetLen(0x0318, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0318, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0318, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0318, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0318, 2) +#elif PACKETVER >= 20080429 +packetLen(0x0318, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0318, 54) +#elif PACKETVER >= 20080415 +packetLen(0x0318, 4) +#elif PACKETVER >= 20080408 +packetLen(0x0318, 26) +#endif + +// Packet: 0x0319 +#if PACKETVER >= 20080610 +packetLen(0x0319, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0319, 19) +#elif PACKETVER >= 20080528 +packetLen(0x0319, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0319, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0319, 22) +#elif PACKETVER >= 20080422 +packetLen(0x0319, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0319, 2) +#elif PACKETVER >= 20080408 +packetLen(0x0319, 17) +#endif + +// Packet: 0x031a +#if PACKETVER >= 20080701 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080624 +packetLen(0x031a, 4) +#elif PACKETVER >= 20080617 +packetLen(0x031a, 5) +#elif PACKETVER >= 20080610 +packetLen(0x031a, 6) +#elif PACKETVER >= 20080603 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080528 +packetLen(0x031a, 6) +#elif PACKETVER >= 20080520 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080513 +packetLen(0x031a, 86) +#elif PACKETVER >= 20080507 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080429 +packetLen(0x031a, 4) +#elif PACKETVER >= 20080422 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080415 +packetLen(0x031a, 7) +#elif PACKETVER >= 20080408 +packetLen(0x031a, 4) +#endif + +// Packet: 0x031b +#if PACKETVER >= 20080610 +packetLen(0x031b, -1) +#elif PACKETVER >= 20080603 +packetLen(0x031b, 2) +#elif PACKETVER >= 20080528 +packetLen(0x031b, 10) +#elif PACKETVER >= 20080520 +packetLen(0x031b, -1) +#elif PACKETVER >= 20080513 +packetLen(0x031b, 2) +#elif PACKETVER >= 20080507 +packetLen(0x031b, 42) +#elif PACKETVER >= 20080429 +packetLen(0x031b, 6) +#elif PACKETVER >= 20080422 +packetLen(0x031b, -1) +#elif PACKETVER >= 20080415 +packetLen(0x031b, 6) +#elif PACKETVER >= 20080408 +packetLen(0x031b, 10) +#endif + +// Packet: 0x031c +#if PACKETVER >= 20080701 +packetLen(0x031c, 6) +#elif PACKETVER >= 20080624 +packetLen(0x031c, 7) +#elif PACKETVER >= 20080617 +packetLen(0x031c, 54) +#elif PACKETVER >= 20080610 +packetLen(0x031c, 6) +#elif PACKETVER >= 20080603 +packetLen(0x031c, -1) +#elif PACKETVER >= 20080528 +packetLen(0x031c, 44) +#elif PACKETVER >= 20080513 +packetLen(0x031c, -1) +#elif PACKETVER >= 20080507 +packetLen(0x031c, 17) +#elif PACKETVER >= 20080429 +packetLen(0x031c, 4) +#elif PACKETVER >= 20080422 +packetLen(0x031c, 9) +#elif PACKETVER >= 20080415 +packetLen(0x031c, -1) +#elif PACKETVER >= 20080408 +packetLen(0x031c, 23) +#endif + +// Packet: 0x031d +#if PACKETVER >= 20080701 +packetLen(0x031d, -1) +#elif PACKETVER >= 20080624 +packetLen(0x031d, 28) +#elif PACKETVER >= 20080507 +packetLen(0x031d, -1) +#elif PACKETVER >= 20080429 +packetLen(0x031d, 35) +#elif PACKETVER >= 20080422 +packetLen(0x031d, 12) +#elif PACKETVER >= 20080415 +packetLen(0x031d, -1) +#elif PACKETVER >= 20080408 +packetLen(0x031d, 2) +#endif + +// Packet: 0x031e +#if PACKETVER >= 20080701 +packetLen(0x031e, 4) +#elif PACKETVER >= 20080610 +packetLen(0x031e, -1) +#elif PACKETVER >= 20080603 +packetLen(0x031e, 26) +#elif PACKETVER >= 20080507 +packetLen(0x031e, -1) +#elif PACKETVER >= 20080429 +packetLen(0x031e, 7) +#elif PACKETVER >= 20080422 +packetLen(0x031e, 11) +#elif PACKETVER >= 20080415 +packetLen(0x031e, 30) +#elif PACKETVER >= 20080408 +packetLen(0x031e, -1) +#endif + +// Packet: 0x031f +#if PACKETVER >= 20080701 +packetLen(0x031f, 4) +#elif PACKETVER >= 20080624 +packetLen(0x031f, 32) +#elif PACKETVER >= 20080617 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080610 +packetLen(0x031f, 54) +#elif PACKETVER >= 20080603 +packetLen(0x031f, 26) +#elif PACKETVER >= 20080528 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080520 +packetLen(0x031f, 2) +#elif PACKETVER >= 20080513 +packetLen(0x031f, 4) +#elif PACKETVER >= 20080507 +packetLen(0x031f, 8) +#elif PACKETVER >= 20080429 +packetLen(0x031f, 282) +#elif PACKETVER >= 20080415 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080408 +packetLen(0x031f, 30) +#endif + +// Packet: 0x0320 +#if PACKETVER >= 20080701 +packetLen(0x0320, 3) +#elif PACKETVER >= 20080617 +packetLen(0x0320, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0320, 14) +#elif PACKETVER >= 20080603 +packetLen(0x0320, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0320, 22) +#elif PACKETVER >= 20080429 +packetLen(0x0320, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0320, 15) +#elif PACKETVER >= 20080415 +packetLen(0x0320, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0320, 15) +#endif + +// Packet: 0x0321 +#if PACKETVER >= 20080701 +packetLen(0x0321, 10) +#elif PACKETVER >= 20080610 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0321, 23) +#elif PACKETVER >= 20080507 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0321, 30) +#elif PACKETVER >= 20080422 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0321, 24) +#elif PACKETVER >= 20080408 +packetLen(0x0321, -1) +#endif + +// Packet: 0x0322 +#if PACKETVER >= 20080701 +packetLen(0x0322, 26) +#elif PACKETVER >= 20080624 +packetLen(0x0322, 5) +#elif PACKETVER >= 20080617 +packetLen(0x0322, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0322, 282) +#elif PACKETVER >= 20080528 +packetLen(0x0322, 2) +#elif PACKETVER >= 20080520 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0322, 14) +#elif PACKETVER >= 20080507 +packetLen(0x0322, 5) +#elif PACKETVER >= 20080429 +packetLen(0x0322, 12) +#elif PACKETVER >= 20080422 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0322, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0322, 68) +#endif + +// Packet: 0x0323 +#if PACKETVER >= 20080701 +packetLen(0x0323, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0323, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0323, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0323, 67) +#elif PACKETVER >= 20080528 +packetLen(0x0323, 14) +#elif PACKETVER >= 20080520 +packetLen(0x0323, 4) +#elif PACKETVER >= 20080513 +packetLen(0x0323, 14) +#elif PACKETVER >= 20080507 +packetLen(0x0323, 186) +#elif PACKETVER >= 20080429 +packetLen(0x0323, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0323, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0323, 34) +#elif PACKETVER >= 20080408 +packetLen(0x0323, 7) +#endif + +// Packet: 0x0324 +#if PACKETVER >= 20080701 +packetLen(0x0324, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0324, 3) +#elif PACKETVER >= 20080617 +packetLen(0x0324, 66) +#elif PACKETVER >= 20080610 +packetLen(0x0324, 2) +#elif PACKETVER >= 20080603 +packetLen(0x0324, 32) +#elif PACKETVER >= 20080528 +packetLen(0x0324, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0324, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0324, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0324, 13) +#elif PACKETVER >= 20080429 +packetLen(0x0324, 26) +#elif PACKETVER >= 20080422 +packetLen(0x0324, 3) +#elif PACKETVER >= 20080415 +packetLen(0x0324, 26) +#elif PACKETVER >= 20080408 +packetLen(0x0324, -1) +#endif + +// Packet: 0x0325 +#if PACKETVER >= 20080701 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0325, 7) +#elif PACKETVER >= 20080528 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0325, 39) +#elif PACKETVER >= 20080513 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0325, 2) +#elif PACKETVER >= 20080415 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0325, 6) +#endif + +// Packet: 0x0326 +#if PACKETVER >= 20080617 +packetLen(0x0326, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0326, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0326, 42) +#elif PACKETVER >= 20080528 +packetLen(0x0326, 282) +#elif PACKETVER >= 20080520 +packetLen(0x0326, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0326, 21) +#elif PACKETVER >= 20080507 +packetLen(0x0326, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0326, 7) +#elif PACKETVER >= 20080422 +packetLen(0x0326, 39) +#elif PACKETVER >= 20080408 +packetLen(0x0326, -1) +#endif + +// Packet: 0x0327 +#if PACKETVER >= 20080701 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0327, 4) +#elif PACKETVER >= 20080617 +packetLen(0x0327, 3) +#elif PACKETVER >= 20080610 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0327, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0327, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0327, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0327, 6) +#elif PACKETVER >= 20080408 +packetLen(0x0327, 5) +#endif + +// Packet: 0x0328 +#if PACKETVER >= 20080701 +packetLen(0x0328, 30) +#elif PACKETVER >= 20080624 +packetLen(0x0328, 282) +#elif PACKETVER >= 20080617 +packetLen(0x0328, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0328, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0328, 54) +#elif PACKETVER >= 20080513 +packetLen(0x0328, 19) +#elif PACKETVER >= 20080507 +packetLen(0x0328, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0328, 90) +#elif PACKETVER >= 20080422 +packetLen(0x0328, 22) +#elif PACKETVER >= 20080415 +packetLen(0x0328, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0328, 14) +#endif + +// Packet: 0x0329 +#if PACKETVER >= 20080701 +packetLen(0x0329, 186) +#elif PACKETVER >= 20080624 +packetLen(0x0329, 66) +#elif PACKETVER >= 20080610 +packetLen(0x0329, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0329, 23) +#elif PACKETVER >= 20080528 +packetLen(0x0329, 4) +#elif PACKETVER >= 20080520 +packetLen(0x0329, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0329, 8) +#elif PACKETVER >= 20080429 +packetLen(0x0329, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0329, 3) +#elif PACKETVER >= 20080415 +packetLen(0x0329, 30) +#elif PACKETVER >= 20080408 +packetLen(0x0329, -1) +#endif + +// Packet: 0x032a +#if PACKETVER >= 20080701 +packetLen(0x032a, 17) +#elif PACKETVER >= 20080624 +packetLen(0x032a, 10) +#elif PACKETVER >= 20080617 +packetLen(0x032a, 9) +#elif PACKETVER >= 20080610 +packetLen(0x032a, 14) +#elif PACKETVER >= 20080603 +packetLen(0x032a, -1) +#elif PACKETVER >= 20080528 +packetLen(0x032a, 5) +#elif PACKETVER >= 20080520 +packetLen(0x032a, 32) +#elif PACKETVER >= 20080507 +packetLen(0x032a, -1) +#elif PACKETVER >= 20080429 +packetLen(0x032a, 6) +#elif PACKETVER >= 20080422 +packetLen(0x032a, 11) +#elif PACKETVER >= 20080415 +packetLen(0x032a, -1) +#elif PACKETVER >= 20080408 +packetLen(0x032a, 8) +#endif + +// Packet: 0x032b +#if PACKETVER >= 20080701 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080624 +packetLen(0x032b, 3) +#elif PACKETVER >= 20080610 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080603 +packetLen(0x032b, 6) +#elif PACKETVER >= 20080528 +packetLen(0x032b, 3) +#elif PACKETVER >= 20080520 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080513 +packetLen(0x032b, 7) +#elif PACKETVER >= 20080507 +packetLen(0x032b, 44) +#elif PACKETVER >= 20080429 +packetLen(0x032b, 14) +#elif PACKETVER >= 20080422 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080415 +packetLen(0x032b, 4) +#elif PACKETVER >= 20080408 +packetLen(0x032b, -1) +#endif + +// Packet: 0x032c +#if PACKETVER >= 20080701 +packetLen(0x032c, 27) +#elif PACKETVER >= 20080624 +packetLen(0x032c, 18) +#elif PACKETVER >= 20080617 +packetLen(0x032c, 2) +#elif PACKETVER >= 20080603 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080528 +packetLen(0x032c, 12) +#elif PACKETVER >= 20080520 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080513 +packetLen(0x032c, 3) +#elif PACKETVER >= 20080429 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080422 +packetLen(0x032c, 8) +#elif PACKETVER >= 20080415 +packetLen(0x032c, 6) +#elif PACKETVER >= 20080408 +packetLen(0x032c, -1) +#endif + +// Packet: 0x032d +#if PACKETVER >= 20080701 +packetLen(0x032d, 10) +#elif PACKETVER >= 20080624 +packetLen(0x032d, 32) +#elif PACKETVER >= 20080617 +packetLen(0x032d, -1) +#elif PACKETVER >= 20080610 +packetLen(0x032d, 4) +#elif PACKETVER >= 20080603 +packetLen(0x032d, 3) +#elif PACKETVER >= 20080528 +packetLen(0x032d, 10) +#elif PACKETVER >= 20080520 +packetLen(0x032d, 6) +#elif PACKETVER >= 20080513 +packetLen(0x032d, 30) +#elif PACKETVER >= 20080429 +packetLen(0x032d, 3) +#elif PACKETVER >= 20080422 +packetLen(0x032d, 90) +#elif PACKETVER >= 20080415 +packetLen(0x032d, 8) +#elif PACKETVER >= 20080408 +packetLen(0x032d, -1) +#endif + +// Packet: 0x032e +#if PACKETVER >= 20080701 +packetLen(0x032e, 26) +#elif PACKETVER >= 20080624 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080617 +packetLen(0x032e, 10) +#elif PACKETVER >= 20080610 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080528 +packetLen(0x032e, 3) +#elif PACKETVER >= 20080520 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080513 +packetLen(0x032e, 20) +#elif PACKETVER >= 20080507 +packetLen(0x032e, 24) +#elif PACKETVER >= 20080429 +packetLen(0x032e, 42) +#elif PACKETVER >= 20080422 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080415 +packetLen(0x032e, 10) +#elif PACKETVER >= 20080408 +packetLen(0x032e, 27) +#endif + +// Packet: 0x032f +#if PACKETVER >= 20080701 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x032f, 53) +#elif PACKETVER >= 20080603 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080528 +packetLen(0x032f, 58) +#elif PACKETVER >= 20080520 +packetLen(0x032f, 10) +#elif PACKETVER >= 20080513 +packetLen(0x032f, 26) +#elif PACKETVER >= 20080507 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080429 +packetLen(0x032f, 8) +#elif PACKETVER >= 20080422 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080415 +packetLen(0x032f, 27) +#elif PACKETVER >= 20080408 +packetLen(0x032f, -1) +#endif + +// Packet: 0x0330 +#if PACKETVER >= 20080701 +packetLen(0x0330, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0330, 10) +#elif PACKETVER >= 20080617 +packetLen(0x0330, 8) +#elif PACKETVER >= 20080610 +packetLen(0x0330, 67) +#elif PACKETVER >= 20080603 +packetLen(0x0330, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0330, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0330, 4) +#elif PACKETVER >= 20080429 +packetLen(0x0330, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0330, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0330, 16) +#elif PACKETVER >= 20080408 +packetLen(0x0330, 54) +#endif + +// Packet: 0x0331 +#if PACKETVER >= 20080701 +packetLen(0x0331, 18) +#elif PACKETVER >= 20080617 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0331, 8) +#elif PACKETVER >= 20080603 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0331, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0331, 12) +#elif PACKETVER >= 20080507 +packetLen(0x0331, 4) +#elif PACKETVER >= 20080429 +packetLen(0x0331, 54) +#elif PACKETVER >= 20080422 +packetLen(0x0331, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0331, 12) +#elif PACKETVER >= 20080408 +packetLen(0x0331, -1) +#endif + +// Packet: 0x0332 +#if PACKETVER >= 20080701 +packetLen(0x0332, 15) +#elif PACKETVER >= 20080624 +packetLen(0x0332, 282) +#elif PACKETVER >= 20080429 +packetLen(0x0332, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0332, 114) +#elif PACKETVER >= 20080415 +packetLen(0x0332, 8) +#elif PACKETVER >= 20080408 +packetLen(0x0332, 4) +#endif + +// Packet: 0x0333 +#if PACKETVER >= 20080701 +packetLen(0x0333, 28) +#elif PACKETVER >= 20080610 +packetLen(0x0333, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0333, 17) +#elif PACKETVER >= 20080528 +packetLen(0x0333, 2) +#elif PACKETVER >= 20080520 +packetLen(0x0333, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0333, 29) +#elif PACKETVER >= 20080507 +packetLen(0x0333, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0333, 9) +#elif PACKETVER >= 20080422 +packetLen(0x0333, 35) +#elif PACKETVER >= 20080415 +packetLen(0x0333, 5) +#elif PACKETVER >= 20080408 +packetLen(0x0333, -1) +#endif + +// Packet: 0x0334 +#if PACKETVER >= 20080624 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0334, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0334, 7) +#elif PACKETVER >= 20080603 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0334, 28) +#elif PACKETVER >= 20080520 +packetLen(0x0334, 60) +#elif PACKETVER >= 20080507 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0334, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0334, 60) +#elif PACKETVER >= 20080415 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0334, 5) +#endif + +// Packet: 0x0335 +#if PACKETVER >= 20080701 +packetLen(0x0335, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0335, 3) +#elif PACKETVER >= 20080617 +packetLen(0x0335, 22) +#elif PACKETVER >= 20080610 +packetLen(0x0335, 4) +#elif PACKETVER >= 20080603 +packetLen(0x0335, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0335, 7) +#elif PACKETVER >= 20080520 +packetLen(0x0335, 4) +#elif PACKETVER >= 20080513 +packetLen(0x0335, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0335, 28) +#elif PACKETVER >= 20080408 +packetLen(0x0335, -1) +#endif + +// Packet: 0x0336 +#if PACKETVER >= 20080624 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0336, 30) +#elif PACKETVER >= 20080610 +packetLen(0x0336, 33) +#elif PACKETVER >= 20080603 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0336, 6) +#elif PACKETVER >= 20080520 +packetLen(0x0336, 7) +#elif PACKETVER >= 20080513 +packetLen(0x0336, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0336, 11) +#elif PACKETVER >= 20080429 +packetLen(0x0336, 27) +#elif PACKETVER >= 20080415 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0336, 6) +#endif + +// Packet: 0x0337 +#if PACKETVER >= 20080624 +packetLen(0x0337, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0337, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0337, 4) +#elif PACKETVER >= 20080603 +packetLen(0x0337, 282) +#elif PACKETVER >= 20080528 +packetLen(0x0337, 11) +#elif PACKETVER >= 20080520 +packetLen(0x0337, 2) +#elif PACKETVER >= 20080507 +packetLen(0x0337, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0337, 8) +#elif PACKETVER >= 20080422 +packetLen(0x0337, 58) +#elif PACKETVER >= 20080415 +packetLen(0x0337, 9) +#elif PACKETVER >= 20080408 +packetLen(0x0337, 42) +#endif + +// Packet: 0x0338 +#if PACKETVER >= 20080701 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0338, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0338, 32) +#elif PACKETVER >= 20080507 +packetLen(0x0338, 11) +#elif PACKETVER >= 20080429 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0338, 67) +#elif PACKETVER >= 20080415 +packetLen(0x0338, 6) +#elif PACKETVER >= 20080408 +packetLen(0x0338, -1) +#endif + +// Packet: 0x0339 +#if PACKETVER >= 20080701 +packetLen(0x0339, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0339, 39) +#elif PACKETVER >= 20080617 +packetLen(0x0339, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0339, 27) +#elif PACKETVER >= 20080603 +packetLen(0x0339, 79) +#elif PACKETVER >= 20080528 +packetLen(0x0339, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0339, 7) +#elif PACKETVER >= 20080415 +packetLen(0x0339, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0339, 7) +#endif + +// Packet: 0x033a +#if PACKETVER >= 20080701 +packetLen(0x033a, 3) +#elif PACKETVER >= 20080610 +packetLen(0x033a, -1) +#elif PACKETVER >= 20080603 +packetLen(0x033a, 5) +#elif PACKETVER >= 20080528 +packetLen(0x033a, 67) +#elif PACKETVER >= 20080520 +packetLen(0x033a, 33) +#elif PACKETVER >= 20080513 +packetLen(0x033a, 39) +#elif PACKETVER >= 20080507 +packetLen(0x033a, -1) +#elif PACKETVER >= 20080429 +packetLen(0x033a, 6) +#elif PACKETVER >= 20080422 +packetLen(0x033a, 4) +#elif PACKETVER >= 20080415 +packetLen(0x033a, 6) +#elif PACKETVER >= 20080408 +packetLen(0x033a, 32) +#endif + +// Packet: 0x033b +#if PACKETVER >= 20080701 +packetLen(0x033b, 6) +#elif PACKETVER >= 20080617 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080610 +packetLen(0x033b, 14) +#elif PACKETVER >= 20080603 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080528 +packetLen(0x033b, 4) +#elif PACKETVER >= 20080520 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080513 +packetLen(0x033b, 182) +#elif PACKETVER >= 20080507 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080429 +packetLen(0x033b, 20) +#elif PACKETVER >= 20080422 +packetLen(0x033b, 6) +#elif PACKETVER >= 20080415 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080408 +packetLen(0x033b, 3) +#endif + +// Packet: 0x033c +#if PACKETVER >= 20080701 +packetLen(0x033c, 53) +#elif PACKETVER >= 20080624 +packetLen(0x033c, 12) +#elif PACKETVER >= 20080610 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080603 +packetLen(0x033c, 4) +#elif PACKETVER >= 20080528 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080520 +packetLen(0x033c, 10) +#elif PACKETVER >= 20080513 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080507 +packetLen(0x033c, 30) +#elif PACKETVER >= 20080429 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080422 +packetLen(0x033c, 10) +#elif PACKETVER >= 20080415 +packetLen(0x033c, 21) +#elif PACKETVER >= 20080408 +packetLen(0x033c, 86) +#endif + +// Packet: 0x033d +#if PACKETVER >= 20080701 +packetLen(0x033d, 32) +#elif PACKETVER >= 20080624 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080617 +packetLen(0x033d, 28) +#elif PACKETVER >= 20080528 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080520 +packetLen(0x033d, 11) +#elif PACKETVER >= 20080513 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080507 +packetLen(0x033d, 10) +#elif PACKETVER >= 20080429 +packetLen(0x033d, 21) +#elif PACKETVER >= 20080415 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080408 +packetLen(0x033d, 10) +#endif + +// Packet: 0x033e +#if PACKETVER >= 20080624 +packetLen(0x033e, 6) +#elif PACKETVER >= 20080603 +packetLen(0x033e, -1) +#elif PACKETVER >= 20080528 +packetLen(0x033e, 11) +#elif PACKETVER >= 20080520 +packetLen(0x033e, 33) +#elif PACKETVER >= 20080513 +packetLen(0x033e, 6) +#elif PACKETVER >= 20080507 +packetLen(0x033e, 4) +#elif PACKETVER >= 20080429 +packetLen(0x033e, 33) +#elif PACKETVER >= 20080422 +packetLen(0x033e, -1) +#elif PACKETVER >= 20080415 +packetLen(0x033e, 3) +#elif PACKETVER >= 20080408 +packetLen(0x033e, 9) +#endif + +// Packet: 0x033f +#if PACKETVER >= 20080701 +packetLen(0x033f, 3) +#elif PACKETVER >= 20080624 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080617 +packetLen(0x033f, 3) +#elif PACKETVER >= 20080610 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080603 +packetLen(0x033f, 8) +#elif PACKETVER >= 20080528 +packetLen(0x033f, 5) +#elif PACKETVER >= 20080520 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080513 +packetLen(0x033f, 282) +#elif PACKETVER >= 20080507 +packetLen(0x033f, 27) +#elif PACKETVER >= 20080429 +packetLen(0x033f, 3) +#elif PACKETVER >= 20080422 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080415 +packetLen(0x033f, 2) +#elif PACKETVER >= 20080408 +packetLen(0x033f, -1) +#endif + +// Packet: 0x0340 +#if PACKETVER >= 20080701 +packetLen(0x0340, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0340, 27) +#elif PACKETVER >= 20080528 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0340, 19) +#elif PACKETVER >= 20080513 +packetLen(0x0340, 4) +#elif PACKETVER >= 20080507 +packetLen(0x0340, 18) +#elif PACKETVER >= 20080429 +packetLen(0x0340, 8) +#elif PACKETVER >= 20080422 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0340, 23) +#elif PACKETVER >= 20080408 +packetLen(0x0340, -1) +#endif + +// Packet: 0x0341 +#if PACKETVER >= 20080617 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0341, 16) +#elif PACKETVER >= 20080429 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0341, 11) +#elif PACKETVER >= 20080415 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0341, 2) +#endif + +// Packet: 0x0342 +#if PACKETVER >= 20080701 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0342, 186) +#elif PACKETVER >= 20080610 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0342, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0342, 4) +#elif PACKETVER >= 20080513 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0342, 14) +#elif PACKETVER >= 20080429 +packetLen(0x0342, 30) +#elif PACKETVER >= 20080422 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0342, 5) +#elif PACKETVER >= 20080408 +packetLen(0x0342, 4) +#endif + +// Packet: 0x0343 +#if PACKETVER >= 20080701 +packetLen(0x0343, 4) +#elif PACKETVER >= 20080617 +packetLen(0x0343, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0343, 17) +#elif PACKETVER >= 20080422 +packetLen(0x0343, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0343, 2) +#elif PACKETVER >= 20080408 +packetLen(0x0343, -1) +#endif + +// Packet: 0x0344 +#if PACKETVER >= 20080701 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0344, 6) +#elif PACKETVER >= 20080617 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0344, 35) +#elif PACKETVER >= 20080603 +packetLen(0x0344, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0344, 4) +#elif PACKETVER >= 20080520 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0344, 10) +#elif PACKETVER >= 20080507 +packetLen(0x0344, 2) +#elif PACKETVER >= 20080422 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0344, 3) +#elif PACKETVER >= 20080408 +packetLen(0x0344, -1) +#endif + +// Packet: 0x0345 +#if PACKETVER >= 20080701 +packetLen(0x0345, 3) +#elif PACKETVER >= 20080624 +packetLen(0x0345, 60) +#elif PACKETVER >= 20080617 +packetLen(0x0345, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0345, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0345, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0345, 9) +#elif PACKETVER >= 20080513 +packetLen(0x0345, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0345, 6) +#elif PACKETVER >= 20080429 +packetLen(0x0345, 14) +#elif PACKETVER >= 20080408 +packetLen(0x0345, -1) +#endif + +// Packet: 0x0346 +#if PACKETVER >= 20080617 +packetLen(0x0346, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0346, 16) +#elif PACKETVER >= 20080603 +packetLen(0x0346, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0346, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0346, 26) +#elif PACKETVER >= 20080507 +packetLen(0x0346, 11) +#elif PACKETVER >= 20080429 +packetLen(0x0346, 5) +#elif PACKETVER >= 20080422 +packetLen(0x0346, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0346, 55) +#elif PACKETVER >= 20080408 +packetLen(0x0346, 8) +#endif + +// Packet: 0x0347 +#if PACKETVER >= 20080701 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0347, 4) +#elif PACKETVER >= 20080617 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0347, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0347, 29) +#elif PACKETVER >= 20080513 +packetLen(0x0347, 8) +#elif PACKETVER >= 20080507 +packetLen(0x0347, 6) +#elif PACKETVER >= 20080429 +packetLen(0x0347, 39) +#elif PACKETVER >= 20080422 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0347, 39) +#elif PACKETVER >= 20080408 +packetLen(0x0347, -1) +#endif + +// Packet: 0x0348 +#if PACKETVER >= 20080701 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0348, 3) +#elif PACKETVER >= 20080610 +packetLen(0x0348, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0348, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0348, 2) +#elif PACKETVER >= 20080520 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0348, 26) +#elif PACKETVER >= 20080507 +packetLen(0x0348, 3) +#elif PACKETVER >= 20080415 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0348, 6) +#endif + +// Packet: 0x0349 +#if PACKETVER >= 20080701 +packetLen(0x0349, 3) +#elif PACKETVER >= 20080610 +packetLen(0x0349, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0349, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0349, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0349, 26) +#elif PACKETVER >= 20080513 +packetLen(0x0349, 36) +#elif PACKETVER >= 20080507 +packetLen(0x0349, 4) +#elif PACKETVER >= 20080429 +packetLen(0x0349, 54) +#elif PACKETVER >= 20080422 +packetLen(0x0349, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0349, 11) +#elif PACKETVER >= 20080408 +packetLen(0x0349, 4) +#endif + +// Packet: 0x034a +#if PACKETVER >= 20080701 +packetLen(0x034a, 57) +#elif PACKETVER >= 20080624 +packetLen(0x034a, 34) +#elif PACKETVER >= 20080617 +packetLen(0x034a, 10) +#elif PACKETVER >= 20080610 +packetLen(0x034a, -1) +#elif PACKETVER >= 20080603 +packetLen(0x034a, 26) +#elif PACKETVER >= 20080528 +packetLen(0x034a, 9) +#elif PACKETVER >= 20080520 +packetLen(0x034a, -1) +#elif PACKETVER >= 20080513 +packetLen(0x034a, 59) +#elif PACKETVER >= 20080429 +packetLen(0x034a, -1) +#elif PACKETVER >= 20080422 +packetLen(0x034a, 6) +#elif PACKETVER >= 20080408 +packetLen(0x034a, -1) +#endif + +// Packet: 0x034b +#if PACKETVER >= 20080701 +packetLen(0x034b, 24) +#elif PACKETVER >= 20080624 +packetLen(0x034b, 33) +#elif PACKETVER >= 20080617 +packetLen(0x034b, 26) +#elif PACKETVER >= 20080610 +packetLen(0x034b, -1) +#elif PACKETVER >= 20080603 +packetLen(0x034b, 10) +#elif PACKETVER >= 20080513 +packetLen(0x034b, -1) +#elif PACKETVER >= 20080429 +packetLen(0x034b, 60) +#elif PACKETVER >= 20080422 +packetLen(0x034b, 14) +#elif PACKETVER >= 20080415 +packetLen(0x034b, 65) +#elif PACKETVER >= 20080408 +packetLen(0x034b, 7) +#endif + +// Packet: 0x034c +#if PACKETVER >= 20080701 +packetLen(0x034c, 10) +#elif PACKETVER >= 20080624 +packetLen(0x034c, 6) +#elif PACKETVER >= 20080610 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080603 +packetLen(0x034c, 10) +#elif PACKETVER >= 20080528 +packetLen(0x034c, 86) +#elif PACKETVER >= 20080520 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080513 +packetLen(0x034c, 14) +#elif PACKETVER >= 20080507 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080429 +packetLen(0x034c, 16) +#elif PACKETVER >= 20080408 +packetLen(0x034c, -1) +#endif + +// Packet: 0x034d +#if PACKETVER >= 20080624 +packetLen(0x034d, -1) +#elif PACKETVER >= 20080617 +packetLen(0x034d, 2) +#elif PACKETVER >= 20080603 +packetLen(0x034d, -1) +#elif PACKETVER >= 20080520 +packetLen(0x034d, 6) +#elif PACKETVER >= 20080429 +packetLen(0x034d, -1) +#elif PACKETVER >= 20080422 +packetLen(0x034d, 36) +#elif PACKETVER >= 20080415 +packetLen(0x034d, 23) +#elif PACKETVER >= 20080408 +packetLen(0x034d, 2) +#endif + +// Packet: 0x034e +#if PACKETVER >= 20080624 +packetLen(0x034e, -1) +#elif PACKETVER >= 20080617 +packetLen(0x034e, 2) +#elif PACKETVER >= 20080603 +packetLen(0x034e, 6) +#elif PACKETVER >= 20080528 +packetLen(0x034e, 59) +#elif PACKETVER >= 20080520 +packetLen(0x034e, 7) +#elif PACKETVER >= 20080429 +packetLen(0x034e, -1) +#elif PACKETVER >= 20080422 +packetLen(0x034e, 27) +#elif PACKETVER >= 20080415 +packetLen(0x034e, 90) +#elif PACKETVER >= 20080408 +packetLen(0x034e, 11) +#endif + +// Packet: 0x034f +#if PACKETVER >= 20080701 +packetLen(0x034f, 6) +#elif PACKETVER >= 20080624 +packetLen(0x034f, 71) +#elif PACKETVER >= 20080617 +packetLen(0x034f, -1) +#elif PACKETVER >= 20080610 +packetLen(0x034f, 2) +#elif PACKETVER >= 20080603 +packetLen(0x034f, 8) +#elif PACKETVER >= 20080528 +packetLen(0x034f, 27) +#elif PACKETVER >= 20080520 +packetLen(0x034f, -1) +#elif PACKETVER >= 20080513 +packetLen(0x034f, 8) +#elif PACKETVER >= 20080429 +packetLen(0x034f, 4) +#elif PACKETVER >= 20080422 +packetLen(0x034f, 18) +#elif PACKETVER >= 20080415 +packetLen(0x034f, 11) +#elif PACKETVER >= 20080408 +packetLen(0x034f, 2) +#endif + +// Packet: 0x0350 +#if PACKETVER >= 20080624 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0350, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0350, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0350, 60) +#elif PACKETVER >= 20080520 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0350, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0350, 6) +#elif PACKETVER >= 20080429 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0350, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0350, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0350, -1) +#endif + +// Packet: 0x0351 +#if PACKETVER >= 20080701 +packetLen(0x0351, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0351, 282) +#elif PACKETVER >= 20080617 +packetLen(0x0351, 30) +#elif PACKETVER >= 20080610 +packetLen(0x0351, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0351, 20) +#elif PACKETVER >= 20080513 +packetLen(0x0351, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0351, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0351, 5) +#elif PACKETVER >= 20080415 +packetLen(0x0351, 15) +#elif PACKETVER >= 20080408 +packetLen(0x0351, -1) +#endif + +// Packet: 0x0352 +#if PACKETVER >= 20080701 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0352, 2) +#elif PACKETVER >= 20080617 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0352, 60) +#elif PACKETVER >= 20080603 +packetLen(0x0352, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0352, 54) +#elif PACKETVER >= 20080520 +packetLen(0x0352, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0352, 9) +#elif PACKETVER >= 20080507 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0352, 3) +#elif PACKETVER >= 20080422 +packetLen(0x0352, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0352, 8) +#endif + +// Packet: 0x0353 +#if PACKETVER >= 20080701 +packetLen(0x0353, 6) +#elif PACKETVER >= 20080610 +packetLen(0x0353, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0353, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0353, 30) +#elif PACKETVER >= 20080520 +packetLen(0x0353, 4) +#elif PACKETVER >= 20080513 +packetLen(0x0353, 2) +#elif PACKETVER >= 20080507 +packetLen(0x0353, 34) +#elif PACKETVER >= 20080429 +packetLen(0x0353, 9) +#elif PACKETVER >= 20080422 +packetLen(0x0353, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0353, 4) +#elif PACKETVER >= 20080408 +packetLen(0x0353, -1) +#endif + +// Packet: 0x0354 +#if PACKETVER >= 20080701 +packetLen(0x0354, 23) +#elif PACKETVER >= 20080624 +packetLen(0x0354, 2) +#elif PACKETVER >= 20080617 +packetLen(0x0354, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0354, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0354, 22) +#elif PACKETVER >= 20080528 +packetLen(0x0354, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0354, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0354, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0354, 6) +#elif PACKETVER >= 20080429 +packetLen(0x0354, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0354, 182) +#elif PACKETVER >= 20080415 +packetLen(0x0354, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0354, 3) +#endif + +// Packet: 0x0355 +#if PACKETVER >= 20080701 +packetLen(0x0355, 58) +#elif PACKETVER >= 20080624 +packetLen(0x0355, 30) +#elif PACKETVER >= 20080617 +packetLen(0x0355, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0355, 7) +#elif PACKETVER >= 20080603 +packetLen(0x0355, 55) +#elif PACKETVER >= 20080528 +packetLen(0x0355, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0355, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0355, 33) +#elif PACKETVER >= 20080507 +packetLen(0x0355, 10) +#elif PACKETVER >= 20080429 +packetLen(0x0355, 36) +#elif PACKETVER >= 20080422 +packetLen(0x0355, 39) +#elif PACKETVER >= 20080415 +packetLen(0x0355, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0355, 2) +#endif + +// Packet: 0x0356 +#if PACKETVER >= 20080617 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0356, 29) +#elif PACKETVER >= 20080603 +packetLen(0x0356, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0356, 27) +#elif PACKETVER >= 20080513 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0356, 2) +#elif PACKETVER >= 20080429 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0356, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0356, 54) +#elif PACKETVER >= 20080408 +packetLen(0x0356, 57) +#endif + +// Packet: 0x0357 +#if PACKETVER >= 20080617 +packetLen(0x0357, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0357, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0357, 15) +#elif PACKETVER >= 20080528 +packetLen(0x0357, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0357, 21) +#elif PACKETVER >= 20080513 +packetLen(0x0357, 31) +#elif PACKETVER >= 20080507 +packetLen(0x0357, 22) +#elif PACKETVER >= 20080429 +packetLen(0x0357, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0357, 21) +#elif PACKETVER >= 20080415 +packetLen(0x0357, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0357, 33) +#endif + +// Packet: 0x0358 +#if PACKETVER >= 20080624 +packetLen(0x0358, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0358, 14) +#elif PACKETVER >= 20080610 +packetLen(0x0358, 5) +#elif PACKETVER >= 20080603 +packetLen(0x0358, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0358, 14) +#elif PACKETVER >= 20080513 +packetLen(0x0358, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0358, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0358, 10) +#elif PACKETVER >= 20080422 +packetLen(0x0358, 3) +#elif PACKETVER >= 20080415 +packetLen(0x0358, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0358, 10) +#endif + +// Packet: 0x0359 +#if PACKETVER >= 20080701 +packetLen(0x0359, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0359, 102) +#elif PACKETVER >= 20080617 +packetLen(0x0359, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0359, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0359, 16) +#elif PACKETVER >= 20080520 +packetLen(0x0359, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0359, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0359, 55) +#elif PACKETVER >= 20080429 +packetLen(0x0359, 30) +#elif PACKETVER >= 20080422 +packetLen(0x0359, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0359, 3) +#elif PACKETVER >= 20080408 +packetLen(0x0359, -1) +#endif + +// Packet: 0x035a +#if PACKETVER >= 20080624 +packetLen(0x035a, -1) +#elif PACKETVER >= 20080617 +packetLen(0x035a, 28) +#elif PACKETVER >= 20080603 +packetLen(0x035a, 3) +#elif PACKETVER >= 20080528 +packetLen(0x035a, 4) +#elif PACKETVER >= 20080520 +packetLen(0x035a, 31) +#elif PACKETVER >= 20080513 +packetLen(0x035a, -1) +#elif PACKETVER >= 20080507 +packetLen(0x035a, 282) +#elif PACKETVER >= 20080429 +packetLen(0x035a, 8) +#elif PACKETVER >= 20080422 +packetLen(0x035a, 79) +#elif PACKETVER >= 20080415 +packetLen(0x035a, 3) +#elif PACKETVER >= 20080408 +packetLen(0x035a, -1) +#endif + +// Packet: 0x035b +#if PACKETVER >= 20080701 +packetLen(0x035b, 6) +#elif PACKETVER >= 20080624 +packetLen(0x035b, 30) +#elif PACKETVER >= 20080617 +packetLen(0x035b, 29) +#elif PACKETVER >= 20080610 +packetLen(0x035b, 6) +#elif PACKETVER >= 20080603 +packetLen(0x035b, 14) +#elif PACKETVER >= 20080528 +packetLen(0x035b, 16) +#elif PACKETVER >= 20080520 +packetLen(0x035b, 6) +#elif PACKETVER >= 20080513 +packetLen(0x035b, 11) +#elif PACKETVER >= 20080507 +packetLen(0x035b, 9) +#elif PACKETVER >= 20080429 +packetLen(0x035b, 5) +#elif PACKETVER >= 20080415 +packetLen(0x035b, -1) +#elif PACKETVER >= 20080408 +packetLen(0x035b, 3) +#endif + +// Packet: 0x035c +#if PACKETVER >= 20080520 +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST +#endif + +// Packet: 0x035d +#if PACKETVER >= 20080521 +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x035d, 10) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST +#endif + +// Packet: 0x035e +#if PACKETVER >= 20080521 +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW +#elif PACKETVER >= 20080520 +packetLen(0x035e, -1) // CZ_CLOSE_WINDOW +#endif + +// Packet: 0x035f +#if PACKETVER >= 20080624 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080617 +packetLen(0x035f, 4) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080528 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20080701 +packetLen(0x0360, 10) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080624 +packetLen(0x0360, 11) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080528 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20080701 +packetLen(0x0361, 27) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080624 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080617 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080528 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20080701 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080624 +packetLen(0x0362, 4) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080528 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20080701 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080624 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080617 +packetLen(0x0363, 58) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080528 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20080701 +packetLen(0x0364, 43) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080624 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080617 +packetLen(0x0364, 15) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080528 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20080701 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080528 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20080701 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080624 +packetLen(0x0366, 67) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080528 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20080624 +packetLen(0x0367, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080617 +packetLen(0x0367, 29) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080528 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20080528 +packetLen(0x0368, -1) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20080701 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080624 +packetLen(0x0369, 28) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080528 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x036a +#if PACKETVER >= 20080701 +packetLen(0x036a, -1) +#elif PACKETVER >= 20080624 +packetLen(0x036a, 2) +#elif PACKETVER >= 20080528 +packetLen(0x036a, -1) +#endif + +// Packet: 0x036b +#if PACKETVER >= 20080701 +packetLen(0x036b, 6) +#elif PACKETVER >= 20080624 +packetLen(0x036b, -1) +#elif PACKETVER >= 20080617 +packetLen(0x036b, 28) +#elif PACKETVER >= 20080528 +packetLen(0x036b, -1) +#endif + +// Packet: 0x036c +#if PACKETVER >= 20080701 +packetLen(0x036c, 4) +#elif PACKETVER >= 20080624 +packetLen(0x036c, 6) +#elif PACKETVER >= 20080528 +packetLen(0x036c, -1) +#endif + +// Packet: 0x036d +#if PACKETVER >= 20080701 +packetLen(0x036d, 5) +#elif PACKETVER >= 20080624 +packetLen(0x036d, 21) +#elif PACKETVER >= 20080617 +packetLen(0x036d, 6) +#elif PACKETVER >= 20080528 +packetLen(0x036d, -1) +#endif + +// Packet: 0x036e +#if PACKETVER >= 20080624 +packetLen(0x036e, -1) +#elif PACKETVER >= 20080617 +packetLen(0x036e, 3) +#elif PACKETVER >= 20080528 +packetLen(0x036e, -1) +#endif + +// Packet: 0x036f +#if PACKETVER >= 20080701 +packetLen(0x036f, 3) +#elif PACKETVER >= 20080624 +packetLen(0x036f, 8) +#elif PACKETVER >= 20080528 +packetLen(0x036f, -1) +#endif + +// Packet: 0x0370 +#if PACKETVER >= 20080701 +packetLen(0x0370, 4) +#elif PACKETVER >= 20080624 +packetLen(0x0370, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0370, 10) +#elif PACKETVER >= 20080528 +packetLen(0x0370, -1) +#endif + +// Packet: 0x0371 +#if PACKETVER >= 20080701 +packetLen(0x0371, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0371, -1) +#endif + +// Packet: 0x0372 +#if PACKETVER >= 20080701 +packetLen(0x0372, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0372, -1) +#endif + +// Packet: 0x0373 +#if PACKETVER >= 20080701 +packetLen(0x0373, 9) +#elif PACKETVER >= 20080624 +packetLen(0x0373, 86) +#elif PACKETVER >= 20080528 +packetLen(0x0373, -1) +#endif + +// Packet: 0x0374 +#if PACKETVER >= 20080701 +packetLen(0x0374, 21) +#elif PACKETVER >= 20080528 +packetLen(0x0374, -1) +#endif + +// Packet: 0x0375 +#if PACKETVER >= 20080624 +packetLen(0x0375, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0375, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0375, -1) +#endif + +// Packet: 0x0376 +#if PACKETVER >= 20080528 +packetLen(0x0376, -1) +#endif + +// Packet: 0x0377 +#if PACKETVER >= 20080528 +packetLen(0x0377, -1) +#endif + +// Packet: 0x0378 +#if PACKETVER >= 20080528 +packetLen(0x0378, -1) +#endif + +// Packet: 0x0379 +#if PACKETVER >= 20080701 +packetLen(0x0379, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0379, 10) +#elif PACKETVER >= 20080617 +packetLen(0x0379, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0379, -1) +#endif + +// Packet: 0x037a +#if PACKETVER >= 20080528 +packetLen(0x037a, -1) +#endif + +// Packet: 0x037b +#if PACKETVER >= 20080701 +packetLen(0x037b, 6) +#elif PACKETVER >= 20080624 +packetLen(0x037b, -1) +#elif PACKETVER >= 20080617 +packetLen(0x037b, 11) +#elif PACKETVER >= 20080528 +packetLen(0x037b, -1) +#endif + +// Packet: 0x037c +#if PACKETVER >= 20080701 +packetLen(0x037c, -1) +#elif PACKETVER >= 20080624 +packetLen(0x037c, 10) +#elif PACKETVER >= 20080617 +packetLen(0x037c, 53) +#elif PACKETVER >= 20080528 +packetLen(0x037c, -1) +#endif + +// Packet: 0x037d +#if PACKETVER >= 20080701 +packetLen(0x037d, 3) +#elif PACKETVER >= 20080528 +packetLen(0x037d, -1) +#endif + +// Packet: 0x037e +#if PACKETVER >= 20080701 +packetLen(0x037e, 8) +#elif PACKETVER >= 20080624 +packetLen(0x037e, 6) +#elif PACKETVER >= 20080528 +packetLen(0x037e, -1) +#endif + +// Packet: 0x037f +#if PACKETVER >= 20080701 +packetLen(0x037f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x037f, 8) +#elif PACKETVER >= 20080528 +packetLen(0x037f, -1) +#endif + +// Packet: 0x0380 +#if PACKETVER >= 20080701 +packetLen(0x0380, 11) +#elif PACKETVER >= 20080528 +packetLen(0x0380, -1) +#endif + +// Packet: 0x0381 +#if PACKETVER >= 20080624 +packetLen(0x0381, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0381, 14) +#elif PACKETVER >= 20080528 +packetLen(0x0381, -1) +#endif + +// Packet: 0x0382 +#if PACKETVER >= 20080624 +packetLen(0x0382, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0382, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0382, -1) +#endif + +// Packet: 0x0383 +#if PACKETVER >= 20080624 +packetLen(0x0383, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0383, 5) +#elif PACKETVER >= 20080528 +packetLen(0x0383, -1) +#endif + +// Packet: 0x0384 +#if PACKETVER >= 20080701 +packetLen(0x0384, 30) +#elif PACKETVER >= 20080624 +packetLen(0x0384, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0384, -1) +#endif + +// Packet: 0x0385 +#if PACKETVER >= 20080624 +packetLen(0x0385, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0385, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0385, -1) +#endif + +// Packet: 0x0386 +#if PACKETVER >= 20080701 +packetLen(0x0386, 6) +#elif PACKETVER >= 20080624 +packetLen(0x0386, 9) +#elif PACKETVER >= 20080617 +packetLen(0x0386, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0386, -1) +#endif + +// Packet: 0x0387 +#if PACKETVER >= 20080701 +packetLen(0x0387, 22) +#elif PACKETVER >= 20080624 +packetLen(0x0387, 30) +#elif PACKETVER >= 20080617 +packetLen(0x0387, 21) +#elif PACKETVER >= 20080528 +packetLen(0x0387, -1) +#endif + +// Packet: 0x0388 +#if PACKETVER >= 20080624 +packetLen(0x0388, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0388, 22) +#elif PACKETVER >= 20080528 +packetLen(0x0388, -1) +#endif + +// Packet: 0x0389 +#if PACKETVER >= 20080701 +packetLen(0x0389, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0389, 8) +#elif PACKETVER >= 20080617 +packetLen(0x0389, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0389, -1) +#endif + +// Packet: 0x038a +#if PACKETVER >= 20080701 +packetLen(0x038a, 102) +#elif PACKETVER >= 20080624 +packetLen(0x038a, 26) +#elif PACKETVER >= 20080617 +packetLen(0x038a, 6) +#elif PACKETVER >= 20080528 +packetLen(0x038a, -1) +#endif + +// Packet: 0x038b +#if PACKETVER >= 20080701 +packetLen(0x038b, 2) +#elif PACKETVER >= 20080624 +packetLen(0x038b, 11) +#elif PACKETVER >= 20080617 +packetLen(0x038b, 4) +#elif PACKETVER >= 20080528 +packetLen(0x038b, -1) +#endif + +// Packet: 0x038c +#if PACKETVER >= 20080701 +packetLen(0x038c, 4) +#elif PACKETVER >= 20080624 +packetLen(0x038c, 30) +#elif PACKETVER >= 20080617 +packetLen(0x038c, 8) +#elif PACKETVER >= 20080528 +packetLen(0x038c, -1) +#endif + +// Packet: 0x038d +#if PACKETVER >= 20080701 +packetLen(0x038d, -1) +#elif PACKETVER >= 20080624 +packetLen(0x038d, 10) +#elif PACKETVER >= 20080617 +packetLen(0x038d, 8) +#elif PACKETVER >= 20080528 +packetLen(0x038d, -1) +#endif + +// Packet: 0x038e +#if PACKETVER >= 20080701 +packetLen(0x038e, -1) +#elif PACKETVER >= 20080624 +packetLen(0x038e, 6) +#elif PACKETVER >= 20080528 +packetLen(0x038e, -1) +#endif + +// Packet: 0x038f +#if PACKETVER >= 20080701 +packetLen(0x038f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x038f, 2) +#elif PACKETVER >= 20080528 +packetLen(0x038f, -1) +#endif + +// Packet: 0x0390 +#if PACKETVER >= 20080701 +packetLen(0x0390, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0390, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0390, -1) +#endif + +// Packet: 0x0391 +#if PACKETVER >= 20080528 +packetLen(0x0391, -1) +#endif + +// Packet: 0x0392 +#if PACKETVER >= 20080624 +packetLen(0x0392, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0392, 26) +#elif PACKETVER >= 20080528 +packetLen(0x0392, -1) +#endif + +// Packet: 0x0393 +#if PACKETVER >= 20080701 +packetLen(0x0393, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0393, 17) +#elif PACKETVER >= 20080617 +packetLen(0x0393, 14) +#elif PACKETVER >= 20080528 +packetLen(0x0393, -1) +#endif + +// Packet: 0x0394 +#if PACKETVER >= 20080701 +packetLen(0x0394, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0394, -1) +#endif + +// Packet: 0x0395 +#if PACKETVER >= 20080701 +packetLen(0x0395, 4) +#elif PACKETVER >= 20080624 +packetLen(0x0395, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0395, 3) +#elif PACKETVER >= 20080528 +packetLen(0x0395, -1) +#endif + +// Packet: 0x0396 +#if PACKETVER >= 20080701 +packetLen(0x0396, 2) +#elif PACKETVER >= 20080624 +packetLen(0x0396, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0396, 33) +#elif PACKETVER >= 20080528 +packetLen(0x0396, -1) +#endif + +// Packet: 0x0397 +#if PACKETVER >= 20080701 +packetLen(0x0397, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0397, 5) +#elif PACKETVER >= 20080528 +packetLen(0x0397, -1) +#endif + +// Packet: 0x0398 +#if PACKETVER >= 20080701 +packetLen(0x0398, 53) +#elif PACKETVER >= 20080624 +packetLen(0x0398, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0398, 282) +#elif PACKETVER >= 20080528 +packetLen(0x0398, -1) +#endif + +// Packet: 0x0399 +#if PACKETVER >= 20080701 +packetLen(0x0399, 16) +#elif PACKETVER >= 20080624 +packetLen(0x0399, 65) +#elif PACKETVER >= 20080528 +packetLen(0x0399, -1) +#endif + +// Packet: 0x039a +#if PACKETVER >= 20080701 +packetLen(0x039a, -1) +#elif PACKETVER >= 20080624 +packetLen(0x039a, 6) +#elif PACKETVER >= 20080528 +packetLen(0x039a, -1) +#endif + +// Packet: 0x039b +#if PACKETVER >= 20080624 +packetLen(0x039b, -1) +#elif PACKETVER >= 20080617 +packetLen(0x039b, 6) +#elif PACKETVER >= 20080528 +packetLen(0x039b, -1) +#endif + +// Packet: 0x039c +#if PACKETVER >= 20080701 +packetLen(0x039c, -1) +#elif PACKETVER >= 20080624 +packetLen(0x039c, 6) +#elif PACKETVER >= 20080617 +packetLen(0x039c, 26) +#elif PACKETVER >= 20080528 +packetLen(0x039c, -1) +#endif + +// Packet: 0x039d +#if PACKETVER >= 20080701 +packetLen(0x039d, 6) +#elif PACKETVER >= 20080624 +packetLen(0x039d, 3) +#elif PACKETVER >= 20080617 +packetLen(0x039d, 7) +#elif PACKETVER >= 20080528 +packetLen(0x039d, -1) +#endif + +// Packet: 0x039e +#if PACKETVER >= 20080701 +packetLen(0x039e, -1) +#elif PACKETVER >= 20080624 +packetLen(0x039e, 6) +#elif PACKETVER >= 20080617 +packetLen(0x039e, 10) +#elif PACKETVER >= 20080528 +packetLen(0x039e, -1) +#endif + +// Packet: 0x039f +#if PACKETVER >= 20080701 +packetLen(0x039f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x039f, 6) +#elif PACKETVER >= 20080528 +packetLen(0x039f, -1) +#endif + +// Packet: 0x03a0 +#if PACKETVER >= 20080624 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03a0, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03a0, -1) +#endif + +// Packet: 0x03a1 +#if PACKETVER >= 20080701 +packetLen(0x03a1, 6) +#elif PACKETVER >= 20080624 +packetLen(0x03a1, 30) +#elif PACKETVER >= 20080528 +packetLen(0x03a1, -1) +#endif + +// Packet: 0x03a2 +#if PACKETVER >= 20080528 +packetLen(0x03a2, -1) +#endif + +// Packet: 0x03a3 +#if PACKETVER >= 20080701 +packetLen(0x03a3, 21) +#elif PACKETVER >= 20080624 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03a3, 8) +#elif PACKETVER >= 20080528 +packetLen(0x03a3, -1) +#endif + +// Packet: 0x03a4 +#if PACKETVER >= 20080701 +packetLen(0x03a4, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03a4, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03a4, -1) +#endif + +// Packet: 0x03a5 +#if PACKETVER >= 20080701 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03a5, 28) +#elif PACKETVER >= 20080617 +packetLen(0x03a5, 5) +#elif PACKETVER >= 20080528 +packetLen(0x03a5, -1) +#endif + +// Packet: 0x03a6 +#if PACKETVER >= 20080701 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03a6, 59) +#elif PACKETVER >= 20080528 +packetLen(0x03a6, -1) +#endif + +// Packet: 0x03a7 +#if PACKETVER >= 20080701 +packetLen(0x03a7, 68) +#elif PACKETVER >= 20080624 +packetLen(0x03a7, 11) +#elif PACKETVER >= 20080528 +packetLen(0x03a7, -1) +#endif + +// Packet: 0x03a8 +#if PACKETVER >= 20080701 +packetLen(0x03a8, 3) +#elif PACKETVER >= 20080624 +packetLen(0x03a8, 6) +#elif PACKETVER >= 20080617 +packetLen(0x03a8, 4) +#elif PACKETVER >= 20080528 +packetLen(0x03a8, -1) +#endif + +// Packet: 0x03a9 +#if PACKETVER >= 20080624 +packetLen(0x03a9, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03a9, 67) +#elif PACKETVER >= 20080528 +packetLen(0x03a9, -1) +#endif + +// Packet: 0x03aa +#if PACKETVER >= 20080701 +packetLen(0x03aa, 11) +#elif PACKETVER >= 20080528 +packetLen(0x03aa, -1) +#endif + +// Packet: 0x03ab +#if PACKETVER >= 20080624 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03ab, 14) +#elif PACKETVER >= 20080528 +packetLen(0x03ab, -1) +#endif + +// Packet: 0x03ac +#if PACKETVER >= 20080624 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03ac, 282) +#elif PACKETVER >= 20080528 +packetLen(0x03ac, -1) +#endif + +// Packet: 0x03ad +#if PACKETVER >= 20080701 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03ad, 2) +#elif PACKETVER >= 20080617 +packetLen(0x03ad, 21) +#elif PACKETVER >= 20080528 +packetLen(0x03ad, -1) +#endif + +// Packet: 0x03ae +#if PACKETVER >= 20080701 +packetLen(0x03ae, 8) +#elif PACKETVER >= 20080624 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03ae, 57) +#elif PACKETVER >= 20080528 +packetLen(0x03ae, -1) +#endif + +// Packet: 0x03af +#if PACKETVER >= 20080701 +packetLen(0x03af, 2) +#elif PACKETVER >= 20080624 +packetLen(0x03af, 10) +#elif PACKETVER >= 20080617 +packetLen(0x03af, 14) +#elif PACKETVER >= 20080528 +packetLen(0x03af, -1) +#endif + +// Packet: 0x03b0 +#if PACKETVER >= 20080701 +packetLen(0x03b0, 8) +#elif PACKETVER >= 20080528 +packetLen(0x03b0, -1) +#endif + +// Packet: 0x03b1 +#if PACKETVER >= 20080528 +packetLen(0x03b1, -1) +#endif + +// Packet: 0x03b2 +#if PACKETVER >= 20080624 +packetLen(0x03b2, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03b2, 6) +#elif PACKETVER >= 20080528 +packetLen(0x03b2, -1) +#endif + +// Packet: 0x03b3 +#if PACKETVER >= 20080624 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03b3, 32) +#elif PACKETVER >= 20080528 +packetLen(0x03b3, -1) +#endif + +// Packet: 0x03b4 +#if PACKETVER >= 20080701 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03b4, 27) +#elif PACKETVER >= 20080617 +packetLen(0x03b4, 29) +#elif PACKETVER >= 20080528 +packetLen(0x03b4, -1) +#endif + +// Packet: 0x03b5 +#if PACKETVER >= 20080528 +packetLen(0x03b5, -1) +#endif + +// Packet: 0x03b6 +#if PACKETVER >= 20080701 +packetLen(0x03b6, 10) +#elif PACKETVER >= 20080624 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03b6, 114) +#elif PACKETVER >= 20080528 +packetLen(0x03b6, -1) +#endif + +// Packet: 0x03b7 +#if PACKETVER >= 20080701 +packetLen(0x03b7, 2) +#elif PACKETVER >= 20080624 +packetLen(0x03b7, 4) +#elif PACKETVER >= 20080617 +packetLen(0x03b7, 8) +#elif PACKETVER >= 20080528 +packetLen(0x03b7, -1) +#endif + +// Packet: 0x03b8 +#if PACKETVER >= 20080528 +packetLen(0x03b8, -1) +#endif + +// Packet: 0x03b9 +#if PACKETVER >= 20080701 +packetLen(0x03b9, 28) +#elif PACKETVER >= 20080624 +packetLen(0x03b9, 19) +#elif PACKETVER >= 20080528 +packetLen(0x03b9, -1) +#endif + +// Packet: 0x03ba +#if PACKETVER >= 20080701 +packetLen(0x03ba, 14) +#elif PACKETVER >= 20080624 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03ba, 26) +#elif PACKETVER >= 20080528 +packetLen(0x03ba, -1) +#endif + +// Packet: 0x03bb +#if PACKETVER >= 20080701 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03bb, 28) +#elif PACKETVER >= 20080528 +packetLen(0x03bb, -1) +#endif + +// Packet: 0x03bc +#if PACKETVER >= 20080701 +packetLen(0x03bc, 54) +#elif PACKETVER >= 20080624 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03bc, 182) +#elif PACKETVER >= 20080528 +packetLen(0x03bc, -1) +#endif + +// Packet: 0x03bd +#if PACKETVER >= 20080701 +packetLen(0x03bd, 29) +#elif PACKETVER >= 20080528 +packetLen(0x03bd, -1) +#endif + +// Packet: 0x03be +#if PACKETVER >= 20080701 +packetLen(0x03be, 282) +#elif PACKETVER >= 20080624 +packetLen(0x03be, 3) +#elif PACKETVER >= 20080528 +packetLen(0x03be, -1) +#endif + +// Packet: 0x03bf +#if PACKETVER >= 20080701 +packetLen(0x03bf, 22) +#elif PACKETVER >= 20080528 +packetLen(0x03bf, -1) +#endif + +// Packet: 0x03c0 +#if PACKETVER >= 20080701 +packetLen(0x03c0, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03c0, -1) +#endif + +// Packet: 0x03c1 +#if PACKETVER >= 20080624 +packetLen(0x03c1, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03c1, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03c1, -1) +#endif + +// Packet: 0x03c2 +#if PACKETVER >= 20080701 +packetLen(0x03c2, 10) +#elif PACKETVER >= 20080624 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03c2, 67) +#elif PACKETVER >= 20080528 +packetLen(0x03c2, -1) +#endif + +// Packet: 0x03c3 +#if PACKETVER >= 20080528 +packetLen(0x03c3, -1) +#endif + +// Packet: 0x03c4 +#if PACKETVER >= 20080528 +packetLen(0x03c4, -1) +#endif + +// Packet: 0x03c5 +#if PACKETVER >= 20080701 +packetLen(0x03c5, 35) +#elif PACKETVER >= 20080624 +packetLen(0x03c5, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03c5, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03c5, -1) +#endif + +// Packet: 0x03c6 +#if PACKETVER >= 20080624 +packetLen(0x03c6, 6) +#elif PACKETVER >= 20080617 +packetLen(0x03c6, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03c6, -1) +#endif + +// Packet: 0x03c7 +#if PACKETVER >= 20080624 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03c7, 5) +#elif PACKETVER >= 20080528 +packetLen(0x03c7, -1) +#endif + +// Packet: 0x03c8 +#if PACKETVER >= 20080528 +packetLen(0x03c8, -1) +#endif + +// Packet: 0x03c9 +#if PACKETVER >= 20080528 +packetLen(0x03c9, -1) +#endif + +// Packet: 0x03ca +#if PACKETVER >= 20080528 +packetLen(0x03ca, -1) +#endif + +// Packet: 0x03cb +#if PACKETVER >= 20080701 +packetLen(0x03cb, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03cb, -1) +#endif + +// Packet: 0x03cc +#if PACKETVER >= 20080701 +packetLen(0x03cc, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03cc, 35) +#elif PACKETVER >= 20080617 +packetLen(0x03cc, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03cc, -1) +#endif + +// Packet: 0x03cd +#if PACKETVER >= 20080701 +packetLen(0x03cd, 65) +#elif PACKETVER >= 20080624 +packetLen(0x03cd, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03cd, -1) +#endif + +// Packet: 0x03ce +#if PACKETVER >= 20080701 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03ce, 7) +#elif PACKETVER >= 20080617 +packetLen(0x03ce, 39) +#elif PACKETVER >= 20080528 +packetLen(0x03ce, -1) +#endif + +// Packet: 0x03cf +#if PACKETVER >= 20080701 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03cf, 67) +#elif PACKETVER >= 20080617 +packetLen(0x03cf, 27) +#elif PACKETVER >= 20080528 +packetLen(0x03cf, -1) +#endif + +// Packet: 0x03d0 +#if PACKETVER >= 20080701 +packetLen(0x03d0, 8) +#elif PACKETVER >= 20080624 +packetLen(0x03d0, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03d0, 4) +#elif PACKETVER >= 20080528 +packetLen(0x03d0, -1) +#endif + +// Packet: 0x03d1 +#if PACKETVER >= 20080701 +packetLen(0x03d1, 6) +#elif PACKETVER >= 20080624 +packetLen(0x03d1, 81) +#elif PACKETVER >= 20080617 +packetLen(0x03d1, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03d1, -1) +#endif + +// Packet: 0x03d2 +#if PACKETVER >= 20080701 +packetLen(0x03d2, 90) +#elif PACKETVER >= 20080624 +packetLen(0x03d2, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03d2, 6) +#elif PACKETVER >= 20080528 +packetLen(0x03d2, -1) +#endif + +// Packet: 0x03d3 +#if PACKETVER >= 20080701 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03d3, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03d3, -1) +#endif + +// Packet: 0x03d4 +#if PACKETVER >= 20080701 +packetLen(0x03d4, 12) +#elif PACKETVER >= 20080624 +packetLen(0x03d4, 14) +#elif PACKETVER >= 20080617 +packetLen(0x03d4, 27) +#elif PACKETVER >= 20080528 +packetLen(0x03d4, -1) +#endif + +// Packet: 0x03d5 +#if PACKETVER >= 20080624 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03d5, 4) +#elif PACKETVER >= 20080528 +packetLen(0x03d5, -1) +#endif + +// Packet: 0x03d6 +#if PACKETVER >= 20080701 +packetLen(0x03d6, 114) +#elif PACKETVER >= 20080528 +packetLen(0x03d6, -1) +#endif + +// Packet: 0x03d7 +#if PACKETVER >= 20080701 +packetLen(0x03d7, 23) +#elif PACKETVER >= 20080528 +packetLen(0x03d7, -1) +#endif + +// Packet: 0x03d8 +#if PACKETVER >= 20080701 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03d8, 3) +#elif PACKETVER >= 20080617 +packetLen(0x03d8, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03d8, -1) +#endif + +// Packet: 0x03d9 +#if PACKETVER >= 20080701 +packetLen(0x03d9, 6) +#elif PACKETVER >= 20080624 +packetLen(0x03d9, 30) +#elif PACKETVER >= 20080528 +packetLen(0x03d9, -1) +#endif + +// Packet: 0x03da +#if PACKETVER >= 20080528 +packetLen(0x03da, -1) +#endif + +// Packet: 0x03db +#if PACKETVER >= 20080701 +packetLen(0x03db, 79) +#elif PACKETVER >= 20080624 +packetLen(0x03db, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03db, 6) +#elif PACKETVER >= 20080528 +packetLen(0x03db, -1) +#endif + +// Packet: 0x03dc +#if PACKETVER >= 20080701 +packetLen(0x03dc, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03dc, 10) +#elif PACKETVER >= 20080617 +packetLen(0x03dc, 54) +#elif PACKETVER >= 20080528 +packetLen(0x03dc, -1) +#endif + +// Packet: 0x03dd +#if PACKETVER >= 20080624 +packetLen(0x03dd, 18) // AHC_GAME_GUARD +#endif + +// Packet: 0x03de +#if PACKETVER >= 20080624 +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD +#endif + + +#endif /* COMMON_PACKETS2008_LEN_AD_H */ diff --git a/src/common/packets/packets2008_len_main.h b/src/common/packets/packets2008_len_main.h new file mode 100644 index 000000000..1d6f253b3 --- /dev/null +++ b/src/common/packets/packets2008_len_main.h @@ -0,0 +1,39478 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2008_LEN_MAIN_H +#define COMMON_PACKETS2008_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +#if PACKETVER >= 20081217 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20081203 +packetLen(0x0073, 10) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20081126 +packetLen(0x0073, 30) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20081112 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0073, 7) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20081029 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20081022 +packetLen(0x0073, 12) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20081015 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20081008 +packetLen(0x0073, 33) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20081001 +packetLen(0x0073, 60) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080917 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080910 +packetLen(0x0073, 7) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080827 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080820 +packetLen(0x0073, 15) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080813 +packetLen(0x0073, 6) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080806 +packetLen(0x0073, 7) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080715 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080708 +packetLen(0x0073, 6) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080701 +packetLen(0x0073, 71) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080624 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080617 +packetLen(0x0073, 32) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080603 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080528 +packetLen(0x0073, 6) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080520 +packetLen(0x0073, 2) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080513 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080507 +packetLen(0x0073, 97) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080429 +packetLen(0x0073, 2) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080422 +packetLen(0x0073, 4) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080415 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080408 +packetLen(0x0073, 24) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080401 +packetLen(0x0073, 10) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080325 +packetLen(0x0073, 5) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080318 +packetLen(0x0073, 3) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080311 +packetLen(0x0073, 6) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080304 +packetLen(0x0073, 14) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080226 +packetLen(0x0073, 53) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080219 +packetLen(0x0073, 22) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080124 +packetLen(0x0073, 66) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080102 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER +#endif + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +#if PACKETVER >= 20081217 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20081203 +packetLen(0x0075, 7) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20081126 +packetLen(0x0075, 2) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20081112 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20081105 +packetLen(0x0075, 8) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20081022 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20081015 +packetLen(0x0075, 29) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20081008 +packetLen(0x0075, 32) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20081001 +packetLen(0x0075, 2) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080924 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080910 +packetLen(0x0075, 3) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080827 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080820 +packetLen(0x0075, 2) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080813 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080806 +packetLen(0x0075, 3) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080730 +packetLen(0x0075, 26) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080722 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080715 +packetLen(0x0075, 8) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080708 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080701 +packetLen(0x0075, 30) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080624 +packetLen(0x0075, 5) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080617 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080610 +packetLen(0x0075, 8) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080603 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080528 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080520 +packetLen(0x0075, 12) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080513 +packetLen(0x0075, 30) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080507 +packetLen(0x0075, 8) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080429 +packetLen(0x0075, 26) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080422 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080408 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080401 +packetLen(0x0075, 39) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080325 +packetLen(0x0075, 4) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080318 +packetLen(0x0075, 2) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080311 +packetLen(0x0075, 30) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080304 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080226 +packetLen(0x0075, 8) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080219 +packetLen(0x0075, 28) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080124 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080102 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#endif + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +#if PACKETVER >= 20081203 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20081126 +packetLen(0x0077, 53) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20081119 +packetLen(0x0077, 186) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20081112 +packetLen(0x0077, 28) // ZC_NOTIFY_UPDATEPLAYER +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20081029 +packetLen(0x0077, 6) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20081022 +packetLen(0x0077, 4) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20081015 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20081001 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080924 +packetLen(0x0077, 3) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080917 +packetLen(0x0077, 4) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080910 +packetLen(0x0077, 26) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080903 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080827 +packetLen(0x0077, 14) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080820 +packetLen(0x0077, 7) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080813 +packetLen(0x0077, 31) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080806 +packetLen(0x0077, 11) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080730 +packetLen(0x0077, 14) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080722 +packetLen(0x0077, 2) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080708 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080701 +packetLen(0x0077, 2) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080624 +packetLen(0x0077, 6) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080617 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080610 +packetLen(0x0077, 14) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080603 +packetLen(0x0077, 86) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080528 +packetLen(0x0077, 8) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080520 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080422 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080415 +packetLen(0x0077, 4) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080408 +packetLen(0x0077, 13) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080401 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080325 +packetLen(0x0077, 10) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080318 +packetLen(0x0077, 8) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080311 +packetLen(0x0077, 30) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080304 +packetLen(0x0077, 10) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080226 +packetLen(0x0077, 14) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080219 +packetLen(0x0077, 2) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080124 +packetLen(0x0077, 3) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080102 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER +#endif + +// Packet: 0x0078 +#if PACKETVER >= 20081217 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20081203 +packetLen(0x0078, 26) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20081126 +packetLen(0x0078, 10) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20081119 +packetLen(0x0078, 8) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20081112 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0078, 7) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20081022 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20081015 +packetLen(0x0078, 10) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080917 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080910 +packetLen(0x0078, 10) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080715 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080708 +packetLen(0x0078, 4) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080701 +packetLen(0x0078, 20) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080617 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080603 +packetLen(0x0078, 14) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080528 +packetLen(0x0078, 22) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080520 +packetLen(0x0078, 14) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080507 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080429 +packetLen(0x0078, 8) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080415 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080408 +packetLen(0x0078, 14) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080325 +packetLen(0x0078, 8) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080318 +packetLen(0x0078, 2) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0078, 53) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0078, 11) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080226 +packetLen(0x0078, 6) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080124 +packetLen(0x0078, 32) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +#endif + +// Packet: 0x0079 +#if PACKETVER >= 20081112 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0079, 30) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20081029 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20081022 +packetLen(0x0079, 28) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20081015 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20081008 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20081001 +packetLen(0x0079, 7) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080924 +packetLen(0x0079, 3) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080917 +packetLen(0x0079, 29) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080827 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080820 +packetLen(0x0079, 5) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080813 +packetLen(0x0079, 6) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080730 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080722 +packetLen(0x0079, 10) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080715 +packetLen(0x0079, 58) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080708 +packetLen(0x0079, 114) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080701 +packetLen(0x0079, 4) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080617 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080610 +packetLen(0x0079, 3) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080528 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080520 +packetLen(0x0079, 54) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080513 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080507 +packetLen(0x0079, 57) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080429 +packetLen(0x0079, 10) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080422 +packetLen(0x0079, 14) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080415 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080401 +packetLen(0x0079, 6) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080325 +packetLen(0x0079, 7) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080318 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0079, 8) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0079, 4) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080226 +packetLen(0x0079, 2) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0079, 27) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080124 +packetLen(0x0079, 2) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY +#endif + +// Packet: 0x007a +#if PACKETVER >= 20081112 +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20081029 +packetLen(0x007a, 26) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20081022 +packetLen(0x007a, 53) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20081015 +packetLen(0x007a, 6) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20081008 +packetLen(0x007a, 2) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20081001 +packetLen(0x007a, 3) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080917 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080910 +packetLen(0x007a, 27) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080903 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080827 +packetLen(0x007a, 282) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080820 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080813 +packetLen(0x007a, 4) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080806 +packetLen(0x007a, 39) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080708 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080701 +packetLen(0x007a, 2) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080617 +packetLen(0x007a, 6) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080610 +packetLen(0x007a, 53) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080513 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080507 +packetLen(0x007a, 3) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080429 +packetLen(0x007a, 8) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080408 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080401 +packetLen(0x007a, 114) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080325 +packetLen(0x007a, 22) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080318 +packetLen(0x007a, 282) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080311 +packetLen(0x007a, 5) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080304 +packetLen(0x007a, 2) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080226 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080219 +packetLen(0x007a, 29) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080124 +packetLen(0x007a, 2) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080102 +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY +#endif + +// Packet: 0x007b +#if PACKETVER >= 20081217 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20081203 +packetLen(0x007b, 20) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20081126 +packetLen(0x007b, 30) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20081119 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20081112 +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081015 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20081008 +packetLen(0x007b, 3) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20081001 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080924 +packetLen(0x007b, 27) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080917 +packetLen(0x007b, 7) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080910 +packetLen(0x007b, 6) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080806 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080730 +packetLen(0x007b, 13) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080722 +packetLen(0x007b, 2) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080715 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080708 +packetLen(0x007b, 4) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080603 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080528 +packetLen(0x007b, 42) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080520 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080513 +packetLen(0x007b, 11) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080507 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080429 +packetLen(0x007b, 6) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080415 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080408 +packetLen(0x007b, 2) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080325 +packetLen(0x007b, 6) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080318 +packetLen(0x007b, 11) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080311 +packetLen(0x007b, 186) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080304 +packetLen(0x007b, 30) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080226 +packetLen(0x007b, 5) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080219 +packetLen(0x007b, 2) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080124 +packetLen(0x007b, 14) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080102 +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY +#endif + +// Packet: 0x007c +#if PACKETVER >= 20081217 +packetLen(0x007c, 2) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20081112 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20081015 +packetLen(0x007c, 10) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080924 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080917 +packetLen(0x007c, 53) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080910 +packetLen(0x007c, 6) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080903 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080820 +packetLen(0x007c, 6) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080708 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080701 +packetLen(0x007c, 5) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080624 +packetLen(0x007c, 16) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080528 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080520 +packetLen(0x007c, 3) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080513 +packetLen(0x007c, 7) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080429 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080422 +packetLen(0x007c, 65) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080415 +packetLen(0x007c, 8) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080408 +packetLen(0x007c, 11) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080401 +packetLen(0x007c, 8) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080325 +packetLen(0x007c, 10) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080318 +packetLen(0x007c, 2) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080311 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080304 +packetLen(0x007c, 3) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080226 +packetLen(0x007c, 8) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080219 +packetLen(0x007c, 186) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080124 +packetLen(0x007c, 31) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080102 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +#endif + +// Packet: 0x007d +#if PACKETVER >= 20081203 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20081126 +packetLen(0x007d, 22) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20081119 +packetLen(0x007d, 16) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20081112 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20081029 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20081022 +packetLen(0x007d, 6) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20081008 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20081001 +packetLen(0x007d, 10) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080917 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080910 +packetLen(0x007d, 6) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080903 +packetLen(0x007d, 57) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080820 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080813 +packetLen(0x007d, 4) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080617 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080610 +packetLen(0x007d, 26) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080603 +packetLen(0x007d, 6) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080528 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080520 +packetLen(0x007d, 9) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080513 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080507 +packetLen(0x007d, 10) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080429 +packetLen(0x007d, 11) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080422 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080415 +packetLen(0x007d, 30) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080401 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080325 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080311 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080304 +packetLen(0x007d, 14) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080226 +packetLen(0x007d, 26) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080219 +packetLen(0x007d, 3) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080124 +packetLen(0x007d, 22) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080102 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#endif + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +#if PACKETVER >= 20081119 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20081112 +packetLen(0x007f, 6) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20081105 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20081029 +packetLen(0x007f, 2) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20081022 +packetLen(0x007f, 10) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20081015 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20081008 +packetLen(0x007f, 2) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080903 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080827 +packetLen(0x007f, 4) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080820 +packetLen(0x007f, 53) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080813 +packetLen(0x007f, 26) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080806 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080730 +packetLen(0x007f, 10) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080722 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080715 +packetLen(0x007f, 22) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080624 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080617 +packetLen(0x007f, 5) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080603 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080528 +packetLen(0x007f, 13) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080520 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080513 +packetLen(0x007f, 10) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080507 +packetLen(0x007f, 3) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080429 +packetLen(0x007f, 6) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080422 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080415 +packetLen(0x007f, 7) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080408 +packetLen(0x007f, 3) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080401 +packetLen(0x007f, 182) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080325 +packetLen(0x007f, 10) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080318 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080311 +packetLen(0x007f, 10) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080304 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080226 +packetLen(0x007f, 54) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080219 +packetLen(0x007f, 4) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080124 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080102 +packetLen(0x007f, 6) // ZC_NOTIFY_TIME +#endif + +// Packet: 0x0080 +#if PACKETVER >= 20081217 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20081203 +packetLen(0x0080, 3) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20081119 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20081112 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20081029 +packetLen(0x0080, 9) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20081001 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080924 +packetLen(0x0080, 27) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080917 +packetLen(0x0080, 11) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080910 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080903 +packetLen(0x0080, 22) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080827 +packetLen(0x0080, 58) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080624 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080617 +packetLen(0x0080, 2) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080603 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080528 +packetLen(0x0080, 22) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080520 +packetLen(0x0080, 10) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080513 +packetLen(0x0080, 6) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080422 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080415 +packetLen(0x0080, 5) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080325 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080318 +packetLen(0x0080, 60) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080311 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080304 +packetLen(0x0080, 28) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080226 +packetLen(0x0080, 4) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080219 +packetLen(0x0080, 10) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080124 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080102 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH +#endif + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +#if PACKETVER >= 20081217 +packetLen(0x0083, 3) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20081203 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20081126 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20081119 +packetLen(0x0083, 282) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20081112 +packetLen(0x0083, 58) // ZC_ACCEPT_QUIT +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0083, 4) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20081029 +packetLen(0x0083, 33) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20081022 +packetLen(0x0083, 282) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20081015 +packetLen(0x0083, 26) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20081008 +packetLen(0x0083, 21) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20081001 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080924 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080910 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080903 +packetLen(0x0083, 10) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080820 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080813 +packetLen(0x0083, 39) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080806 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080715 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080708 +packetLen(0x0083, 10) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080624 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080617 +packetLen(0x0083, 34) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080610 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080603 +packetLen(0x0083, 13) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080528 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080520 +packetLen(0x0083, 4) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080513 +packetLen(0x0083, 5) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080507 +packetLen(0x0083, 30) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080429 +packetLen(0x0083, 282) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080422 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080415 +packetLen(0x0083, 5) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080408 +packetLen(0x0083, 28) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080325 +packetLen(0x0083, 30) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080318 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080311 +packetLen(0x0083, 21) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080304 +packetLen(0x0083, 10) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080226 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080219 +packetLen(0x0083, 10) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080102 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT +#endif + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +#if PACKETVER >= 20081217 +packetLen(0x0086, 17) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20081203 +packetLen(0x0086, 36) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20081112 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20081029 +packetLen(0x0086, 6) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20081008 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20081001 +packetLen(0x0086, 8) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080924 +packetLen(0x0086, 7) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080903 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080827 +packetLen(0x0086, 6) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080820 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080813 +packetLen(0x0086, 4) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080806 +packetLen(0x0086, 53) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080730 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080722 +packetLen(0x0086, 3) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080715 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080708 +packetLen(0x0086, 8) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080701 +packetLen(0x0086, 2) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080610 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080603 +packetLen(0x0086, 3) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080528 +packetLen(0x0086, 17) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080520 +packetLen(0x0086, 30) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080513 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080507 +packetLen(0x0086, 32) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080429 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080422 +packetLen(0x0086, 24) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080415 +packetLen(0x0086, 8) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080408 +packetLen(0x0086, 10) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080401 +packetLen(0x0086, 22) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080325 +packetLen(0x0086, 2) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080318 +packetLen(0x0086, 22) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080311 +packetLen(0x0086, 14) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080304 +packetLen(0x0086, 79) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080226 +packetLen(0x0086, 14) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080219 +packetLen(0x0086, 10) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080124 +packetLen(0x0086, 7) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080102 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE +#endif + +// Packet: 0x0087 +#if PACKETVER >= 20081217 +packetLen(0x0087, 8) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20081119 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20081112 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20081022 +packetLen(0x0087, 44) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20081001 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080924 +packetLen(0x0087, 60) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080910 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080903 +packetLen(0x0087, 8) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080827 +packetLen(0x0087, 2) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080820 +packetLen(0x0087, 10) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080730 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080722 +packetLen(0x0087, 90) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080715 +packetLen(0x0087, 4) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080708 +packetLen(0x0087, 5) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080701 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080624 +packetLen(0x0087, 4) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080610 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080603 +packetLen(0x0087, 27) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080528 +packetLen(0x0087, 282) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080520 +packetLen(0x0087, 10) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080513 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080429 +packetLen(0x0087, 2) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080422 +packetLen(0x0087, 6) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080415 +packetLen(0x0087, 14) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080408 +packetLen(0x0087, 11) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080401 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080325 +packetLen(0x0087, 14) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080318 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0087, 26) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080226 +packetLen(0x0087, 6) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0087, 14) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080124 +packetLen(0x0087, 31) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE +#endif + +// Packet: 0x0088 +#if PACKETVER >= 20081126 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20081119 +packetLen(0x0088, 4) // ZC_STOPMOVE +#elif PACKETVER >= 20081112 +packetLen(0x0088, 18) // ZC_STOPMOVE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0088, 2) // ZC_STOPMOVE +#elif PACKETVER >= 20081029 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20081022 +packetLen(0x0088, 11) // ZC_STOPMOVE +#elif PACKETVER >= 20081001 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080924 +packetLen(0x0088, 60) // ZC_STOPMOVE +#elif PACKETVER >= 20080910 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080903 +packetLen(0x0088, 15) // ZC_STOPMOVE +#elif PACKETVER >= 20080806 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080730 +packetLen(0x0088, 22) // ZC_STOPMOVE +#elif PACKETVER >= 20080722 +packetLen(0x0088, 26) // ZC_STOPMOVE +#elif PACKETVER >= 20080708 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080701 +packetLen(0x0088, 19) // ZC_STOPMOVE +#elif PACKETVER >= 20080624 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080617 +packetLen(0x0088, 10) // ZC_STOPMOVE +#elif PACKETVER >= 20080610 +packetLen(0x0088, 19) // ZC_STOPMOVE +#elif PACKETVER >= 20080603 +packetLen(0x0088, 60) // ZC_STOPMOVE +#elif PACKETVER >= 20080528 +packetLen(0x0088, 15) // ZC_STOPMOVE +#elif PACKETVER >= 20080520 +packetLen(0x0088, 6) // ZC_STOPMOVE +#elif PACKETVER >= 20080513 +packetLen(0x0088, 7) // ZC_STOPMOVE +#elif PACKETVER >= 20080429 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080422 +packetLen(0x0088, 3) // ZC_STOPMOVE +#elif PACKETVER >= 20080415 +packetLen(0x0088, 86) // ZC_STOPMOVE +#elif PACKETVER >= 20080408 +packetLen(0x0088, 10) // ZC_STOPMOVE +#elif PACKETVER >= 20080401 +packetLen(0x0088, 282) // ZC_STOPMOVE +#elif PACKETVER >= 20080325 +packetLen(0x0088, 3) // ZC_STOPMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0088, 97) // ZC_STOPMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0088, 30) // ZC_STOPMOVE +#elif PACKETVER >= 20080124 +packetLen(0x0088, 4) // ZC_STOPMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0088, 10) // ZC_STOPMOVE +#endif + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +#if PACKETVER >= 20081126 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20081119 +packetLen(0x008a, 7) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20081112 +packetLen(0x008a, 29) // ZC_NOTIFY_ACT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20081029 +packetLen(0x008a, 10) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20081022 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20081015 +packetLen(0x008a, 30) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20081001 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080924 +packetLen(0x008a, 10) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080917 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080910 +packetLen(0x008a, 79) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080827 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080820 +packetLen(0x008a, 7) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080813 +packetLen(0x008a, 2) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080730 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080722 +packetLen(0x008a, 10) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080715 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080708 +packetLen(0x008a, 53) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080624 +packetLen(0x008a, 6) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080617 +packetLen(0x008a, 2) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080610 +packetLen(0x008a, 28) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080603 +packetLen(0x008a, 68) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080528 +packetLen(0x008a, 9) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080520 +packetLen(0x008a, 29) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080513 +packetLen(0x008a, 11) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080507 +packetLen(0x008a, 26) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080429 +packetLen(0x008a, 23) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080422 +packetLen(0x008a, 6) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080408 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080401 +packetLen(0x008a, 28) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080325 +packetLen(0x008a, 30) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080318 +packetLen(0x008a, 5) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080304 +packetLen(0x008a, 6) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080226 +packetLen(0x008a, 10) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080219 +packetLen(0x008a, 6) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080124 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080102 +packetLen(0x008a, 29) // ZC_NOTIFY_ACT +#endif + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +#if PACKETVER >= 20081112 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20081105 +packetLen(0x008d, 79) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20081022 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20081015 +packetLen(0x008d, 20) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080924 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080917 +packetLen(0x008d, 4) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080910 +packetLen(0x008d, 3) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080903 +packetLen(0x008d, 14) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080806 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080730 +packetLen(0x008d, 31) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080722 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080715 +packetLen(0x008d, 4) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080708 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080701 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080624 +packetLen(0x008d, 10) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080617 +packetLen(0x008d, 282) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080610 +packetLen(0x008d, 60) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080603 +packetLen(0x008d, 6) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080528 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080520 +packetLen(0x008d, 4) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080513 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080507 +packetLen(0x008d, 66) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080429 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080422 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080415 +packetLen(0x008d, 2) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080408 +packetLen(0x008d, 6) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080401 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080325 +packetLen(0x008d, 7) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080318 +packetLen(0x008d, 8) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080311 +packetLen(0x008d, 7) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080304 +packetLen(0x008d, 4) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080226 +packetLen(0x008d, 6) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080219 +packetLen(0x008d, 79) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080124 +packetLen(0x008d, 6) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080102 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#endif + +// Packet: 0x008e +#if PACKETVER >= 20081203 +packetLen(0x008e, 4) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20081119 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20081112 +packetLen(0x008e, 30) // ZC_NOTIFY_PLAYERCHAT +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x008e, 5) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20081029 +packetLen(0x008e, 12) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20081022 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20081015 +packetLen(0x008e, 66) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20081008 +packetLen(0x008e, 4) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080924 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080917 +packetLen(0x008e, 39) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080910 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080903 +packetLen(0x008e, 2) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080827 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080820 +packetLen(0x008e, 8) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080806 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080730 +packetLen(0x008e, 7) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080722 +packetLen(0x008e, 54) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080715 +packetLen(0x008e, 6) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080708 +packetLen(0x008e, 28) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080701 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080624 +packetLen(0x008e, 5) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080617 +packetLen(0x008e, 6) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080610 +packetLen(0x008e, 10) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080603 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080528 +packetLen(0x008e, 7) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080520 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080513 +packetLen(0x008e, 282) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080507 +packetLen(0x008e, 2) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080429 +packetLen(0x008e, 6) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080422 +packetLen(0x008e, 3) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080415 +packetLen(0x008e, 2) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080408 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080401 +packetLen(0x008e, 4) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080325 +packetLen(0x008e, 28) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080318 +packetLen(0x008e, 186) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080311 +packetLen(0x008e, 7) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080304 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080226 +packetLen(0x008e, 7) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080219 +packetLen(0x008e, 33) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080102 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#endif + +// Packet: 0x0090 +#if PACKETVER >= 20081217 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20081203 +packetLen(0x0090, 6) // CZ_CONTACTNPC +#elif PACKETVER >= 20081126 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20081119 +packetLen(0x0090, 30) // CZ_CONTACTNPC +#elif PACKETVER >= 20081112 +packetLen(0x0090, 7) // CZ_CONTACTNPC +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20081029 +packetLen(0x0090, 8) // CZ_CONTACTNPC +#elif PACKETVER >= 20081015 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20081008 +packetLen(0x0090, 2) // CZ_CONTACTNPC +#elif PACKETVER >= 20081001 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20080924 +packetLen(0x0090, 5) // CZ_CONTACTNPC +#elif PACKETVER >= 20080917 +packetLen(0x0090, 26) // CZ_CONTACTNPC +#elif PACKETVER >= 20080910 +packetLen(0x0090, 282) // CZ_CONTACTNPC +#elif PACKETVER >= 20080827 +packetLen(0x0090, 3) // CZ_CONTACTNPC +#elif PACKETVER >= 20080820 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20080813 +packetLen(0x0090, 33) // CZ_CONTACTNPC +#elif PACKETVER >= 20080806 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20080730 +packetLen(0x0090, 3) // CZ_CONTACTNPC +#elif PACKETVER >= 20080708 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20080701 +packetLen(0x0090, 10) // CZ_CONTACTNPC +#elif PACKETVER >= 20080617 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20080610 +packetLen(0x0090, 6) // CZ_CONTACTNPC +#elif PACKETVER >= 20080528 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20080520 +packetLen(0x0090, 3) // CZ_CONTACTNPC +#elif PACKETVER >= 20080513 +packetLen(0x0090, 7) // CZ_CONTACTNPC +#elif PACKETVER >= 20080507 +packetLen(0x0090, 4) // CZ_CONTACTNPC +#elif PACKETVER >= 20080429 +packetLen(0x0090, 19) // CZ_CONTACTNPC +#elif PACKETVER >= 20080422 +packetLen(0x0090, 7) // CZ_CONTACTNPC +#elif PACKETVER >= 20080415 +packetLen(0x0090, 36) // CZ_CONTACTNPC +#elif PACKETVER >= 20080408 +packetLen(0x0090, 20) // CZ_CONTACTNPC +#elif PACKETVER >= 20080401 +packetLen(0x0090, 53) // CZ_CONTACTNPC +#elif PACKETVER >= 20080325 +packetLen(0x0090, 5) // CZ_CONTACTNPC +#elif PACKETVER >= 20080318 +packetLen(0x0090, 6) // CZ_CONTACTNPC +#elif PACKETVER >= 20080311 +packetLen(0x0090, 2) // CZ_CONTACTNPC +#elif PACKETVER >= 20080304 +packetLen(0x0090, 17) // CZ_CONTACTNPC +#elif PACKETVER >= 20080226 +packetLen(0x0090, 4) // CZ_CONTACTNPC +#elif PACKETVER >= 20080219 +packetLen(0x0090, 2) // CZ_CONTACTNPC +#elif PACKETVER >= 20080124 +packetLen(0x0090, 24) // CZ_CONTACTNPC +#elif PACKETVER >= 20080102 +packetLen(0x0090, 7) // CZ_CONTACTNPC +#endif + +// Packet: 0x0091 +#if PACKETVER >= 20081217 +packetLen(0x0091, 3) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20081203 +packetLen(0x0091, 27) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20081126 +packetLen(0x0091, 26) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20081112 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20081022 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20081015 +packetLen(0x0091, 7) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20081008 +packetLen(0x0091, 14) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080910 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080903 +packetLen(0x0091, 10) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080806 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080730 +packetLen(0x0091, 10) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080722 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080715 +packetLen(0x0091, 16) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080701 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080624 +packetLen(0x0091, 8) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080617 +packetLen(0x0091, 2) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080610 +packetLen(0x0091, 21) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080603 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080528 +packetLen(0x0091, 14) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080520 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080513 +packetLen(0x0091, 5) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080507 +packetLen(0x0091, 6) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080429 +packetLen(0x0091, 30) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080422 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080415 +packetLen(0x0091, 182) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080408 +packetLen(0x0091, 58) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080401 +packetLen(0x0091, 15) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080325 +packetLen(0x0091, 2) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080318 +packetLen(0x0091, 6) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0091, 8) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0091, 57) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080226 +packetLen(0x0091, 4) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080124 +packetLen(0x0091, 79) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE +#endif + +// Packet: 0x0092 +#if PACKETVER >= 20081112 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20081029 +packetLen(0x0092, 29) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20081015 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20081008 +packetLen(0x0092, 2) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080924 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080917 +packetLen(0x0092, 2) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080910 +packetLen(0x0092, 114) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080827 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080820 +packetLen(0x0092, 7) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080813 +packetLen(0x0092, 6) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080806 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080730 +packetLen(0x0092, 7) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080722 +packetLen(0x0092, 13) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080715 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080708 +packetLen(0x0092, 18) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080701 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080624 +packetLen(0x0092, 15) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080617 +packetLen(0x0092, 7) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080610 +packetLen(0x0092, 20) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080603 +packetLen(0x0092, 26) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080528 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080520 +packetLen(0x0092, 6) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080513 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080507 +packetLen(0x0092, 7) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080429 +packetLen(0x0092, 32) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080422 +packetLen(0x0092, 6) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080415 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080408 +packetLen(0x0092, 21) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080401 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080325 +packetLen(0x0092, 26) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080318 +packetLen(0x0092, 81) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0092, 10) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0092, 5) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080226 +packetLen(0x0092, 3) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080124 +packetLen(0x0092, 4) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE +#endif + +// Packet: 0x0093 +#if PACKETVER >= 20081203 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20081126 +packetLen(0x0093, 14) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20081119 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20081112 +packetLen(0x0093, 15) // ZC_NPCACK_ENABLE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20081022 +packetLen(0x0093, 29) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20081015 +packetLen(0x0093, 9) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20081001 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080924 +packetLen(0x0093, 6) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080820 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080813 +packetLen(0x0093, 3) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080806 +packetLen(0x0093, 7) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080730 +packetLen(0x0093, 5) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080722 +packetLen(0x0093, 3) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080715 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080708 +packetLen(0x0093, 9) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080701 +packetLen(0x0093, 4) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080624 +packetLen(0x0093, 6) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080617 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080610 +packetLen(0x0093, 5) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080528 +packetLen(0x0093, 3) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080520 +packetLen(0x0093, 22) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080513 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080507 +packetLen(0x0093, 26) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080422 +packetLen(0x0093, 6) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080415 +packetLen(0x0093, 3) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080408 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080401 +packetLen(0x0093, 3) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080325 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080318 +packetLen(0x0093, 8) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080311 +packetLen(0x0093, 11) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080304 +packetLen(0x0093, 26) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080226 +packetLen(0x0093, 5) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080219 +packetLen(0x0093, 67) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080124 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080102 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE +#endif + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +#if PACKETVER >= 20081217 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20081203 +packetLen(0x0095, 6) // ZC_ACK_REQNAME +#elif PACKETVER >= 20081126 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20081119 +packetLen(0x0095, 3) // ZC_ACK_REQNAME +#elif PACKETVER >= 20081112 +packetLen(0x0095, 30) // ZC_ACK_REQNAME +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20081022 +packetLen(0x0095, 8) // ZC_ACK_REQNAME +#elif PACKETVER >= 20081015 +packetLen(0x0095, 6) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080917 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080910 +packetLen(0x0095, 6) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080903 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080827 +packetLen(0x0095, 28) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080820 +packetLen(0x0095, 58) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080806 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080730 +packetLen(0x0095, 28) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080722 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080715 +packetLen(0x0095, 3) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080708 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080701 +packetLen(0x0095, 6) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080624 +packetLen(0x0095, 10) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080610 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080603 +packetLen(0x0095, 54) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080528 +packetLen(0x0095, 2) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080520 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080513 +packetLen(0x0095, 9) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080507 +packetLen(0x0095, 22) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080408 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080401 +packetLen(0x0095, 10) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080325 +packetLen(0x0095, 4) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080318 +packetLen(0x0095, 3) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080311 +packetLen(0x0095, 59) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080304 +packetLen(0x0095, 30) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080226 +packetLen(0x0095, 39) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080219 +packetLen(0x0095, 2) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080102 +packetLen(0x0095, 30) // ZC_ACK_REQNAME +#endif + +// Packet: 0x0096 +#if PACKETVER >= 20081105 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20081029 +packetLen(0x0096, 6) // CZ_WHISPER +#elif PACKETVER >= 20081022 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20081015 +packetLen(0x0096, 12) // CZ_WHISPER +#elif PACKETVER >= 20081008 +packetLen(0x0096, 57) // CZ_WHISPER +#elif PACKETVER >= 20081001 +packetLen(0x0096, 55) // CZ_WHISPER +#elif PACKETVER >= 20080910 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080903 +packetLen(0x0096, 60) // CZ_WHISPER +#elif PACKETVER >= 20080820 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080813 +packetLen(0x0096, 30) // CZ_WHISPER +#elif PACKETVER >= 20080806 +packetLen(0x0096, 10) // CZ_WHISPER +#elif PACKETVER >= 20080730 +packetLen(0x0096, 6) // CZ_WHISPER +#elif PACKETVER >= 20080708 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080701 +packetLen(0x0096, 10) // CZ_WHISPER +#elif PACKETVER >= 20080610 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080603 +packetLen(0x0096, 10) // CZ_WHISPER +#elif PACKETVER >= 20080528 +packetLen(0x0096, 31) // CZ_WHISPER +#elif PACKETVER >= 20080513 +packetLen(0x0096, 6) // CZ_WHISPER +#elif PACKETVER >= 20080422 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080415 +packetLen(0x0096, 26) // CZ_WHISPER +#elif PACKETVER >= 20080401 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080325 +packetLen(0x0096, 5) // CZ_WHISPER +#elif PACKETVER >= 20080318 +packetLen(0x0096, 7) // CZ_WHISPER +#elif PACKETVER >= 20080311 +packetLen(0x0096, 10) // CZ_WHISPER +#elif PACKETVER >= 20080226 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080219 +packetLen(0x0096, 3) // CZ_WHISPER +#elif PACKETVER >= 20080124 +packetLen(0x0096, 6) // CZ_WHISPER +#elif PACKETVER >= 20080102 +packetLen(0x0096, -1) // CZ_WHISPER +#endif + +// Packet: 0x0097 +#if PACKETVER >= 20081119 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20081112 +packetLen(0x0097, 19) // ZC_WHISPER +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20081029 +packetLen(0x0097, 3) // ZC_WHISPER +#elif PACKETVER >= 20081022 +packetLen(0x0097, 6) // ZC_WHISPER +#elif PACKETVER >= 20081015 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20081008 +packetLen(0x0097, 6) // ZC_WHISPER +#elif PACKETVER >= 20081001 +packetLen(0x0097, 4) // ZC_WHISPER +#elif PACKETVER >= 20080917 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20080910 +packetLen(0x0097, 58) // ZC_WHISPER +#elif PACKETVER >= 20080730 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20080722 +packetLen(0x0097, 23) // ZC_WHISPER +#elif PACKETVER >= 20080715 +packetLen(0x0097, 10) // ZC_WHISPER +#elif PACKETVER >= 20080708 +packetLen(0x0097, 26) // ZC_WHISPER +#elif PACKETVER >= 20080701 +packetLen(0x0097, 282) // ZC_WHISPER +#elif PACKETVER >= 20080624 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20080617 +packetLen(0x0097, 10) // ZC_WHISPER +#elif PACKETVER >= 20080610 +packetLen(0x0097, 8) // ZC_WHISPER +#elif PACKETVER >= 20080603 +packetLen(0x0097, 5) // ZC_WHISPER +#elif PACKETVER >= 20080528 +packetLen(0x0097, 7) // ZC_WHISPER +#elif PACKETVER >= 20080520 +packetLen(0x0097, 8) // ZC_WHISPER +#elif PACKETVER >= 20080513 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20080507 +packetLen(0x0097, 30) // ZC_WHISPER +#elif PACKETVER >= 20080429 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20080422 +packetLen(0x0097, 29) // ZC_WHISPER +#elif PACKETVER >= 20080415 +packetLen(0x0097, 16) // ZC_WHISPER +#elif PACKETVER >= 20080408 +packetLen(0x0097, 30) // ZC_WHISPER +#elif PACKETVER >= 20080401 +packetLen(0x0097, 53) // ZC_WHISPER +#elif PACKETVER >= 20080325 +packetLen(0x0097, 26) // ZC_WHISPER +#elif PACKETVER >= 20080318 +packetLen(0x0097, 3) // ZC_WHISPER +#elif PACKETVER >= 20080311 +packetLen(0x0097, 33) // ZC_WHISPER +#elif PACKETVER >= 20080304 +packetLen(0x0097, 7) // ZC_WHISPER +#elif PACKETVER >= 20080219 +packetLen(0x0097, 23) // ZC_WHISPER +#elif PACKETVER >= 20080102 +packetLen(0x0097, -1) // ZC_WHISPER +#endif + +// Packet: 0x0098 +#if PACKETVER >= 20081217 +packetLen(0x0098, 9) // ZC_ACK_WHISPER +#elif PACKETVER >= 20081119 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20081112 +packetLen(0x0098, 8) // ZC_ACK_WHISPER +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0098, 16) // ZC_ACK_WHISPER +#elif PACKETVER >= 20081029 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20081022 +packetLen(0x0098, 30) // ZC_ACK_WHISPER +#elif PACKETVER >= 20081015 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20081008 +packetLen(0x0098, 2) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080820 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080813 +packetLen(0x0098, 14) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080730 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080722 +packetLen(0x0098, 19) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080715 +packetLen(0x0098, 54) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080708 +packetLen(0x0098, 39) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080701 +packetLen(0x0098, 8) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080624 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080617 +packetLen(0x0098, 24) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080610 +packetLen(0x0098, 26) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080528 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080520 +packetLen(0x0098, 16) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080513 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080507 +packetLen(0x0098, 13) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080429 +packetLen(0x0098, 58) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080408 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080401 +packetLen(0x0098, 26) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080325 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080318 +packetLen(0x0098, 26) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080311 +packetLen(0x0098, 60) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080304 +packetLen(0x0098, 182) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080226 +packetLen(0x0098, 2) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080219 +packetLen(0x0098, 8) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080124 +packetLen(0x0098, 10) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080102 +packetLen(0x0098, 3) // ZC_ACK_WHISPER +#endif + +// Packet: 0x0099 +#if PACKETVER >= 20081217 +packetLen(0x0099, 31) // CZ_BROADCAST +#elif PACKETVER >= 20081119 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20081112 +packetLen(0x0099, 6) // CZ_BROADCAST +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0099, 6) // CZ_BROADCAST +#elif PACKETVER >= 20081022 +packetLen(0x0099, 26) // CZ_BROADCAST +#elif PACKETVER >= 20081015 +packetLen(0x0099, 3) // CZ_BROADCAST +#elif PACKETVER >= 20081008 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20081001 +packetLen(0x0099, 4) // CZ_BROADCAST +#elif PACKETVER >= 20080924 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080917 +packetLen(0x0099, 14) // CZ_BROADCAST +#elif PACKETVER >= 20080903 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080827 +packetLen(0x0099, 4) // CZ_BROADCAST +#elif PACKETVER >= 20080813 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080806 +packetLen(0x0099, 3) // CZ_BROADCAST +#elif PACKETVER >= 20080730 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080722 +packetLen(0x0099, 5) // CZ_BROADCAST +#elif PACKETVER >= 20080715 +packetLen(0x0099, 2) // CZ_BROADCAST +#elif PACKETVER >= 20080708 +packetLen(0x0099, 182) // CZ_BROADCAST +#elif PACKETVER >= 20080701 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080624 +packetLen(0x0099, 30) // CZ_BROADCAST +#elif PACKETVER >= 20080617 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080610 +packetLen(0x0099, 9) // CZ_BROADCAST +#elif PACKETVER >= 20080603 +packetLen(0x0099, 4) // CZ_BROADCAST +#elif PACKETVER >= 20080528 +packetLen(0x0099, 60) // CZ_BROADCAST +#elif PACKETVER >= 20080520 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080507 +packetLen(0x0099, 8) // CZ_BROADCAST +#elif PACKETVER >= 20080429 +packetLen(0x0099, 2) // CZ_BROADCAST +#elif PACKETVER >= 20080408 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080401 +packetLen(0x0099, 6) // CZ_BROADCAST +#elif PACKETVER >= 20080325 +packetLen(0x0099, 54) // CZ_BROADCAST +#elif PACKETVER >= 20080318 +packetLen(0x0099, 6) // CZ_BROADCAST +#elif PACKETVER >= 20080311 +packetLen(0x0099, 66) // CZ_BROADCAST +#elif PACKETVER >= 20080304 +packetLen(0x0099, 10) // CZ_BROADCAST +#elif PACKETVER >= 20080226 +packetLen(0x0099, 34) // CZ_BROADCAST +#elif PACKETVER >= 20080219 +packetLen(0x0099, 2) // CZ_BROADCAST +#elif PACKETVER >= 20080102 +packetLen(0x0099, -1) // CZ_BROADCAST +#endif + +// Packet: 0x009a +#if PACKETVER >= 20081217 +packetLen(0x009a, 65) // ZC_BROADCAST +#elif PACKETVER >= 20081203 +packetLen(0x009a, 4) // ZC_BROADCAST +#elif PACKETVER >= 20081105 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20081029 +packetLen(0x009a, 19) // ZC_BROADCAST +#elif PACKETVER >= 20081022 +packetLen(0x009a, 2) // ZC_BROADCAST +#elif PACKETVER >= 20081015 +packetLen(0x009a, 5) // ZC_BROADCAST +#elif PACKETVER >= 20081008 +packetLen(0x009a, 6) // ZC_BROADCAST +#elif PACKETVER >= 20081001 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080924 +packetLen(0x009a, 2) // ZC_BROADCAST +#elif PACKETVER >= 20080917 +packetLen(0x009a, 4) // ZC_BROADCAST +#elif PACKETVER >= 20080910 +packetLen(0x009a, 20) // ZC_BROADCAST +#elif PACKETVER >= 20080903 +packetLen(0x009a, 30) // ZC_BROADCAST +#elif PACKETVER >= 20080827 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080820 +packetLen(0x009a, 11) // ZC_BROADCAST +#elif PACKETVER >= 20080813 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080806 +packetLen(0x009a, 6) // ZC_BROADCAST +#elif PACKETVER >= 20080722 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080715 +packetLen(0x009a, 7) // ZC_BROADCAST +#elif PACKETVER >= 20080708 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080701 +packetLen(0x009a, 3) // ZC_BROADCAST +#elif PACKETVER >= 20080617 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080610 +packetLen(0x009a, 90) // ZC_BROADCAST +#elif PACKETVER >= 20080603 +packetLen(0x009a, 29) // ZC_BROADCAST +#elif PACKETVER >= 20080528 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080520 +packetLen(0x009a, 10) // ZC_BROADCAST +#elif PACKETVER >= 20080513 +packetLen(0x009a, 28) // ZC_BROADCAST +#elif PACKETVER >= 20080422 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080415 +packetLen(0x009a, 33) // ZC_BROADCAST +#elif PACKETVER >= 20080408 +packetLen(0x009a, 9) // ZC_BROADCAST +#elif PACKETVER >= 20080325 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080318 +packetLen(0x009a, 59) // ZC_BROADCAST +#elif PACKETVER >= 20080311 +packetLen(0x009a, 57) // ZC_BROADCAST +#elif PACKETVER >= 20080304 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080226 +packetLen(0x009a, 4) // ZC_BROADCAST +#elif PACKETVER >= 20080219 +packetLen(0x009a, 10) // ZC_BROADCAST +#elif PACKETVER >= 20080124 +packetLen(0x009a, 4) // ZC_BROADCAST +#elif PACKETVER >= 20080102 +packetLen(0x009a, -1) // ZC_BROADCAST +#endif + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +#if PACKETVER >= 20081203 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20081126 +packetLen(0x009c, 7) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20081119 +packetLen(0x009c, 14) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20081112 +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x009c, 30) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20081029 +packetLen(0x009c, 6) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20081008 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20081001 +packetLen(0x009c, 14) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080924 +packetLen(0x009c, 2) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080910 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080903 +packetLen(0x009c, 2) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080827 +packetLen(0x009c, 59) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080813 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080806 +packetLen(0x009c, 44) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080708 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080701 +packetLen(0x009c, 67) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080617 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080610 +packetLen(0x009c, 6) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080603 +packetLen(0x009c, 4) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080528 +packetLen(0x009c, 26) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080520 +packetLen(0x009c, 67) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080513 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080507 +packetLen(0x009c, 6) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080429 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080422 +packetLen(0x009c, 10) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080415 +packetLen(0x009c, 66) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080408 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080401 +packetLen(0x009c, 8) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080325 +packetLen(0x009c, 3) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080318 +packetLen(0x009c, 282) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080311 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080304 +packetLen(0x009c, 71) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080226 +packetLen(0x009c, 4) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080219 +packetLen(0x009c, 7) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080124 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080102 +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION +#endif + +// Packet: 0x009d +#if PACKETVER >= 20081119 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20081112 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081015 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20081008 +packetLen(0x009d, 6) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20081001 +packetLen(0x009d, 27) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080924 +packetLen(0x009d, 6) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080917 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080910 +packetLen(0x009d, 4) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080722 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080715 +packetLen(0x009d, 2) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080708 +packetLen(0x009d, 14) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080701 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080624 +packetLen(0x009d, 10) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x009d, 13) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x009d, 3) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x009d, 6) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080528 +packetLen(0x009d, 8) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080520 +packetLen(0x009d, 10) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080513 +packetLen(0x009d, 29) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080507 +packetLen(0x009d, 59) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080429 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x009d, 6) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080415 +packetLen(0x009d, 32) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x009d, 26) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080325 +packetLen(0x009d, 57) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x009d, 13) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x009d, 19) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x009d, 57) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x009d, 10) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +#endif + +// Packet: 0x009e +#if PACKETVER >= 20081217 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20081203 +packetLen(0x009e, 10) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20081126 +packetLen(0x009e, 26) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20081119 +packetLen(0x009e, 5) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20081112 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20081022 +packetLen(0x009e, 6) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20081001 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080924 +packetLen(0x009e, 3) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080827 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080820 +packetLen(0x009e, 6) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080813 +packetLen(0x009e, 5) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080701 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080624 +packetLen(0x009e, 3) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x009e, 10) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x009e, 4) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080528 +packetLen(0x009e, 3) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080520 +packetLen(0x009e, 186) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080513 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080507 +packetLen(0x009e, 6) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080429 +packetLen(0x009e, 2) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x009e, 11) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080415 +packetLen(0x009e, 9) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x009e, 39) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x009e, 5) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x009e, 10) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x009e, 282) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x009e, 11) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x009e, 97) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +#if PACKETVER >= 20081112 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081008 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20081001 +packetLen(0x00a0, 32) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080903 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080827 +packetLen(0x00a0, 14) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080820 +packetLen(0x00a0, 3) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080813 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080806 +packetLen(0x00a0, 21) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080715 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080708 +packetLen(0x00a0, 90) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080701 +packetLen(0x00a0, 30) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080617 +packetLen(0x00a0, 6) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00a0, 26) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00a0, 8) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00a0, 3) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00a0, 14) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00a0, 12) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00a0, 8) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00a0, 8) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00a0, 6) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00a0, 13) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00a0, 28) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00a0, 27) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00a0, 39) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00a0, 5) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#endif + +// Packet: 0x00a1 +#if PACKETVER >= 20081112 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00a1, 8) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20081022 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20081008 +packetLen(0x00a1, 2) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20081001 +packetLen(0x00a1, 26) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080903 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080827 +packetLen(0x00a1, 68) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080820 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080813 +packetLen(0x00a1, 36) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080806 +packetLen(0x00a1, 4) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080722 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080715 +packetLen(0x00a1, 21) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080708 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080701 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080624 +packetLen(0x00a1, 44) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080617 +packetLen(0x00a1, 60) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080528 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080520 +packetLen(0x00a1, 60) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080513 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080507 +packetLen(0x00a1, 11) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080422 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080415 +packetLen(0x00a1, 16) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080408 +packetLen(0x00a1, 3) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080401 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080325 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080318 +packetLen(0x00a1, 53) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080311 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080304 +packetLen(0x00a1, 21) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080226 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080219 +packetLen(0x00a1, 60) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080124 +packetLen(0x00a1, 30) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080102 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#endif + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +#if PACKETVER >= 20081126 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20081119 +packetLen(0x00a3, 8) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20081105 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20081029 +packetLen(0x00a3, 30) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20081015 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20081008 +packetLen(0x00a3, 8) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20081001 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080924 +packetLen(0x00a3, 6) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x00a3, 4) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x00a3, 60) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x00a3, 10) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x00a3, 42) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x00a3, 28) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00a3, 3) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a3, 10) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00a3, 4) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00a3, 15) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00a3, 10) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x00a3, 16) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00a3, 8) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x00a3, 28) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00a3, 4) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00a3, 2) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a3, 65) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00a3, 6) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a3, 30) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a3, 44) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#endif + +// Packet: 0x00a4 +#if PACKETVER >= 20081112 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081105 +packetLen(0x00a4, 10) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081015 +packetLen(0x00a4, 8) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081001 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080924 +packetLen(0x00a4, 6) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x00a4, 4) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x00a4, 8) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080820 +packetLen(0x00a4, 58) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x00a4, 6) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x00a4, 21) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x00a4, 86) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a4, 10) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00a4, 3) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00a4, 14) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00a4, 33) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x00a4, 60) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00a4, 22) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00a4, 2) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x00a4, 6) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00a4, 7) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00a4, 27) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a4, 6) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a4, 15) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a4, 30) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00a4, 10) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#endif + +// Packet: 0x00a5 +#if PACKETVER >= 20081217 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20081203 +packetLen(0x00a5, 102) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20081119 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20081112 +packetLen(0x00a5, 102) // ZC_STORE_NORMAL_ITEMLIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00a5, 42) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20081015 +packetLen(0x00a5, 10) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20081001 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080924 +packetLen(0x00a5, 2) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080820 +packetLen(0x00a5, 3) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x00a5, 10) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x00a5, 3) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x00a5, 28) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a5, 7) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00a5, 9) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00a5, 28) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00a5, 4) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x00a5, 8) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00a5, 9) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a5, 282) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00a5, 30) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a5, 28) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a5, 3) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00a5, 4) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#endif + +// Packet: 0x00a6 +#if PACKETVER >= 20081217 +packetLen(0x00a6, 20) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081203 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081126 +packetLen(0x00a6, 6) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081029 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x00a6, 6) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081008 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081001 +packetLen(0x00a6, 11) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x00a6, 10) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x00a6, 6) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x00a6, 29) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x00a6, 6) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x00a6, 22) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x00a6, 30) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00a6, 16) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00a6, 10) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00a6, 2) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00a6, 30) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00a6, 10) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00a6, 282) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00a6, 59) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x00a6, 7) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00a6, 10) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00a6, 3) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a6, 26) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a6, 16) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00a6, 2) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#endif + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +#if PACKETVER >= 20081217 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20081203 +packetLen(0x00a8, 43) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20081126 +packetLen(0x00a8, 10) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20081119 +packetLen(0x00a8, 5) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20081112 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20081022 +packetLen(0x00a8, 3) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20081015 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20081008 +packetLen(0x00a8, 42) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20081001 +packetLen(0x00a8, 59) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080924 +packetLen(0x00a8, 10) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080917 +packetLen(0x00a8, 8) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080910 +packetLen(0x00a8, 282) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080827 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080820 +packetLen(0x00a8, 15) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080813 +packetLen(0x00a8, 2) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080806 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080701 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00a8, 6) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00a8, 6) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00a8, 10) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00a8, 90) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00a8, 3) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00a8, 13) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00a8, 4) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00a8, 2) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00a8, 30) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00a8, 6) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00a8, 3) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00a8, 10) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00a8, 20) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +#endif + +// Packet: 0x00a9 +#if PACKETVER >= 20081217 +packetLen(0x00a9, 30) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20081203 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20081126 +packetLen(0x00a9, 28) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20081119 +packetLen(0x00a9, 4) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20081112 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20081022 +packetLen(0x00a9, 8) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20081015 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20081008 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20081001 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080924 +packetLen(0x00a9, 18) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080917 +packetLen(0x00a9, 4) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080827 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080820 +packetLen(0x00a9, 11) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080806 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080730 +packetLen(0x00a9, 3) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080722 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080715 +packetLen(0x00a9, 44) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080708 +packetLen(0x00a9, 10) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080701 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080617 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080610 +packetLen(0x00a9, 282) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080603 +packetLen(0x00a9, 114) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080528 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080520 +packetLen(0x00a9, 79) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080513 +packetLen(0x00a9, 3) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080507 +packetLen(0x00a9, 26) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080429 +packetLen(0x00a9, 8) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080422 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080415 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080408 +packetLen(0x00a9, 2) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080401 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080325 +packetLen(0x00a9, 8) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080311 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080304 +packetLen(0x00a9, 11) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080226 +packetLen(0x00a9, 26) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080219 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080124 +packetLen(0x00a9, 10) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080102 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#endif + +// Packet: 0x00aa +#if PACKETVER >= 20081112 +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00aa, 4) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20081001 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080924 +packetLen(0x00aa, 39) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080903 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080827 +packetLen(0x00aa, 10) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080820 +packetLen(0x00aa, 11) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080813 +packetLen(0x00aa, 4) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080806 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080730 +packetLen(0x00aa, 71) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080722 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080715 +packetLen(0x00aa, 2) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080708 +packetLen(0x00aa, 3) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00aa, 4) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00aa, 10) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00aa, 6) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00aa, 2) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00aa, 4) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00aa, 6) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080415 +packetLen(0x00aa, 3) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00aa, 31) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00aa, 16) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00aa, 55) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00aa, 3) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00aa, 11) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00aa, 2) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00aa, 6) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK +#endif + +// Packet: 0x00ab +#if PACKETVER >= 20081203 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20081119 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20081112 +packetLen(0x00ab, 5) // CZ_REQ_TAKEOFF_EQUIP +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20081029 +packetLen(0x00ab, 30) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20081022 +packetLen(0x00ab, 60) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20081001 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080924 +packetLen(0x00ab, 79) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080910 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080903 +packetLen(0x00ab, 67) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080827 +packetLen(0x00ab, 282) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080730 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080722 +packetLen(0x00ab, 8) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080715 +packetLen(0x00ab, 14) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080701 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080617 +packetLen(0x00ab, 6) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080610 +packetLen(0x00ab, 16) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080603 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080528 +packetLen(0x00ab, 53) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080520 +packetLen(0x00ab, 36) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080513 +packetLen(0x00ab, 26) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080507 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080429 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080422 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080415 +packetLen(0x00ab, 7) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080401 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080325 +packetLen(0x00ab, 8) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080318 +packetLen(0x00ab, 9) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080311 +packetLen(0x00ab, 14) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080304 +packetLen(0x00ab, 2) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080226 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080219 +packetLen(0x00ab, 57) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080124 +packetLen(0x00ab, 86) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080102 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#endif + +// Packet: 0x00ac +#if PACKETVER >= 20081217 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20081203 +packetLen(0x00ac, 30) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20081126 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20081112 +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20081015 +packetLen(0x00ac, 3) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20081008 +packetLen(0x00ac, 30) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20081001 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080924 +packetLen(0x00ac, 59) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080917 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080910 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080903 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080827 +packetLen(0x00ac, 10) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080820 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080813 +packetLen(0x00ac, 13) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080806 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080730 +packetLen(0x00ac, 20) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080722 +packetLen(0x00ac, 44) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080715 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080708 +packetLen(0x00ac, 11) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080701 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00ac, 8) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080617 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00ac, 3) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00ac, 10) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00ac, 67) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080415 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00ac, 8) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00ac, 3) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00ac, 10) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00ac, 3) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK +#endif + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +#if PACKETVER >= 20081119 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20081105 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20081029 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20081022 +packetLen(0x00af, 16) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20081015 +packetLen(0x00af, 81) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20081008 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20081001 +packetLen(0x00af, 16) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080910 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080827 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080820 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080813 +packetLen(0x00af, 14) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080730 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080722 +packetLen(0x00af, 28) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080715 +packetLen(0x00af, 102) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080708 +packetLen(0x00af, 42) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080701 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00af, 5) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00af, 10) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00af, 29) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00af, 2) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00af, 10) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00af, 2) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00af, 26) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00af, 2) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00af, 7) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00af, 4) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#endif + +// Packet: 0x00b0 +#if PACKETVER >= 20081217 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20081015 +packetLen(0x00b0, 30) // ZC_PAR_CHANGE +#elif PACKETVER >= 20081008 +packetLen(0x00b0, 5) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080806 +packetLen(0x00b0, 10) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080730 +packetLen(0x00b0, 3) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080722 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080715 +packetLen(0x00b0, 86) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080701 +packetLen(0x00b0, 7) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x00b0, 3) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00b0, 6) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00b0, 3) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x00b0, 6) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00b0, 28) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00b0, 12) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00b0, 4) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00b0, 2) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00b0, 10) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00b0, 11) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00b0, 7) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00b0, 2) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +#endif + +// Packet: 0x00b1 +#if PACKETVER >= 20081217 +packetLen(0x00b1, 11) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20081203 +packetLen(0x00b1, 14) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20081126 +packetLen(0x00b1, 16) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20081119 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x00b1, 16) // ZC_LONGPAR_CHANGE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20081001 +packetLen(0x00b1, 5) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080924 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080917 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080910 +packetLen(0x00b1, 55) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080903 +packetLen(0x00b1, 39) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080827 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080820 +packetLen(0x00b1, 7) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x00b1, 30) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080730 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080722 +packetLen(0x00b1, 30) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080701 +packetLen(0x00b1, 3) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00b1, 11) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00b1, 2) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00b1, 6) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00b1, 97) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00b1, 26) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00b1, 58) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00b1, 30) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00b1, 2) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00b1, 30) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00b1, 14) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00b1, 9) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE +#endif + +// Packet: 0x00b2 +#if PACKETVER >= 20081217 +packetLen(0x00b2, 23) // CZ_RESTART +#elif PACKETVER >= 20081203 +packetLen(0x00b2, 2) // CZ_RESTART +#elif PACKETVER >= 20081126 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20081119 +packetLen(0x00b2, 54) // CZ_RESTART +#elif PACKETVER >= 20081112 +packetLen(0x00b2, 26) // CZ_RESTART +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00b2, 11) // CZ_RESTART +#elif PACKETVER >= 20081029 +packetLen(0x00b2, 42) // CZ_RESTART +#elif PACKETVER >= 20081022 +packetLen(0x00b2, 10) // CZ_RESTART +#elif PACKETVER >= 20081015 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20081008 +packetLen(0x00b2, 282) // CZ_RESTART +#elif PACKETVER >= 20081001 +packetLen(0x00b2, 3) // CZ_RESTART +#elif PACKETVER >= 20080917 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080910 +packetLen(0x00b2, 14) // CZ_RESTART +#elif PACKETVER >= 20080903 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080827 +packetLen(0x00b2, 102) // CZ_RESTART +#elif PACKETVER >= 20080820 +packetLen(0x00b2, 14) // CZ_RESTART +#elif PACKETVER >= 20080813 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080806 +packetLen(0x00b2, 7) // CZ_RESTART +#elif PACKETVER >= 20080730 +packetLen(0x00b2, 30) // CZ_RESTART +#elif PACKETVER >= 20080722 +packetLen(0x00b2, 3) // CZ_RESTART +#elif PACKETVER >= 20080715 +packetLen(0x00b2, 6) // CZ_RESTART +#elif PACKETVER >= 20080708 +packetLen(0x00b2, 3) // CZ_RESTART +#elif PACKETVER >= 20080624 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080617 +packetLen(0x00b2, 10) // CZ_RESTART +#elif PACKETVER >= 20080610 +packetLen(0x00b2, 13) // CZ_RESTART +#elif PACKETVER >= 20080603 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080528 +packetLen(0x00b2, 2) // CZ_RESTART +#elif PACKETVER >= 20080520 +packetLen(0x00b2, 6) // CZ_RESTART +#elif PACKETVER >= 20080513 +packetLen(0x00b2, 58) // CZ_RESTART +#elif PACKETVER >= 20080507 +packetLen(0x00b2, 6) // CZ_RESTART +#elif PACKETVER >= 20080429 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080422 +packetLen(0x00b2, 3) // CZ_RESTART +#elif PACKETVER >= 20080415 +packetLen(0x00b2, 14) // CZ_RESTART +#elif PACKETVER >= 20080408 +packetLen(0x00b2, 67) // CZ_RESTART +#elif PACKETVER >= 20080401 +packetLen(0x00b2, 4) // CZ_RESTART +#elif PACKETVER >= 20080325 +packetLen(0x00b2, 5) // CZ_RESTART +#elif PACKETVER >= 20080318 +packetLen(0x00b2, 3) // CZ_RESTART +#elif PACKETVER >= 20080311 +packetLen(0x00b2, 5) // CZ_RESTART +#elif PACKETVER >= 20080304 +packetLen(0x00b2, 8) // CZ_RESTART +#elif PACKETVER >= 20080226 +packetLen(0x00b2, 9) // CZ_RESTART +#elif PACKETVER >= 20080219 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080124 +packetLen(0x00b2, 2) // CZ_RESTART +#elif PACKETVER >= 20080102 +packetLen(0x00b2, 3) // CZ_RESTART +#endif + +// Packet: 0x00b3 +#if PACKETVER >= 20081203 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20081126 +packetLen(0x00b3, 2) // ZC_RESTART_ACK +#elif PACKETVER >= 20081119 +packetLen(0x00b3, 14) // ZC_RESTART_ACK +#elif PACKETVER >= 20081112 +packetLen(0x00b3, 3) // ZC_RESTART_ACK +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00b3, 11) // ZC_RESTART_ACK +#elif PACKETVER >= 20081029 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20081022 +packetLen(0x00b3, 2) // ZC_RESTART_ACK +#elif PACKETVER >= 20081015 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20081008 +packetLen(0x00b3, 3) // ZC_RESTART_ACK +#elif PACKETVER >= 20081001 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080924 +packetLen(0x00b3, 30) // ZC_RESTART_ACK +#elif PACKETVER >= 20080917 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080910 +packetLen(0x00b3, 3) // ZC_RESTART_ACK +#elif PACKETVER >= 20080820 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080813 +packetLen(0x00b3, 18) // ZC_RESTART_ACK +#elif PACKETVER >= 20080722 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080708 +packetLen(0x00b3, 6) // ZC_RESTART_ACK +#elif PACKETVER >= 20080701 +packetLen(0x00b3, 14) // ZC_RESTART_ACK +#elif PACKETVER >= 20080617 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00b3, 6) // ZC_RESTART_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00b3, 30) // ZC_RESTART_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00b3, 6) // ZC_RESTART_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00b3, 2) // ZC_RESTART_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00b3, 4) // ZC_RESTART_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080415 +packetLen(0x00b3, 6) // ZC_RESTART_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00b3, 5) // ZC_RESTART_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00b3, 35) // ZC_RESTART_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00b3, 7) // ZC_RESTART_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00b3, 10) // ZC_RESTART_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00b3, 55) // ZC_RESTART_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00b3, 28) // ZC_RESTART_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00b3, 3) // ZC_RESTART_ACK +#endif + +// Packet: 0x00b4 +#if PACKETVER >= 20081217 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20081203 +packetLen(0x00b4, 81) // ZC_SAY_DIALOG +#elif PACKETVER >= 20081126 +packetLen(0x00b4, 10) // ZC_SAY_DIALOG +#elif PACKETVER >= 20081119 +packetLen(0x00b4, 19) // ZC_SAY_DIALOG +#elif PACKETVER >= 20081112 +packetLen(0x00b4, 282) // ZC_SAY_DIALOG +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00b4, 32) // ZC_SAY_DIALOG +#elif PACKETVER >= 20081029 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20081022 +packetLen(0x00b4, 81) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080820 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080813 +packetLen(0x00b4, 3) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080806 +packetLen(0x00b4, 57) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080722 +packetLen(0x00b4, 30) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080715 +packetLen(0x00b4, 15) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080617 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080610 +packetLen(0x00b4, 6) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080603 +packetLen(0x00b4, 33) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080528 +packetLen(0x00b4, 3) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080520 +packetLen(0x00b4, 10) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080513 +packetLen(0x00b4, 4) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080429 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080422 +packetLen(0x00b4, 6) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080415 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080408 +packetLen(0x00b4, 282) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080401 +packetLen(0x00b4, 34) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080325 +packetLen(0x00b4, 6) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080318 +packetLen(0x00b4, 2) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x00b4, 36) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x00b4, 2) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x00b4, 43) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x00b4, 4) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#endif + +// Packet: 0x00b5 +#if PACKETVER >= 20081217 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20081203 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20081126 +packetLen(0x00b5, 3) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20081119 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20081112 +packetLen(0x00b5, 8) // ZC_WAIT_DIALOG +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00b5, 4) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20081029 +packetLen(0x00b5, 26) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20081022 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20081008 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20081001 +packetLen(0x00b5, 4) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080924 +packetLen(0x00b5, 71) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080917 +packetLen(0x00b5, 282) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080910 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080903 +packetLen(0x00b5, 3) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080820 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080813 +packetLen(0x00b5, 16) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080806 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080730 +packetLen(0x00b5, 282) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080722 +packetLen(0x00b5, 11) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080715 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080708 +packetLen(0x00b5, 58) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080701 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080624 +packetLen(0x00b5, 12) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080617 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080610 +packetLen(0x00b5, 3) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080603 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080528 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080520 +packetLen(0x00b5, 2) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080513 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080507 +packetLen(0x00b5, 5) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080429 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080422 +packetLen(0x00b5, 19) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080415 +packetLen(0x00b5, 14) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080408 +packetLen(0x00b5, 90) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080401 +packetLen(0x00b5, 14) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080325 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080318 +packetLen(0x00b5, 11) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x00b5, 8) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x00b5, 4) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x00b5, 30) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080124 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#endif + +// Packet: 0x00b6 +#if PACKETVER >= 20081217 +packetLen(0x00b6, 26) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20081203 +packetLen(0x00b6, 79) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20081112 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00b6, 2) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20081029 +packetLen(0x00b6, 7) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20081022 +packetLen(0x00b6, 8) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20081015 +packetLen(0x00b6, 79) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20081001 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080924 +packetLen(0x00b6, 4) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080917 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080910 +packetLen(0x00b6, 2) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080903 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080827 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080813 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080806 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080730 +packetLen(0x00b6, 2) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080722 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080715 +packetLen(0x00b6, 60) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080708 +packetLen(0x00b6, 2) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080701 +packetLen(0x00b6, 8) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080624 +packetLen(0x00b6, 7) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080617 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080610 +packetLen(0x00b6, 3) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080603 +packetLen(0x00b6, 39) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080528 +packetLen(0x00b6, 11) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080429 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080422 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080415 +packetLen(0x00b6, 3) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080408 +packetLen(0x00b6, 8) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080401 +packetLen(0x00b6, 3) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080325 +packetLen(0x00b6, 16) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080318 +packetLen(0x00b6, 12) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x00b6, 4) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x00b6, 3) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080124 +packetLen(0x00b6, 14) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#endif + +// Packet: 0x00b7 +#if PACKETVER >= 20081203 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20081126 +packetLen(0x00b7, 26) // ZC_MENU_LIST +#elif PACKETVER >= 20081112 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20081029 +packetLen(0x00b7, 10) // ZC_MENU_LIST +#elif PACKETVER >= 20081022 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20081015 +packetLen(0x00b7, 22) // ZC_MENU_LIST +#elif PACKETVER >= 20081001 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080924 +packetLen(0x00b7, 6) // ZC_MENU_LIST +#elif PACKETVER >= 20080903 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080827 +packetLen(0x00b7, 6) // ZC_MENU_LIST +#elif PACKETVER >= 20080820 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080813 +packetLen(0x00b7, 6) // ZC_MENU_LIST +#elif PACKETVER >= 20080715 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080708 +packetLen(0x00b7, 21) // ZC_MENU_LIST +#elif PACKETVER >= 20080701 +packetLen(0x00b7, 22) // ZC_MENU_LIST +#elif PACKETVER >= 20080617 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080610 +packetLen(0x00b7, 2) // ZC_MENU_LIST +#elif PACKETVER >= 20080528 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080520 +packetLen(0x00b7, 58) // ZC_MENU_LIST +#elif PACKETVER >= 20080513 +packetLen(0x00b7, 6) // ZC_MENU_LIST +#elif PACKETVER >= 20080507 +packetLen(0x00b7, 20) // ZC_MENU_LIST +#elif PACKETVER >= 20080429 +packetLen(0x00b7, 2) // ZC_MENU_LIST +#elif PACKETVER >= 20080422 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080415 +packetLen(0x00b7, 5) // ZC_MENU_LIST +#elif PACKETVER >= 20080408 +packetLen(0x00b7, 14) // ZC_MENU_LIST +#elif PACKETVER >= 20080401 +packetLen(0x00b7, 8) // ZC_MENU_LIST +#elif PACKETVER >= 20080325 +packetLen(0x00b7, 6) // ZC_MENU_LIST +#elif PACKETVER >= 20080318 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080311 +packetLen(0x00b7, 42) // ZC_MENU_LIST +#elif PACKETVER >= 20080304 +packetLen(0x00b7, 13) // ZC_MENU_LIST +#elif PACKETVER >= 20080226 +packetLen(0x00b7, 32) // ZC_MENU_LIST +#elif PACKETVER >= 20080219 +packetLen(0x00b7, 3) // ZC_MENU_LIST +#elif PACKETVER >= 20080124 +packetLen(0x00b7, 21) // ZC_MENU_LIST +#elif PACKETVER >= 20080102 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#endif + +// Packet: 0x00b8 +#if PACKETVER >= 20081203 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20081126 +packetLen(0x00b8, 2) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20081112 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20081029 +packetLen(0x00b8, 44) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20081015 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20081008 +packetLen(0x00b8, 10) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20081001 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080924 +packetLen(0x00b8, 2) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080917 +packetLen(0x00b8, 3) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080820 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080813 +packetLen(0x00b8, 4) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080806 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080730 +packetLen(0x00b8, 14) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080708 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080701 +packetLen(0x00b8, 20) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080624 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080617 +packetLen(0x00b8, 9) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080610 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080603 +packetLen(0x00b8, 6) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080528 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080520 +packetLen(0x00b8, 53) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080513 +packetLen(0x00b8, 8) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080507 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080429 +packetLen(0x00b8, 4) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080422 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080415 +packetLen(0x00b8, 11) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080408 +packetLen(0x00b8, 9) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080401 +packetLen(0x00b8, 30) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080325 +packetLen(0x00b8, 5) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080318 +packetLen(0x00b8, 6) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080311 +packetLen(0x00b8, 16) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080304 +packetLen(0x00b8, 28) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080226 +packetLen(0x00b8, 5) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080219 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080124 +packetLen(0x00b8, 4) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080102 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU +#endif + +// Packet: 0x00b9 +#if PACKETVER >= 20081217 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20081203 +packetLen(0x00b9, 26) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20081112 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00b9, 2) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20081015 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20081008 +packetLen(0x00b9, 97) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20081001 +packetLen(0x00b9, 20) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080924 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080917 +packetLen(0x00b9, 60) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080813 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080806 +packetLen(0x00b9, 2) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080730 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080722 +packetLen(0x00b9, 22) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080701 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080624 +packetLen(0x00b9, 2) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080617 +packetLen(0x00b9, 9) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080610 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080603 +packetLen(0x00b9, 66) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080513 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080507 +packetLen(0x00b9, 30) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080429 +packetLen(0x00b9, 26) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080415 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080408 +packetLen(0x00b9, 2) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080401 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080325 +packetLen(0x00b9, 9) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080318 +packetLen(0x00b9, 11) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080311 +packetLen(0x00b9, 29) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080304 +packetLen(0x00b9, 10) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080226 +packetLen(0x00b9, 58) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080219 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080124 +packetLen(0x00b9, 8) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080102 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#endif + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +#if PACKETVER >= 20081112 +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20081029 +packetLen(0x00bb, 30) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20081022 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20081015 +packetLen(0x00bb, 11) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080903 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080827 +packetLen(0x00bb, 14) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080722 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080715 +packetLen(0x00bb, 3) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080701 +packetLen(0x00bb, 60) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x00bb, 4) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00bb, 36) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00bb, 6) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00bb, 10) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00bb, 13) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00bb, 55) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00bb, 6) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00bb, 3) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00bb, 20) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00bb, 2) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00bb, 182) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00bb, 12) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE +#endif + +// Packet: 0x00bc +#if PACKETVER >= 20081217 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20081203 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20081126 +packetLen(0x00bc, 4) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20081119 +packetLen(0x00bc, 7) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20081112 +packetLen(0x00bc, 26) // ZC_STATUS_CHANGE_ACK +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20081022 +packetLen(0x00bc, 4) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20081015 +packetLen(0x00bc, 8) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080910 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080903 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080827 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080820 +packetLen(0x00bc, 114) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080806 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080730 +packetLen(0x00bc, 53) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080722 +packetLen(0x00bc, 10) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080708 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080701 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080624 +packetLen(0x00bc, 4) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080617 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080603 +packetLen(0x00bc, 26) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080528 +packetLen(0x00bc, 14) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080520 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080513 +packetLen(0x00bc, 22) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080507 +packetLen(0x00bc, 14) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080429 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080422 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080415 +packetLen(0x00bc, 44) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080408 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080401 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080325 +packetLen(0x00bc, 11) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080318 +packetLen(0x00bc, 3) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00bc, 7) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00bc, 3) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080124 +packetLen(0x00bc, 14) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#endif + +// Packet: 0x00bd +#if PACKETVER >= 20081217 +packetLen(0x00bd, 14) // ZC_STATUS +#elif PACKETVER >= 20081203 +packetLen(0x00bd, 3) // ZC_STATUS +#elif PACKETVER >= 20081126 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20081119 +packetLen(0x00bd, 13) // ZC_STATUS +#elif PACKETVER >= 20081112 +packetLen(0x00bd, 44) // ZC_STATUS +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20081029 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20081022 +packetLen(0x00bd, 4) // ZC_STATUS +#elif PACKETVER >= 20081015 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20081008 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20081001 +packetLen(0x00bd, 23) // ZC_STATUS +#elif PACKETVER >= 20080924 +packetLen(0x00bd, 3) // ZC_STATUS +#elif PACKETVER >= 20080917 +packetLen(0x00bd, 10) // ZC_STATUS +#elif PACKETVER >= 20080910 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080903 +packetLen(0x00bd, 26) // ZC_STATUS +#elif PACKETVER >= 20080820 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080813 +packetLen(0x00bd, 90) // ZC_STATUS +#elif PACKETVER >= 20080715 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080708 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20080701 +packetLen(0x00bd, 60) // ZC_STATUS +#elif PACKETVER >= 20080624 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080617 +packetLen(0x00bd, 79) // ZC_STATUS +#elif PACKETVER >= 20080610 +packetLen(0x00bd, 18) // ZC_STATUS +#elif PACKETVER >= 20080603 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20080528 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080520 +packetLen(0x00bd, 26) // ZC_STATUS +#elif PACKETVER >= 20080513 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080507 +packetLen(0x00bd, 7) // ZC_STATUS +#elif PACKETVER >= 20080422 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080415 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20080401 +packetLen(0x00bd, 4) // ZC_STATUS +#elif PACKETVER >= 20080325 +packetLen(0x00bd, 7) // ZC_STATUS +#elif PACKETVER >= 20080318 +packetLen(0x00bd, 12) // ZC_STATUS +#elif PACKETVER >= 20080304 +packetLen(0x00bd, 2) // ZC_STATUS +#elif PACKETVER >= 20080226 +packetLen(0x00bd, 58) // ZC_STATUS +#elif PACKETVER >= 20080219 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20080124 +packetLen(0x00bd, 4) // ZC_STATUS +#elif PACKETVER >= 20080102 +packetLen(0x00bd, 44) // ZC_STATUS +#endif + +// Packet: 0x00be +#if PACKETVER >= 20081126 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20081119 +packetLen(0x00be, 2) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20081022 +packetLen(0x00be, 28) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20081001 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080924 +packetLen(0x00be, 19) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080903 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080827 +packetLen(0x00be, 6) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080820 +packetLen(0x00be, 10) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x00be, 65) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080806 +packetLen(0x00be, 3) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080730 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080722 +packetLen(0x00be, 17) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080715 +packetLen(0x00be, 30) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x00be, 2) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080701 +packetLen(0x00be, 6) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x00be, 57) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00be, 44) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00be, 3) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00be, 54) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00be, 8) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00be, 30) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00be, 4) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00be, 4) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00be, 11) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00be, 10) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +#endif + +// Packet: 0x00bf +#if PACKETVER >= 20081217 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20081203 +packetLen(0x00bf, 8) // CZ_REQ_EMOTION +#elif PACKETVER >= 20081119 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20081112 +packetLen(0x00bf, 22) // CZ_REQ_EMOTION +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20081029 +packetLen(0x00bf, 16) // CZ_REQ_EMOTION +#elif PACKETVER >= 20081022 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20081015 +packetLen(0x00bf, 21) // CZ_REQ_EMOTION +#elif PACKETVER >= 20081008 +packetLen(0x00bf, 7) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080924 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080917 +packetLen(0x00bf, 8) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080910 +packetLen(0x00bf, 44) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080827 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080820 +packetLen(0x00bf, 6) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080813 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080806 +packetLen(0x00bf, 8) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080722 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080715 +packetLen(0x00bf, 4) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080708 +packetLen(0x00bf, 54) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080610 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080603 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080528 +packetLen(0x00bf, 65) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080520 +packetLen(0x00bf, 8) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080513 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080507 +packetLen(0x00bf, 11) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080429 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080422 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080408 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080401 +packetLen(0x00bf, 32) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080325 +packetLen(0x00bf, 60) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080304 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080226 +packetLen(0x00bf, 29) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080219 +packetLen(0x00bf, 12) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080124 +packetLen(0x00bf, 6) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080102 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#endif + +// Packet: 0x00c0 +#if PACKETVER >= 20081217 +packetLen(0x00c0, 54) // ZC_EMOTION +#elif PACKETVER >= 20081203 +packetLen(0x00c0, 5) // ZC_EMOTION +#elif PACKETVER >= 20081126 +packetLen(0x00c0, 6) // ZC_EMOTION +#elif PACKETVER >= 20081119 +packetLen(0x00c0, 2) // ZC_EMOTION +#elif PACKETVER >= 20081112 +packetLen(0x00c0, 7) // ZC_EMOTION +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20081022 +packetLen(0x00c0, 36) // ZC_EMOTION +#elif PACKETVER >= 20081015 +packetLen(0x00c0, 182) // ZC_EMOTION +#elif PACKETVER >= 20080827 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080820 +packetLen(0x00c0, 79) // ZC_EMOTION +#elif PACKETVER >= 20080813 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080806 +packetLen(0x00c0, 3) // ZC_EMOTION +#elif PACKETVER >= 20080730 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080722 +packetLen(0x00c0, 6) // ZC_EMOTION +#elif PACKETVER >= 20080715 +packetLen(0x00c0, 4) // ZC_EMOTION +#elif PACKETVER >= 20080708 +packetLen(0x00c0, 6) // ZC_EMOTION +#elif PACKETVER >= 20080701 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080624 +packetLen(0x00c0, 10) // ZC_EMOTION +#elif PACKETVER >= 20080617 +packetLen(0x00c0, 60) // ZC_EMOTION +#elif PACKETVER >= 20080610 +packetLen(0x00c0, 39) // ZC_EMOTION +#elif PACKETVER >= 20080603 +packetLen(0x00c0, 26) // ZC_EMOTION +#elif PACKETVER >= 20080528 +packetLen(0x00c0, 30) // ZC_EMOTION +#elif PACKETVER >= 20080520 +packetLen(0x00c0, 2) // ZC_EMOTION +#elif PACKETVER >= 20080513 +packetLen(0x00c0, 186) // ZC_EMOTION +#elif PACKETVER >= 20080507 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080429 +packetLen(0x00c0, 13) // ZC_EMOTION +#elif PACKETVER >= 20080422 +packetLen(0x00c0, 9) // ZC_EMOTION +#elif PACKETVER >= 20080415 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080408 +packetLen(0x00c0, 7) // ZC_EMOTION +#elif PACKETVER >= 20080401 +packetLen(0x00c0, 2) // ZC_EMOTION +#elif PACKETVER >= 20080325 +packetLen(0x00c0, 10) // ZC_EMOTION +#elif PACKETVER >= 20080318 +packetLen(0x00c0, 26) // ZC_EMOTION +#elif PACKETVER >= 20080304 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080226 +packetLen(0x00c0, 21) // ZC_EMOTION +#elif PACKETVER >= 20080219 +packetLen(0x00c0, 6) // ZC_EMOTION +#elif PACKETVER >= 20080124 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20080102 +packetLen(0x00c0, 7) // ZC_EMOTION +#endif + +// Packet: 0x00c1 +#if PACKETVER >= 20081112 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00c1, 9) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20081015 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20081008 +packetLen(0x00c1, 26) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20081001 +packetLen(0x00c1, 6) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080924 +packetLen(0x00c1, 21) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080917 +packetLen(0x00c1, 8) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080903 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080827 +packetLen(0x00c1, 66) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080820 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080813 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080806 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080730 +packetLen(0x00c1, 186) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080715 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080708 +packetLen(0x00c1, 29) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080701 +packetLen(0x00c1, 6) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080610 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080603 +packetLen(0x00c1, 81) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080507 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080422 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080415 +packetLen(0x00c1, 57) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080401 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080325 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080318 +packetLen(0x00c1, 4) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080311 +packetLen(0x00c1, 16) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080304 +packetLen(0x00c1, 9) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080226 +packetLen(0x00c1, 6) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080219 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080124 +packetLen(0x00c1, 282) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080102 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#endif + +// Packet: 0x00c2 +#if PACKETVER >= 20081203 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20081126 +packetLen(0x00c2, 2) // ZC_USER_COUNT +#elif PACKETVER >= 20081119 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20081112 +packetLen(0x00c2, 10) // ZC_USER_COUNT +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20081015 +packetLen(0x00c2, 5) // ZC_USER_COUNT +#elif PACKETVER >= 20081001 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080917 +packetLen(0x00c2, 6) // ZC_USER_COUNT +#elif PACKETVER >= 20080910 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080903 +packetLen(0x00c2, 26) // ZC_USER_COUNT +#elif PACKETVER >= 20080827 +packetLen(0x00c2, 17) // ZC_USER_COUNT +#elif PACKETVER >= 20080820 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080813 +packetLen(0x00c2, 14) // ZC_USER_COUNT +#elif PACKETVER >= 20080701 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080624 +packetLen(0x00c2, 8) // ZC_USER_COUNT +#elif PACKETVER >= 20080617 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080610 +packetLen(0x00c2, 2) // ZC_USER_COUNT +#elif PACKETVER >= 20080603 +packetLen(0x00c2, 90) // ZC_USER_COUNT +#elif PACKETVER >= 20080507 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080429 +packetLen(0x00c2, 16) // ZC_USER_COUNT +#elif PACKETVER >= 20080422 +packetLen(0x00c2, 4) // ZC_USER_COUNT +#elif PACKETVER >= 20080415 +packetLen(0x00c2, 5) // ZC_USER_COUNT +#elif PACKETVER >= 20080408 +packetLen(0x00c2, 2) // ZC_USER_COUNT +#elif PACKETVER >= 20080401 +packetLen(0x00c2, 26) // ZC_USER_COUNT +#elif PACKETVER >= 20080325 +packetLen(0x00c2, 10) // ZC_USER_COUNT +#elif PACKETVER >= 20080318 +packetLen(0x00c2, 54) // ZC_USER_COUNT +#elif PACKETVER >= 20080311 +packetLen(0x00c2, 4) // ZC_USER_COUNT +#elif PACKETVER >= 20080304 +packetLen(0x00c2, 39) // ZC_USER_COUNT +#elif PACKETVER >= 20080226 +packetLen(0x00c2, 282) // ZC_USER_COUNT +#elif PACKETVER >= 20080219 +packetLen(0x00c2, 4) // ZC_USER_COUNT +#elif PACKETVER >= 20080124 +packetLen(0x00c2, 3) // ZC_USER_COUNT +#elif PACKETVER >= 20080102 +packetLen(0x00c2, 6) // ZC_USER_COUNT +#endif + +// Packet: 0x00c3 +#if PACKETVER >= 20081217 +packetLen(0x00c3, 5) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00c3, 10) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20081029 +packetLen(0x00c3, 2) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20081015 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20081008 +packetLen(0x00c3, 24) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080917 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080910 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080903 +packetLen(0x00c3, 22) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080806 +packetLen(0x00c3, 6) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080715 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x00c3, 9) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080701 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x00c3, 3) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00c3, 42) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00c3, 10) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00c3, 4) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00c3, 66) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00c3, 3) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00c3, 68) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00c3, 26) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00c3, 28) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00c3, 10) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +#endif + +// Packet: 0x00c4 +#if PACKETVER >= 20081203 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20081126 +packetLen(0x00c4, 15) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20081119 +packetLen(0x00c4, 71) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20081112 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20081029 +packetLen(0x00c4, 67) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20081022 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20081015 +packetLen(0x00c4, 26) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20081008 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20081001 +packetLen(0x00c4, 10) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080924 +packetLen(0x00c4, 26) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080917 +packetLen(0x00c4, 5) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080806 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080730 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080722 +packetLen(0x00c4, 7) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080715 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080708 +packetLen(0x00c4, 186) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080701 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080624 +packetLen(0x00c4, 14) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080617 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080603 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080528 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080520 +packetLen(0x00c4, 2) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080513 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080507 +packetLen(0x00c4, 29) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080429 +packetLen(0x00c4, 71) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080422 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080415 +packetLen(0x00c4, 11) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080408 +packetLen(0x00c4, 2) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080401 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080325 +packetLen(0x00c4, 3) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080318 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080304 +packetLen(0x00c4, 4) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080226 +packetLen(0x00c4, 114) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080219 +packetLen(0x00c4, 2) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080124 +packetLen(0x00c4, 4) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080102 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#endif + +// Packet: 0x00c5 +#if PACKETVER >= 20081217 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20081203 +packetLen(0x00c5, 16) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20081112 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20081029 +packetLen(0x00c5, 8) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20081022 +packetLen(0x00c5, 5) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20081015 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20081008 +packetLen(0x00c5, 28) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20081001 +packetLen(0x00c5, 8) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080924 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080917 +packetLen(0x00c5, 6) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080827 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080820 +packetLen(0x00c5, 2) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080806 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080730 +packetLen(0x00c5, 4) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080722 +packetLen(0x00c5, 30) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080715 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080708 +packetLen(0x00c5, 16) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080624 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080617 +packetLen(0x00c5, 9) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080610 +packetLen(0x00c5, 114) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080603 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080528 +packetLen(0x00c5, 10) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080520 +packetLen(0x00c5, 4) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080513 +packetLen(0x00c5, 6) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080507 +packetLen(0x00c5, 8) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080429 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080422 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080401 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080325 +packetLen(0x00c5, 30) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080318 +packetLen(0x00c5, 3) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080311 +packetLen(0x00c5, 9) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080124 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080102 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE +#endif + +// Packet: 0x00c6 +#if PACKETVER >= 20081126 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20081119 +packetLen(0x00c6, 6) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20081112 +packetLen(0x00c6, 14) // ZC_PC_PURCHASE_ITEMLIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081015 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20081008 +packetLen(0x00c6, 5) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x00c6, 19) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x00c6, 6) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x00c6, 18) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x00c6, 11) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x00c6, 26) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00c6, 8) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00c6, 8) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00c6, 21) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x00c6, 4) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00c6, 31) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c6, 5) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c6, 13) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c6, 3) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#endif + +// Packet: 0x00c7 +#if PACKETVER >= 20081126 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081119 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081112 +packetLen(0x00c7, 10) // ZC_PC_SELL_ITEMLIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x00c7, 2) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081015 +packetLen(0x00c7, 15) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081008 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081001 +packetLen(0x00c7, 13) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080924 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x00c7, 14) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x00c7, 10) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080820 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x00c7, 26) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x00c7, 18) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x00c7, 27) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x00c7, 182) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00c7, 3) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00c7, 22) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00c7, 4) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x00c7, 53) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x00c7, 26) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00c7, 58) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00c7, 90) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c7, 67) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c7, 5) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c7, 90) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00c7, 6) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#endif + +// Packet: 0x00c8 +#if PACKETVER >= 20081105 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20081029 +packetLen(0x00c8, 6) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x00c8, 8) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x00c8, 6) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x00c8, 3) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x00c8, 11) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x00c8, 20) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x00c8, 11) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x00c8, 2) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00c8, 4) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00c8, 15) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x00c8, 6) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x00c8, 66) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00c8, 2) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00c8, 14) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c8, 53) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c8, 10) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00c8, 6) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#endif + +// Packet: 0x00c9 +#if PACKETVER >= 20081119 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081112 +packetLen(0x00c9, 3) // CZ_PC_SELL_ITEMLIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00c9, 9) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081029 +packetLen(0x00c9, 26) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081015 +packetLen(0x00c9, 30) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081008 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20081001 +packetLen(0x00c9, 7) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080924 +packetLen(0x00c9, 4) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x00c9, 14) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080820 +packetLen(0x00c9, 2) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x00c9, 3) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x00c9, 8) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x00c9, 29) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x00c9, 14) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x00c9, 39) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x00c9, 36) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00c9, 9) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x00c9, 30) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x00c9, 10) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00c9, 6) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c9, 6) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c9, 10) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x00c9, 5) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#endif + +// Packet: 0x00ca +#if PACKETVER >= 20081126 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20081119 +packetLen(0x00ca, 29) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20081112 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20081029 +packetLen(0x00ca, 2) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20081015 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20081008 +packetLen(0x00ca, 4) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20081001 +packetLen(0x00ca, 10) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080924 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080917 +packetLen(0x00ca, 30) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080903 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080827 +packetLen(0x00ca, 30) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080820 +packetLen(0x00ca, 86) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080813 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080806 +packetLen(0x00ca, 2) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080715 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080708 +packetLen(0x00ca, 8) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080610 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080603 +packetLen(0x00ca, 31) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080513 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080507 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080429 +packetLen(0x00ca, 7) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080422 +packetLen(0x00ca, 6) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080415 +packetLen(0x00ca, 17) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080408 +packetLen(0x00ca, 14) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080401 +packetLen(0x00ca, 2) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080325 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080318 +packetLen(0x00ca, 4) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080311 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080304 +packetLen(0x00ca, 9) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080226 +packetLen(0x00ca, 23) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080219 +packetLen(0x00ca, 86) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080124 +packetLen(0x00ca, 36) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080102 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#endif + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +#if PACKETVER >= 20081217 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20081203 +packetLen(0x00cc, 4) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20081126 +packetLen(0x00cc, 14) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20081112 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20081029 +packetLen(0x00cc, 10) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20081022 +packetLen(0x00cc, 15) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20081001 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080924 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080903 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080827 +packetLen(0x00cc, 10) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080813 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080806 +packetLen(0x00cc, 33) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080730 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080708 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080701 +packetLen(0x00cc, 33) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080617 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080610 +packetLen(0x00cc, 28) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080603 +packetLen(0x00cc, 2) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080520 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080513 +packetLen(0x00cc, 26) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080507 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080429 +packetLen(0x00cc, 10) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080422 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080415 +packetLen(0x00cc, 2) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080401 +packetLen(0x00cc, 3) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080325 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080318 +packetLen(0x00cc, 10) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080311 +packetLen(0x00cc, 14) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080304 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080226 +packetLen(0x00cc, 7) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080124 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080102 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#endif + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +#if PACKETVER >= 20081217 +packetLen(0x00ce, 8) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20081112 +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00ce, 282) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20081022 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20081015 +packetLen(0x00ce, 6) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20081008 +packetLen(0x00ce, 8) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20081001 +packetLen(0x00ce, 6) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080924 +packetLen(0x00ce, 9) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080917 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080910 +packetLen(0x00ce, 5) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080903 +packetLen(0x00ce, 53) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080820 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080813 +packetLen(0x00ce, 60) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080806 +packetLen(0x00ce, 15) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080730 +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080722 +packetLen(0x00ce, 8) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080715 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080708 +packetLen(0x00ce, 8) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080701 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080624 +packetLen(0x00ce, 4) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080617 +packetLen(0x00ce, 11) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080610 +packetLen(0x00ce, 22) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080603 +packetLen(0x00ce, 102) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080528 +packetLen(0x00ce, 11) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080520 +packetLen(0x00ce, 3) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080513 +packetLen(0x00ce, 9) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080507 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080429 +packetLen(0x00ce, 114) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080422 +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080415 +packetLen(0x00ce, 10) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080408 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080401 +packetLen(0x00ce, 30) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080325 +packetLen(0x00ce, 10) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080318 +packetLen(0x00ce, 7) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080311 +packetLen(0x00ce, 10) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080304 +packetLen(0x00ce, 8) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080226 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080124 +packetLen(0x00ce, 6) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080102 +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER +#endif + +// Packet: 0x00cf +#if PACKETVER >= 20081126 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20081119 +packetLen(0x00cf, 5) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20081112 +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20081022 +packetLen(0x00cf, 5) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20081015 +packetLen(0x00cf, 4) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20081008 +packetLen(0x00cf, 6) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080924 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080917 +packetLen(0x00cf, 90) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080910 +packetLen(0x00cf, 30) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080827 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080820 +packetLen(0x00cf, 2) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080730 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080722 +packetLen(0x00cf, 7) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080624 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080617 +packetLen(0x00cf, 30) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080610 +packetLen(0x00cf, 57) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080603 +packetLen(0x00cf, 6) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080528 +packetLen(0x00cf, 5) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080520 +packetLen(0x00cf, 8) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080513 +packetLen(0x00cf, 2) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080507 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080429 +packetLen(0x00cf, 5) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080422 +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080415 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080408 +packetLen(0x00cf, 6) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080401 +packetLen(0x00cf, 60) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080325 +packetLen(0x00cf, 2) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080318 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080311 +packetLen(0x00cf, 6) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080304 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080226 +packetLen(0x00cf, 16) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080219 +packetLen(0x00cf, 9) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080124 +packetLen(0x00cf, 11) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080102 +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC +#endif + +// Packet: 0x00d0 +#if PACKETVER >= 20081112 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00d0, 6) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081029 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081022 +packetLen(0x00d0, 6) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081001 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080924 +packetLen(0x00d0, 29) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080917 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080910 +packetLen(0x00d0, 10) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080903 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080827 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080820 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080813 +packetLen(0x00d0, 55) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080806 +packetLen(0x00d0, 60) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080730 +packetLen(0x00d0, 11) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080722 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080715 +packetLen(0x00d0, 6) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080708 +packetLen(0x00d0, 68) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080610 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080603 +packetLen(0x00d0, 10) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080528 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080520 +packetLen(0x00d0, 30) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080513 +packetLen(0x00d0, 114) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080507 +packetLen(0x00d0, 14) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080429 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080422 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080415 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080408 +packetLen(0x00d0, 4) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080401 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080325 +packetLen(0x00d0, 8) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080318 +packetLen(0x00d0, 14) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080311 +packetLen(0x00d0, 10) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080226 +packetLen(0x00d0, 2) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080219 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080124 +packetLen(0x00d0, 182) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080102 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#endif + +// Packet: 0x00d1 +#if PACKETVER >= 20081217 +packetLen(0x00d1, 16) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20081203 +packetLen(0x00d1, 8) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20081126 +packetLen(0x00d1, 11) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20081119 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20081112 +packetLen(0x00d1, 282) // ZC_SETTING_WHISPER_PC +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00d1, 23) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20081022 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20081015 +packetLen(0x00d1, 3) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20081008 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20081001 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080924 +packetLen(0x00d1, 9) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080820 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080813 +packetLen(0x00d1, 11) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080806 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080730 +packetLen(0x00d1, 53) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080708 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080701 +packetLen(0x00d1, 26) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080624 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080610 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080603 +packetLen(0x00d1, 5) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080528 +packetLen(0x00d1, 10) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080520 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080513 +packetLen(0x00d1, 54) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080507 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080429 +packetLen(0x00d1, 3) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080422 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080415 +packetLen(0x00d1, 43) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080408 +packetLen(0x00d1, 67) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080401 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080325 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080318 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080304 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080226 +packetLen(0x00d1, 10) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080219 +packetLen(0x00d1, 13) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080124 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080102 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC +#endif + +// Packet: 0x00d2 +#if PACKETVER >= 20081217 +packetLen(0x00d2, 8) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081203 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081126 +packetLen(0x00d2, 2) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081119 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081112 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081105 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081008 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20081001 +packetLen(0x00d2, 10) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080924 +packetLen(0x00d2, 15) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080917 +packetLen(0x00d2, 30) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080910 +packetLen(0x00d2, 2) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080903 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080827 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080820 +packetLen(0x00d2, 9) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080813 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080806 +packetLen(0x00d2, 2) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080730 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080722 +packetLen(0x00d2, 30) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080708 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080701 +packetLen(0x00d2, 16) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080610 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080603 +packetLen(0x00d2, 7) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080528 +packetLen(0x00d2, 11) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080520 +packetLen(0x00d2, 9) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080513 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080507 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080422 +packetLen(0x00d2, 10) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080415 +packetLen(0x00d2, 8) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080408 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080401 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080325 +packetLen(0x00d2, 7) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080318 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080311 +packetLen(0x00d2, 30) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080304 +packetLen(0x00d2, 16) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080226 +packetLen(0x00d2, 14) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080219 +packetLen(0x00d2, 20) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080102 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE +#endif + +// Packet: 0x00d3 +#if PACKETVER >= 20081217 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20081203 +packetLen(0x00d3, 10) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20081126 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20081119 +packetLen(0x00d3, 4) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20081112 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081015 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20081008 +packetLen(0x00d3, 8) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20081001 +packetLen(0x00d3, 18) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080924 +packetLen(0x00d3, 10) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080917 +packetLen(0x00d3, 35) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080813 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080806 +packetLen(0x00d3, 3) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080730 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080722 +packetLen(0x00d3, 7) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080715 +packetLen(0x00d3, 23) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080701 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080624 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080603 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080528 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080520 +packetLen(0x00d3, 3) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080513 +packetLen(0x00d3, 26) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080429 +packetLen(0x00d3, 3) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080422 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080415 +packetLen(0x00d3, 20) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080408 +packetLen(0x00d3, 19) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080401 +packetLen(0x00d3, 33) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080325 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080318 +packetLen(0x00d3, 12) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080311 +packetLen(0x00d3, 14) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080226 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080219 +packetLen(0x00d3, 26) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080124 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080102 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#endif + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +#if PACKETVER >= 20081217 +packetLen(0x00d5, 58) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20081203 +packetLen(0x00d5, 6) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20081126 +packetLen(0x00d5, 19) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20081119 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20081112 +packetLen(0x00d5, 6) // CZ_CREATE_CHATROOM +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20081029 +packetLen(0x00d5, 2) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20081022 +packetLen(0x00d5, 26) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20081015 +packetLen(0x00d5, 6) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20081008 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20081001 +packetLen(0x00d5, 2) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080820 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080813 +packetLen(0x00d5, 29) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080730 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080722 +packetLen(0x00d5, 10) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080715 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080708 +packetLen(0x00d5, 10) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080701 +packetLen(0x00d5, 7) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080603 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080528 +packetLen(0x00d5, 81) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080513 +packetLen(0x00d5, 8) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080507 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080429 +packetLen(0x00d5, 26) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080415 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080408 +packetLen(0x00d5, 60) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080401 +packetLen(0x00d5, 21) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080325 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080318 +packetLen(0x00d5, 114) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d5, 2) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d5, 3) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d5, 10) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080124 +packetLen(0x00d5, 7) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#endif + +// Packet: 0x00d6 +#if PACKETVER >= 20081217 +packetLen(0x00d6, 6) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20081203 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20081126 +packetLen(0x00d6, 10) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20081119 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20081112 +packetLen(0x00d6, 16) // ZC_ACK_CREATE_CHATROOM +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00d6, 6) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20081029 +packetLen(0x00d6, 11) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20081022 +packetLen(0x00d6, 8) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20081015 +packetLen(0x00d6, 7) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20081008 +packetLen(0x00d6, 8) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080924 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080917 +packetLen(0x00d6, 27) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080903 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080827 +packetLen(0x00d6, 7) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080820 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080813 +packetLen(0x00d6, 86) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080730 +packetLen(0x00d6, 2) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080715 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080708 +packetLen(0x00d6, 6) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080701 +packetLen(0x00d6, 15) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080624 +packetLen(0x00d6, 6) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080617 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080610 +packetLen(0x00d6, 26) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080603 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080528 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080520 +packetLen(0x00d6, 26) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080513 +packetLen(0x00d6, 16) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080429 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080422 +packetLen(0x00d6, 282) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080415 +packetLen(0x00d6, 21) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080408 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080401 +packetLen(0x00d6, 10) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080325 +packetLen(0x00d6, 58) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080318 +packetLen(0x00d6, 6) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d6, 8) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d6, 68) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d6, 30) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080124 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#endif + +// Packet: 0x00d7 +#if PACKETVER >= 20081126 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20081119 +packetLen(0x00d7, 22) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20081112 +packetLen(0x00d7, 27) // ZC_ROOM_NEWENTRY +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20081015 +packetLen(0x00d7, 35) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20081008 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20081001 +packetLen(0x00d7, 28) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080924 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080917 +packetLen(0x00d7, 10) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080903 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080827 +packetLen(0x00d7, 2) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080820 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080813 +packetLen(0x00d7, 9) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080806 +packetLen(0x00d7, 2) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080730 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080722 +packetLen(0x00d7, 10) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080708 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080701 +packetLen(0x00d7, 10) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080624 +packetLen(0x00d7, 26) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080603 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080528 +packetLen(0x00d7, 8) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080520 +packetLen(0x00d7, 9) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080513 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080507 +packetLen(0x00d7, 39) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080408 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080401 +packetLen(0x00d7, 8) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080325 +packetLen(0x00d7, 5) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080318 +packetLen(0x00d7, 4) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080311 +packetLen(0x00d7, 67) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080304 +packetLen(0x00d7, 24) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080226 +packetLen(0x00d7, 28) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080219 +packetLen(0x00d7, 3) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080124 +packetLen(0x00d7, 8) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080102 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#endif + +// Packet: 0x00d8 +#if PACKETVER >= 20081217 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20081203 +packetLen(0x00d8, 3) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20081126 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20081119 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20081112 +packetLen(0x00d8, 28) // ZC_DESTROY_ROOM +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00d8, 26) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20081029 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20081008 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20081001 +packetLen(0x00d8, 2) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080910 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080903 +packetLen(0x00d8, 7) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080722 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080715 +packetLen(0x00d8, 57) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080617 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00d8, 30) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080603 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080528 +packetLen(0x00d8, 5) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080520 +packetLen(0x00d8, 7) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080513 +packetLen(0x00d8, 53) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080507 +packetLen(0x00d8, 17) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080415 +packetLen(0x00d8, 9) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080408 +packetLen(0x00d8, 26) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00d8, 2) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080318 +packetLen(0x00d8, 30) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d8, 2) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d8, 16) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d8, 2) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080124 +packetLen(0x00d8, 4) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM +#endif + +// Packet: 0x00d9 +#if PACKETVER >= 20081217 +packetLen(0x00d9, 55) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20081112 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081015 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20081008 +packetLen(0x00d9, 4) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080917 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080910 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080827 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080820 +packetLen(0x00d9, 10) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080813 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080806 +packetLen(0x00d9, 8) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080730 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080722 +packetLen(0x00d9, 26) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080715 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080708 +packetLen(0x00d9, 28) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080603 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080528 +packetLen(0x00d9, 4) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080520 +packetLen(0x00d9, 5) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080513 +packetLen(0x00d9, 10) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080507 +packetLen(0x00d9, 3) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080429 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080401 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080318 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d9, 7) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d9, 3) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080124 +packetLen(0x00d9, 282) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#endif + +// Packet: 0x00da +#if PACKETVER >= 20081217 +packetLen(0x00da, 21) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20081126 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20081119 +packetLen(0x00da, 2) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20081112 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20081029 +packetLen(0x00da, 8) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20081022 +packetLen(0x00da, 28) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20081008 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20081001 +packetLen(0x00da, 19) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080924 +packetLen(0x00da, 90) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080917 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080910 +packetLen(0x00da, 6) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080820 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080813 +packetLen(0x00da, 26) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080806 +packetLen(0x00da, 6) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080730 +packetLen(0x00da, 10) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080722 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080715 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080708 +packetLen(0x00da, 19) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080701 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080624 +packetLen(0x00da, 53) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080603 +packetLen(0x00da, 24) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080513 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080507 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080415 +packetLen(0x00da, 6) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080408 +packetLen(0x00da, 31) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080401 +packetLen(0x00da, 13) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080318 +packetLen(0x00da, 30) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00da, 8) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00da, 14) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00da, 54) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080124 +packetLen(0x00da, 18) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +#endif + +// Packet: 0x00db +#if PACKETVER >= 20081217 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20081203 +packetLen(0x00db, 6) // ZC_ENTER_ROOM +#elif PACKETVER >= 20081112 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20081105 +packetLen(0x00db, 28) // ZC_ENTER_ROOM +#elif PACKETVER >= 20081029 +packetLen(0x00db, 14) // ZC_ENTER_ROOM +#elif PACKETVER >= 20081022 +packetLen(0x00db, 6) // ZC_ENTER_ROOM +#elif PACKETVER >= 20081015 +packetLen(0x00db, 2) // ZC_ENTER_ROOM +#elif PACKETVER >= 20081008 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20081001 +packetLen(0x00db, 4) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080917 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080910 +packetLen(0x00db, 28) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080827 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080820 +packetLen(0x00db, 6) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080730 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080722 +packetLen(0x00db, 23) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080715 +packetLen(0x00db, 7) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080708 +packetLen(0x00db, 10) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080701 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080624 +packetLen(0x00db, 7) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080603 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080528 +packetLen(0x00db, 3) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080520 +packetLen(0x00db, 4) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080513 +packetLen(0x00db, 30) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080429 +packetLen(0x00db, 2) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00db, 67) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080415 +packetLen(0x00db, 33) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080408 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080401 +packetLen(0x00db, 18) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00db, 2) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00db, 6) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00db, 31) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00db, 26) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00db, 4) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#endif + +// Packet: 0x00dc +#if PACKETVER >= 20081112 +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00dc, 5) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20081029 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20081022 +packetLen(0x00dc, 5) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20081015 +packetLen(0x00dc, 7) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20081008 +packetLen(0x00dc, 33) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080917 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080910 +packetLen(0x00dc, 15) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080903 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080827 +packetLen(0x00dc, 7) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080820 +packetLen(0x00dc, 2) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080806 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080730 +packetLen(0x00dc, 10) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080722 +packetLen(0x00dc, 5) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080715 +packetLen(0x00dc, 4) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080708 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080701 +packetLen(0x00dc, 6) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080617 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080610 +packetLen(0x00dc, 2) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080603 +packetLen(0x00dc, 11) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080528 +packetLen(0x00dc, 27) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080520 +packetLen(0x00dc, 30) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080513 +packetLen(0x00dc, 12) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080429 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080422 +packetLen(0x00dc, 32) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080415 +packetLen(0x00dc, 6) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080408 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080401 +packetLen(0x00dc, 30) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080325 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080318 +packetLen(0x00dc, 29) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080311 +packetLen(0x00dc, 6) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080304 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080226 +packetLen(0x00dc, 3) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080219 +packetLen(0x00dc, 29) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080124 +packetLen(0x00dc, 13) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080102 +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY +#endif + +// Packet: 0x00dd +#if PACKETVER >= 20081217 +packetLen(0x00dd, 30) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20081203 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20081126 +packetLen(0x00dd, 97) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20081119 +packetLen(0x00dd, 6) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20081112 +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00dd, 26) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20081008 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20081001 +packetLen(0x00dd, 282) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080924 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080917 +packetLen(0x00dd, 3) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080910 +packetLen(0x00dd, 10) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080903 +packetLen(0x00dd, 4) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080827 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080820 +packetLen(0x00dd, 2) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080813 +packetLen(0x00dd, 282) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080806 +packetLen(0x00dd, 10) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080722 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080715 +packetLen(0x00dd, 67) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080708 +packetLen(0x00dd, 11) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080701 +packetLen(0x00dd, 6) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080610 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080603 +packetLen(0x00dd, 20) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080528 +packetLen(0x00dd, 7) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080520 +packetLen(0x00dd, 28) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080429 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080422 +packetLen(0x00dd, 28) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080415 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080408 +packetLen(0x00dd, 15) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080325 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080318 +packetLen(0x00dd, 22) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080311 +packetLen(0x00dd, 10) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080304 +packetLen(0x00dd, 6) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080226 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080219 +packetLen(0x00dd, 3) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080124 +packetLen(0x00dd, 8) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080102 +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT +#endif + +// Packet: 0x00de +#if PACKETVER >= 20081217 +packetLen(0x00de, 13) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081203 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081126 +packetLen(0x00de, 27) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081119 +packetLen(0x00de, 44) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081112 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081105 +packetLen(0x00de, 16) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081029 +packetLen(0x00de, 67) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081022 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081015 +packetLen(0x00de, 8) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081008 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20081001 +packetLen(0x00de, 4) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080924 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080917 +packetLen(0x00de, 6) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080903 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080827 +packetLen(0x00de, 15) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080820 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080813 +packetLen(0x00de, 67) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080806 +packetLen(0x00de, 6) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080730 +packetLen(0x00de, 34) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080722 +packetLen(0x00de, 57) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080715 +packetLen(0x00de, 26) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080708 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080701 +packetLen(0x00de, 5) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080624 +packetLen(0x00de, 54) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080603 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080528 +packetLen(0x00de, 57) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080520 +packetLen(0x00de, 4) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080513 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080507 +packetLen(0x00de, 15) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080429 +packetLen(0x00de, 11) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080415 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080408 +packetLen(0x00de, 18) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080401 +packetLen(0x00de, 5) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080325 +packetLen(0x00de, 6) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080318 +packetLen(0x00de, 8) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00de, 6) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00de, 34) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080124 +packetLen(0x00de, 3) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#endif + +// Packet: 0x00df +#if PACKETVER >= 20081217 +packetLen(0x00df, 22) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20081203 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20081126 +packetLen(0x00df, 86) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20081119 +packetLen(0x00df, 53) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20081029 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20081022 +packetLen(0x00df, 4) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080903 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080827 +packetLen(0x00df, 6) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080813 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080806 +packetLen(0x00df, 6) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080730 +packetLen(0x00df, 3) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080722 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080715 +packetLen(0x00df, 10) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080708 +packetLen(0x00df, 29) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080701 +packetLen(0x00df, 34) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080624 +packetLen(0x00df, 11) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080617 +packetLen(0x00df, 30) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080610 +packetLen(0x00df, 10) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080603 +packetLen(0x00df, 4) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080528 +packetLen(0x00df, 90) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080520 +packetLen(0x00df, 23) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080513 +packetLen(0x00df, 6) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080507 +packetLen(0x00df, 3) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080429 +packetLen(0x00df, 8) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080422 +packetLen(0x00df, 12) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080415 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080408 +packetLen(0x00df, 282) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080401 +packetLen(0x00df, 3) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080325 +packetLen(0x00df, 5) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080318 +packetLen(0x00df, 23) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00df, 9) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00df, 7) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080124 +packetLen(0x00df, 27) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#endif + +// Packet: 0x00e0 +#if PACKETVER >= 20081203 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20081126 +packetLen(0x00e0, 6) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20081119 +packetLen(0x00e0, 5) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081015 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20081008 +packetLen(0x00e0, 9) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080924 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080917 +packetLen(0x00e0, 58) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080910 +packetLen(0x00e0, 3) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080903 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080827 +packetLen(0x00e0, 15) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080820 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080806 +packetLen(0x00e0, 4) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080715 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x00e0, 16) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080701 +packetLen(0x00e0, 9) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00e0, 6) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x00e0, 10) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00e0, 4) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00e0, 21) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00e0, 71) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00e0, 7) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00e0, 43) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00e0, 31) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00e0, 18) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE +#endif + +// Packet: 0x00e1 +#if PACKETVER >= 20081203 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20081126 +packetLen(0x00e1, 2) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20081119 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x00e1, 59) // ZC_ROLE_CHANGE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00e1, 28) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20081022 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20081015 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20081008 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20081001 +packetLen(0x00e1, 10) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080924 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080917 +packetLen(0x00e1, 6) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080910 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080903 +packetLen(0x00e1, 23) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080827 +packetLen(0x00e1, 11) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080806 +packetLen(0x00e1, 8) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080722 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080715 +packetLen(0x00e1, 21) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x00e1, 10) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x00e1, 2) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x00e1, 20) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x00e1, 4) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x00e1, 6) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x00e1, 43) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x00e1, 2) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x00e1, 60) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x00e1, 22) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x00e1, 21) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00e1, 2) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00e1, 60) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00e1, 81) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x00e1, 12) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE +#endif + +// Packet: 0x00e2 +#if PACKETVER >= 20081217 +packetLen(0x00e2, 8) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20081126 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20081119 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20081112 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20081029 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20081022 +packetLen(0x00e2, 2) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20081008 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20081001 +packetLen(0x00e2, 3) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080910 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080903 +packetLen(0x00e2, 11) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080820 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080813 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080806 +packetLen(0x00e2, 10) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080730 +packetLen(0x00e2, 27) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080722 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080715 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080708 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080624 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080617 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080610 +packetLen(0x00e2, 282) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080603 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080528 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080520 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080513 +packetLen(0x00e2, 2) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080507 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080429 +packetLen(0x00e2, 6) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080422 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080415 +packetLen(0x00e2, 282) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080408 +packetLen(0x00e2, 11) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080401 +packetLen(0x00e2, 5) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080325 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080318 +packetLen(0x00e2, 79) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080311 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080304 +packetLen(0x00e2, 31) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080226 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080219 +packetLen(0x00e2, 30) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080124 +packetLen(0x00e2, 10) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080102 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#endif + +// Packet: 0x00e3 +#if PACKETVER >= 20081217 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20081203 +packetLen(0x00e3, 11) // CZ_EXIT_ROOM +#elif PACKETVER >= 20081126 +packetLen(0x00e3, 8) // CZ_EXIT_ROOM +#elif PACKETVER >= 20081112 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00e3, 15) // CZ_EXIT_ROOM +#elif PACKETVER >= 20081029 +packetLen(0x00e3, 6) // CZ_EXIT_ROOM +#elif PACKETVER >= 20081015 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20081008 +packetLen(0x00e3, 6) // CZ_EXIT_ROOM +#elif PACKETVER >= 20081001 +packetLen(0x00e3, 4) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080813 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080806 +packetLen(0x00e3, 10) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080730 +packetLen(0x00e3, 6) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080722 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080715 +packetLen(0x00e3, 22) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080708 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080701 +packetLen(0x00e3, 26) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080624 +packetLen(0x00e3, 6) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080617 +packetLen(0x00e3, 58) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080603 +packetLen(0x00e3, 30) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080528 +packetLen(0x00e3, 35) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080429 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080422 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080415 +packetLen(0x00e3, 8) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080408 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080401 +packetLen(0x00e3, 58) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080325 +packetLen(0x00e3, 10) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080318 +packetLen(0x00e3, 7) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00e3, 12) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080124 +packetLen(0x00e3, 14) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +#endif + +// Packet: 0x00e4 +#if PACKETVER >= 20081217 +packetLen(0x00e4, 7) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081203 +packetLen(0x00e4, 16) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081126 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00e4, 12) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081029 +packetLen(0x00e4, 26) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00e4, 10) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00e4, 27) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00e4, 11) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080827 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x00e4, 31) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00e4, 4) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080708 +packetLen(0x00e4, 15) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e4, 36) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00e4, 86) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e4, 33) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e4, 58) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e4, 13) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e4, 10) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e4, 14) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e4, 10) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e4, 54) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e4, 14) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e4, 7) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#endif + +// Packet: 0x00e5 +#if PACKETVER >= 20081217 +packetLen(0x00e5, 2) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081203 +packetLen(0x00e5, 8) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00e5, 3) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00e5, 6) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00e5, 3) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00e5, 23) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080910 +packetLen(0x00e5, 35) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00e5, 6) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00e5, 8) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e5, 3) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00e5, 28) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e5, 2) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e5, 6) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e5, 28) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e5, 5) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e5, 3) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e5, 2) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e5, 10) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e5, 6) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e5, 5) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e5, 10) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e5, 6) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e5, 11) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e5, 29) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM +#endif + +// Packet: 0x00e6 +#if PACKETVER >= 20081203 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081126 +packetLen(0x00e6, 68) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081119 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00e6, 6) // CZ_ACK_EXCHANGE_ITEM +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00e6, 39) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00e6, 4) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00e6, 10) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080910 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080903 +packetLen(0x00e6, 8) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080708 +packetLen(0x00e6, 33) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00e6, 6) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e6, 14) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00e6, 9) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e6, 6) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e6, 2) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e6, 43) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e6, 26) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e6, 79) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e6, 11) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e6, 67) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e6, 15) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e6, 16) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e6, 53) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e6, 10) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e6, 114) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM +#endif + +// Packet: 0x00e7 +#if PACKETVER >= 20081217 +packetLen(0x00e7, 42) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081203 +packetLen(0x00e7, 30) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081126 +packetLen(0x00e7, 7) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081119 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00e7, 10) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00e7, 2) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00e7, 33) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080827 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x00e7, 44) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00e7, 19) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00e7, 59) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00e7, 24) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x00e7, 2) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080708 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e7, 30) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e7, 14) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00e7, 182) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e7, 14) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e7, 90) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e7, 182) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e7, 6) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e7, 4) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e7, 8) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e7, 6) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e7, 68) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#endif + +// Packet: 0x00e8 +#if PACKETVER >= 20081217 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081203 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081126 +packetLen(0x00e8, 30) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00e8, 10) // CZ_ADD_EXCHANGE_ITEM +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081029 +packetLen(0x00e8, 39) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00e8, 27) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00e8, 2) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00e8, 282) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x00e8, 6) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080903 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080827 +packetLen(0x00e8, 10) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00e8, 282) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00e8, 10) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00e8, 114) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00e8, 5) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e8, 66) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e8, 10) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00e8, 86) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e8, 6) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e8, 2) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e8, 30) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e8, 4) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e8, 6) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e8, 6) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e8, 2) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e8, 26) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00e9 +#if PACKETVER >= 20081217 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081203 +packetLen(0x00e9, 11) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081126 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081119 +packetLen(0x00e9, 6) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00e9, 10) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00e9, 15) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00e9, 6) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00e9, 102) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00e9, 6) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080910 +packetLen(0x00e9, 5) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080903 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080827 +packetLen(0x00e9, 54) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00e9, 60) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00e9, 6) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x00e9, 4) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080708 +packetLen(0x00e9, 10) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e9, 8) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00e9, 4) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00e9, 2) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00e9, 7) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00e9, 4) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00e9, 8) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00e9, 2) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00e9, 6) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e9, 30) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e9, 2) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00e9, 21) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00ea +#if PACKETVER >= 20081217 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081203 +packetLen(0x00ea, 14) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081126 +packetLen(0x00ea, 3) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081119 +packetLen(0x00ea, 42) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00ea, 6) // ZC_ACK_ADD_EXCHANGE_ITEM +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00ea, 11) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081029 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00ea, 6) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00ea, 28) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00ea, 4) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x00ea, 10) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080827 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x00ea, 2) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00ea, 6) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x00ea, 8) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080708 +packetLen(0x00ea, 81) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ea, 39) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00ea, 90) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ea, 30) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ea, 3) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00ea, 26) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ea, 6) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00ea, 4) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ea, 15) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ea, 3) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ea, 2) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ea, 10) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ea, 6) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ea, 14) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00eb +#if PACKETVER >= 20081217 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081029 +packetLen(0x00eb, 3) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00eb, 10) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00eb, 19) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00eb, 22) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080910 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080903 +packetLen(0x00eb, 4) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00eb, 22) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00eb, 5) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00eb, 54) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00eb, 11) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00eb, 36) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00eb, 5) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00eb, 15) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00eb, 86) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00eb, 12) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00eb, 19) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00eb, 17) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM +#endif + +// Packet: 0x00ec +#if PACKETVER >= 20081217 +packetLen(0x00ec, 18) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081203 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081126 +packetLen(0x00ec, 4) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081119 +packetLen(0x00ec, 30) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00ec, 4) // ZC_CONCLUDE_EXCHANGE_ITEM +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00ec, 86) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00ec, 14) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00ec, 20) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00ec, 30) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x00ec, 2) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080910 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080903 +packetLen(0x00ec, 60) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00ec, 28) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x00ec, 30) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x00ec, 10) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080708 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00ec, 55) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ec, 4) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00ec, 6) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ec, 14) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ec, 81) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00ec, 11) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ec, 34) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ec, 10) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00ec, 14) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ec, 11) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ec, 9) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ec, 30) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ec, 20) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ec, 2) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ec, 11) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ec, 9) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM +#endif + +// Packet: 0x00ed +#if PACKETVER >= 20081217 +packetLen(0x00ed, 4) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20081203 +packetLen(0x00ed, 28) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20081029 +packetLen(0x00ed, 30) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00ed, 11) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x00ed, 34) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080827 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x00ed, 53) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00ed, 65) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00ed, 8) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x00ed, 10) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ed, 20) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ed, 7) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ed, 3) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00ed, 8) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00ed, 6) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00ed, 3) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ed, 5) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ed, 3) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ed, 7) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ed, 4) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ed, 86) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ed, 30) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM +#endif + +// Packet: 0x00ee +#if PACKETVER >= 20081112 +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00ee, 10) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080910 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080903 +packetLen(0x00ee, 8) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00ee, 12) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x00ee, 8) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x00ee, 31) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080708 +packetLen(0x00ee, 6) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00ee, 14) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00ee, 81) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ee, 6) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ee, 18) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ee, 3) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ee, 3) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00ee, 30) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ee, 8) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ee, 26) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ee, 5) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ee, 11) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ee, 10) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ee, 90) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ee, 4) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM +#endif + +// Packet: 0x00ef +#if PACKETVER >= 20081217 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081119 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00ef, 4) // CZ_EXEC_EXCHANGE_ITEM +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00ef, 14) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081029 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00ef, 11) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00ef, 3) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00ef, 6) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00ef, 8) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080910 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080903 +packetLen(0x00ef, 10) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080827 +packetLen(0x00ef, 8) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x00ef, 53) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00ef, 28) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00ef, 6) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x00ef, 35) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080708 +packetLen(0x00ef, 30) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080624 +packetLen(0x00ef, 10) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00ef, 30) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00ef, 9) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00ef, 11) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00ef, 30) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00ef, 26) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00ef, 28) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x00ef, 4) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00ef, 7) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00ef, 57) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00ef, 10) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00ef, 90) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ef, 6) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00ef, 7) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#endif + +// Packet: 0x00f0 +#if PACKETVER >= 20081217 +packetLen(0x00f0, 26) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081203 +packetLen(0x00f0, 5) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081126 +packetLen(0x00f0, 2) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00f0, 8) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x00f0, 27) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x00f0, 7) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20081001 +packetLen(0x00f0, 2) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080924 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x00f0, 66) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080903 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080827 +packetLen(0x00f0, 11) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x00f0, 2) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080730 +packetLen(0x00f0, 6) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x00f0, 11) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x00f0, 6) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080708 +packetLen(0x00f0, 26) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080701 +packetLen(0x00f0, 11) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080617 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00f0, 60) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x00f0, 6) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x00f0, 14) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x00f0, 43) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080422 +packetLen(0x00f0, 30) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x00f0, 2) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x00f0, 90) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x00f0, 24) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x00f0, 6) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00f0, 7) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00f0, 27) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x00f0, 6) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#endif + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +#if PACKETVER >= 20081217 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20081203 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20081126 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20081119 +packetLen(0x00f2, 10) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20081112 +packetLen(0x00f2, 27) // ZC_NOTIFY_STOREITEM_COUNTINFO +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20081022 +packetLen(0x00f2, 7) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20081015 +packetLen(0x00f2, 3) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080917 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080910 +packetLen(0x00f2, 4) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080903 +packetLen(0x00f2, 8) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080827 +packetLen(0x00f2, 10) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080806 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080730 +packetLen(0x00f2, 29) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080708 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080701 +packetLen(0x00f2, 4) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080624 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080617 +packetLen(0x00f2, 10) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080610 +packetLen(0x00f2, 39) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080603 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080528 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080520 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080513 +packetLen(0x00f2, 39) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080507 +packetLen(0x00f2, 54) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080429 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080422 +packetLen(0x00f2, 31) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080415 +packetLen(0x00f2, 10) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080408 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080401 +packetLen(0x00f2, 86) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080325 +packetLen(0x00f2, 60) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080318 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080311 +packetLen(0x00f2, 26) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080304 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080226 +packetLen(0x00f2, 14) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080219 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080124 +packetLen(0x00f2, 13) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080102 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#endif + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +#if PACKETVER >= 20081217 +packetLen(0x00f4, 14) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20081203 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20081126 +packetLen(0x00f4, 3) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20081119 +packetLen(0x00f4, 65) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20081112 +packetLen(0x00f4, 30) // ZC_ADD_ITEM_TO_STORE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00f4, 2) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20081029 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20081022 +packetLen(0x00f4, 2) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20081001 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080924 +packetLen(0x00f4, 4) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080917 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080910 +packetLen(0x00f4, 8) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080903 +packetLen(0x00f4, 15) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080827 +packetLen(0x00f4, 2) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080820 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080813 +packetLen(0x00f4, 10) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080730 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080722 +packetLen(0x00f4, 6) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080715 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080708 +packetLen(0x00f4, 8) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080624 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080617 +packetLen(0x00f4, 11) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080528 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080513 +packetLen(0x00f4, 3) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080507 +packetLen(0x00f4, 8) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080429 +packetLen(0x00f4, 2) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080422 +packetLen(0x00f4, 3) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080415 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080408 +packetLen(0x00f4, 35) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080401 +packetLen(0x00f4, 282) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080325 +packetLen(0x00f4, 6) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080318 +packetLen(0x00f4, 8) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080311 +packetLen(0x00f4, 2) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080304 +packetLen(0x00f4, 8) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080226 +packetLen(0x00f4, 6) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080219 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080124 +packetLen(0x00f4, 10) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080102 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE +#endif + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +#if PACKETVER >= 20081217 +packetLen(0x00f6, 26) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20081203 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20081126 +packetLen(0x00f6, 7) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20081119 +packetLen(0x00f6, 5) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20081112 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20081105 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20081029 +packetLen(0x00f6, 57) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080924 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080917 +packetLen(0x00f6, 2) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080903 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080827 +packetLen(0x00f6, 6) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080820 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080813 +packetLen(0x00f6, 2) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080806 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080730 +packetLen(0x00f6, 11) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080722 +packetLen(0x00f6, 2) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080708 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080701 +packetLen(0x00f6, 11) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080624 +packetLen(0x00f6, 6) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080617 +packetLen(0x00f6, 26) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080610 +packetLen(0x00f6, 6) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080603 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080528 +packetLen(0x00f6, 10) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080520 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080513 +packetLen(0x00f6, 6) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080422 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080415 +packetLen(0x00f6, 4) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080408 +packetLen(0x00f6, 65) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080401 +packetLen(0x00f6, 7) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080325 +packetLen(0x00f6, 6) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080318 +packetLen(0x00f6, 2) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080311 +packetLen(0x00f6, 7) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080304 +packetLen(0x00f6, 65) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080226 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080219 +packetLen(0x00f6, 23) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080124 +packetLen(0x00f6, 39) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080102 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE +#endif + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +#if PACKETVER >= 20081203 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20081119 +packetLen(0x00f8, 3) // ZC_CLOSE_STORE +#elif PACKETVER >= 20081112 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20081015 +packetLen(0x00f8, 5) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080917 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080910 +packetLen(0x00f8, 6) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080903 +packetLen(0x00f8, 3) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080827 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080820 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080813 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080806 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080730 +packetLen(0x00f8, 30) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080722 +packetLen(0x00f8, 10) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080701 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080624 +packetLen(0x00f8, 26) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080617 +packetLen(0x00f8, 17) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080610 +packetLen(0x00f8, 30) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080603 +packetLen(0x00f8, 10) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080528 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080513 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080507 +packetLen(0x00f8, 6) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080422 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080415 +packetLen(0x00f8, 6) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080408 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080401 +packetLen(0x00f8, 3) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080325 +packetLen(0x00f8, 6) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080318 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080311 +packetLen(0x00f8, 12) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080304 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080226 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080219 +packetLen(0x00f8, 12) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080124 +packetLen(0x00f8, 43) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080102 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#endif + +// Packet: 0x00f9 +#if PACKETVER >= 20081126 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20081119 +packetLen(0x00f9, 2) // CZ_MAKE_GROUP +#elif PACKETVER >= 20081112 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20081022 +packetLen(0x00f9, 3) // CZ_MAKE_GROUP +#elif PACKETVER >= 20081015 +packetLen(0x00f9, 22) // CZ_MAKE_GROUP +#elif PACKETVER >= 20081008 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20081001 +packetLen(0x00f9, 7) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080917 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080910 +packetLen(0x00f9, 4) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080827 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080820 +packetLen(0x00f9, 3) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080813 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080806 +packetLen(0x00f9, 5) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080730 +packetLen(0x00f9, 54) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080722 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080715 +packetLen(0x00f9, 11) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080708 +packetLen(0x00f9, 30) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080701 +packetLen(0x00f9, 6) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x00f9, 10) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00f9, 6) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00f9, 3) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00f9, 5) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x00f9, 13) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00f9, 6) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00f9, 8) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00f9, 10) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00f9, 114) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00f9, 12) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00f9, 4) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00f9, 8) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00f9, 10) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#endif + +// Packet: 0x00fa +#if PACKETVER >= 20081112 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20081029 +packetLen(0x00fa, 65) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20081015 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20081008 +packetLen(0x00fa, 2) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080924 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080917 +packetLen(0x00fa, 21) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080820 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080813 +packetLen(0x00fa, 10) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080715 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080708 +packetLen(0x00fa, 6) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00fa, 8) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00fa, 4) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00fa, 30) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00fa, 26) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x00fa, 15) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00fa, 30) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00fa, 29) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00fa, 30) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00fa, 10) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fa, 20) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fa, 10) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00fa, 6) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#endif + +// Packet: 0x00fb +#if PACKETVER >= 20081217 +packetLen(0x00fb, 7) // ZC_GROUP_LIST +#elif PACKETVER >= 20081203 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20081126 +packetLen(0x00fb, 3) // ZC_GROUP_LIST +#elif PACKETVER >= 20081029 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20081022 +packetLen(0x00fb, 60) // ZC_GROUP_LIST +#elif PACKETVER >= 20081015 +packetLen(0x00fb, 17) // ZC_GROUP_LIST +#elif PACKETVER >= 20081008 +packetLen(0x00fb, 28) // ZC_GROUP_LIST +#elif PACKETVER >= 20081001 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20080924 +packetLen(0x00fb, 8) // ZC_GROUP_LIST +#elif PACKETVER >= 20080917 +packetLen(0x00fb, 60) // ZC_GROUP_LIST +#elif PACKETVER >= 20080910 +packetLen(0x00fb, 3) // ZC_GROUP_LIST +#elif PACKETVER >= 20080903 +packetLen(0x00fb, 67) // ZC_GROUP_LIST +#elif PACKETVER >= 20080820 +packetLen(0x00fb, 6) // ZC_GROUP_LIST +#elif PACKETVER >= 20080730 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20080722 +packetLen(0x00fb, 4) // ZC_GROUP_LIST +#elif PACKETVER >= 20080715 +packetLen(0x00fb, 26) // ZC_GROUP_LIST +#elif PACKETVER >= 20080708 +packetLen(0x00fb, 6) // ZC_GROUP_LIST +#elif PACKETVER >= 20080701 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20080624 +packetLen(0x00fb, 26) // ZC_GROUP_LIST +#elif PACKETVER >= 20080617 +packetLen(0x00fb, 3) // ZC_GROUP_LIST +#elif PACKETVER >= 20080610 +packetLen(0x00fb, 4) // ZC_GROUP_LIST +#elif PACKETVER >= 20080603 +packetLen(0x00fb, 17) // ZC_GROUP_LIST +#elif PACKETVER >= 20080528 +packetLen(0x00fb, 4) // ZC_GROUP_LIST +#elif PACKETVER >= 20080520 +packetLen(0x00fb, 29) // ZC_GROUP_LIST +#elif PACKETVER >= 20080513 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20080507 +packetLen(0x00fb, 28) // ZC_GROUP_LIST +#elif PACKETVER >= 20080429 +packetLen(0x00fb, 6) // ZC_GROUP_LIST +#elif PACKETVER >= 20080408 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20080401 +packetLen(0x00fb, 3) // ZC_GROUP_LIST +#elif PACKETVER >= 20080318 +packetLen(0x00fb, 26) // ZC_GROUP_LIST +#elif PACKETVER >= 20080311 +packetLen(0x00fb, 2) // ZC_GROUP_LIST +#elif PACKETVER >= 20080304 +packetLen(0x00fb, 4) // ZC_GROUP_LIST +#elif PACKETVER >= 20080226 +packetLen(0x00fb, 5) // ZC_GROUP_LIST +#elif PACKETVER >= 20080219 +packetLen(0x00fb, 10) // ZC_GROUP_LIST +#elif PACKETVER >= 20080124 +packetLen(0x00fb, 5) // ZC_GROUP_LIST +#elif PACKETVER >= 20080102 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#endif + +// Packet: 0x00fc +#if PACKETVER >= 20081126 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20081119 +packetLen(0x00fc, 2) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20081112 +packetLen(0x00fc, 32) // CZ_REQ_JOIN_GROUP +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20081001 +packetLen(0x00fc, 8) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080917 +packetLen(0x00fc, 2) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080910 +packetLen(0x00fc, 30) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080827 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080820 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080813 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080806 +packetLen(0x00fc, 9) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080730 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080722 +packetLen(0x00fc, 3) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080708 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080701 +packetLen(0x00fc, 22) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x00fc, 18) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00fc, 53) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00fc, 17) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00fc, 27) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fc, 24) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fc, 30) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fc, 19) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00fc, 2) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#endif + +// Packet: 0x00fd +#if PACKETVER >= 20081217 +packetLen(0x00fd, 10) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20081203 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20081126 +packetLen(0x00fd, 31) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20081112 +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20081029 +packetLen(0x00fd, 10) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20081022 +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20081015 +packetLen(0x00fd, 3) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20081008 +packetLen(0x00fd, 10) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20081001 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080924 +packetLen(0x00fd, 6) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080917 +packetLen(0x00fd, 2) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080910 +packetLen(0x00fd, 24) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080903 +packetLen(0x00fd, 86) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080617 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00fd, 6) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x00fd, 97) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00fd, 3) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00fd, 2) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00fd, 8) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00fd, 2) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00fd, 8) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00fd, 18) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fd, 3) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fd, 20) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fd, 11) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00fd, 42) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP +#endif + +// Packet: 0x00fe +#if PACKETVER >= 20081217 +packetLen(0x00fe, 7) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20081203 +packetLen(0x00fe, 37) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20081126 +packetLen(0x00fe, 27) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20081119 +packetLen(0x00fe, 53) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20081112 +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x00fe, 5) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20081029 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20081022 +packetLen(0x00fe, 2) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20081008 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20081001 +packetLen(0x00fe, 22) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080924 +packetLen(0x00fe, 10) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080827 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080820 +packetLen(0x00fe, 26) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080806 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080730 +packetLen(0x00fe, 282) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080722 +packetLen(0x00fe, 28) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080617 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00fe, 2) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00fe, 6) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00fe, 6) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00fe, 186) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00fe, 4) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00fe, 32) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fe, 4) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fe, 186) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fe, 7) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fe, 6) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00fe, 4) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP +#endif + +// Packet: 0x00ff +#if PACKETVER >= 20081217 +packetLen(0x00ff, 5) // CZ_JOIN_GROUP +#elif PACKETVER >= 20081203 +packetLen(0x00ff, 11) // CZ_JOIN_GROUP +#elif PACKETVER >= 20081126 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#elif PACKETVER >= 20081119 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20081112 +packetLen(0x00ff, 14) // CZ_JOIN_GROUP +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20081001 +packetLen(0x00ff, 12) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080924 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080917 +packetLen(0x00ff, 102) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080910 +packetLen(0x00ff, 4) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080806 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080730 +packetLen(0x00ff, 15) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080722 +packetLen(0x00ff, 14) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080708 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080701 +packetLen(0x00ff, 5) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x00ff, 7) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x00ff, 4) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x00ff, 22) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x00ff, 282) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x00ff, 6) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x00ff, 79) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x00ff, 2) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00ff, 3) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00ff, 59) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00ff, 282) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00ff, 6) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x00ff, 32) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#endif + +// Packet: 0x0100 +#if PACKETVER >= 20081112 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0100, 6) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20081029 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20081022 +packetLen(0x0100, 14) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20081015 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20081008 +packetLen(0x0100, 26) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20081001 +packetLen(0x0100, 67) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080924 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080917 +packetLen(0x0100, 26) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080820 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080813 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080806 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080730 +packetLen(0x0100, 6) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080715 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080708 +packetLen(0x0100, 22) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080617 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x0100, 186) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x0100, 14) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x0100, 6) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x0100, 27) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x0100, 8) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x0100, 17) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x0100, 30) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x0100, 28) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x0100, 54) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x0100, 3) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x0100, 54) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x0100, 3) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#endif + +// Packet: 0x0101 +#if PACKETVER >= 20081217 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20081126 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20081119 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20081029 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20081022 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20081015 +packetLen(0x0101, 3) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20081001 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080924 +packetLen(0x0101, 10) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080827 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080820 +packetLen(0x0101, 2) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x0101, 35) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080806 +packetLen(0x0101, 66) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080701 +packetLen(0x0101, 5) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080624 +packetLen(0x0101, 24) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x0101, 2) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x0101, 2) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x0101, 58) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x0101, 11) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x0101, 5) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x0101, 11) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x0101, 26) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x0101, 5) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x0101, 97) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x0101, 23) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x0101, 10) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x0101, 4) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#endif + +// Packet: 0x0102 +#if PACKETVER >= 20081217 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20081203 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20081119 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20081112 +packetLen(0x0102, 14) // CZ_CHANGE_GROUPEXPOPTION +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0102, 8) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20081029 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20081022 +packetLen(0x0102, 22) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20081015 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20081008 +packetLen(0x0102, 9) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20081001 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080924 +packetLen(0x0102, 7) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080917 +packetLen(0x0102, 182) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080910 +packetLen(0x0102, 7) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080820 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080813 +packetLen(0x0102, 10) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080722 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080715 +packetLen(0x0102, 4) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080610 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080603 +packetLen(0x0102, 26) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080528 +packetLen(0x0102, 17) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080520 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080513 +packetLen(0x0102, 11) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080422 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080415 +packetLen(0x0102, 81) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080408 +packetLen(0x0102, 2) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080401 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080325 +packetLen(0x0102, 54) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080318 +packetLen(0x0102, 4) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080311 +packetLen(0x0102, 2) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080304 +packetLen(0x0102, 14) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080226 +packetLen(0x0102, 26) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080219 +packetLen(0x0102, 68) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080124 +packetLen(0x0102, 15) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#endif + +// Packet: 0x0103 +#if PACKETVER >= 20081217 +packetLen(0x0103, 6) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20081203 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20081126 +packetLen(0x0103, 5) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20081119 +packetLen(0x0103, 6) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20081112 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20081029 +packetLen(0x0103, 10) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20081022 +packetLen(0x0103, 3) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20081015 +packetLen(0x0103, 8) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20081008 +packetLen(0x0103, 27) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080910 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080903 +packetLen(0x0103, 5) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080827 +packetLen(0x0103, 2) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080813 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080806 +packetLen(0x0103, 60) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080730 +packetLen(0x0103, 36) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080722 +packetLen(0x0103, 2) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080715 +packetLen(0x0103, 6) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080708 +packetLen(0x0103, 2) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080701 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080624 +packetLen(0x0103, 8) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080617 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080610 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080603 +packetLen(0x0103, 10) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080528 +packetLen(0x0103, 79) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080520 +packetLen(0x0103, 6) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080513 +packetLen(0x0103, 16) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080507 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080429 +packetLen(0x0103, 6) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080422 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080415 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080408 +packetLen(0x0103, 11) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080401 +packetLen(0x0103, 4) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080318 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080311 +packetLen(0x0103, 8) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080226 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080219 +packetLen(0x0103, 5) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080124 +packetLen(0x0103, 58) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080102 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#endif + +// Packet: 0x0104 +#if PACKETVER >= 20081112 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20081029 +packetLen(0x0104, 11) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20081015 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20081008 +packetLen(0x0104, 8) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080910 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080903 +packetLen(0x0104, 6) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080827 +packetLen(0x0104, 4) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080820 +packetLen(0x0104, 17) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080730 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080722 +packetLen(0x0104, 30) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080701 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080624 +packetLen(0x0104, 60) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080603 +packetLen(0x0104, 3) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x0104, 26) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x0104, 17) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x0104, 8) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080422 +packetLen(0x0104, 282) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080415 +packetLen(0x0104, 12) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080408 +packetLen(0x0104, 30) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x0104, 26) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x0104, 11) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x0104, 8) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x0104, 15) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x0104, 8) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x0104, 6) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x0104, 21) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x0104, 6) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0105 +#if PACKETVER >= 20081126 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20081119 +packetLen(0x0105, 30) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20081112 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081008 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20081001 +packetLen(0x0105, 58) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080910 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080903 +packetLen(0x0105, 7) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080827 +packetLen(0x0105, 30) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080820 +packetLen(0x0105, 3) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080813 +packetLen(0x0105, 2) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080722 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080715 +packetLen(0x0105, 97) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080617 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x0105, 26) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080528 +packetLen(0x0105, 6) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080520 +packetLen(0x0105, 3) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080513 +packetLen(0x0105, 5) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080507 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080429 +packetLen(0x0105, 4) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080401 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080325 +packetLen(0x0105, 23) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080318 +packetLen(0x0105, 4) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x0105, 3) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x0105, 10) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x0105, 26) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x0105, 6) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080124 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP +#endif + +// Packet: 0x0106 +#if PACKETVER >= 20081217 +packetLen(0x0106, 2) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20081203 +packetLen(0x0106, 7) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20081126 +packetLen(0x0106, 8) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20081119 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20081112 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20081029 +packetLen(0x0106, 3) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20081015 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20081008 +packetLen(0x0106, 60) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20081001 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080924 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080917 +packetLen(0x0106, 6) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080827 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080813 +packetLen(0x0106, 6) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080806 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080730 +packetLen(0x0106, 17) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080722 +packetLen(0x0106, 29) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080708 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080701 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080617 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080610 +packetLen(0x0106, 9) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080528 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080513 +packetLen(0x0106, 2) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080507 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080429 +packetLen(0x0106, 27) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080422 +packetLen(0x0106, 29) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080415 +packetLen(0x0106, 282) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080408 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080401 +packetLen(0x0106, 5) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080325 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080318 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080311 +packetLen(0x0106, 26) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080226 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080219 +packetLen(0x0106, 21) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080124 +packetLen(0x0106, 8) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080102 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#endif + +// Packet: 0x0107 +#if PACKETVER >= 20081217 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20081203 +packetLen(0x0107, 24) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20081126 +packetLen(0x0107, 6) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20081119 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20081112 +packetLen(0x0107, 30) // ZC_NOTIFY_POSITION_TO_GROUPM +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0107, 5) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20081029 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20081022 +packetLen(0x0107, 14) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20081015 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20081008 +packetLen(0x0107, 3) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20081001 +packetLen(0x0107, 30) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080924 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080917 +packetLen(0x0107, 2) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080910 +packetLen(0x0107, 3) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080903 +packetLen(0x0107, 5) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080827 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080820 +packetLen(0x0107, 16) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080813 +packetLen(0x0107, 17) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080806 +packetLen(0x0107, 23) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080730 +packetLen(0x0107, 59) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080722 +packetLen(0x0107, 282) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080624 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080617 +packetLen(0x0107, 3) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080603 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080528 +packetLen(0x0107, 6) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080520 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080513 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080507 +packetLen(0x0107, 6) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080429 +packetLen(0x0107, 2) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080325 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080318 +packetLen(0x0107, 6) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080226 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080219 +packetLen(0x0107, 5) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080124 +packetLen(0x0107, 3) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080102 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM +#endif + +// Packet: 0x0108 +#if PACKETVER >= 20081029 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20081022 +packetLen(0x0108, 9) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20081015 +packetLen(0x0108, 22) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20081008 +packetLen(0x0108, 11) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080924 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080917 +packetLen(0x0108, 14) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080827 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080820 +packetLen(0x0108, 8) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080813 +packetLen(0x0108, 10) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080730 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080722 +packetLen(0x0108, 12) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080715 +packetLen(0x0108, 6) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080624 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080617 +packetLen(0x0108, 54) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080610 +packetLen(0x0108, 2) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080528 +packetLen(0x0108, 11) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080520 +packetLen(0x0108, 97) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080513 +packetLen(0x0108, 30) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080507 +packetLen(0x0108, 6) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080429 +packetLen(0x0108, 32) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080415 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080408 +packetLen(0x0108, 3) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080401 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080325 +packetLen(0x0108, 7) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080318 +packetLen(0x0108, 182) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080311 +packetLen(0x0108, 4) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080226 +packetLen(0x0108, 3) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080219 +packetLen(0x0108, 97) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080124 +packetLen(0x0108, 6) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080102 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#endif + +// Packet: 0x0109 +#if PACKETVER >= 20081112 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20081105 +packetLen(0x0109, 6) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20081029 +packetLen(0x0109, 3) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20081022 +packetLen(0x0109, 43) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20081001 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080924 +packetLen(0x0109, 17) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080917 +packetLen(0x0109, 6) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080910 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080903 +packetLen(0x0109, 81) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080708 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080701 +packetLen(0x0109, 31) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080624 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080617 +packetLen(0x0109, 7) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080610 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080603 +packetLen(0x0109, 5) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080528 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080513 +packetLen(0x0109, 6) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080507 +packetLen(0x0109, 26) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080429 +packetLen(0x0109, 67) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080422 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080415 +packetLen(0x0109, 102) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080408 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080401 +packetLen(0x0109, 33) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080325 +packetLen(0x0109, 26) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080318 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080311 +packetLen(0x0109, 10) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080304 +packetLen(0x0109, 4) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080226 +packetLen(0x0109, 2) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080219 +packetLen(0x0109, 14) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080124 +packetLen(0x0109, 12) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080102 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#endif + +// Packet: 0x010a +#if PACKETVER >= 20081217 +packetLen(0x010a, 8) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20081126 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20081119 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20081112 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x010a, 36) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20081022 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20081015 +packetLen(0x010a, 16) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20081008 +packetLen(0x010a, 10) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080917 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080910 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080903 +packetLen(0x010a, 7) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080827 +packetLen(0x010a, 2) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080820 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080813 +packetLen(0x010a, 3) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080806 +packetLen(0x010a, 30) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080722 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080715 +packetLen(0x010a, 3) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080603 +packetLen(0x010a, 34) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080528 +packetLen(0x010a, 102) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080520 +packetLen(0x010a, 3) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080513 +packetLen(0x010a, 30) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080507 +packetLen(0x010a, 31) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080429 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080415 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080408 +packetLen(0x010a, 114) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080401 +packetLen(0x010a, 27) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080325 +packetLen(0x010a, 12) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080318 +packetLen(0x010a, 8) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080124 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#endif + +// Packet: 0x010b +#if PACKETVER >= 20081217 +packetLen(0x010b, 23) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20081203 +packetLen(0x010b, 14) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20081112 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x010b, 2) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20081022 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20081015 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20081001 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080924 +packetLen(0x010b, 14) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080820 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080813 +packetLen(0x010b, 58) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080806 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080730 +packetLen(0x010b, 33) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080722 +packetLen(0x010b, 4) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080715 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080708 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080701 +packetLen(0x010b, 3) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080624 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080617 +packetLen(0x010b, 8) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080610 +packetLen(0x010b, 26) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080603 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080520 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080513 +packetLen(0x010b, 4) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080429 +packetLen(0x010b, 3) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080422 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080415 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080408 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080401 +packetLen(0x010b, 28) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080325 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080318 +packetLen(0x010b, 17) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080311 +packetLen(0x010b, 3) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080304 +packetLen(0x010b, 114) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080226 +packetLen(0x010b, 9) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080219 +packetLen(0x010b, 24) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080102 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#endif + +// Packet: 0x010c +#if PACKETVER >= 20081203 +packetLen(0x010c, 6) // ZC_MVP +#elif PACKETVER >= 20081119 +packetLen(0x010c, 3) // ZC_MVP +#elif PACKETVER >= 20081112 +packetLen(0x010c, 6) // ZC_MVP +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20081029 +packetLen(0x010c, 2) // ZC_MVP +#elif PACKETVER >= 20081022 +packetLen(0x010c, 11) // ZC_MVP +#elif PACKETVER >= 20081008 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20081001 +packetLen(0x010c, 9) // ZC_MVP +#elif PACKETVER >= 20080917 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080910 +packetLen(0x010c, 33) // ZC_MVP +#elif PACKETVER >= 20080827 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080820 +packetLen(0x010c, 6) // ZC_MVP +#elif PACKETVER >= 20080813 +packetLen(0x010c, 26) // ZC_MVP +#elif PACKETVER >= 20080730 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080722 +packetLen(0x010c, 6) // ZC_MVP +#elif PACKETVER >= 20080715 +packetLen(0x010c, 10) // ZC_MVP +#elif PACKETVER >= 20080708 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080701 +packetLen(0x010c, 7) // ZC_MVP +#elif PACKETVER >= 20080624 +packetLen(0x010c, 23) // ZC_MVP +#elif PACKETVER >= 20080610 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080603 +packetLen(0x010c, 31) // ZC_MVP +#elif PACKETVER >= 20080528 +packetLen(0x010c, 30) // ZC_MVP +#elif PACKETVER >= 20080520 +packetLen(0x010c, 8) // ZC_MVP +#elif PACKETVER >= 20080507 +packetLen(0x010c, 2) // ZC_MVP +#elif PACKETVER >= 20080429 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080422 +packetLen(0x010c, 26) // ZC_MVP +#elif PACKETVER >= 20080408 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080401 +packetLen(0x010c, 6) // ZC_MVP +#elif PACKETVER >= 20080325 +packetLen(0x010c, 11) // ZC_MVP +#elif PACKETVER >= 20080318 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080311 +packetLen(0x010c, 282) // ZC_MVP +#elif PACKETVER >= 20080304 +packetLen(0x010c, 2) // ZC_MVP +#elif PACKETVER >= 20080226 +packetLen(0x010c, 14) // ZC_MVP +#elif PACKETVER >= 20080219 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080124 +packetLen(0x010c, 4) // ZC_MVP +#elif PACKETVER >= 20080102 +packetLen(0x010c, 6) // ZC_MVP +#endif + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +#if PACKETVER >= 20081203 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20081126 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20081119 +packetLen(0x010e, 81) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20081112 +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x010e, 30) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20081029 +packetLen(0x010e, 10) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20081022 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20081015 +packetLen(0x010e, 53) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080806 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080730 +packetLen(0x010e, 26) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080722 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080715 +packetLen(0x010e, 24) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080701 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080624 +packetLen(0x010e, 33) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080617 +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080610 +packetLen(0x010e, 8) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080603 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080528 +packetLen(0x010e, 2) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080520 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080513 +packetLen(0x010e, 14) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080507 +packetLen(0x010e, 10) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080429 +packetLen(0x010e, 67) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080415 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080408 +packetLen(0x010e, 12) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080401 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080325 +packetLen(0x010e, 30) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080318 +packetLen(0x010e, 53) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080311 +packetLen(0x010e, 71) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080304 +packetLen(0x010e, 26) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080226 +packetLen(0x010e, 7) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080219 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080124 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080102 +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE +#endif + +// Packet: 0x010f +#if PACKETVER >= 20081217 +packetLen(0x010f, 81) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20081203 +packetLen(0x010f, 10) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20081015 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20081008 +packetLen(0x010f, 2) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20081001 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080924 +packetLen(0x010f, 4) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080827 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080820 +packetLen(0x010f, 67) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080806 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080730 +packetLen(0x010f, 4) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080715 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080708 +packetLen(0x010f, 35) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080701 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080624 +packetLen(0x010f, 2) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080617 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080610 +packetLen(0x010f, 30) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080603 +packetLen(0x010f, 5) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080528 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080520 +packetLen(0x010f, 6) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080513 +packetLen(0x010f, 17) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080507 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080429 +packetLen(0x010f, 11) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080422 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080415 +packetLen(0x010f, 4) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080408 +packetLen(0x010f, 8) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080325 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080318 +packetLen(0x010f, 6) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080311 +packetLen(0x010f, 2) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080304 +packetLen(0x010f, 17) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080226 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080219 +packetLen(0x010f, 30) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080124 +packetLen(0x010f, 11) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080102 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#endif + +// Packet: 0x0110 +#if PACKETVER >= 20081126 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20081119 +packetLen(0x0110, 6) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20081112 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20081015 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20081001 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080924 +packetLen(0x0110, 16) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080910 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080903 +packetLen(0x0110, 6) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080827 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080820 +packetLen(0x0110, 3) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080813 +packetLen(0x0110, 24) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080722 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080715 +packetLen(0x0110, 34) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080617 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080610 +packetLen(0x0110, 3) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080603 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080528 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080520 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080513 +packetLen(0x0110, 4) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080507 +packetLen(0x0110, 3) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080408 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080401 +packetLen(0x0110, 6) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080325 +packetLen(0x0110, 35) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080318 +packetLen(0x0110, 8) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080311 +packetLen(0x0110, 4) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080226 +packetLen(0x0110, 8) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080219 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080124 +packetLen(0x0110, 2) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080102 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#endif + +// Packet: 0x0111 +#if PACKETVER >= 20081217 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20081203 +packetLen(0x0111, 6) // ZC_ADD_SKILL +#elif PACKETVER >= 20081112 +packetLen(0x0111, 39) // ZC_ADD_SKILL +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0111, 10) // ZC_ADD_SKILL +#elif PACKETVER >= 20081029 +packetLen(0x0111, 97) // ZC_ADD_SKILL +#elif PACKETVER >= 20081015 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20081008 +packetLen(0x0111, 6) // ZC_ADD_SKILL +#elif PACKETVER >= 20081001 +packetLen(0x0111, 4) // ZC_ADD_SKILL +#elif PACKETVER >= 20080903 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080827 +packetLen(0x0111, 5) // ZC_ADD_SKILL +#elif PACKETVER >= 20080820 +packetLen(0x0111, 66) // ZC_ADD_SKILL +#elif PACKETVER >= 20080813 +packetLen(0x0111, 27) // ZC_ADD_SKILL +#elif PACKETVER >= 20080806 +packetLen(0x0111, 282) // ZC_ADD_SKILL +#elif PACKETVER >= 20080730 +packetLen(0x0111, 11) // ZC_ADD_SKILL +#elif PACKETVER >= 20080722 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080715 +packetLen(0x0111, 10) // ZC_ADD_SKILL +#elif PACKETVER >= 20080708 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080701 +packetLen(0x0111, 17) // ZC_ADD_SKILL +#elif PACKETVER >= 20080624 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080617 +packetLen(0x0111, 2) // ZC_ADD_SKILL +#elif PACKETVER >= 20080610 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080603 +packetLen(0x0111, 11) // ZC_ADD_SKILL +#elif PACKETVER >= 20080528 +packetLen(0x0111, 23) // ZC_ADD_SKILL +#elif PACKETVER >= 20080507 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080429 +packetLen(0x0111, 10) // ZC_ADD_SKILL +#elif PACKETVER >= 20080422 +packetLen(0x0111, 4) // ZC_ADD_SKILL +#elif PACKETVER >= 20080415 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080408 +packetLen(0x0111, 26) // ZC_ADD_SKILL +#elif PACKETVER >= 20080401 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080325 +packetLen(0x0111, 282) // ZC_ADD_SKILL +#elif PACKETVER >= 20080318 +packetLen(0x0111, 23) // ZC_ADD_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x0111, 6) // ZC_ADD_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x0111, 4) // ZC_ADD_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x0111, 60) // ZC_ADD_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x0111, 32) // ZC_ADD_SKILL +#elif PACKETVER >= 20080124 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x0111, 39) // ZC_ADD_SKILL +#endif + +// Packet: 0x0112 +#if PACKETVER >= 20081217 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20081203 +packetLen(0x0112, 8) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20081112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081001 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080924 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080910 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080903 +packetLen(0x0112, 10) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080827 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080820 +packetLen(0x0112, 9) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080701 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080624 +packetLen(0x0112, 15) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080617 +packetLen(0x0112, 59) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080610 +packetLen(0x0112, 6) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080603 +packetLen(0x0112, 14) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080528 +packetLen(0x0112, 7) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080520 +packetLen(0x0112, 30) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080513 +packetLen(0x0112, 10) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080429 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080422 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080408 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080401 +packetLen(0x0112, 6) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080325 +packetLen(0x0112, 11) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080318 +packetLen(0x0112, 6) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080311 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080304 +packetLen(0x0112, 29) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080226 +packetLen(0x0112, 13) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080219 +packetLen(0x0112, 7) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080124 +packetLen(0x0112, 26) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080102 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL +#endif + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +#if PACKETVER >= 20081203 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20081119 +packetLen(0x0114, 11) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20081112 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0114, 10) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20081008 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20081001 +packetLen(0x0114, 11) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080806 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080730 +packetLen(0x0114, 6) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080722 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080715 +packetLen(0x0114, 10) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080708 +packetLen(0x0114, 7) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080701 +packetLen(0x0114, 10) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080624 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080617 +packetLen(0x0114, 15) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080610 +packetLen(0x0114, 11) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080603 +packetLen(0x0114, 7) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080528 +packetLen(0x0114, 6) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080520 +packetLen(0x0114, 30) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080513 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080507 +packetLen(0x0114, 4) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080429 +packetLen(0x0114, 3) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080408 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080401 +packetLen(0x0114, 26) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080325 +packetLen(0x0114, 182) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080318 +packetLen(0x0114, 6) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x0114, 29) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x0114, 10) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080124 +packetLen(0x0114, 8) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL +#endif + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +#if PACKETVER >= 20081203 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20081126 +packetLen(0x0117, 81) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20081112 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0117, 14) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20081029 +packetLen(0x0117, 13) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20081022 +packetLen(0x0117, 14) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20081015 +packetLen(0x0117, 32) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20081008 +packetLen(0x0117, 6) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080917 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080910 +packetLen(0x0117, 22) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080903 +packetLen(0x0117, 2) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080827 +packetLen(0x0117, 30) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080820 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080813 +packetLen(0x0117, 4) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080806 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080730 +packetLen(0x0117, 30) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080722 +packetLen(0x0117, 6) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080603 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080528 +packetLen(0x0117, 6) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080520 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080513 +packetLen(0x0117, 5) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080507 +packetLen(0x0117, 6) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080422 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080415 +packetLen(0x0117, 29) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080408 +packetLen(0x0117, 28) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080401 +packetLen(0x0117, 26) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080325 +packetLen(0x0117, 29) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080318 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080311 +packetLen(0x0117, 11) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080304 +packetLen(0x0117, 6) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080226 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080219 +packetLen(0x0117, 10) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080124 +packetLen(0x0117, 8) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080102 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL +#endif + +// Packet: 0x0118 +#if PACKETVER >= 20081217 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20081203 +packetLen(0x0118, 4) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20081126 +packetLen(0x0118, 54) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20081119 +packetLen(0x0118, 11) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20081112 +packetLen(0x0118, 10) // CZ_CANCEL_LOCKON +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20081029 +packetLen(0x0118, 4) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20081022 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20081015 +packetLen(0x0118, 6) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20081008 +packetLen(0x0118, 182) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20081001 +packetLen(0x0118, 26) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080910 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080903 +packetLen(0x0118, 54) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080730 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080722 +packetLen(0x0118, 18) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080715 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080708 +packetLen(0x0118, 4) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080701 +packetLen(0x0118, 67) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080617 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080610 +packetLen(0x0118, 22) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080603 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080528 +packetLen(0x0118, 8) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080520 +packetLen(0x0118, 90) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080513 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080507 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080429 +packetLen(0x0118, 29) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080422 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080401 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080325 +packetLen(0x0118, 14) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080318 +packetLen(0x0118, 5) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080311 +packetLen(0x0118, 282) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080304 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080226 +packetLen(0x0118, 54) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080219 +packetLen(0x0118, 7) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080124 +packetLen(0x0118, 54) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080102 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#endif + +// Packet: 0x0119 +#if PACKETVER >= 20081217 +packetLen(0x0119, 30) // ZC_STATE_CHANGE +#elif PACKETVER >= 20081203 +packetLen(0x0119, 7) // ZC_STATE_CHANGE +#elif PACKETVER >= 20081126 +packetLen(0x0119, 11) // ZC_STATE_CHANGE +#elif PACKETVER >= 20081119 +packetLen(0x0119, 6) // ZC_STATE_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x0119, 43) // ZC_STATE_CHANGE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20081015 +packetLen(0x0119, 6) // ZC_STATE_CHANGE +#elif PACKETVER >= 20081008 +packetLen(0x0119, 7) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080924 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080917 +packetLen(0x0119, 30) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080910 +packetLen(0x0119, 29) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080903 +packetLen(0x0119, 30) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080827 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080820 +packetLen(0x0119, 3) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x0119, 14) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080730 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080715 +packetLen(0x0119, 2) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x0119, 4) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x0119, 10) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x0119, 4) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x0119, 23) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x0119, 6) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x0119, 17) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x0119, 2) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x0119, 3) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x0119, 8) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x0119, 282) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x0119, 2) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x0119, 58) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x0119, 6) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x0119, 13) // ZC_STATE_CHANGE +#endif + +// Packet: 0x011a +#if PACKETVER >= 20081217 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20081203 +packetLen(0x011a, 19) // ZC_USE_SKILL +#elif PACKETVER >= 20081112 +packetLen(0x011a, 15) // ZC_USE_SKILL +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x011a, 7) // ZC_USE_SKILL +#elif PACKETVER >= 20081029 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20081022 +packetLen(0x011a, 26) // ZC_USE_SKILL +#elif PACKETVER >= 20081008 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20081001 +packetLen(0x011a, 6) // ZC_USE_SKILL +#elif PACKETVER >= 20080924 +packetLen(0x011a, 58) // ZC_USE_SKILL +#elif PACKETVER >= 20080917 +packetLen(0x011a, 15) // ZC_USE_SKILL +#elif PACKETVER >= 20080903 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080827 +packetLen(0x011a, 8) // ZC_USE_SKILL +#elif PACKETVER >= 20080813 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080806 +packetLen(0x011a, 14) // ZC_USE_SKILL +#elif PACKETVER >= 20080715 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080708 +packetLen(0x011a, 2) // ZC_USE_SKILL +#elif PACKETVER >= 20080701 +packetLen(0x011a, 11) // ZC_USE_SKILL +#elif PACKETVER >= 20080624 +packetLen(0x011a, 3) // ZC_USE_SKILL +#elif PACKETVER >= 20080617 +packetLen(0x011a, 6) // ZC_USE_SKILL +#elif PACKETVER >= 20080610 +packetLen(0x011a, 26) // ZC_USE_SKILL +#elif PACKETVER >= 20080603 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080528 +packetLen(0x011a, 8) // ZC_USE_SKILL +#elif PACKETVER >= 20080520 +packetLen(0x011a, 6) // ZC_USE_SKILL +#elif PACKETVER >= 20080513 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080507 +packetLen(0x011a, 3) // ZC_USE_SKILL +#elif PACKETVER >= 20080429 +packetLen(0x011a, 17) // ZC_USE_SKILL +#elif PACKETVER >= 20080408 +packetLen(0x011a, 4) // ZC_USE_SKILL +#elif PACKETVER >= 20080401 +packetLen(0x011a, 8) // ZC_USE_SKILL +#elif PACKETVER >= 20080325 +packetLen(0x011a, 36) // ZC_USE_SKILL +#elif PACKETVER >= 20080318 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x011a, 6) // ZC_USE_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x011a, 2) // ZC_USE_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x011a, 10) // ZC_USE_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x011a, 11) // ZC_USE_SKILL +#elif PACKETVER >= 20080124 +packetLen(0x011a, 2) // ZC_USE_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x011a, 15) // ZC_USE_SKILL +#endif + +// Packet: 0x011b +#if PACKETVER >= 20081217 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20081203 +packetLen(0x011b, 30) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20081119 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20081112 +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x011b, 15) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20081029 +packetLen(0x011b, 4) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20081022 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20081015 +packetLen(0x011b, 4) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080924 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080917 +packetLen(0x011b, 3) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080903 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080827 +packetLen(0x011b, 53) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080820 +packetLen(0x011b, 23) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080813 +packetLen(0x011b, 2) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080806 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080730 +packetLen(0x011b, 79) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080722 +packetLen(0x011b, 6) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080715 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080708 +packetLen(0x011b, 14) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080528 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080520 +packetLen(0x011b, 2) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080513 +packetLen(0x011b, 58) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080507 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080429 +packetLen(0x011b, 10) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080422 +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080415 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080408 +packetLen(0x011b, 4) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080401 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080325 +packetLen(0x011b, 39) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080311 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080304 +packetLen(0x011b, 58) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080226 +packetLen(0x011b, 2) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080124 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080102 +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT +#endif + +// Packet: 0x011c +#if PACKETVER >= 20081217 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20081203 +packetLen(0x011c, 2) // ZC_WARPLIST +#elif PACKETVER >= 20081119 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20081112 +packetLen(0x011c, 68) // ZC_WARPLIST +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x011c, 26) // ZC_WARPLIST +#elif PACKETVER >= 20081022 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20081015 +packetLen(0x011c, 3) // ZC_WARPLIST +#elif PACKETVER >= 20081001 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080924 +packetLen(0x011c, 3) // ZC_WARPLIST +#elif PACKETVER >= 20080917 +packetLen(0x011c, 60) // ZC_WARPLIST +#elif PACKETVER >= 20080910 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080903 +packetLen(0x011c, 66) // ZC_WARPLIST +#elif PACKETVER >= 20080806 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080730 +packetLen(0x011c, 39) // ZC_WARPLIST +#elif PACKETVER >= 20080722 +packetLen(0x011c, 7) // ZC_WARPLIST +#elif PACKETVER >= 20080715 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080708 +packetLen(0x011c, 15) // ZC_WARPLIST +#elif PACKETVER >= 20080617 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080610 +packetLen(0x011c, 14) // ZC_WARPLIST +#elif PACKETVER >= 20080603 +packetLen(0x011c, 8) // ZC_WARPLIST +#elif PACKETVER >= 20080528 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080520 +packetLen(0x011c, 2) // ZC_WARPLIST +#elif PACKETVER >= 20080513 +packetLen(0x011c, 8) // ZC_WARPLIST +#elif PACKETVER >= 20080507 +packetLen(0x011c, 282) // ZC_WARPLIST +#elif PACKETVER >= 20080429 +packetLen(0x011c, 5) // ZC_WARPLIST +#elif PACKETVER >= 20080422 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20080415 +packetLen(0x011c, 31) // ZC_WARPLIST +#elif PACKETVER >= 20080408 +packetLen(0x011c, 3) // ZC_WARPLIST +#elif PACKETVER >= 20080401 +packetLen(0x011c, 7) // ZC_WARPLIST +#elif PACKETVER >= 20080325 +packetLen(0x011c, 26) // ZC_WARPLIST +#elif PACKETVER >= 20080318 +packetLen(0x011c, 6) // ZC_WARPLIST +#elif PACKETVER >= 20080311 +packetLen(0x011c, 3) // ZC_WARPLIST +#elif PACKETVER >= 20080304 +packetLen(0x011c, 32) // ZC_WARPLIST +#elif PACKETVER >= 20080226 +packetLen(0x011c, 6) // ZC_WARPLIST +#elif PACKETVER >= 20080219 +packetLen(0x011c, 4) // ZC_WARPLIST +#elif PACKETVER >= 20080124 +packetLen(0x011c, 2) // ZC_WARPLIST +#elif PACKETVER >= 20080102 +packetLen(0x011c, 68) // ZC_WARPLIST +#endif + +// Packet: 0x011d +#if PACKETVER >= 20081217 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20081203 +packetLen(0x011d, 16) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20081126 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20081119 +packetLen(0x011d, 14) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20081112 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20081029 +packetLen(0x011d, 8) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20081022 +packetLen(0x011d, 16) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20081015 +packetLen(0x011d, 21) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20081008 +packetLen(0x011d, 14) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080827 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080820 +packetLen(0x011d, 24) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080813 +packetLen(0x011d, 11) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080730 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080722 +packetLen(0x011d, 9) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080715 +packetLen(0x011d, 8) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080708 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080624 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080617 +packetLen(0x011d, 10) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080610 +packetLen(0x011d, 28) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080603 +packetLen(0x011d, 3) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080528 +packetLen(0x011d, 14) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080520 +packetLen(0x011d, 23) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080513 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080507 +packetLen(0x011d, 81) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080422 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080415 +packetLen(0x011d, 6) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080408 +packetLen(0x011d, 4) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080325 +packetLen(0x011d, 10) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080318 +packetLen(0x011d, 7) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080311 +packetLen(0x011d, 3) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080304 +packetLen(0x011d, 7) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080219 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080124 +packetLen(0x011d, 26) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080102 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +#endif + +// Packet: 0x011e +#if PACKETVER >= 20081112 +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20081029 +packetLen(0x011e, 30) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080813 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080806 +packetLen(0x011e, 4) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080730 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080722 +packetLen(0x011e, 12) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080624 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080617 +packetLen(0x011e, 33) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080610 +packetLen(0x011e, 5) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080603 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080528 +packetLen(0x011e, 6) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080513 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080507 +packetLen(0x011e, 9) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080429 +packetLen(0x011e, 10) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080422 +packetLen(0x011e, 282) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080415 +packetLen(0x011e, 30) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080408 +packetLen(0x011e, 32) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080401 +packetLen(0x011e, 9) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080325 +packetLen(0x011e, 18) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080318 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080311 +packetLen(0x011e, 6) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080304 +packetLen(0x011e, 18) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080219 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080124 +packetLen(0x011e, 7) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080102 +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT +#endif + +// Packet: 0x011f +#if PACKETVER >= 20081203 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20081126 +packetLen(0x011f, 60) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20081112 +packetLen(0x011f, 16) // ZC_SKILL_ENTRY +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x011f, 2) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20081022 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20081015 +packetLen(0x011f, 6) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080924 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080917 +packetLen(0x011f, 282) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080910 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080903 +packetLen(0x011f, 10) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080827 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080820 +packetLen(0x011f, 5) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080813 +packetLen(0x011f, 58) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080806 +packetLen(0x011f, 28) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080708 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080701 +packetLen(0x011f, 11) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080624 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x011f, 30) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x011f, 10) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x011f, 3) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080528 +packetLen(0x011f, 282) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080520 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080513 +packetLen(0x011f, 30) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080507 +packetLen(0x011f, 6) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080429 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x011f, 12) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080415 +packetLen(0x011f, 2) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x011f, 6) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080325 +packetLen(0x011f, 10) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x011f, 60) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x011f, 2) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x011f, 8) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x011f, 5) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x011f, 2) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x011f, 16) // ZC_SKILL_ENTRY +#endif + +// Packet: 0x0120 +#if PACKETVER >= 20081126 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20081119 +packetLen(0x0120, 10) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20081112 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20080924 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080917 +packetLen(0x0120, 9) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080903 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080827 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080820 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080813 +packetLen(0x0120, 60) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080806 +packetLen(0x0120, 22) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080730 +packetLen(0x0120, 4) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080715 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080708 +packetLen(0x0120, 30) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080701 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080624 +packetLen(0x0120, 27) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080617 +packetLen(0x0120, 14) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080610 +packetLen(0x0120, 79) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080603 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080528 +packetLen(0x0120, 28) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080520 +packetLen(0x0120, 5) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080513 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080507 +packetLen(0x0120, 54) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080429 +packetLen(0x0120, 7) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080422 +packetLen(0x0120, 4) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080408 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080401 +packetLen(0x0120, 5) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080318 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080311 +packetLen(0x0120, 5) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080304 +packetLen(0x0120, 54) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080226 +packetLen(0x0120, 7) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080219 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080124 +packetLen(0x0120, 39) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080102 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +#endif + +// Packet: 0x0121 +#if PACKETVER >= 20081217 +packetLen(0x0121, 3) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20081112 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0121, 3) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20081029 +packetLen(0x0121, 6) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20081022 +packetLen(0x0121, 5) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080917 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080910 +packetLen(0x0121, 3) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080903 +packetLen(0x0121, 13) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080813 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080722 +packetLen(0x0121, 2) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080708 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080701 +packetLen(0x0121, 8) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080624 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080610 +packetLen(0x0121, 5) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080603 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080528 +packetLen(0x0121, 4) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080520 +packetLen(0x0121, 26) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080513 +packetLen(0x0121, 27) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080507 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080429 +packetLen(0x0121, 60) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080415 +packetLen(0x0121, 6) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080408 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080401 +packetLen(0x0121, 2) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080325 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080318 +packetLen(0x0121, 29) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080311 +packetLen(0x0121, 2) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080304 +packetLen(0x0121, 29) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080226 +packetLen(0x0121, 282) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080219 +packetLen(0x0121, 6) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080124 +packetLen(0x0121, 60) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080102 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO +#endif + +// Packet: 0x0122 +#if PACKETVER >= 20081217 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081203 +packetLen(0x0122, 2) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081126 +packetLen(0x0122, 66) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081119 +packetLen(0x0122, 2) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081112 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081105 +packetLen(0x0122, 10) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081029 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x0122, 6) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20081001 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080924 +packetLen(0x0122, 65) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x0122, 30) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x0122, 7) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x0122, 3) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x0122, 5) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x0122, 3) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x0122, 10) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x0122, 282) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x0122, 58) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x0122, 12) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x0122, 15) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x0122, 4) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x0122, 10) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x0122, 30) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x0122, 186) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x0122, 30) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x0122, 16) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0122, 7) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0122, 28) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0122, 8) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#endif + +// Packet: 0x0123 +#if PACKETVER >= 20081217 +packetLen(0x0123, 26) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20081203 +packetLen(0x0123, 22) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20081126 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20081119 +packetLen(0x0123, 58) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20081105 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20081029 +packetLen(0x0123, 26) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080924 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x0123, 4) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x0123, 19) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x0123, 3) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080820 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x0123, 4) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x0123, 2) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x0123, 11) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x0123, 2) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x0123, 6) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x0123, 23) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x0123, 30) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x0123, 28) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x0123, 6) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x0123, 2) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x0123, 8) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x0123, 26) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x0123, 35) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x0123, 33) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x0123, 14) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0123, 5) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0123, 9) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0123, 6) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0123, 16) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x0123, 58) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#endif + +// Packet: 0x0124 +#if PACKETVER >= 20081217 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20081203 +packetLen(0x0124, 26) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20081126 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20081119 +packetLen(0x0124, 182) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20081112 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20081022 +packetLen(0x0124, 6) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20081008 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20081001 +packetLen(0x0124, 3) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080924 +packetLen(0x0124, 4) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080917 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080910 +packetLen(0x0124, 29) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080903 +packetLen(0x0124, 10) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080827 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080820 +packetLen(0x0124, 282) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080813 +packetLen(0x0124, 8) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080730 +packetLen(0x0124, 6) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080722 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080715 +packetLen(0x0124, 5) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080701 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080624 +packetLen(0x0124, 26) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080617 +packetLen(0x0124, 4) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080610 +packetLen(0x0124, 58) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080603 +packetLen(0x0124, 54) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080528 +packetLen(0x0124, 32) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080520 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080513 +packetLen(0x0124, 22) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080507 +packetLen(0x0124, 2) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080429 +packetLen(0x0124, 31) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080422 +packetLen(0x0124, 71) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080415 +packetLen(0x0124, 22) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080408 +packetLen(0x0124, 6) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080325 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080318 +packetLen(0x0124, 6) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x0124, 4) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x0124, 3) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x0124, 36) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x0124, 6) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080124 +packetLen(0x0124, 11) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +#endif + +// Packet: 0x0125 +#if PACKETVER >= 20081112 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0125, 4) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20081022 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20081015 +packetLen(0x0125, 4) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20081001 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080924 +packetLen(0x0125, 4) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080903 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080827 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080820 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080813 +packetLen(0x0125, 2) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080730 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080722 +packetLen(0x0125, 4) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080715 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080708 +packetLen(0x0125, 3) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080701 +packetLen(0x0125, 10) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080624 +packetLen(0x0125, 7) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080617 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080610 +packetLen(0x0125, 86) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080603 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080528 +packetLen(0x0125, 2) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080520 +packetLen(0x0125, 44) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080513 +packetLen(0x0125, 57) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080507 +packetLen(0x0125, 2) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080429 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080422 +packetLen(0x0125, 32) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080415 +packetLen(0x0125, 29) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080408 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080401 +packetLen(0x0125, 11) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080325 +packetLen(0x0125, 53) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080318 +packetLen(0x0125, 2) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080311 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080304 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080219 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080124 +packetLen(0x0125, 26) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080102 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART +#endif + +// Packet: 0x0126 +#if PACKETVER >= 20081217 +packetLen(0x0126, 14) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20081203 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20081126 +packetLen(0x0126, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20081119 +packetLen(0x0126, 14) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20081112 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0126, 60) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20081029 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20081022 +packetLen(0x0126, 4) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20081008 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20081001 +packetLen(0x0126, 3) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080813 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080806 +packetLen(0x0126, 3) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080722 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080715 +packetLen(0x0126, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080708 +packetLen(0x0126, 24) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080701 +packetLen(0x0126, 3) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080624 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080617 +packetLen(0x0126, 43) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080610 +packetLen(0x0126, 97) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080603 +packetLen(0x0126, 12) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080507 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080429 +packetLen(0x0126, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080422 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080415 +packetLen(0x0126, 4) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080408 +packetLen(0x0126, 14) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080401 +packetLen(0x0126, 3) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080325 +packetLen(0x0126, 30) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080318 +packetLen(0x0126, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x0126, 7) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x0126, 27) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x0126, 11) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080124 +packetLen(0x0126, 26) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#endif + +// Packet: 0x0127 +#if PACKETVER >= 20081217 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20081203 +packetLen(0x0127, 4) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20081112 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20080917 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080910 +packetLen(0x0127, 81) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080820 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080813 +packetLen(0x0127, 17) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080806 +packetLen(0x0127, 18) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080730 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080722 +packetLen(0x0127, 2) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080715 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080708 +packetLen(0x0127, 4) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080701 +packetLen(0x0127, 9) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080528 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080520 +packetLen(0x0127, 2) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080513 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080507 +packetLen(0x0127, 6) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080429 +packetLen(0x0127, 10) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080422 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080415 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080408 +packetLen(0x0127, 26) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080401 +packetLen(0x0127, 2) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080325 +packetLen(0x0127, 6) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080318 +packetLen(0x0127, 67) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080311 +packetLen(0x0127, 5) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080304 +packetLen(0x0127, 18) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080226 +packetLen(0x0127, 12) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080219 +packetLen(0x0127, 4) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080124 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080102 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#endif + +// Packet: 0x0128 +#if PACKETVER >= 20081217 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20081203 +packetLen(0x0128, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20081126 +packetLen(0x0128, 29) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20081119 +packetLen(0x0128, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20081112 +packetLen(0x0128, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0128, 3) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20081029 +packetLen(0x0128, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20081022 +packetLen(0x0128, 7) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20081008 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20081001 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080903 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080827 +packetLen(0x0128, 4) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080820 +packetLen(0x0128, 30) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080813 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080806 +packetLen(0x0128, 97) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080730 +packetLen(0x0128, 31) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080722 +packetLen(0x0128, 27) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080715 +packetLen(0x0128, 3) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080708 +packetLen(0x0128, 7) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080701 +packetLen(0x0128, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080624 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080617 +packetLen(0x0128, 3) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080610 +packetLen(0x0128, 31) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080603 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080528 +packetLen(0x0128, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080520 +packetLen(0x0128, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080507 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080429 +packetLen(0x0128, 13) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080422 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080415 +packetLen(0x0128, 22) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080408 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080401 +packetLen(0x0128, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080318 +packetLen(0x0128, 3) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x0128, 58) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x0128, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x0128, 17) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080124 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#endif + +// Packet: 0x0129 +#if PACKETVER >= 20081217 +packetLen(0x0129, 7) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20081203 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20081126 +packetLen(0x0129, 2) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20081119 +packetLen(0x0129, 3) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20081112 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20081029 +packetLen(0x0129, 2) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20081022 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20081015 +packetLen(0x0129, 3) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080910 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080903 +packetLen(0x0129, 3) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080827 +packetLen(0x0129, 10) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080813 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080806 +packetLen(0x0129, 14) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080701 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080624 +packetLen(0x0129, 182) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080617 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080610 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080603 +packetLen(0x0129, 6) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080520 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080513 +packetLen(0x0129, 7) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080507 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080429 +packetLen(0x0129, 4) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080422 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080415 +packetLen(0x0129, 60) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080408 +packetLen(0x0129, 6) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080401 +packetLen(0x0129, 14) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080325 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080318 +packetLen(0x0129, 3) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080304 +packetLen(0x0129, 4) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080226 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080219 +packetLen(0x0129, 10) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080124 +packetLen(0x0129, 28) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080102 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#endif + +// Packet: 0x012a +#if PACKETVER >= 20081119 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20081112 +packetLen(0x012a, 54) // CZ_REQ_CARTOFF +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x012a, 54) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20081022 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20081015 +packetLen(0x012a, 30) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20081008 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20081001 +packetLen(0x012a, 10) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080924 +packetLen(0x012a, 8) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080917 +packetLen(0x012a, 29) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080813 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080806 +packetLen(0x012a, 39) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080730 +packetLen(0x012a, 2) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080624 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080617 +packetLen(0x012a, 6) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080610 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080603 +packetLen(0x012a, 11) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080528 +packetLen(0x012a, 8) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080520 +packetLen(0x012a, 9) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080513 +packetLen(0x012a, 6) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080507 +packetLen(0x012a, 14) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080429 +packetLen(0x012a, 22) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080422 +packetLen(0x012a, 2) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080415 +packetLen(0x012a, 3) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080408 +packetLen(0x012a, 282) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080401 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080325 +packetLen(0x012a, 3) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080318 +packetLen(0x012a, 4) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080304 +packetLen(0x012a, 8) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080226 +packetLen(0x012a, 3) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080219 +packetLen(0x012a, 5) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080102 +packetLen(0x012a, 2) // CZ_REQ_CARTOFF +#endif + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +#if PACKETVER >= 20081217 +packetLen(0x012c, 79) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20081203 +packetLen(0x012c, 5) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20081126 +packetLen(0x012c, 6) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20081112 +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20081029 +packetLen(0x012c, 5) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20081022 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20081015 +packetLen(0x012c, 2) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20081008 +packetLen(0x012c, 14) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080924 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080917 +packetLen(0x012c, 6) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080903 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080827 +packetLen(0x012c, 26) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080813 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080806 +packetLen(0x012c, 36) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080715 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080708 +packetLen(0x012c, 8) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080610 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080603 +packetLen(0x012c, 5) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080528 +packetLen(0x012c, 58) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080520 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080513 +packetLen(0x012c, 2) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080507 +packetLen(0x012c, 10) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080429 +packetLen(0x012c, 39) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080422 +packetLen(0x012c, 8) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080415 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080408 +packetLen(0x012c, 30) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080401 +packetLen(0x012c, 8) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080325 +packetLen(0x012c, 4) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080318 +packetLen(0x012c, 10) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x012c, 14) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x012c, 30) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x012c, 20) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x012c, 9) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080124 +packetLen(0x012c, 19) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART +#endif + +// Packet: 0x012d +#if PACKETVER >= 20081119 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20081112 +packetLen(0x012d, 67) // ZC_OPENSTORE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20080910 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080903 +packetLen(0x012d, 11) // ZC_OPENSTORE +#elif PACKETVER >= 20080813 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080806 +packetLen(0x012d, 8) // ZC_OPENSTORE +#elif PACKETVER >= 20080730 +packetLen(0x012d, 26) // ZC_OPENSTORE +#elif PACKETVER >= 20080722 +packetLen(0x012d, 3) // ZC_OPENSTORE +#elif PACKETVER >= 20080701 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080624 +packetLen(0x012d, 26) // ZC_OPENSTORE +#elif PACKETVER >= 20080617 +packetLen(0x012d, 3) // ZC_OPENSTORE +#elif PACKETVER >= 20080610 +packetLen(0x012d, 8) // ZC_OPENSTORE +#elif PACKETVER >= 20080603 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080528 +packetLen(0x012d, 30) // ZC_OPENSTORE +#elif PACKETVER >= 20080520 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080513 +packetLen(0x012d, 34) // ZC_OPENSTORE +#elif PACKETVER >= 20080507 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080429 +packetLen(0x012d, 4) // ZC_OPENSTORE +#elif PACKETVER >= 20080422 +packetLen(0x012d, 81) // ZC_OPENSTORE +#elif PACKETVER >= 20080415 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080408 +packetLen(0x012d, 33) // ZC_OPENSTORE +#elif PACKETVER >= 20080401 +packetLen(0x012d, 3) // ZC_OPENSTORE +#elif PACKETVER >= 20080325 +packetLen(0x012d, 6) // ZC_OPENSTORE +#elif PACKETVER >= 20080318 +packetLen(0x012d, 2) // ZC_OPENSTORE +#elif PACKETVER >= 20080311 +packetLen(0x012d, 30) // ZC_OPENSTORE +#elif PACKETVER >= 20080304 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080219 +packetLen(0x012d, 14) // ZC_OPENSTORE +#elif PACKETVER >= 20080124 +packetLen(0x012d, 26) // ZC_OPENSTORE +#elif PACKETVER >= 20080102 +packetLen(0x012d, 4) // ZC_OPENSTORE +#endif + +// Packet: 0x012e +#if PACKETVER >= 20081217 +packetLen(0x012e, 7) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20081203 +packetLen(0x012e, 10) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20081119 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20081112 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20081105 +packetLen(0x012e, 6) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20081029 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20081022 +packetLen(0x012e, 33) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20081015 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20081008 +packetLen(0x012e, 5) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080910 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080903 +packetLen(0x012e, 6) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080827 +packetLen(0x012e, 4) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080820 +packetLen(0x012e, 3) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080806 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080730 +packetLen(0x012e, 6) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080722 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080715 +packetLen(0x012e, 5) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080708 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080701 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080624 +packetLen(0x012e, 6) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080617 +packetLen(0x012e, 31) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080520 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080513 +packetLen(0x012e, 5) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080507 +packetLen(0x012e, 102) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080429 +packetLen(0x012e, 3) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080422 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080415 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080408 +packetLen(0x012e, 26) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080401 +packetLen(0x012e, 7) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080325 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080318 +packetLen(0x012e, 4) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080311 +packetLen(0x012e, 14) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080304 +packetLen(0x012e, 6) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080219 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080102 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#endif + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +#if PACKETVER >= 20081203 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20081126 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20081112 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20081029 +packetLen(0x0130, 5) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20081015 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20081008 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080924 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080917 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080910 +packetLen(0x0130, 12) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080827 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080820 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080813 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080806 +packetLen(0x0130, 4) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080730 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080722 +packetLen(0x0130, 55) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080715 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080708 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080617 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080610 +packetLen(0x0130, 30) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080603 +packetLen(0x0130, 4) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080528 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080520 +packetLen(0x0130, 282) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080507 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080429 +packetLen(0x0130, 4) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080422 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080415 +packetLen(0x0130, 2) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080408 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080401 +packetLen(0x0130, 81) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080325 +packetLen(0x0130, 4) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080318 +packetLen(0x0130, 66) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080304 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0130, 28) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0130, 5) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080124 +packetLen(0x0130, 8) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#endif + +// Packet: 0x0131 +#if PACKETVER >= 20081203 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20081126 +packetLen(0x0131, 15) // ZC_STORE_ENTRY +#elif PACKETVER >= 20081119 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20081112 +packetLen(0x0131, 86) // ZC_STORE_ENTRY +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20081029 +packetLen(0x0131, 3) // ZC_STORE_ENTRY +#elif PACKETVER >= 20081022 +packetLen(0x0131, 5) // ZC_STORE_ENTRY +#elif PACKETVER >= 20081015 +packetLen(0x0131, 10) // ZC_STORE_ENTRY +#elif PACKETVER >= 20081008 +packetLen(0x0131, 4) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080910 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080903 +packetLen(0x0131, 97) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080730 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080722 +packetLen(0x0131, 26) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080624 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x0131, 3) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x0131, 12) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x0131, 35) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080528 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080520 +packetLen(0x0131, 3) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080513 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080507 +packetLen(0x0131, 35) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080429 +packetLen(0x0131, 14) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x0131, 8) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080415 +packetLen(0x0131, 3) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x0131, 11) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080325 +packetLen(0x0131, 4) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x0131, 6) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0131, 14) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x0131, 29) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0131, 26) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0131, 86) // ZC_STORE_ENTRY +#endif + +// Packet: 0x0132 +#if PACKETVER >= 20081203 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20081126 +packetLen(0x0132, 55) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20081112 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20081029 +packetLen(0x0132, 8) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20081022 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20081015 +packetLen(0x0132, 9) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080924 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080917 +packetLen(0x0132, 3) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080820 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080813 +packetLen(0x0132, 4) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080730 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080722 +packetLen(0x0132, 5) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080715 +packetLen(0x0132, 2) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080701 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080624 +packetLen(0x0132, 4) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080617 +packetLen(0x0132, 10) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080610 +packetLen(0x0132, 14) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080603 +packetLen(0x0132, 16) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080422 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080408 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080401 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080325 +packetLen(0x0132, 30) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080318 +packetLen(0x0132, 11) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0132, 36) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080124 +packetLen(0x0132, 2) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +#endif + +// Packet: 0x0133 +#if PACKETVER >= 20081105 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081029 +packetLen(0x0133, 102) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081022 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081015 +packetLen(0x0133, 28) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080910 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080903 +packetLen(0x0133, 6) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080827 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080820 +packetLen(0x0133, 59) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080813 +packetLen(0x0133, 67) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080806 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080730 +packetLen(0x0133, 11) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080722 +packetLen(0x0133, 5) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080715 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080708 +packetLen(0x0133, 4) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080701 +packetLen(0x0133, 11) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080617 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080610 +packetLen(0x0133, 7) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080603 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080528 +packetLen(0x0133, 8) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080520 +packetLen(0x0133, 57) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080513 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080507 +packetLen(0x0133, 26) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080429 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080422 +packetLen(0x0133, 14) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080415 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080408 +packetLen(0x0133, 5) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080401 +packetLen(0x0133, 24) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080304 +packetLen(0x0133, 26) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0133, 10) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0133, 8) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080124 +packetLen(0x0133, 3) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#endif + +// Packet: 0x0134 +#if PACKETVER >= 20081217 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081203 +packetLen(0x0134, 6) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081126 +packetLen(0x0134, 282) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081119 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081112 +packetLen(0x0134, 11) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081029 +packetLen(0x0134, 15) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081022 +packetLen(0x0134, 6) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081015 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081008 +packetLen(0x0134, 29) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20081001 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080924 +packetLen(0x0134, 6) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080917 +packetLen(0x0134, 21) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080910 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080903 +packetLen(0x0134, 282) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080827 +packetLen(0x0134, 6) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080820 +packetLen(0x0134, 39) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080722 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080715 +packetLen(0x0134, 10) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080701 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080624 +packetLen(0x0134, 29) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080617 +packetLen(0x0134, 8) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080610 +packetLen(0x0134, 67) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080603 +packetLen(0x0134, 30) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080528 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080520 +packetLen(0x0134, 7) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080513 +packetLen(0x0134, 282) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080507 +packetLen(0x0134, 16) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080422 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080415 +packetLen(0x0134, 71) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080408 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080401 +packetLen(0x0134, 28) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080325 +packetLen(0x0134, 7) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080318 +packetLen(0x0134, 20) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0134, 26) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0134, 3) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0134, 4) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#endif + +// Packet: 0x0135 +#if PACKETVER >= 20081112 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0135, 3) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20081029 +packetLen(0x0135, 4) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20081001 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080924 +packetLen(0x0135, 114) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080917 +packetLen(0x0135, 12) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080910 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080903 +packetLen(0x0135, 22) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080827 +packetLen(0x0135, 16) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080820 +packetLen(0x0135, 71) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080813 +packetLen(0x0135, 14) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080715 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080708 +packetLen(0x0135, 5) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080624 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080617 +packetLen(0x0135, 13) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080610 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080603 +packetLen(0x0135, 60) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080520 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080513 +packetLen(0x0135, 9) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080507 +packetLen(0x0135, 8) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080429 +packetLen(0x0135, 29) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080422 +packetLen(0x0135, 4) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080415 +packetLen(0x0135, 2) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080401 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080325 +packetLen(0x0135, 6) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0135, 2) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0135, 6) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0135, 65) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080124 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC +#endif + +// Packet: 0x0136 +#if PACKETVER >= 20081217 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20081203 +packetLen(0x0136, 6) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20081112 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20081105 +packetLen(0x0136, 7) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20081029 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x0136, 6) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20081015 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20081008 +packetLen(0x0136, 6) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x0136, 10) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x0136, 5) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080820 +packetLen(0x0136, 19) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x0136, 54) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x0136, 5) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x0136, 8) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x0136, 11) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x0136, 10) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x0136, 30) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x0136, 3) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x0136, 28) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x0136, 10) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x0136, 6) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0136, 30) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0136, 10) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0136, 2) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#endif + +// Packet: 0x0137 +#if PACKETVER >= 20081217 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20081203 +packetLen(0x0137, 2) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20081119 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20081112 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20081015 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20081008 +packetLen(0x0137, 10) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20081001 +packetLen(0x0137, 5) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080910 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080903 +packetLen(0x0137, 29) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080813 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080806 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080730 +packetLen(0x0137, 17) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080722 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080715 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080708 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080701 +packetLen(0x0137, 9) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080624 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080617 +packetLen(0x0137, 71) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080610 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080603 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080528 +packetLen(0x0137, 8) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080429 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080422 +packetLen(0x0137, 30) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080415 +packetLen(0x0137, 27) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080408 +packetLen(0x0137, 7) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080401 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080325 +packetLen(0x0137, 32) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080318 +packetLen(0x0137, 22) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080311 +packetLen(0x0137, 86) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080226 +packetLen(0x0137, 5) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080219 +packetLen(0x0137, 10) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080124 +packetLen(0x0137, 7) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080102 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#endif + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +#if PACKETVER >= 20081203 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20081126 +packetLen(0x0139, 18) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20081112 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20081022 +packetLen(0x0139, 67) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20081015 +packetLen(0x0139, 18) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20081008 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20081001 +packetLen(0x0139, 6) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080924 +packetLen(0x0139, 7) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080903 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080827 +packetLen(0x0139, 30) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080820 +packetLen(0x0139, 2) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080813 +packetLen(0x0139, 10) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080806 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080730 +packetLen(0x0139, 7) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080722 +packetLen(0x0139, 26) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080715 +packetLen(0x0139, 6) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080708 +packetLen(0x0139, 12) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080701 +packetLen(0x0139, 26) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080624 +packetLen(0x0139, 10) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080617 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080610 +packetLen(0x0139, 5) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080603 +packetLen(0x0139, 2) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080513 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080507 +packetLen(0x0139, 9) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080429 +packetLen(0x0139, 28) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080422 +packetLen(0x0139, 29) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080415 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080408 +packetLen(0x0139, 11) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080401 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080325 +packetLen(0x0139, 3) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080318 +packetLen(0x0139, 14) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080311 +packetLen(0x0139, 31) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080304 +packetLen(0x0139, 6) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080226 +packetLen(0x0139, 81) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080219 +packetLen(0x0139, 6) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080124 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080102 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#endif + +// Packet: 0x013a +#if PACKETVER >= 20081119 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20081112 +packetLen(0x013a, 39) // ZC_ATTACK_RANGE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x013a, 8) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20081029 +packetLen(0x013a, 5) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20081022 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20081015 +packetLen(0x013a, 10) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20081008 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20081001 +packetLen(0x013a, 3) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080924 +packetLen(0x013a, 11) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080917 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080910 +packetLen(0x013a, 7) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080903 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080827 +packetLen(0x013a, 5) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080820 +packetLen(0x013a, 10) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080813 +packetLen(0x013a, 6) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080806 +packetLen(0x013a, 4) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080730 +packetLen(0x013a, 14) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080722 +packetLen(0x013a, 43) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080715 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080708 +packetLen(0x013a, 8) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080701 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080624 +packetLen(0x013a, 2) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080617 +packetLen(0x013a, 3) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080610 +packetLen(0x013a, 30) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080603 +packetLen(0x013a, 39) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080513 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080507 +packetLen(0x013a, 182) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080429 +packetLen(0x013a, 6) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080422 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080415 +packetLen(0x013a, 6) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080408 +packetLen(0x013a, 55) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080401 +packetLen(0x013a, 12) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080325 +packetLen(0x013a, 3) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080318 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080311 +packetLen(0x013a, 6) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080304 +packetLen(0x013a, 32) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080226 +packetLen(0x013a, 58) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080124 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080102 +packetLen(0x013a, 4) // ZC_ATTACK_RANGE +#endif + +// Packet: 0x013b +#if PACKETVER >= 20081119 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20081112 +packetLen(0x013b, 33) // ZC_ACTION_FAILURE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20081015 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20081008 +packetLen(0x013b, 2) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080924 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080917 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080827 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080820 +packetLen(0x013b, 11) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080813 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080806 +packetLen(0x013b, 7) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080730 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080722 +packetLen(0x013b, 65) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080715 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080708 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080701 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080624 +packetLen(0x013b, 22) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080617 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080610 +packetLen(0x013b, 22) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080603 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080528 +packetLen(0x013b, 5) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080520 +packetLen(0x013b, 10) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080513 +packetLen(0x013b, 18) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080507 +packetLen(0x013b, 2) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080429 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080422 +packetLen(0x013b, 15) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080415 +packetLen(0x013b, 7) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080408 +packetLen(0x013b, 30) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080401 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080325 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080318 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080311 +packetLen(0x013b, 23) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080304 +packetLen(0x013b, 22) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080226 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080219 +packetLen(0x013b, 16) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080124 +packetLen(0x013b, 2) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080102 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#endif + +// Packet: 0x013c +#if PACKETVER >= 20081203 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20081126 +packetLen(0x013c, 16) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20081112 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20081022 +packetLen(0x013c, 30) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20081008 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20081001 +packetLen(0x013c, 54) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080917 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080910 +packetLen(0x013c, 14) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080903 +packetLen(0x013c, 2) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080820 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080813 +packetLen(0x013c, 23) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080806 +packetLen(0x013c, 2) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080730 +packetLen(0x013c, 12) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080722 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080715 +packetLen(0x013c, 3) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080708 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080701 +packetLen(0x013c, 6) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080624 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080617 +packetLen(0x013c, 12) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080610 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080603 +packetLen(0x013c, 53) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080528 +packetLen(0x013c, 8) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080520 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080513 +packetLen(0x013c, 11) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080507 +packetLen(0x013c, 6) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080429 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080422 +packetLen(0x013c, 33) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080415 +packetLen(0x013c, 8) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080408 +packetLen(0x013c, 6) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080401 +packetLen(0x013c, 12) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080325 +packetLen(0x013c, 3) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080318 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080311 +packetLen(0x013c, 6) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080304 +packetLen(0x013c, 66) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080226 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080219 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080124 +packetLen(0x013c, 11) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080102 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +#endif + +// Packet: 0x013d +#if PACKETVER >= 20081126 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20081119 +packetLen(0x013d, 79) // ZC_RECOVERY +#elif PACKETVER >= 20081112 +packetLen(0x013d, 13) // ZC_RECOVERY +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20081029 +packetLen(0x013d, 53) // ZC_RECOVERY +#elif PACKETVER >= 20080924 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080917 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080910 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080903 +packetLen(0x013d, 2) // ZC_RECOVERY +#elif PACKETVER >= 20080813 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080806 +packetLen(0x013d, 3) // ZC_RECOVERY +#elif PACKETVER >= 20080730 +packetLen(0x013d, 26) // ZC_RECOVERY +#elif PACKETVER >= 20080722 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080701 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080624 +packetLen(0x013d, 3) // ZC_RECOVERY +#elif PACKETVER >= 20080617 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080610 +packetLen(0x013d, 7) // ZC_RECOVERY +#elif PACKETVER >= 20080603 +packetLen(0x013d, 2) // ZC_RECOVERY +#elif PACKETVER >= 20080528 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080520 +packetLen(0x013d, 8) // ZC_RECOVERY +#elif PACKETVER >= 20080513 +packetLen(0x013d, 31) // ZC_RECOVERY +#elif PACKETVER >= 20080507 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080429 +packetLen(0x013d, 10) // ZC_RECOVERY +#elif PACKETVER >= 20080422 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080415 +packetLen(0x013d, 26) // ZC_RECOVERY +#elif PACKETVER >= 20080408 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080401 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080325 +packetLen(0x013d, 3) // ZC_RECOVERY +#elif PACKETVER >= 20080318 +packetLen(0x013d, 282) // ZC_RECOVERY +#elif PACKETVER >= 20080311 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080304 +packetLen(0x013d, 3) // ZC_RECOVERY +#elif PACKETVER >= 20080226 +packetLen(0x013d, 2) // ZC_RECOVERY +#elif PACKETVER >= 20080219 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080124 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080102 +packetLen(0x013d, 6) // ZC_RECOVERY +#endif + +// Packet: 0x013e +#if PACKETVER >= 20081217 +packetLen(0x013e, 182) // ZC_USESKILL_ACK +#elif PACKETVER >= 20081203 +packetLen(0x013e, 186) // ZC_USESKILL_ACK +#elif PACKETVER >= 20081126 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20081119 +packetLen(0x013e, 32) // ZC_USESKILL_ACK +#elif PACKETVER >= 20081112 +packetLen(0x013e, 68) // ZC_USESKILL_ACK +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x013e, 6) // ZC_USESKILL_ACK +#elif PACKETVER >= 20081001 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080924 +packetLen(0x013e, 30) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080806 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080730 +packetLen(0x013e, 32) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080722 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080715 +packetLen(0x013e, 6) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080708 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080701 +packetLen(0x013e, 26) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080624 +packetLen(0x013e, 3) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080603 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080528 +packetLen(0x013e, 6) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080520 +packetLen(0x013e, 20) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080513 +packetLen(0x013e, 7) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080507 +packetLen(0x013e, 21) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080429 +packetLen(0x013e, 8) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080422 +packetLen(0x013e, 7) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080408 +packetLen(0x013e, 6) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080401 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080325 +packetLen(0x013e, 15) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080318 +packetLen(0x013e, 11) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080311 +packetLen(0x013e, 2) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080304 +packetLen(0x013e, 4) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080226 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080219 +packetLen(0x013e, 30) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080124 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080102 +packetLen(0x013e, 24) // ZC_USESKILL_ACK +#endif + +// Packet: 0x013f +#if PACKETVER >= 20081217 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20081203 +packetLen(0x013f, 2) // CZ_ITEM_CREATE +#elif PACKETVER >= 20081112 +packetLen(0x013f, 26) // CZ_ITEM_CREATE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x013f, 29) // CZ_ITEM_CREATE +#elif PACKETVER >= 20081015 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20081008 +packetLen(0x013f, 10) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080924 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080917 +packetLen(0x013f, 7) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080820 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080813 +packetLen(0x013f, 4) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080806 +packetLen(0x013f, 29) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080722 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080715 +packetLen(0x013f, 6) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080708 +packetLen(0x013f, 4) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080701 +packetLen(0x013f, 30) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080624 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080617 +packetLen(0x013f, 2) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080610 +packetLen(0x013f, 7) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080603 +packetLen(0x013f, 11) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080528 +packetLen(0x013f, 2) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080520 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080513 +packetLen(0x013f, 29) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080507 +packetLen(0x013f, 20) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080422 +packetLen(0x013f, 26) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080415 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080408 +packetLen(0x013f, 8) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080401 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080325 +packetLen(0x013f, 28) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080318 +packetLen(0x013f, 54) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080311 +packetLen(0x013f, 282) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080304 +packetLen(0x013f, 6) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080226 +packetLen(0x013f, 5) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080219 +packetLen(0x013f, 58) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080124 +packetLen(0x013f, 9) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080102 +packetLen(0x013f, 26) // CZ_ITEM_CREATE +#endif + +// Packet: 0x0140 +#if PACKETVER >= 20081119 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20081112 +packetLen(0x0140, 22) // CZ_MOVETO_MAP +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0140, 28) // CZ_MOVETO_MAP +#elif PACKETVER >= 20081029 +packetLen(0x0140, 18) // CZ_MOVETO_MAP +#elif PACKETVER >= 20081008 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20081001 +packetLen(0x0140, 10) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080924 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080917 +packetLen(0x0140, 12) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080910 +packetLen(0x0140, 60) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080903 +packetLen(0x0140, 10) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080827 +packetLen(0x0140, 14) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080820 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080813 +packetLen(0x0140, 30) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080806 +packetLen(0x0140, 4) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080730 +packetLen(0x0140, 6) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080722 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080715 +packetLen(0x0140, 6) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080701 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080624 +packetLen(0x0140, 2) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080617 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080610 +packetLen(0x0140, 11) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080603 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080528 +packetLen(0x0140, 6) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080520 +packetLen(0x0140, 8) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080513 +packetLen(0x0140, 6) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080507 +packetLen(0x0140, 4) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080429 +packetLen(0x0140, 3) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080422 +packetLen(0x0140, 22) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080415 +packetLen(0x0140, 7) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080408 +packetLen(0x0140, 53) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080401 +packetLen(0x0140, 10) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080325 +packetLen(0x0140, 27) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080318 +packetLen(0x0140, 33) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080311 +packetLen(0x0140, 3) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080304 +packetLen(0x0140, 6) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080226 +packetLen(0x0140, 11) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080219 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080124 +packetLen(0x0140, 2) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080102 +packetLen(0x0140, 22) // CZ_MOVETO_MAP +#endif + +// Packet: 0x0141 +#if PACKETVER >= 20081217 +packetLen(0x0141, 8) // ZC_COUPLESTATUS +#elif PACKETVER >= 20081119 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20081112 +packetLen(0x0141, 26) // ZC_COUPLESTATUS +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0141, 57) // ZC_COUPLESTATUS +#elif PACKETVER >= 20081029 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20081022 +packetLen(0x0141, 3) // ZC_COUPLESTATUS +#elif PACKETVER >= 20081015 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20081008 +packetLen(0x0141, 8) // ZC_COUPLESTATUS +#elif PACKETVER >= 20081001 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080924 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080917 +packetLen(0x0141, 2) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080910 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080903 +packetLen(0x0141, 10) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080827 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080820 +packetLen(0x0141, 2) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080813 +packetLen(0x0141, 26) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080806 +packetLen(0x0141, 2) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080730 +packetLen(0x0141, 30) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080722 +packetLen(0x0141, 10) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080715 +packetLen(0x0141, 26) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080708 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080624 +packetLen(0x0141, 4) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080617 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080610 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080603 +packetLen(0x0141, 5) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080528 +packetLen(0x0141, 18) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080520 +packetLen(0x0141, 4) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080513 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080507 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080429 +packetLen(0x0141, 60) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080422 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080415 +packetLen(0x0141, 7) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080408 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080401 +packetLen(0x0141, 3) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080325 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080318 +packetLen(0x0141, 11) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080311 +packetLen(0x0141, 9) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080304 +packetLen(0x0141, 30) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080226 +packetLen(0x0141, 22) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080219 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080124 +packetLen(0x0141, 35) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080102 +packetLen(0x0141, 14) // ZC_COUPLESTATUS +#endif + +// Packet: 0x0142 +#if PACKETVER >= 20081203 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20081126 +packetLen(0x0142, 2) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20081119 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20081112 +packetLen(0x0142, 11) // ZC_OPEN_EDITDLG +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0142, 3) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20081029 +packetLen(0x0142, 8) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20081022 +packetLen(0x0142, 10) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20081015 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20081008 +packetLen(0x0142, 43) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080827 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080820 +packetLen(0x0142, 10) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080730 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080722 +packetLen(0x0142, 8) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080715 +packetLen(0x0142, 7) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080708 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080701 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080617 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080610 +packetLen(0x0142, 32) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080603 +packetLen(0x0142, 2) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080528 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080520 +packetLen(0x0142, 7) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080513 +packetLen(0x0142, 15) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080422 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080408 +packetLen(0x0142, 11) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080401 +packetLen(0x0142, 9) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080325 +packetLen(0x0142, 67) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080318 +packetLen(0x0142, 26) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080311 +packetLen(0x0142, 30) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080304 +packetLen(0x0142, 4) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080226 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080219 +packetLen(0x0142, 2) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080124 +packetLen(0x0142, 3) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080102 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG +#endif + +// Packet: 0x0143 +#if PACKETVER >= 20081112 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20081022 +packetLen(0x0143, 22) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20081015 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20081008 +packetLen(0x0143, 7) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080924 +packetLen(0x0143, 6) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080910 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080903 +packetLen(0x0143, 5) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080827 +packetLen(0x0143, 6) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080820 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080813 +packetLen(0x0143, 26) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080730 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080722 +packetLen(0x0143, 6) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080715 +packetLen(0x0143, 11) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080708 +packetLen(0x0143, 2) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080617 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080610 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080603 +packetLen(0x0143, 7) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080528 +packetLen(0x0143, 26) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080520 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080513 +packetLen(0x0143, 97) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080507 +packetLen(0x0143, 2) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080422 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080415 +packetLen(0x0143, 2) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080408 +packetLen(0x0143, 53) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080401 +packetLen(0x0143, 27) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080325 +packetLen(0x0143, 28) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080318 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080304 +packetLen(0x0143, 3) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080226 +packetLen(0x0143, 8) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080219 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080124 +packetLen(0x0143, 67) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080102 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +#endif + +// Packet: 0x0144 +#if PACKETVER >= 20081203 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20081126 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20081119 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20081112 +packetLen(0x0144, 23) // ZC_COMPASS +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0144, 53) // ZC_COMPASS +#elif PACKETVER >= 20081029 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20081022 +packetLen(0x0144, 4) // ZC_COMPASS +#elif PACKETVER >= 20081001 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080924 +packetLen(0x0144, 5) // ZC_COMPASS +#elif PACKETVER >= 20080917 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20080903 +packetLen(0x0144, 2) // ZC_COMPASS +#elif PACKETVER >= 20080827 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080820 +packetLen(0x0144, 10) // ZC_COMPASS +#elif PACKETVER >= 20080813 +packetLen(0x0144, 68) // ZC_COMPASS +#elif PACKETVER >= 20080730 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080722 +packetLen(0x0144, 3) // ZC_COMPASS +#elif PACKETVER >= 20080701 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080624 +packetLen(0x0144, 2) // ZC_COMPASS +#elif PACKETVER >= 20080617 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080610 +packetLen(0x0144, 81) // ZC_COMPASS +#elif PACKETVER >= 20080603 +packetLen(0x0144, 22) // ZC_COMPASS +#elif PACKETVER >= 20080528 +packetLen(0x0144, 3) // ZC_COMPASS +#elif PACKETVER >= 20080520 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080513 +packetLen(0x0144, 4) // ZC_COMPASS +#elif PACKETVER >= 20080507 +packetLen(0x0144, 7) // ZC_COMPASS +#elif PACKETVER >= 20080415 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20080408 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20080401 +packetLen(0x0144, 65) // ZC_COMPASS +#elif PACKETVER >= 20080325 +packetLen(0x0144, 282) // ZC_COMPASS +#elif PACKETVER >= 20080318 +packetLen(0x0144, 7) // ZC_COMPASS +#elif PACKETVER >= 20080311 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20080304 +packetLen(0x0144, 2) // ZC_COMPASS +#elif PACKETVER >= 20080226 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20080219 +packetLen(0x0144, 10) // ZC_COMPASS +#elif PACKETVER >= 20080124 +packetLen(0x0144, 2) // ZC_COMPASS +#elif PACKETVER >= 20080102 +packetLen(0x0144, 23) // ZC_COMPASS +#endif + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +#if PACKETVER >= 20081203 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20081126 +packetLen(0x0146, 60) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20081119 +packetLen(0x0146, 14) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20081112 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20081015 +packetLen(0x0146, 20) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20081001 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080924 +packetLen(0x0146, 3) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080827 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080820 +packetLen(0x0146, 3) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080813 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080806 +packetLen(0x0146, 282) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080722 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080715 +packetLen(0x0146, 5) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080708 +packetLen(0x0146, 28) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080624 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080617 +packetLen(0x0146, 23) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080610 +packetLen(0x0146, 5) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080603 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080528 +packetLen(0x0146, 10) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080513 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080507 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080429 +packetLen(0x0146, 65) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080422 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080408 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080401 +packetLen(0x0146, 10) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080325 +packetLen(0x0146, 2) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080318 +packetLen(0x0146, 42) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x0146, 10) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x0146, 7) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x0146, 10) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080124 +packetLen(0x0146, 8) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#endif + +// Packet: 0x0147 +#if PACKETVER >= 20081217 +packetLen(0x0147, 2) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20081126 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20081119 +packetLen(0x0147, 31) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20081112 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081008 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20081001 +packetLen(0x0147, 11) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080924 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080917 +packetLen(0x0147, 14) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080910 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080903 +packetLen(0x0147, 26) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080827 +packetLen(0x0147, 12) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080813 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080806 +packetLen(0x0147, 8) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080730 +packetLen(0x0147, 10) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080722 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080715 +packetLen(0x0147, 5) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080708 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080701 +packetLen(0x0147, 282) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080624 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080617 +packetLen(0x0147, 18) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080610 +packetLen(0x0147, 8) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080528 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080520 +packetLen(0x0147, 114) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080513 +packetLen(0x0147, 282) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080507 +packetLen(0x0147, 4) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080429 +packetLen(0x0147, 20) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080422 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080415 +packetLen(0x0147, 8) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080401 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080325 +packetLen(0x0147, 90) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x0147, 6) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x0147, 16) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x0147, 11) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080124 +packetLen(0x0147, 2) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL +#endif + +// Packet: 0x0148 +#if PACKETVER >= 20081126 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20081119 +packetLen(0x0148, 2) // ZC_RESURRECTION +#elif PACKETVER >= 20081112 +packetLen(0x0148, 8) // ZC_RESURRECTION +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20081022 +packetLen(0x0148, 4) // ZC_RESURRECTION +#elif PACKETVER >= 20081008 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20081001 +packetLen(0x0148, 81) // ZC_RESURRECTION +#elif PACKETVER >= 20080924 +packetLen(0x0148, 4) // ZC_RESURRECTION +#elif PACKETVER >= 20080820 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20080813 +packetLen(0x0148, 6) // ZC_RESURRECTION +#elif PACKETVER >= 20080806 +packetLen(0x0148, 2) // ZC_RESURRECTION +#elif PACKETVER >= 20080730 +packetLen(0x0148, 26) // ZC_RESURRECTION +#elif PACKETVER >= 20080722 +packetLen(0x0148, 54) // ZC_RESURRECTION +#elif PACKETVER >= 20080715 +packetLen(0x0148, 10) // ZC_RESURRECTION +#elif PACKETVER >= 20080708 +packetLen(0x0148, 2) // ZC_RESURRECTION +#elif PACKETVER >= 20080617 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20080610 +packetLen(0x0148, 2) // ZC_RESURRECTION +#elif PACKETVER >= 20080528 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20080513 +packetLen(0x0148, 6) // ZC_RESURRECTION +#elif PACKETVER >= 20080507 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20080429 +packetLen(0x0148, 14) // ZC_RESURRECTION +#elif PACKETVER >= 20080422 +packetLen(0x0148, 2) // ZC_RESURRECTION +#elif PACKETVER >= 20080415 +packetLen(0x0148, 39) // ZC_RESURRECTION +#elif PACKETVER >= 20080408 +packetLen(0x0148, 10) // ZC_RESURRECTION +#elif PACKETVER >= 20080401 +packetLen(0x0148, 7) // ZC_RESURRECTION +#elif PACKETVER >= 20080325 +packetLen(0x0148, 10) // ZC_RESURRECTION +#elif PACKETVER >= 20080318 +packetLen(0x0148, 6) // ZC_RESURRECTION +#elif PACKETVER >= 20080311 +packetLen(0x0148, 54) // ZC_RESURRECTION +#elif PACKETVER >= 20080304 +packetLen(0x0148, 282) // ZC_RESURRECTION +#elif PACKETVER >= 20080226 +packetLen(0x0148, 6) // ZC_RESURRECTION +#elif PACKETVER >= 20080219 +packetLen(0x0148, 4) // ZC_RESURRECTION +#elif PACKETVER >= 20080124 +packetLen(0x0148, 3) // ZC_RESURRECTION +#elif PACKETVER >= 20080102 +packetLen(0x0148, 8) // ZC_RESURRECTION +#endif + +// Packet: 0x0149 +#if PACKETVER >= 20081126 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20081119 +packetLen(0x0149, 18) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20081112 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20081029 +packetLen(0x0149, 3) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20081022 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20081015 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20081008 +packetLen(0x0149, 58) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20081001 +packetLen(0x0149, 35) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080917 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080910 +packetLen(0x0149, 20) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080903 +packetLen(0x0149, 7) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080708 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080701 +packetLen(0x0149, 14) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080624 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080610 +packetLen(0x0149, 8) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080603 +packetLen(0x0149, 7) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080528 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080520 +packetLen(0x0149, 27) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080513 +packetLen(0x0149, 71) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080429 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080422 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080415 +packetLen(0x0149, 5) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080408 +packetLen(0x0149, 17) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080401 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080325 +packetLen(0x0149, 2) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080318 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080311 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080304 +packetLen(0x0149, 5) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080226 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080219 +packetLen(0x0149, 53) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080124 +packetLen(0x0149, 4) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080102 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT +#endif + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +#if PACKETVER >= 20081217 +packetLen(0x014c, 6) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20081112 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20081105 +packetLen(0x014c, 3) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20081029 +packetLen(0x014c, 26) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20081022 +packetLen(0x014c, 2) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080924 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080917 +packetLen(0x014c, 14) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080910 +packetLen(0x014c, 6) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080903 +packetLen(0x014c, 8) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080813 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080806 +packetLen(0x014c, 6) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080730 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080722 +packetLen(0x014c, 35) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080715 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080708 +packetLen(0x014c, 6) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080701 +packetLen(0x014c, 26) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080624 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080617 +packetLen(0x014c, 17) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080610 +packetLen(0x014c, 4) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080603 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080528 +packetLen(0x014c, 16) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080507 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080429 +packetLen(0x014c, 12) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080415 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080408 +packetLen(0x014c, 4) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080401 +packetLen(0x014c, 55) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080325 +packetLen(0x014c, 10) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080318 +packetLen(0x014c, 9) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080311 +packetLen(0x014c, 17) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080226 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080219 +packetLen(0x014c, 4) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080102 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#endif + +// Packet: 0x014d +#if PACKETVER >= 20081217 +packetLen(0x014d, 6) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20081203 +packetLen(0x014d, 27) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20081112 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x014d, 6) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20081022 +packetLen(0x014d, 65) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20081015 +packetLen(0x014d, 5) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20081008 +packetLen(0x014d, 10) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20081001 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080924 +packetLen(0x014d, 282) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080917 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080910 +packetLen(0x014d, 26) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080903 +packetLen(0x014d, 3) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080827 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080820 +packetLen(0x014d, 27) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080813 +packetLen(0x014d, 10) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080806 +packetLen(0x014d, 9) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080722 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080715 +packetLen(0x014d, 8) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080701 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080624 +packetLen(0x014d, 9) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080603 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080528 +packetLen(0x014d, 30) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080520 +packetLen(0x014d, 282) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080513 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080507 +packetLen(0x014d, 3) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080429 +packetLen(0x014d, 4) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080422 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080415 +packetLen(0x014d, 6) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080401 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080318 +packetLen(0x014d, 10) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080311 +packetLen(0x014d, 9) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080304 +packetLen(0x014d, 11) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080226 +packetLen(0x014d, 8) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080219 +packetLen(0x014d, 10) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080124 +packetLen(0x014d, 8) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080102 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#endif + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +#if PACKETVER >= 20081217 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20081203 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20081112 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081008 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20081001 +packetLen(0x014f, 16) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080917 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080910 +packetLen(0x014f, 4) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080903 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080827 +packetLen(0x014f, 9) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080722 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080715 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080617 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080603 +packetLen(0x014f, 3) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080528 +packetLen(0x014f, 13) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080507 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080429 +packetLen(0x014f, 23) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080422 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080408 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080401 +packetLen(0x014f, 58) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080325 +packetLen(0x014f, 4) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080318 +packetLen(0x014f, 3) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080304 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080226 +packetLen(0x014f, 97) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080219 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080124 +packetLen(0x014f, 30) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080102 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#endif + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +#if PACKETVER >= 20081217 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20081203 +packetLen(0x0154, 4) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20081119 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20081112 +packetLen(0x0154, 282) // ZC_MEMBERMGR_INFO +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0154, 4) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20081001 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080924 +packetLen(0x0154, 7) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080903 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080827 +packetLen(0x0154, 27) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080820 +packetLen(0x0154, 5) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080813 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080806 +packetLen(0x0154, 186) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080722 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080715 +packetLen(0x0154, 30) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080708 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080701 +packetLen(0x0154, 11) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080617 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080610 +packetLen(0x0154, 13) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080603 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080528 +packetLen(0x0154, 5) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080513 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080507 +packetLen(0x0154, 16) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080422 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080415 +packetLen(0x0154, 6) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080408 +packetLen(0x0154, 10) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080401 +packetLen(0x0154, 39) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080325 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080318 +packetLen(0x0154, 30) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080311 +packetLen(0x0154, 7) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080304 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080226 +packetLen(0x0154, 6) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080219 +packetLen(0x0154, 8) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080102 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#endif + +// Packet: 0x0155 +#if PACKETVER >= 20081217 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20081203 +packetLen(0x0155, 8) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20081126 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20081119 +packetLen(0x0155, 7) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20081112 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20081105 +packetLen(0x0155, 30) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20081029 +packetLen(0x0155, 4) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20081015 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20081008 +packetLen(0x0155, 81) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20081001 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080924 +packetLen(0x0155, 2) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080917 +packetLen(0x0155, 3) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080910 +packetLen(0x0155, 12) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080813 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080806 +packetLen(0x0155, 3) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080730 +packetLen(0x0155, 11) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080715 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080708 +packetLen(0x0155, 8) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080624 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080617 +packetLen(0x0155, 12) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080610 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080603 +packetLen(0x0155, 12) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080520 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080513 +packetLen(0x0155, 27) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080507 +packetLen(0x0155, 10) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080422 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080408 +packetLen(0x0155, 6) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080325 +packetLen(0x0155, 22) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080311 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080304 +packetLen(0x0155, 8) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080226 +packetLen(0x0155, 66) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080219 +packetLen(0x0155, 15) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080102 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#endif + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +#if PACKETVER >= 20081217 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20081203 +packetLen(0x0159, 3) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20081022 +packetLen(0x0159, 3) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20081008 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20081001 +packetLen(0x0159, 8) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080924 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080917 +packetLen(0x0159, 44) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080910 +packetLen(0x0159, 39) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080903 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080827 +packetLen(0x0159, 79) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080820 +packetLen(0x0159, 26) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x0159, 4) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080806 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080722 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x0159, 65) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080701 +packetLen(0x0159, 7) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x0159, 26) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0159, 3) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0159, 27) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0159, 15) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0159, 30) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0159, 29) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0159, 10) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0159, 39) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0159, 6) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0159, 186) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0159, 33) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +#endif + +// Packet: 0x015a +#if PACKETVER >= 20081217 +packetLen(0x015a, 3) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20081203 +packetLen(0x015a, 60) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20081029 +packetLen(0x015a, 30) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20081022 +packetLen(0x015a, 8) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20081015 +packetLen(0x015a, 26) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080827 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080820 +packetLen(0x015a, 28) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080806 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080730 +packetLen(0x015a, 6) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080722 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x015a, 6) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x015a, 24) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x015a, 2) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x015a, 31) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x015a, 15) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x015a, 4) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x015a, 14) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x015a, 23) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x015a, 33) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x015a, 26) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x015a, 27) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x015a, 3) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x015a, 6) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x015a, 8) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x015a, 26) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD +#endif + +// Packet: 0x015b +#if PACKETVER >= 20081217 +packetLen(0x015b, 11) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20081203 +packetLen(0x015b, 60) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20081119 +packetLen(0x015b, 10) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20081029 +packetLen(0x015b, 27) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20081008 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20081001 +packetLen(0x015b, 11) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080924 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080917 +packetLen(0x015b, 7) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080903 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080827 +packetLen(0x015b, 43) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080730 +packetLen(0x015b, 15) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x015b, 8) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080701 +packetLen(0x015b, 6) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x015b, 20) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x015b, 32) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x015b, 59) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x015b, 79) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x015b, 4) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x015b, 97) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x015b, 26) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x015b, 30) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x015b, 2) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x015b, 24) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x015b, 4) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x015b, 33) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x015b, 22) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x015b, 6) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#endif + +// Packet: 0x015c +#if PACKETVER >= 20081217 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20081203 +packetLen(0x015c, 8) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20081119 +packetLen(0x015c, 10) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x015c, 6) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20081029 +packetLen(0x015c, 27) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20081015 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20081008 +packetLen(0x015c, 2) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080917 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080910 +packetLen(0x015c, 23) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080903 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080827 +packetLen(0x015c, 4) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080806 +packetLen(0x015c, 14) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080730 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080722 +packetLen(0x015c, 27) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x015c, 7) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x015c, 15) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x015c, 6) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x015c, 7) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x015c, 6) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x015c, 2) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x015c, 8) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x015c, 18) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x015c, 57) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x015c, 30) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x015c, 15) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x015c, 3) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x015c, 5) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x015c, 14) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD +#endif + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +#if PACKETVER >= 20081112 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20081015 +packetLen(0x015e, 8) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20081008 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20081001 +packetLen(0x015e, 14) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080924 +packetLen(0x015e, 32) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080910 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080903 +packetLen(0x015e, 24) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080827 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080820 +packetLen(0x015e, 30) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080722 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080715 +packetLen(0x015e, 10) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080701 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080624 +packetLen(0x015e, 30) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080610 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080603 +packetLen(0x015e, 4) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080520 +packetLen(0x015e, 3) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080513 +packetLen(0x015e, 2) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080507 +packetLen(0x015e, 9) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080429 +packetLen(0x015e, 10) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080422 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080415 +packetLen(0x015e, 32) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080408 +packetLen(0x015e, 30) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080401 +packetLen(0x015e, 10) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080325 +packetLen(0x015e, 15) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080318 +packetLen(0x015e, 28) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080311 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080304 +packetLen(0x015e, 3) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080226 +packetLen(0x015e, 54) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080219 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080124 +packetLen(0x015e, 16) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080102 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#endif + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +#if PACKETVER >= 20081217 +packetLen(0x0160, 37) // ZC_POSITION_INFO +#elif PACKETVER >= 20081203 +packetLen(0x0160, 11) // ZC_POSITION_INFO +#elif PACKETVER >= 20081112 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20081105 +packetLen(0x0160, 2) // ZC_POSITION_INFO +#elif PACKETVER >= 20081029 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20081022 +packetLen(0x0160, 8) // ZC_POSITION_INFO +#elif PACKETVER >= 20081008 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20081001 +packetLen(0x0160, 6) // ZC_POSITION_INFO +#elif PACKETVER >= 20080924 +packetLen(0x0160, 102) // ZC_POSITION_INFO +#elif PACKETVER >= 20080917 +packetLen(0x0160, 8) // ZC_POSITION_INFO +#elif PACKETVER >= 20080910 +packetLen(0x0160, 6) // ZC_POSITION_INFO +#elif PACKETVER >= 20080903 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080827 +packetLen(0x0160, 67) // ZC_POSITION_INFO +#elif PACKETVER >= 20080806 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080730 +packetLen(0x0160, 9) // ZC_POSITION_INFO +#elif PACKETVER >= 20080722 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080715 +packetLen(0x0160, 14) // ZC_POSITION_INFO +#elif PACKETVER >= 20080708 +packetLen(0x0160, 26) // ZC_POSITION_INFO +#elif PACKETVER >= 20080701 +packetLen(0x0160, 5) // ZC_POSITION_INFO +#elif PACKETVER >= 20080624 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080617 +packetLen(0x0160, 11) // ZC_POSITION_INFO +#elif PACKETVER >= 20080610 +packetLen(0x0160, 5) // ZC_POSITION_INFO +#elif PACKETVER >= 20080603 +packetLen(0x0160, 186) // ZC_POSITION_INFO +#elif PACKETVER >= 20080528 +packetLen(0x0160, 2) // ZC_POSITION_INFO +#elif PACKETVER >= 20080520 +packetLen(0x0160, 8) // ZC_POSITION_INFO +#elif PACKETVER >= 20080507 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080429 +packetLen(0x0160, 6) // ZC_POSITION_INFO +#elif PACKETVER >= 20080408 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080401 +packetLen(0x0160, 8) // ZC_POSITION_INFO +#elif PACKETVER >= 20080325 +packetLen(0x0160, 4) // ZC_POSITION_INFO +#elif PACKETVER >= 20080318 +packetLen(0x0160, 14) // ZC_POSITION_INFO +#elif PACKETVER >= 20080304 +packetLen(0x0160, 26) // ZC_POSITION_INFO +#elif PACKETVER >= 20080226 +packetLen(0x0160, 2) // ZC_POSITION_INFO +#elif PACKETVER >= 20080219 +packetLen(0x0160, 102) // ZC_POSITION_INFO +#elif PACKETVER >= 20080124 +packetLen(0x0160, 6) // ZC_POSITION_INFO +#elif PACKETVER >= 20080102 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#endif + +// Packet: 0x0161 +#if PACKETVER >= 20081126 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20081119 +packetLen(0x0161, 67) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20081112 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20081105 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20081029 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20081022 +packetLen(0x0161, 3) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20081015 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20081008 +packetLen(0x0161, 10) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20081001 +packetLen(0x0161, 30) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080917 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080910 +packetLen(0x0161, 3) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080903 +packetLen(0x0161, 7) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080827 +packetLen(0x0161, 3) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080806 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080730 +packetLen(0x0161, 14) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080722 +packetLen(0x0161, 39) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080701 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080624 +packetLen(0x0161, 16) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080617 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080610 +packetLen(0x0161, 5) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080603 +packetLen(0x0161, 16) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080528 +packetLen(0x0161, 6) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080520 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080513 +packetLen(0x0161, 6) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080507 +packetLen(0x0161, 4) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080422 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080415 +packetLen(0x0161, 15) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080408 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080401 +packetLen(0x0161, 6) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080325 +packetLen(0x0161, 282) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080318 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080311 +packetLen(0x0161, 30) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080304 +packetLen(0x0161, 7) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080226 +packetLen(0x0161, 21) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080219 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080124 +packetLen(0x0161, 8) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080102 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#endif + +// Packet: 0x0162 +#if PACKETVER >= 20081119 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20081112 +packetLen(0x0162, 11) // ZC_GUILD_SKILLINFO +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0162, 8) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20081022 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20081015 +packetLen(0x0162, 2) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20081008 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20081001 +packetLen(0x0162, 6) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080924 +packetLen(0x0162, 7) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080917 +packetLen(0x0162, 79) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080806 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080730 +packetLen(0x0162, 44) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080708 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080701 +packetLen(0x0162, 81) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080624 +packetLen(0x0162, 23) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080617 +packetLen(0x0162, 22) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080610 +packetLen(0x0162, 18) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080603 +packetLen(0x0162, 30) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080528 +packetLen(0x0162, 66) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080520 +packetLen(0x0162, 10) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080513 +packetLen(0x0162, 3) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080507 +packetLen(0x0162, 30) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080429 +packetLen(0x0162, 6) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080422 +packetLen(0x0162, 13) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080415 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080408 +packetLen(0x0162, 3) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080401 +packetLen(0x0162, 282) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080325 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080311 +packetLen(0x0162, 6) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080226 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080219 +packetLen(0x0162, 26) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080124 +packetLen(0x0162, 6) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080102 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#endif + +// Packet: 0x0163 +#if PACKETVER >= 20081203 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20081126 +packetLen(0x0163, 30) // ZC_BAN_LIST +#elif PACKETVER >= 20081119 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20081112 +packetLen(0x0163, 86) // ZC_BAN_LIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0163, 28) // ZC_BAN_LIST +#elif PACKETVER >= 20081029 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20081022 +packetLen(0x0163, 54) // ZC_BAN_LIST +#elif PACKETVER >= 20081015 +packetLen(0x0163, 2) // ZC_BAN_LIST +#elif PACKETVER >= 20081008 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20081001 +packetLen(0x0163, 282) // ZC_BAN_LIST +#elif PACKETVER >= 20080910 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080903 +packetLen(0x0163, 20) // ZC_BAN_LIST +#elif PACKETVER >= 20080820 +packetLen(0x0163, 3) // ZC_BAN_LIST +#elif PACKETVER >= 20080813 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20080806 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080730 +packetLen(0x0163, 114) // ZC_BAN_LIST +#elif PACKETVER >= 20080722 +packetLen(0x0163, 71) // ZC_BAN_LIST +#elif PACKETVER >= 20080715 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080708 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0163, 44) // ZC_BAN_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0163, 68) // ZC_BAN_LIST +#elif PACKETVER >= 20080520 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080513 +packetLen(0x0163, 42) // ZC_BAN_LIST +#elif PACKETVER >= 20080507 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080429 +packetLen(0x0163, 2) // ZC_BAN_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0163, 86) // ZC_BAN_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0163, 8) // ZC_BAN_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0163, 4) // ZC_BAN_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0163, 30) // ZC_BAN_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0163, -1) // ZC_BAN_LIST +#endif + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +#if PACKETVER >= 20081203 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x0165, 21) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20081119 +packetLen(0x0165, 17) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0165, 7) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20081022 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20081015 +packetLen(0x0165, 8) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080903 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080827 +packetLen(0x0165, 39) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080820 +packetLen(0x0165, 6) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080806 +packetLen(0x0165, 4) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080701 +packetLen(0x0165, 54) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0165, 4) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0165, 114) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0165, 11) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0165, 10) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0165, 182) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0165, 5) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0165, 97) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0165, 26) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0165, 102) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0165, 4) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0165, 29) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0165, 6) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD +#endif + +// Packet: 0x0166 +#if PACKETVER >= 20081217 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20081203 +packetLen(0x0166, 8) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20081119 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20081112 +packetLen(0x0166, 114) // ZC_POSITION_ID_NAME_INFO +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0166, 6) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20081015 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20081008 +packetLen(0x0166, 3) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080924 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080917 +packetLen(0x0166, 30) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080910 +packetLen(0x0166, 13) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080820 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080813 +packetLen(0x0166, 14) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080806 +packetLen(0x0166, 11) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080730 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080722 +packetLen(0x0166, 2) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080715 +packetLen(0x0166, 14) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080708 +packetLen(0x0166, 2) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080701 +packetLen(0x0166, 4) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080617 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080610 +packetLen(0x0166, 27) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080603 +packetLen(0x0166, 2) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080528 +packetLen(0x0166, 4) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080520 +packetLen(0x0166, 16) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080513 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080507 +packetLen(0x0166, 7) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080429 +packetLen(0x0166, 6) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080415 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080401 +packetLen(0x0166, 6) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080325 +packetLen(0x0166, 3) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080318 +packetLen(0x0166, 68) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080311 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080304 +packetLen(0x0166, 5) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080226 +packetLen(0x0166, 18) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080102 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#endif + +// Packet: 0x0167 +#if PACKETVER >= 20081217 +packetLen(0x0167, 26) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20081203 +packetLen(0x0167, 7) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20081015 +packetLen(0x0167, 30) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20081008 +packetLen(0x0167, 14) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20081001 +packetLen(0x0167, 2) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080917 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080910 +packetLen(0x0167, 11) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080806 +packetLen(0x0167, 7) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080730 +packetLen(0x0167, 282) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0167, 9) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0167, 67) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0167, 26) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0167, 86) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0167, 6) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0167, 4) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0167, 42) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0167, 7) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0167, 4) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0167, 14) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0167, 7) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0167, 6) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0167, 71) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0167, 2) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0167, 58) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD +#endif + +// Packet: 0x0168 +#if PACKETVER >= 20081203 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20081119 +packetLen(0x0168, 8) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081008 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20081001 +packetLen(0x0168, 7) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080827 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x0168, 6) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080730 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080722 +packetLen(0x0168, 2) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x0168, 11) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080701 +packetLen(0x0168, 6) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x0168, 9) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0168, 11) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0168, 282) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0168, 15) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0168, 2) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0168, 10) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0168, 2) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0168, 10) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0168, 11) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0168, 10) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0168, 22) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0168, 3) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0168, 6) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0168, 4) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +#endif + +// Packet: 0x0169 +#if PACKETVER >= 20081217 +packetLen(0x0169, 2) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20081203 +packetLen(0x0169, 6) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x0169, 10) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20081029 +packetLen(0x0169, 8) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20081022 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20081015 +packetLen(0x0169, 6) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20081008 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20081001 +packetLen(0x0169, 39) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080924 +packetLen(0x0169, 53) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080917 +packetLen(0x0169, 19) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080827 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080820 +packetLen(0x0169, 5) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x0169, 4) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080806 +packetLen(0x0169, 30) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080730 +packetLen(0x0169, 10) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080722 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x0169, 5) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x0169, 9) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080701 +packetLen(0x0169, 5) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0169, 4) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0169, 2) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0169, 9) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0169, 282) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0169, 5) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0169, 2) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0169, 5) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0169, 6) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0169, 4) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0169, 6) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#endif + +// Packet: 0x016a +#if PACKETVER >= 20081217 +packetLen(0x016a, 5) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20081203 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x016a, 26) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x016a, 102) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20081029 +packetLen(0x016a, 19) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20081022 +packetLen(0x016a, 7) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080917 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080910 +packetLen(0x016a, 8) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080820 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x016a, 6) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080722 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x016a, 4) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080701 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x016a, 6) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x016a, 10) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x016a, 4) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x016a, 6) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x016a, 24) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x016a, 6) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x016a, 22) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x016a, 97) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x016a, 7) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x016a, 44) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x016a, 32) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x016a, 26) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x016a, 2) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x016a, 4) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x016a, 3) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD +#endif + +// Packet: 0x016b +#if PACKETVER >= 20081217 +packetLen(0x016b, 6) // CZ_JOIN_GUILD +#elif PACKETVER >= 20081203 +packetLen(0x016b, 34) // CZ_JOIN_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x016b, 10) // CZ_JOIN_GUILD +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x016b, 43) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080924 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080917 +packetLen(0x016b, 30) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080910 +packetLen(0x016b, 5) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080806 +packetLen(0x016b, 11) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080722 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x016b, 26) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x016b, 8) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x016b, 6) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x016b, 10) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x016b, 4) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x016b, 8) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x016b, 27) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x016b, 22) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x016b, 20) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x016b, 6) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x016b, 11) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x016b, 10) // CZ_JOIN_GUILD +#endif + +// Packet: 0x016c +#if PACKETVER >= 20081217 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20081126 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20081112 +packetLen(0x016c, 43) // ZC_UPDATE_GDID +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x016c, 29) // ZC_UPDATE_GDID +#elif PACKETVER >= 20081008 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20081001 +packetLen(0x016c, 8) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080917 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080910 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080903 +packetLen(0x016c, 26) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080820 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080813 +packetLen(0x016c, 14) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080806 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080730 +packetLen(0x016c, 7) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080722 +packetLen(0x016c, 18) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080715 +packetLen(0x016c, 90) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080708 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080701 +packetLen(0x016c, 7) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080624 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080617 +packetLen(0x016c, 10) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080610 +packetLen(0x016c, 28) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080603 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080528 +packetLen(0x016c, 54) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080520 +packetLen(0x016c, 30) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080513 +packetLen(0x016c, 14) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080507 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080429 +packetLen(0x016c, 57) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080422 +packetLen(0x016c, 10) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080408 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080401 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080325 +packetLen(0x016c, 32) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080318 +packetLen(0x016c, 22) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080311 +packetLen(0x016c, 4) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080304 +packetLen(0x016c, 2) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080226 +packetLen(0x016c, 8) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080219 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080124 +packetLen(0x016c, 9) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080102 +packetLen(0x016c, 43) // ZC_UPDATE_GDID +#endif + +// Packet: 0x016d +#if PACKETVER >= 20081217 +packetLen(0x016d, 11) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20081112 +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x016d, 10) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20081029 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20081022 +packetLen(0x016d, 30) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20081015 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20081008 +packetLen(0x016d, 15) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20081001 +packetLen(0x016d, 10) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080917 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080910 +packetLen(0x016d, 97) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080827 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080820 +packetLen(0x016d, 67) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080813 +packetLen(0x016d, 2) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080806 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080730 +packetLen(0x016d, 20) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080715 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080708 +packetLen(0x016d, 7) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080701 +packetLen(0x016d, 3) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080617 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080610 +packetLen(0x016d, 3) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080603 +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080528 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080520 +packetLen(0x016d, 13) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080507 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080429 +packetLen(0x016d, 10) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080422 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080415 +packetLen(0x016d, 4) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080408 +packetLen(0x016d, 3) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080401 +packetLen(0x016d, 4) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080325 +packetLen(0x016d, 6) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080318 +packetLen(0x016d, 19) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080311 +packetLen(0x016d, 22) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080304 +packetLen(0x016d, 8) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080226 +packetLen(0x016d, 3) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080219 +packetLen(0x016d, 30) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080124 +packetLen(0x016d, 2) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080102 +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT +#endif + +// Packet: 0x016e +#if PACKETVER >= 20081217 +packetLen(0x016e, 2) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20081203 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20081126 +packetLen(0x016e, 3) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20081119 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20081112 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x016e, 6) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20081029 +packetLen(0x016e, 10) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20081022 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20081015 +packetLen(0x016e, 7) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20081008 +packetLen(0x016e, 39) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20081001 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080924 +packetLen(0x016e, 6) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080917 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080910 +packetLen(0x016e, 4) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080903 +packetLen(0x016e, 3) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080827 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080820 +packetLen(0x016e, 12) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080813 +packetLen(0x016e, 9) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080806 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080730 +packetLen(0x016e, 2) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080715 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080708 +packetLen(0x016e, 5) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080701 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080624 +packetLen(0x016e, 2) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080617 +packetLen(0x016e, 39) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080520 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080513 +packetLen(0x016e, 15) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080429 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080422 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080415 +packetLen(0x016e, 42) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080401 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080325 +packetLen(0x016e, 2) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080318 +packetLen(0x016e, 3) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080311 +packetLen(0x016e, 4) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080304 +packetLen(0x016e, 30) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080226 +packetLen(0x016e, 4) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080219 +packetLen(0x016e, 3) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080124 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080102 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +#endif + +// Packet: 0x016f +#if PACKETVER >= 20081217 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20081203 +packetLen(0x016f, 2) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20081126 +packetLen(0x016f, 32) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20081112 +packetLen(0x016f, 182) // ZC_GUILD_NOTICE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x016f, 26) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20081029 +packetLen(0x016f, 7) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20081001 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080924 +packetLen(0x016f, 11) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080917 +packetLen(0x016f, 43) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080903 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080827 +packetLen(0x016f, 2) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080820 +packetLen(0x016f, 9) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080806 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080730 +packetLen(0x016f, 81) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080715 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080708 +packetLen(0x016f, 30) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080701 +packetLen(0x016f, 44) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080624 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080617 +packetLen(0x016f, 2) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080603 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080528 +packetLen(0x016f, 2) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080507 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080429 +packetLen(0x016f, 14) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080422 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080415 +packetLen(0x016f, 6) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080408 +packetLen(0x016f, 7) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080401 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080325 +packetLen(0x016f, 22) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080318 +packetLen(0x016f, 9) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080311 +packetLen(0x016f, 182) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080304 +packetLen(0x016f, 12) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080226 +packetLen(0x016f, 6) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080219 +packetLen(0x016f, 4) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080124 +packetLen(0x016f, 29) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080102 +packetLen(0x016f, 182) // ZC_GUILD_NOTICE +#endif + +// Packet: 0x0170 +#if PACKETVER >= 20081217 +packetLen(0x0170, 26) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20081119 +packetLen(0x0170, 30) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x0170, 44) // CZ_REQ_ALLY_GUILD +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20081022 +packetLen(0x0170, 19) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20081015 +packetLen(0x0170, 23) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20081008 +packetLen(0x0170, 10) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20081001 +packetLen(0x0170, 2) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080917 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080910 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080903 +packetLen(0x0170, 3) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080806 +packetLen(0x0170, 4) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080730 +packetLen(0x0170, 6) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080722 +packetLen(0x0170, 17) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080701 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x0170, 20) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0170, 30) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0170, 102) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0170, 6) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0170, 26) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0170, 22) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0170, 282) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0170, 6) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0170, 4) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0170, 81) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0170, 30) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0170, 60) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#endif + +// Packet: 0x0171 +#if PACKETVER >= 20081217 +packetLen(0x0171, 6) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20081022 +packetLen(0x0171, 8) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20081015 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20081008 +packetLen(0x0171, 17) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20081001 +packetLen(0x0171, 282) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080924 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080917 +packetLen(0x0171, 4) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080910 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080903 +packetLen(0x0171, 10) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080827 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080820 +packetLen(0x0171, 282) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080813 +packetLen(0x0171, 2) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080806 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080730 +packetLen(0x0171, 58) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080701 +packetLen(0x0171, 8) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x0171, 3) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0171, 10) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080603 +packetLen(0x0171, 282) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080528 +packetLen(0x0171, 6) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0171, 7) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0171, 5) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0171, 23) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0171, 8) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0171, 3) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0171, 6) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0171, 67) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0171, 6) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0171, 10) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD +#endif + +// Packet: 0x0172 +#if PACKETVER >= 20081217 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20081203 +packetLen(0x0172, 5) // CZ_ALLY_GUILD +#elif PACKETVER >= 20081126 +packetLen(0x0172, 282) // CZ_ALLY_GUILD +#elif PACKETVER >= 20081112 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0172, 30) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080730 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080722 +packetLen(0x0172, 14) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080715 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080708 +packetLen(0x0172, 102) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080624 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080617 +packetLen(0x0172, 102) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0172, 3) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080520 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080513 +packetLen(0x0172, 6) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080507 +packetLen(0x0172, 28) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080429 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080422 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080415 +packetLen(0x0172, 2) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080408 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080401 +packetLen(0x0172, 6) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080325 +packetLen(0x0172, 14) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080318 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0172, 3) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0172, 53) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0172, 22) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080124 +packetLen(0x0172, 14) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +#endif + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +#if PACKETVER >= 20081126 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20081119 +packetLen(0x0177, 7) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20081112 +packetLen(0x0177, 3) // ZC_ITEMIDENTIFY_LIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0177, 8) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20081015 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20081008 +packetLen(0x0177, 6) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20081001 +packetLen(0x0177, 5) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080924 +packetLen(0x0177, 3) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080917 +packetLen(0x0177, 8) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080910 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080903 +packetLen(0x0177, 7) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080827 +packetLen(0x0177, 182) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080820 +packetLen(0x0177, 6) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080813 +packetLen(0x0177, 71) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080730 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080722 +packetLen(0x0177, 3) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080715 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080708 +packetLen(0x0177, 7) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080701 +packetLen(0x0177, 2) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080624 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080617 +packetLen(0x0177, 4) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0177, 31) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0177, 58) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0177, 4) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080513 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080507 +packetLen(0x0177, 30) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080429 +packetLen(0x0177, 26) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0177, 28) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0177, 114) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080408 +packetLen(0x0177, 10) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080401 +packetLen(0x0177, 4) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080325 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0177, 11) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0177, 27) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0177, 34) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0177, 3) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0177, 2) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0177, 30) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#endif + +// Packet: 0x0178 +#if PACKETVER >= 20081112 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081008 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20081001 +packetLen(0x0178, 14) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080917 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080910 +packetLen(0x0178, 6) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080827 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080820 +packetLen(0x0178, 90) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080806 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080730 +packetLen(0x0178, 2) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080722 +packetLen(0x0178, 8) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080715 +packetLen(0x0178, 55) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080624 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080617 +packetLen(0x0178, 10) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080603 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080528 +packetLen(0x0178, 33) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080520 +packetLen(0x0178, 7) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080513 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080429 +packetLen(0x0178, 6) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080415 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080408 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080401 +packetLen(0x0178, 7) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080325 +packetLen(0x0178, 6) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080318 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080311 +packetLen(0x0178, 11) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080304 +packetLen(0x0178, 6) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080226 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080219 +packetLen(0x0178, 30) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080124 +packetLen(0x0178, 68) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080102 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +#endif + +// Packet: 0x0179 +#if PACKETVER >= 20081217 +packetLen(0x0179, 53) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20081203 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20081126 +packetLen(0x0179, 26) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20081119 +packetLen(0x0179, 10) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20081112 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0179, 3) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20081022 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20081015 +packetLen(0x0179, 26) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20081008 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20081001 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080924 +packetLen(0x0179, 4) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080917 +packetLen(0x0179, 9) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080910 +packetLen(0x0179, 8) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080903 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080827 +packetLen(0x0179, 60) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080820 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080813 +packetLen(0x0179, 102) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080806 +packetLen(0x0179, 28) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080730 +packetLen(0x0179, 27) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080722 +packetLen(0x0179, 2) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080715 +packetLen(0x0179, 29) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080708 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080701 +packetLen(0x0179, 59) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080624 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080617 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080610 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080603 +packetLen(0x0179, 27) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080528 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080520 +packetLen(0x0179, 11) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080513 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080507 +packetLen(0x0179, 43) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080429 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080422 +packetLen(0x0179, 55) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080415 +packetLen(0x0179, 4) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080408 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080401 +packetLen(0x0179, 10) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080325 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080318 +packetLen(0x0179, 8) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080311 +packetLen(0x0179, 2) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080304 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080219 +packetLen(0x0179, 3) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080124 +packetLen(0x0179, 15) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080102 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY +#endif + +// Packet: 0x017a +#if PACKETVER >= 20081217 +packetLen(0x017a, 24) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081203 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081126 +packetLen(0x017a, 3) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081112 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x017a, 71) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081022 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081015 +packetLen(0x017a, 6) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080917 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080910 +packetLen(0x017a, 26) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080820 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080813 +packetLen(0x017a, 66) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080730 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080722 +packetLen(0x017a, 22) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080708 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080701 +packetLen(0x017a, 29) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080610 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080603 +packetLen(0x017a, 28) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080528 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080520 +packetLen(0x017a, 6) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080513 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080507 +packetLen(0x017a, 6) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080429 +packetLen(0x017a, 5) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080415 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080408 +packetLen(0x017a, 2) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080401 +packetLen(0x017a, 31) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080325 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080318 +packetLen(0x017a, 8) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080311 +packetLen(0x017a, 6) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080304 +packetLen(0x017a, 13) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080219 +packetLen(0x017a, 30) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080124 +packetLen(0x017a, 7) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080102 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#endif + +// Packet: 0x017b +#if PACKETVER >= 20081217 +packetLen(0x017b, 10) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081203 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081126 +packetLen(0x017b, 4) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081119 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081112 +packetLen(0x017b, 10) // ZC_ITEMCOMPOSITION_LIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081015 +packetLen(0x017b, 3) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20081008 +packetLen(0x017b, 6) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080917 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080910 +packetLen(0x017b, 32) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080827 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080820 +packetLen(0x017b, 10) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080813 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080806 +packetLen(0x017b, 282) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080730 +packetLen(0x017b, 8) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080708 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080701 +packetLen(0x017b, 2) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080617 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080610 +packetLen(0x017b, 2) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080603 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080528 +packetLen(0x017b, 4) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080520 +packetLen(0x017b, 68) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080513 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080507 +packetLen(0x017b, 53) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080429 +packetLen(0x017b, 8) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080415 +packetLen(0x017b, 6) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080408 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080401 +packetLen(0x017b, 6) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080325 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080318 +packetLen(0x017b, 11) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080311 +packetLen(0x017b, 3) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080304 +packetLen(0x017b, 4) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080226 +packetLen(0x017b, 9) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080219 +packetLen(0x017b, 18) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080124 +packetLen(0x017b, 3) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080102 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#endif + +// Packet: 0x017c +#if PACKETVER >= 20081119 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20081112 +packetLen(0x017c, 79) // CZ_REQ_ITEMCOMPOSITION +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x017c, 2) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20081029 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20081022 +packetLen(0x017c, 8) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20081015 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20081008 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20081001 +packetLen(0x017c, 4) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080924 +packetLen(0x017c, 5) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080917 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080910 +packetLen(0x017c, 54) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080903 +packetLen(0x017c, 4) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080813 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080806 +packetLen(0x017c, 12) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080730 +packetLen(0x017c, 102) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080715 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080708 +packetLen(0x017c, 7) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080701 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080624 +packetLen(0x017c, 55) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080617 +packetLen(0x017c, 26) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080610 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080603 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080528 +packetLen(0x017c, 21) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080520 +packetLen(0x017c, 39) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080513 +packetLen(0x017c, 7) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080422 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080408 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080401 +packetLen(0x017c, 31) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080311 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080304 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080226 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080219 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080124 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080102 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#endif + +// Packet: 0x017d +#if PACKETVER >= 20081217 +packetLen(0x017d, 2) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20081203 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20081126 +packetLen(0x017d, 6) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20081112 +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20081029 +packetLen(0x017d, 9) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20081022 +packetLen(0x017d, 14) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20081015 +packetLen(0x017d, 16) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20081008 +packetLen(0x017d, 53) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20081001 +packetLen(0x017d, 71) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080910 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080903 +packetLen(0x017d, 4) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080827 +packetLen(0x017d, 18) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080813 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080806 +packetLen(0x017d, 10) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080730 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080722 +packetLen(0x017d, 97) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080715 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080708 +packetLen(0x017d, 31) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080701 +packetLen(0x017d, 33) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080610 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080603 +packetLen(0x017d, 3) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080528 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080520 +packetLen(0x017d, 4) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080422 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080415 +packetLen(0x017d, 11) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080408 +packetLen(0x017d, 6) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080401 +packetLen(0x017d, 8) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080325 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080318 +packetLen(0x017d, 28) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080311 +packetLen(0x017d, 34) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080304 +packetLen(0x017d, 30) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080219 +packetLen(0x017d, 8) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080124 +packetLen(0x017d, 10) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080102 +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION +#endif + +// Packet: 0x017e +#if PACKETVER >= 20081217 +packetLen(0x017e, 2) // CZ_GUILD_CHAT +#elif PACKETVER >= 20081203 +packetLen(0x017e, 3) // CZ_GUILD_CHAT +#elif PACKETVER >= 20081119 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20081112 +packetLen(0x017e, 282) // CZ_GUILD_CHAT +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x017e, 67) // CZ_GUILD_CHAT +#elif PACKETVER >= 20081022 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20081015 +packetLen(0x017e, 10) // CZ_GUILD_CHAT +#elif PACKETVER >= 20081008 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20081001 +packetLen(0x017e, 9) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080924 +packetLen(0x017e, 6) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080917 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080910 +packetLen(0x017e, 8) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080903 +packetLen(0x017e, 32) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080827 +packetLen(0x017e, 11) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080820 +packetLen(0x017e, 4) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080813 +packetLen(0x017e, 8) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080806 +packetLen(0x017e, 30) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080730 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080722 +packetLen(0x017e, 26) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080715 +packetLen(0x017e, 6) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080708 +packetLen(0x017e, 11) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080701 +packetLen(0x017e, 4) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080624 +packetLen(0x017e, 6) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080617 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080610 +packetLen(0x017e, 2) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080603 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080528 +packetLen(0x017e, 29) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080520 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080513 +packetLen(0x017e, 3) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080507 +packetLen(0x017e, 32) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080429 +packetLen(0x017e, 3) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080422 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080415 +packetLen(0x017e, 14) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080408 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080401 +packetLen(0x017e, 4) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080325 +packetLen(0x017e, 14) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080318 +packetLen(0x017e, 3) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080311 +packetLen(0x017e, 31) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080304 +packetLen(0x017e, 10) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080226 +packetLen(0x017e, 7) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080219 +packetLen(0x017e, 28) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080124 +packetLen(0x017e, 7) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080102 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#endif + +// Packet: 0x017f +#if PACKETVER >= 20081217 +packetLen(0x017f, 30) // ZC_GUILD_CHAT +#elif PACKETVER >= 20081203 +packetLen(0x017f, 54) // ZC_GUILD_CHAT +#elif PACKETVER >= 20081126 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20081119 +packetLen(0x017f, 4) // ZC_GUILD_CHAT +#elif PACKETVER >= 20081112 +packetLen(0x017f, 20) // ZC_GUILD_CHAT +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20081022 +packetLen(0x017f, 10) // ZC_GUILD_CHAT +#elif PACKETVER >= 20081008 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20081001 +packetLen(0x017f, 8) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080924 +packetLen(0x017f, 30) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080917 +packetLen(0x017f, 11) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080910 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080903 +packetLen(0x017f, 10) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080730 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080722 +packetLen(0x017f, 282) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080715 +packetLen(0x017f, 53) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080708 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080624 +packetLen(0x017f, 2) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080520 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080513 +packetLen(0x017f, 54) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080507 +packetLen(0x017f, 11) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080429 +packetLen(0x017f, 4) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080415 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080408 +packetLen(0x017f, 20) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080401 +packetLen(0x017f, 6) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080325 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080318 +packetLen(0x017f, 4) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080311 +packetLen(0x017f, 35) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080304 +packetLen(0x017f, 14) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080226 +packetLen(0x017f, 30) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080219 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080124 +packetLen(0x017f, 30) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080102 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#endif + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +#if PACKETVER >= 20081126 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20081119 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20081112 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20081029 +packetLen(0x0188, 10) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20081022 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20081015 +packetLen(0x0188, 67) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20081001 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080924 +packetLen(0x0188, 3) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080917 +packetLen(0x0188, 6) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080910 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080903 +packetLen(0x0188, 6) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080827 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080820 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080813 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080806 +packetLen(0x0188, 4) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080715 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080708 +packetLen(0x0188, 2) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080617 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080610 +packetLen(0x0188, 29) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080603 +packetLen(0x0188, 14) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080528 +packetLen(0x0188, 3) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080520 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080513 +packetLen(0x0188, 10) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080507 +packetLen(0x0188, 2) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080415 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080408 +packetLen(0x0188, 7) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080401 +packetLen(0x0188, 6) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080325 +packetLen(0x0188, 30) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080318 +packetLen(0x0188, 3) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080311 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080304 +packetLen(0x0188, 2) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080226 +packetLen(0x0188, 30) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080219 +packetLen(0x0188, 27) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080124 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080102 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING +#endif + +// Packet: 0x0189 +#if PACKETVER >= 20081217 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20081203 +packetLen(0x0189, 5) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20081119 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20081112 +packetLen(0x0189, 9) // ZC_NOTIFY_MAPINFO +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20081015 +packetLen(0x0189, 90) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080917 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080910 +packetLen(0x0189, 16) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080903 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080827 +packetLen(0x0189, 2) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080820 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080813 +packetLen(0x0189, 2) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080806 +packetLen(0x0189, 6) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080730 +packetLen(0x0189, 10) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080722 +packetLen(0x0189, 7) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080715 +packetLen(0x0189, 6) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080624 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080617 +packetLen(0x0189, 55) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080610 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080603 +packetLen(0x0189, 7) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080528 +packetLen(0x0189, 24) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080520 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080513 +packetLen(0x0189, 10) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080415 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080408 +packetLen(0x0189, 58) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080401 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080325 +packetLen(0x0189, 31) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080318 +packetLen(0x0189, 30) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080311 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080304 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080226 +packetLen(0x0189, 17) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080219 +packetLen(0x0189, 8) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080124 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080102 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO +#endif + +// Packet: 0x018a +#if PACKETVER >= 20081217 +packetLen(0x018a, 8) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20081112 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081008 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20081001 +packetLen(0x018a, 3) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080924 +packetLen(0x018a, 186) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080910 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080806 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080730 +packetLen(0x018a, 14) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080722 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080715 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080708 +packetLen(0x018a, 10) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080701 +packetLen(0x018a, 6) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080624 +packetLen(0x018a, 14) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080617 +packetLen(0x018a, 18) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080610 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080603 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080528 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080520 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080429 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080422 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080415 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080408 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080401 +packetLen(0x018a, 32) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080325 +packetLen(0x018a, 6) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080318 +packetLen(0x018a, 14) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080311 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080304 +packetLen(0x018a, 7) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080226 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080219 +packetLen(0x018a, 7) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080124 +packetLen(0x018a, 5) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080102 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#endif + +// Packet: 0x018b +#if PACKETVER >= 20081203 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20081126 +packetLen(0x018b, 14) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20081119 +packetLen(0x018b, 60) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20081112 +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x018b, 18) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20081029 +packetLen(0x018b, 5) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20081008 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20081001 +packetLen(0x018b, 2) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080924 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080917 +packetLen(0x018b, 10) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080903 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080827 +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080820 +packetLen(0x018b, 3) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080813 +packetLen(0x018b, 30) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080722 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080715 +packetLen(0x018b, 8) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080708 +packetLen(0x018b, 65) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080701 +packetLen(0x018b, 66) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080610 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080603 +packetLen(0x018b, 182) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080528 +packetLen(0x018b, 12) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080520 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080513 +packetLen(0x018b, 3) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080507 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080429 +packetLen(0x018b, 102) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080408 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080401 +packetLen(0x018b, 3) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080325 +packetLen(0x018b, 6) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080318 +packetLen(0x018b, 30) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080311 +packetLen(0x018b, 7) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080304 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080226 +packetLen(0x018b, 10) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080124 +packetLen(0x018b, 6) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080102 +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT +#endif + +// Packet: 0x018c +#if PACKETVER >= 20081217 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20081203 +packetLen(0x018c, 4) // ZC_MONSTER_INFO +#elif PACKETVER >= 20081126 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20081119 +packetLen(0x018c, 26) // ZC_MONSTER_INFO +#elif PACKETVER >= 20081112 +packetLen(0x018c, 29) // ZC_MONSTER_INFO +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x018c, 4) // ZC_MONSTER_INFO +#elif PACKETVER >= 20081029 +packetLen(0x018c, 33) // ZC_MONSTER_INFO +#elif PACKETVER >= 20081022 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20081015 +packetLen(0x018c, 2) // ZC_MONSTER_INFO +#elif PACKETVER >= 20081008 +packetLen(0x018c, 58) // ZC_MONSTER_INFO +#elif PACKETVER >= 20081001 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080924 +packetLen(0x018c, 26) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080917 +packetLen(0x018c, 33) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080910 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080903 +packetLen(0x018c, 2) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080827 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080820 +packetLen(0x018c, 7) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080813 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080806 +packetLen(0x018c, 30) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080722 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080715 +packetLen(0x018c, 59) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080708 +packetLen(0x018c, 4) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080701 +packetLen(0x018c, 14) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080624 +packetLen(0x018c, 8) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080617 +packetLen(0x018c, 31) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080610 +packetLen(0x018c, 282) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080603 +packetLen(0x018c, 8) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080528 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080520 +packetLen(0x018c, 102) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080513 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080507 +packetLen(0x018c, 21) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080401 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080325 +packetLen(0x018c, 8) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080318 +packetLen(0x018c, 6) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080304 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080226 +packetLen(0x018c, 2) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080219 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080124 +packetLen(0x018c, 6) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080102 +packetLen(0x018c, 29) // ZC_MONSTER_INFO +#endif + +// Packet: 0x018d +#if PACKETVER >= 20081203 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20081126 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x018d, 8) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x018d, 14) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080820 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x018d, 3) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x018d, 3) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x018d, 2) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x018d, 8) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x018d, 65) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x018d, 9) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x018d, 2) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x018d, 59) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x018d, 79) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x018d, 7) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x018d, 8) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x018d, 39) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x018d, 22) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x018d, 4) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#endif + +// Packet: 0x018e +#if PACKETVER >= 20081217 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20081203 +packetLen(0x018e, 71) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20081126 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20081119 +packetLen(0x018e, 3) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20081112 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20081015 +packetLen(0x018e, 14) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20081008 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20081001 +packetLen(0x018e, 16) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080924 +packetLen(0x018e, 4) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080917 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080910 +packetLen(0x018e, 11) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080827 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080820 +packetLen(0x018e, 6) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080813 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080806 +packetLen(0x018e, 58) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080730 +packetLen(0x018e, 23) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080722 +packetLen(0x018e, 30) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080715 +packetLen(0x018e, 6) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080708 +packetLen(0x018e, 4) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080701 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080624 +packetLen(0x018e, 14) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080617 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080610 +packetLen(0x018e, 59) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080603 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080528 +packetLen(0x018e, 5) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080520 +packetLen(0x018e, 11) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080513 +packetLen(0x018e, 2) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080429 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080422 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080415 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080408 +packetLen(0x018e, 27) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080401 +packetLen(0x018e, 3) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080325 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080318 +packetLen(0x018e, 65) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080311 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080304 +packetLen(0x018e, 58) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080226 +packetLen(0x018e, 4) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080219 +packetLen(0x018e, 39) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080124 +packetLen(0x018e, 3) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080102 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#endif + +// Packet: 0x018f +#if PACKETVER >= 20081217 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20081203 +packetLen(0x018f, 3) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20081126 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20081119 +packetLen(0x018f, 28) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20081112 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20081029 +packetLen(0x018f, 14) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20081022 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20081015 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20081008 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20081001 +packetLen(0x018f, 4) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080924 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080917 +packetLen(0x018f, 3) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080827 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080820 +packetLen(0x018f, 18) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080806 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080730 +packetLen(0x018f, 32) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080722 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080715 +packetLen(0x018f, 4) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080708 +packetLen(0x018f, 21) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080617 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080610 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080603 +packetLen(0x018f, 12) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080520 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080513 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080507 +packetLen(0x018f, 7) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080429 +packetLen(0x018f, 14) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080422 +packetLen(0x018f, 10) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080415 +packetLen(0x018f, 30) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080408 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080401 +packetLen(0x018f, 11) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080325 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080318 +packetLen(0x018f, 7) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080311 +packetLen(0x018f, 11) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080304 +packetLen(0x018f, 3) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080226 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080219 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080124 +packetLen(0x018f, 8) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080102 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#endif + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +#if PACKETVER >= 20081217 +packetLen(0x0194, 3) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20081203 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20081126 +packetLen(0x0194, 3) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20081112 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0194, 20) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20081022 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20081015 +packetLen(0x0194, 114) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20081008 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20081001 +packetLen(0x0194, 8) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080820 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080813 +packetLen(0x0194, 7) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080806 +packetLen(0x0194, 13) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080730 +packetLen(0x0194, 182) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080722 +packetLen(0x0194, 15) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080715 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080708 +packetLen(0x0194, 10) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080701 +packetLen(0x0194, 42) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080624 +packetLen(0x0194, 26) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080617 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080610 +packetLen(0x0194, 2) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080528 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080520 +packetLen(0x0194, 2) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080513 +packetLen(0x0194, 4) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080507 +packetLen(0x0194, 53) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080429 +packetLen(0x0194, 59) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080422 +packetLen(0x0194, 8) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080415 +packetLen(0x0194, 11) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080408 +packetLen(0x0194, 21) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080401 +packetLen(0x0194, 3) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080325 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080318 +packetLen(0x0194, 16) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080311 +packetLen(0x0194, 8) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080304 +packetLen(0x0194, 3) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080226 +packetLen(0x0194, 4) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080219 +packetLen(0x0194, 14) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080124 +packetLen(0x0194, 282) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080102 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID +#endif + +// Packet: 0x0195 +#if PACKETVER >= 20081217 +packetLen(0x0195, 29) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20081203 +packetLen(0x0195, 23) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20081112 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20081029 +packetLen(0x0195, 6) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20081022 +packetLen(0x0195, 2) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20081015 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20081008 +packetLen(0x0195, 39) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080924 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080917 +packetLen(0x0195, 10) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080910 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080903 +packetLen(0x0195, 14) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080827 +packetLen(0x0195, 6) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080730 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080722 +packetLen(0x0195, 182) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080708 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080701 +packetLen(0x0195, 26) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080610 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080603 +packetLen(0x0195, 53) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080528 +packetLen(0x0195, 2) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080513 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080507 +packetLen(0x0195, 2) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080429 +packetLen(0x0195, 31) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080422 +packetLen(0x0195, 66) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080415 +packetLen(0x0195, 2) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080408 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080401 +packetLen(0x0195, 2) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080325 +packetLen(0x0195, 60) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080318 +packetLen(0x0195, 29) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080311 +packetLen(0x0195, 15) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080304 +packetLen(0x0195, 28) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080226 +packetLen(0x0195, 3) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080219 +packetLen(0x0195, 43) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080124 +packetLen(0x0195, 6) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080102 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL +#endif + +// Packet: 0x0196 +#if PACKETVER >= 20081126 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20081119 +packetLen(0x0196, 26) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0196, 21) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20081022 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20081015 +packetLen(0x0196, 8) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20081001 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080924 +packetLen(0x0196, 5) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080917 +packetLen(0x0196, 10) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080910 +packetLen(0x0196, 7) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080903 +packetLen(0x0196, 4) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080827 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080820 +packetLen(0x0196, 4) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x0196, 8) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080806 +packetLen(0x0196, 26) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080701 +packetLen(0x0196, 15) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x0196, 10) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x0196, 67) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x0196, 22) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080513 +packetLen(0x0196, 3) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x0196, 10) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x0196, 31) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x0196, 30) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x0196, 11) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x0196, 6) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x0196, 27) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x0196, 6) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x0196, 2) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x0196, 4) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x0196, 26) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE +#endif + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +#if PACKETVER >= 20081217 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20081203 +packetLen(0x0199, 30) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20081119 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20081112 +packetLen(0x0199, 6) // ZC_NOTIFY_MAPPROPERTY +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20081029 +packetLen(0x0199, 8) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20081022 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20081015 +packetLen(0x0199, 7) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20081008 +packetLen(0x0199, 67) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20081001 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080924 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080917 +packetLen(0x0199, 11) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080903 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080827 +packetLen(0x0199, 11) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080813 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080806 +packetLen(0x0199, 2) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080708 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080701 +packetLen(0x0199, 7) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080624 +packetLen(0x0199, 29) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080617 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080610 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080603 +packetLen(0x0199, 33) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080528 +packetLen(0x0199, 11) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080520 +packetLen(0x0199, 5) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080513 +packetLen(0x0199, 28) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080507 +packetLen(0x0199, 8) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080415 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080408 +packetLen(0x0199, 6) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080401 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080325 +packetLen(0x0199, 44) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080318 +packetLen(0x0199, 2) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080311 +packetLen(0x0199, 17) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080304 +packetLen(0x0199, 8) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080226 +packetLen(0x0199, 6) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080219 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080124 +packetLen(0x0199, 5) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080102 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY +#endif + +// Packet: 0x019a +#if PACKETVER >= 20081217 +packetLen(0x019a, 17) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20081126 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20081119 +packetLen(0x019a, 23) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20081112 +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20081029 +packetLen(0x019a, 11) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20081015 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20081008 +packetLen(0x019a, 4) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080924 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080917 +packetLen(0x019a, 12) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080903 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080827 +packetLen(0x019a, 8) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080820 +packetLen(0x019a, 3) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080813 +packetLen(0x019a, 6) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080806 +packetLen(0x019a, 8) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080730 +packetLen(0x019a, 6) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080722 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080715 +packetLen(0x019a, 30) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080708 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080701 +packetLen(0x019a, 58) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080624 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080617 +packetLen(0x019a, 11) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080610 +packetLen(0x019a, 6) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080603 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080528 +packetLen(0x019a, 6) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080520 +packetLen(0x019a, 17) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080513 +packetLen(0x019a, 3) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080507 +packetLen(0x019a, 8) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080429 +packetLen(0x019a, 2) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080415 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080408 +packetLen(0x019a, 3) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080401 +packetLen(0x019a, 6) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080325 +packetLen(0x019a, 11) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080318 +packetLen(0x019a, 4) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080311 +packetLen(0x019a, 30) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080304 +packetLen(0x019a, 35) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080226 +packetLen(0x019a, 42) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080219 +packetLen(0x019a, 10) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080124 +packetLen(0x019a, 57) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080102 +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING +#endif + +// Packet: 0x019b +#if PACKETVER >= 20081217 +packetLen(0x019b, 8) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20081203 +packetLen(0x019b, 28) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20081126 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20081119 +packetLen(0x019b, 3) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20081112 +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081015 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20081008 +packetLen(0x019b, 8) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20081001 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080924 +packetLen(0x019b, 8) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080917 +packetLen(0x019b, 16) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080910 +packetLen(0x019b, 14) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080903 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080827 +packetLen(0x019b, 39) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080813 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080806 +packetLen(0x019b, 81) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080730 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080722 +packetLen(0x019b, 8) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080715 +packetLen(0x019b, 14) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080708 +packetLen(0x019b, 29) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080624 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080617 +packetLen(0x019b, 4) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080610 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080603 +packetLen(0x019b, 2) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080528 +packetLen(0x019b, 27) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080520 +packetLen(0x019b, 18) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080513 +packetLen(0x019b, 68) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080507 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080429 +packetLen(0x019b, 17) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080415 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080408 +packetLen(0x019b, 29) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080401 +packetLen(0x019b, 54) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080318 +packetLen(0x019b, 8) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080311 +packetLen(0x019b, 6) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080304 +packetLen(0x019b, 2) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080226 +packetLen(0x019b, 65) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080219 +packetLen(0x019b, 2) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080124 +packetLen(0x019b, 30) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080102 +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT +#endif + +// Packet: 0x019c +#if PACKETVER >= 20081217 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20081203 +packetLen(0x019c, 7) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20081126 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20081119 +packetLen(0x019c, 30) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20081112 +packetLen(0x019c, 4) // CZ_LOCALBROADCAST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20081022 +packetLen(0x019c, 2) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20081008 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20081001 +packetLen(0x019c, 13) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080903 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080827 +packetLen(0x019c, 8) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080813 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080806 +packetLen(0x019c, 3) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080722 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080715 +packetLen(0x019c, 14) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080708 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080701 +packetLen(0x019c, 282) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080624 +packetLen(0x019c, 29) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080617 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080610 +packetLen(0x019c, 6) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080603 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080528 +packetLen(0x019c, 55) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080520 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080513 +packetLen(0x019c, 81) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080507 +packetLen(0x019c, 18) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080429 +packetLen(0x019c, 79) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080422 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080415 +packetLen(0x019c, 8) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080408 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080401 +packetLen(0x019c, 54) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080325 +packetLen(0x019c, 23) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080318 +packetLen(0x019c, 43) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080311 +packetLen(0x019c, 8) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080226 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080219 +packetLen(0x019c, 2) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080124 +packetLen(0x019c, 186) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080102 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#endif + +// Packet: 0x019d +#if PACKETVER >= 20081217 +packetLen(0x019d, 60) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20081203 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20081126 +packetLen(0x019d, 18) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20081119 +packetLen(0x019d, 9) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20081112 +packetLen(0x019d, 7) // CZ_CHANGE_EFFECTSTATE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x019d, 8) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20081029 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20081022 +packetLen(0x019d, 15) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080924 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080917 +packetLen(0x019d, 23) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080910 +packetLen(0x019d, 30) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080903 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080827 +packetLen(0x019d, 97) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080820 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080813 +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080806 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080730 +packetLen(0x019d, 2) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080701 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080624 +packetLen(0x019d, 30) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080603 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080528 +packetLen(0x019d, 2) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080520 +packetLen(0x019d, 8) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080513 +packetLen(0x019d, 11) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080429 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080422 +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080415 +packetLen(0x019d, 18) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080408 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080401 +packetLen(0x019d, 68) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080325 +packetLen(0x019d, 4) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080318 +packetLen(0x019d, 14) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080311 +packetLen(0x019d, 4) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080226 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080219 +packetLen(0x019d, 18) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080124 +packetLen(0x019d, 22) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080102 +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE +#endif + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +#if PACKETVER >= 20081203 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081126 +packetLen(0x019f, 7) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081119 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081112 +packetLen(0x019f, 81) // CZ_TRYCAPTURE_MONSTER +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081029 +packetLen(0x019f, 20) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081015 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081008 +packetLen(0x019f, 8) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080924 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080917 +packetLen(0x019f, 28) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080903 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080827 +packetLen(0x019f, 26) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080722 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080715 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080708 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080701 +packetLen(0x019f, 36) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080610 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080603 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080528 +packetLen(0x019f, 20) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080520 +packetLen(0x019f, 18) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080513 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080507 +packetLen(0x019f, 26) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080429 +packetLen(0x019f, 3) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080422 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080415 +packetLen(0x019f, 8) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080408 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080401 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080325 +packetLen(0x019f, 34) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080318 +packetLen(0x019f, 10) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080311 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080304 +packetLen(0x019f, 23) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080226 +packetLen(0x019f, 79) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080124 +packetLen(0x019f, 2) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080102 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#endif + +// Packet: 0x01a0 +#if PACKETVER >= 20081217 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081203 +packetLen(0x01a0, 42) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081126 +packetLen(0x01a0, 4) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081112 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081029 +packetLen(0x01a0, 4) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081008 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20081001 +packetLen(0x01a0, 2) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080917 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080910 +packetLen(0x01a0, 2) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080903 +packetLen(0x01a0, 282) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080827 +packetLen(0x01a0, 8) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080813 +packetLen(0x01a0, 6) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080806 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080730 +packetLen(0x01a0, 5) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080722 +packetLen(0x01a0, 10) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080715 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080708 +packetLen(0x01a0, 10) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080701 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080624 +packetLen(0x01a0, 5) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080617 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080610 +packetLen(0x01a0, 11) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080603 +packetLen(0x01a0, 29) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080528 +packetLen(0x01a0, 4) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080520 +packetLen(0x01a0, 42) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080513 +packetLen(0x01a0, 24) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080507 +packetLen(0x01a0, 23) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080429 +packetLen(0x01a0, 11) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080408 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080401 +packetLen(0x01a0, 30) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080325 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080318 +packetLen(0x01a0, 17) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080311 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080304 +packetLen(0x01a0, 22) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080226 +packetLen(0x01a0, 8) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080219 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080124 +packetLen(0x01a0, 7) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080102 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER +#endif + +// Packet: 0x01a1 +#if PACKETVER >= 20081112 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01a1, 2) // CZ_COMMAND_PET +#elif PACKETVER >= 20081008 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20081001 +packetLen(0x01a1, 2) // CZ_COMMAND_PET +#elif PACKETVER >= 20080924 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080917 +packetLen(0x01a1, 4) // CZ_COMMAND_PET +#elif PACKETVER >= 20080910 +packetLen(0x01a1, 27) // CZ_COMMAND_PET +#elif PACKETVER >= 20080806 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080730 +packetLen(0x01a1, 30) // CZ_COMMAND_PET +#elif PACKETVER >= 20080722 +packetLen(0x01a1, 14) // CZ_COMMAND_PET +#elif PACKETVER >= 20080715 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#elif PACKETVER >= 20080708 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080701 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#elif PACKETVER >= 20080617 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080610 +packetLen(0x01a1, 10) // CZ_COMMAND_PET +#elif PACKETVER >= 20080603 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080528 +packetLen(0x01a1, 7) // CZ_COMMAND_PET +#elif PACKETVER >= 20080520 +packetLen(0x01a1, 21) // CZ_COMMAND_PET +#elif PACKETVER >= 20080507 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080429 +packetLen(0x01a1, 7) // CZ_COMMAND_PET +#elif PACKETVER >= 20080422 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#elif PACKETVER >= 20080415 +packetLen(0x01a1, 28) // CZ_COMMAND_PET +#elif PACKETVER >= 20080408 +packetLen(0x01a1, 282) // CZ_COMMAND_PET +#elif PACKETVER >= 20080401 +packetLen(0x01a1, 30) // CZ_COMMAND_PET +#elif PACKETVER >= 20080325 +packetLen(0x01a1, 7) // CZ_COMMAND_PET +#elif PACKETVER >= 20080318 +packetLen(0x01a1, 4) // CZ_COMMAND_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a1, 53) // CZ_COMMAND_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a1, 26) // CZ_COMMAND_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a1, 6) // CZ_COMMAND_PET +#elif PACKETVER >= 20080124 +packetLen(0x01a1, 5) // CZ_COMMAND_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#endif + +// Packet: 0x01a2 +#if PACKETVER >= 20081217 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20081203 +packetLen(0x01a2, 2) // ZC_PROPERTY_PET +#elif PACKETVER >= 20081126 +packetLen(0x01a2, 7) // ZC_PROPERTY_PET +#elif PACKETVER >= 20081112 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01a2, 282) // ZC_PROPERTY_PET +#elif PACKETVER >= 20081029 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20081022 +packetLen(0x01a2, 79) // ZC_PROPERTY_PET +#elif PACKETVER >= 20081015 +packetLen(0x01a2, 34) // ZC_PROPERTY_PET +#elif PACKETVER >= 20081008 +packetLen(0x01a2, 2) // ZC_PROPERTY_PET +#elif PACKETVER >= 20081001 +packetLen(0x01a2, 6) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080924 +packetLen(0x01a2, 26) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080910 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080903 +packetLen(0x01a2, 21) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080827 +packetLen(0x01a2, 5) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080820 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080806 +packetLen(0x01a2, 6) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080730 +packetLen(0x01a2, 60) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080722 +packetLen(0x01a2, 30) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080708 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080701 +packetLen(0x01a2, 2) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080624 +packetLen(0x01a2, 3) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080610 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080603 +packetLen(0x01a2, 28) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080520 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080513 +packetLen(0x01a2, 54) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080507 +packetLen(0x01a2, 27) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080429 +packetLen(0x01a2, 2) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080422 +packetLen(0x01a2, 30) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080415 +packetLen(0x01a2, 68) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080408 +packetLen(0x01a2, 6) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080401 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080318 +packetLen(0x01a2, 2) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a2, 4) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a2, 6) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a2, 7) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a2, 8) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080124 +packetLen(0x01a2, 6) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET +#endif + +// Packet: 0x01a3 +#if PACKETVER >= 20081126 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20081119 +packetLen(0x01a3, 6) // ZC_FEED_PET +#elif PACKETVER >= 20081112 +packetLen(0x01a3, 5) // ZC_FEED_PET +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20081029 +packetLen(0x01a3, 58) // ZC_FEED_PET +#elif PACKETVER >= 20081015 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20081008 +packetLen(0x01a3, 3) // ZC_FEED_PET +#elif PACKETVER >= 20081001 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080924 +packetLen(0x01a3, 10) // ZC_FEED_PET +#elif PACKETVER >= 20080903 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080827 +packetLen(0x01a3, 2) // ZC_FEED_PET +#elif PACKETVER >= 20080820 +packetLen(0x01a3, 8) // ZC_FEED_PET +#elif PACKETVER >= 20080813 +packetLen(0x01a3, 2) // ZC_FEED_PET +#elif PACKETVER >= 20080806 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080730 +packetLen(0x01a3, 28) // ZC_FEED_PET +#elif PACKETVER >= 20080722 +packetLen(0x01a3, 15) // ZC_FEED_PET +#elif PACKETVER >= 20080715 +packetLen(0x01a3, 6) // ZC_FEED_PET +#elif PACKETVER >= 20080708 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080701 +packetLen(0x01a3, 31) // ZC_FEED_PET +#elif PACKETVER >= 20080624 +packetLen(0x01a3, 8) // ZC_FEED_PET +#elif PACKETVER >= 20080610 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080603 +packetLen(0x01a3, 26) // ZC_FEED_PET +#elif PACKETVER >= 20080528 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080520 +packetLen(0x01a3, 26) // ZC_FEED_PET +#elif PACKETVER >= 20080513 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080507 +packetLen(0x01a3, 5) // ZC_FEED_PET +#elif PACKETVER >= 20080429 +packetLen(0x01a3, 9) // ZC_FEED_PET +#elif PACKETVER >= 20080422 +packetLen(0x01a3, 30) // ZC_FEED_PET +#elif PACKETVER >= 20080415 +packetLen(0x01a3, 3) // ZC_FEED_PET +#elif PACKETVER >= 20080318 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a3, 32) // ZC_FEED_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a3, 6) // ZC_FEED_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a3, 4) // ZC_FEED_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a3, 11) // ZC_FEED_PET +#elif PACKETVER >= 20080124 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a3, 5) // ZC_FEED_PET +#endif + +// Packet: 0x01a4 +#if PACKETVER >= 20081217 +packetLen(0x01a4, 3) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20081203 +packetLen(0x01a4, 6) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20081126 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20081119 +packetLen(0x01a4, 2) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20081112 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20081029 +packetLen(0x01a4, 22) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20081001 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080924 +packetLen(0x01a4, 10) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080820 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080813 +packetLen(0x01a4, 22) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080806 +packetLen(0x01a4, 67) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080730 +packetLen(0x01a4, 8) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080722 +packetLen(0x01a4, 16) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080715 +packetLen(0x01a4, 20) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080617 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080610 +packetLen(0x01a4, 4) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080603 +packetLen(0x01a4, 10) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080528 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080520 +packetLen(0x01a4, 34) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080513 +packetLen(0x01a4, 2) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080507 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080429 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080422 +packetLen(0x01a4, 102) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080415 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080408 +packetLen(0x01a4, 16) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080401 +packetLen(0x01a4, 36) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080325 +packetLen(0x01a4, 8) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080318 +packetLen(0x01a4, 2) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a4, 4) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a4, 10) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080124 +packetLen(0x01a4, 8) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET +#endif + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +#if PACKETVER >= 20081217 +packetLen(0x01a6, 58) // ZC_PETEGG_LIST +#elif PACKETVER >= 20081203 +packetLen(0x01a6, 26) // ZC_PETEGG_LIST +#elif PACKETVER >= 20081126 +packetLen(0x01a6, 2) // ZC_PETEGG_LIST +#elif PACKETVER >= 20081119 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20081112 +packetLen(0x01a6, 39) // ZC_PETEGG_LIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01a6, 58) // ZC_PETEGG_LIST +#elif PACKETVER >= 20081029 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20081022 +packetLen(0x01a6, 3) // ZC_PETEGG_LIST +#elif PACKETVER >= 20081015 +packetLen(0x01a6, 12) // ZC_PETEGG_LIST +#elif PACKETVER >= 20081008 +packetLen(0x01a6, 30) // ZC_PETEGG_LIST +#elif PACKETVER >= 20081001 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080924 +packetLen(0x01a6, 14) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080917 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080827 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080820 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080813 +packetLen(0x01a6, 5) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080806 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080730 +packetLen(0x01a6, 22) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080722 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080715 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080708 +packetLen(0x01a6, 57) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080701 +packetLen(0x01a6, 4) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080617 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080610 +packetLen(0x01a6, 3) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080603 +packetLen(0x01a6, 10) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080520 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080513 +packetLen(0x01a6, 4) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080507 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080429 +packetLen(0x01a6, 30) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080422 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080415 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080401 +packetLen(0x01a6, 2) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080325 +packetLen(0x01a6, 3) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080318 +packetLen(0x01a6, 26) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080311 +packetLen(0x01a6, 2) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080304 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080226 +packetLen(0x01a6, 10) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080219 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080124 +packetLen(0x01a6, 27) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080102 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#endif + +// Packet: 0x01a7 +#if PACKETVER >= 20081217 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20081203 +packetLen(0x01a7, 3) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20081126 +packetLen(0x01a7, 5) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20081119 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20081112 +packetLen(0x01a7, 23) // CZ_SELECT_PETEGG +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081015 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20081008 +packetLen(0x01a7, 14) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20081001 +packetLen(0x01a7, 7) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080924 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080917 +packetLen(0x01a7, 8) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080910 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080903 +packetLen(0x01a7, 5) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080827 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080820 +packetLen(0x01a7, 10) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080813 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080806 +packetLen(0x01a7, 29) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080730 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080722 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080715 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080708 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080701 +packetLen(0x01a7, 2) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080617 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080603 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080528 +packetLen(0x01a7, 30) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080520 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080513 +packetLen(0x01a7, 18) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080507 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080429 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080422 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080415 +packetLen(0x01a7, 18) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080408 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080401 +packetLen(0x01a7, 22) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080325 +packetLen(0x01a7, 16) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080318 +packetLen(0x01a7, 26) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080311 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080226 +packetLen(0x01a7, 2) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080219 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080124 +packetLen(0x01a7, 3) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080102 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#endif + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +#if PACKETVER >= 20081203 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20081126 +packetLen(0x01aa, 29) // ZC_PET_ACT +#elif PACKETVER >= 20081112 +packetLen(0x01aa, 10) // ZC_PET_ACT +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01aa, 29) // ZC_PET_ACT +#elif PACKETVER >= 20081029 +packetLen(0x01aa, 30) // ZC_PET_ACT +#elif PACKETVER >= 20081015 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20081008 +packetLen(0x01aa, 12) // ZC_PET_ACT +#elif PACKETVER >= 20081001 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080924 +packetLen(0x01aa, 2) // ZC_PET_ACT +#elif PACKETVER >= 20080917 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080910 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080827 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080820 +packetLen(0x01aa, 30) // ZC_PET_ACT +#elif PACKETVER >= 20080813 +packetLen(0x01aa, 282) // ZC_PET_ACT +#elif PACKETVER >= 20080806 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080715 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080708 +packetLen(0x01aa, 2) // ZC_PET_ACT +#elif PACKETVER >= 20080624 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080610 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080603 +packetLen(0x01aa, 43) // ZC_PET_ACT +#elif PACKETVER >= 20080528 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080520 +packetLen(0x01aa, 28) // ZC_PET_ACT +#elif PACKETVER >= 20080513 +packetLen(0x01aa, 60) // ZC_PET_ACT +#elif PACKETVER >= 20080507 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080422 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080415 +packetLen(0x01aa, 8) // ZC_PET_ACT +#elif PACKETVER >= 20080408 +packetLen(0x01aa, 28) // ZC_PET_ACT +#elif PACKETVER >= 20080401 +packetLen(0x01aa, 7) // ZC_PET_ACT +#elif PACKETVER >= 20080318 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080311 +packetLen(0x01aa, 9) // ZC_PET_ACT +#elif PACKETVER >= 20080304 +packetLen(0x01aa, 67) // ZC_PET_ACT +#elif PACKETVER >= 20080219 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080124 +packetLen(0x01aa, 54) // ZC_PET_ACT +#elif PACKETVER >= 20080102 +packetLen(0x01aa, 10) // ZC_PET_ACT +#endif + +// Packet: 0x01ab +#if PACKETVER >= 20081217 +packetLen(0x01ab, 5) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20081126 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20081119 +packetLen(0x01ab, 7) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20081112 +packetLen(0x01ab, 30) // ZC_PAR_CHANGE_USER +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01ab, 3) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20081029 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20081022 +packetLen(0x01ab, 6) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20081015 +packetLen(0x01ab, 2) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080917 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080910 +packetLen(0x01ab, 16) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080722 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080715 +packetLen(0x01ab, 282) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080708 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080701 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080624 +packetLen(0x01ab, 60) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080617 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080610 +packetLen(0x01ab, 11) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080528 +packetLen(0x01ab, 6) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080520 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080513 +packetLen(0x01ab, 30) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080507 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080429 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080422 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080415 +packetLen(0x01ab, 35) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080408 +packetLen(0x01ab, 79) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080401 +packetLen(0x01ab, 18) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080325 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080311 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080304 +packetLen(0x01ab, 4) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080226 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080219 +packetLen(0x01ab, 3) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080124 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080102 +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER +#endif + +// Packet: 0x01ac +#if PACKETVER >= 20081217 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20081203 +packetLen(0x01ac, 10) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20081119 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20081112 +packetLen(0x01ac, 30) // ZC_SKILL_UPDATE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20081015 +packetLen(0x01ac, 8) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20081008 +packetLen(0x01ac, 5) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080917 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080910 +packetLen(0x01ac, 28) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080813 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080806 +packetLen(0x01ac, 30) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080730 +packetLen(0x01ac, 2) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080722 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080715 +packetLen(0x01ac, 26) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080610 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080603 +packetLen(0x01ac, 59) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080528 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080520 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080513 +packetLen(0x01ac, 44) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080507 +packetLen(0x01ac, 10) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080429 +packetLen(0x01ac, 14) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080422 +packetLen(0x01ac, 3) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080415 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080408 +packetLen(0x01ac, 29) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080325 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080318 +packetLen(0x01ac, 97) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080311 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080304 +packetLen(0x01ac, 2) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080226 +packetLen(0x01ac, 4) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080219 +packetLen(0x01ac, 26) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080124 +packetLen(0x01ac, 17) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080102 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#endif + +// Packet: 0x01ad +#if PACKETVER >= 20081203 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20081126 +packetLen(0x01ad, 8) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20081022 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20081015 +packetLen(0x01ad, 26) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080827 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080820 +packetLen(0x01ad, 2) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080806 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080730 +packetLen(0x01ad, 10) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080715 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080708 +packetLen(0x01ad, 66) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080624 +packetLen(0x01ad, 2) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080617 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080610 +packetLen(0x01ad, 10) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080603 +packetLen(0x01ad, 4) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080528 +packetLen(0x01ad, 8) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080429 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080422 +packetLen(0x01ad, 6) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080415 +packetLen(0x01ad, 26) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080408 +packetLen(0x01ad, 4) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080401 +packetLen(0x01ad, 14) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080325 +packetLen(0x01ad, 39) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080318 +packetLen(0x01ad, 6) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080311 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080304 +packetLen(0x01ad, 10) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080226 +packetLen(0x01ad, 4) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080219 +packetLen(0x01ad, 54) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080124 +packetLen(0x01ad, 5) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080102 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#endif + +// Packet: 0x01ae +#if PACKETVER >= 20081217 +packetLen(0x01ae, 2) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20081203 +packetLen(0x01ae, 55) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20081126 +packetLen(0x01ae, 10) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20081112 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20081029 +packetLen(0x01ae, 2) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20081022 +packetLen(0x01ae, 26) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20081015 +packetLen(0x01ae, 2) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20081001 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080924 +packetLen(0x01ae, 22) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080827 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080820 +packetLen(0x01ae, 27) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080806 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080730 +packetLen(0x01ae, 35) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080708 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080701 +packetLen(0x01ae, 7) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080624 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080617 +packetLen(0x01ae, 2) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080610 +packetLen(0x01ae, 43) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080528 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080520 +packetLen(0x01ae, 8) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080429 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080422 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080415 +packetLen(0x01ae, 6) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080408 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080401 +packetLen(0x01ae, 14) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080318 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080311 +packetLen(0x01ae, 26) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080304 +packetLen(0x01ae, 15) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080226 +packetLen(0x01ae, 2) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080219 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080124 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080102 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#endif + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +#if PACKETVER >= 20081203 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20081126 +packetLen(0x01b0, 10) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20081119 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20081112 +packetLen(0x01b0, 32) // ZC_NPCSPRITE_CHANGE +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20081015 +packetLen(0x01b0, 30) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20081008 +packetLen(0x01b0, 4) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080827 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080820 +packetLen(0x01b0, 3) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080813 +packetLen(0x01b0, 8) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080730 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080722 +packetLen(0x01b0, 53) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080715 +packetLen(0x01b0, 30) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080708 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080701 +packetLen(0x01b0, 8) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080617 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x01b0, 4) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080603 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080528 +packetLen(0x01b0, 8) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080520 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080507 +packetLen(0x01b0, 6) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080429 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080422 +packetLen(0x01b0, 21) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080415 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080408 +packetLen(0x01b0, 3) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080401 +packetLen(0x01b0, 6) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080325 +packetLen(0x01b0, 16) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080318 +packetLen(0x01b0, 6) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x01b0, 2) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x01b0, 3) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x01b0, 6) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x01b0, 2) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080124 +packetLen(0x01b0, 3) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE +#endif + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +#if PACKETVER >= 20081203 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20081126 +packetLen(0x01b2, 182) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20081029 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20081022 +packetLen(0x01b2, 30) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20081008 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20081001 +packetLen(0x01b2, 10) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080924 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080917 +packetLen(0x01b2, 59) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080910 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080903 +packetLen(0x01b2, 11) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080708 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080624 +packetLen(0x01b2, 6) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080617 +packetLen(0x01b2, 3) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080610 +packetLen(0x01b2, 2) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080603 +packetLen(0x01b2, 57) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080528 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080520 +packetLen(0x01b2, 54) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080507 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080429 +packetLen(0x01b2, 14) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080401 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080325 +packetLen(0x01b2, 14) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080318 +packetLen(0x01b2, 28) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080311 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080304 +packetLen(0x01b2, 10) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080226 +packetLen(0x01b2, 282) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080219 +packetLen(0x01b2, 26) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080124 +packetLen(0x01b2, 11) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080102 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#endif + +// Packet: 0x01b3 +#if PACKETVER >= 20081203 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20081126 +packetLen(0x01b3, 12) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20081119 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20081112 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20081029 +packetLen(0x01b3, 36) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20081022 +packetLen(0x01b3, 10) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20081015 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20081008 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20081001 +packetLen(0x01b3, 22) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080924 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080917 +packetLen(0x01b3, 16) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080820 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080813 +packetLen(0x01b3, 6) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080715 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080708 +packetLen(0x01b3, 6) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080610 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080603 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080528 +packetLen(0x01b3, 60) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080520 +packetLen(0x01b3, 71) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080513 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080507 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080422 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080415 +packetLen(0x01b3, 22) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080408 +packetLen(0x01b3, 6) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080401 +packetLen(0x01b3, 4) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080325 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080318 +packetLen(0x01b3, 33) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080311 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080304 +packetLen(0x01b3, 9) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080226 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080219 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080124 +packetLen(0x01b3, 20) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080102 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 +#endif + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +#if PACKETVER >= 20081203 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20081126 +packetLen(0x01b6, 65) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20081119 +packetLen(0x01b6, 31) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20081112 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20081029 +packetLen(0x01b6, 2) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20081022 +packetLen(0x01b6, 31) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20081015 +packetLen(0x01b6, 26) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20081008 +packetLen(0x01b6, 31) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20081001 +packetLen(0x01b6, 6) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080924 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080917 +packetLen(0x01b6, 2) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080827 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080820 +packetLen(0x01b6, 4) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080806 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080730 +packetLen(0x01b6, 58) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080715 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080708 +packetLen(0x01b6, 10) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080701 +packetLen(0x01b6, 12) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080624 +packetLen(0x01b6, 31) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080617 +packetLen(0x01b6, 26) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080610 +packetLen(0x01b6, 55) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080603 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080528 +packetLen(0x01b6, 33) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080513 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080507 +packetLen(0x01b6, 7) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080429 +packetLen(0x01b6, 86) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080422 +packetLen(0x01b6, 23) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080408 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080401 +packetLen(0x01b6, 60) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080325 +packetLen(0x01b6, 12) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080318 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080311 +packetLen(0x01b6, 3) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080304 +packetLen(0x01b6, 2) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080226 +packetLen(0x01b6, 18) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080219 +packetLen(0x01b6, 22) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080124 +packetLen(0x01b6, 6) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080102 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 +#endif + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +#if PACKETVER >= 20081203 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20081126 +packetLen(0x01b9, 24) // ZC_DISPEL +#elif PACKETVER >= 20081119 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20081112 +packetLen(0x01b9, 8) // ZC_DISPEL +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20081022 +packetLen(0x01b9, 21) // ZC_DISPEL +#elif PACKETVER >= 20081015 +packetLen(0x01b9, 6) // ZC_DISPEL +#elif PACKETVER >= 20081008 +packetLen(0x01b9, 18) // ZC_DISPEL +#elif PACKETVER >= 20080917 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080910 +packetLen(0x01b9, 6) // ZC_DISPEL +#elif PACKETVER >= 20080813 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080806 +packetLen(0x01b9, 14) // ZC_DISPEL +#elif PACKETVER >= 20080730 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080715 +packetLen(0x01b9, 68) // ZC_DISPEL +#elif PACKETVER >= 20080708 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080701 +packetLen(0x01b9, 14) // ZC_DISPEL +#elif PACKETVER >= 20080617 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080610 +packetLen(0x01b9, 6) // ZC_DISPEL +#elif PACKETVER >= 20080603 +packetLen(0x01b9, 8) // ZC_DISPEL +#elif PACKETVER >= 20080429 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080422 +packetLen(0x01b9, 7) // ZC_DISPEL +#elif PACKETVER >= 20080415 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080408 +packetLen(0x01b9, 4) // ZC_DISPEL +#elif PACKETVER >= 20080401 +packetLen(0x01b9, 10) // ZC_DISPEL +#elif PACKETVER >= 20080325 +packetLen(0x01b9, 26) // ZC_DISPEL +#elif PACKETVER >= 20080318 +packetLen(0x01b9, 9) // ZC_DISPEL +#elif PACKETVER >= 20080311 +packetLen(0x01b9, 3) // ZC_DISPEL +#elif PACKETVER >= 20080304 +packetLen(0x01b9, 30) // ZC_DISPEL +#elif PACKETVER >= 20080226 +packetLen(0x01b9, 60) // ZC_DISPEL +#elif PACKETVER >= 20080219 +packetLen(0x01b9, 2) // ZC_DISPEL +#elif PACKETVER >= 20080124 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20080102 +packetLen(0x01b9, 6) // ZC_DISPEL +#endif + +// Packet: 0x01ba +#if PACKETVER >= 20081217 +packetLen(0x01ba, 15) // CZ_REMOVE_AID +#elif PACKETVER >= 20081203 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20081126 +packetLen(0x01ba, 5) // CZ_REMOVE_AID +#elif PACKETVER >= 20081112 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081008 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20081001 +packetLen(0x01ba, 5) // CZ_REMOVE_AID +#elif PACKETVER >= 20080924 +packetLen(0x01ba, 7) // CZ_REMOVE_AID +#elif PACKETVER >= 20080910 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080903 +packetLen(0x01ba, 9) // CZ_REMOVE_AID +#elif PACKETVER >= 20080813 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080806 +packetLen(0x01ba, 6) // CZ_REMOVE_AID +#elif PACKETVER >= 20080730 +packetLen(0x01ba, 2) // CZ_REMOVE_AID +#elif PACKETVER >= 20080722 +packetLen(0x01ba, 42) // CZ_REMOVE_AID +#elif PACKETVER >= 20080715 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +#elif PACKETVER >= 20080701 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080624 +packetLen(0x01ba, 6) // CZ_REMOVE_AID +#elif PACKETVER >= 20080617 +packetLen(0x01ba, 3) // CZ_REMOVE_AID +#elif PACKETVER >= 20080528 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080520 +packetLen(0x01ba, 7) // CZ_REMOVE_AID +#elif PACKETVER >= 20080513 +packetLen(0x01ba, 22) // CZ_REMOVE_AID +#elif PACKETVER >= 20080507 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080429 +packetLen(0x01ba, 3) // CZ_REMOVE_AID +#elif PACKETVER >= 20080415 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +#elif PACKETVER >= 20080408 +packetLen(0x01ba, 6) // CZ_REMOVE_AID +#elif PACKETVER >= 20080401 +packetLen(0x01ba, 4) // CZ_REMOVE_AID +#elif PACKETVER >= 20080325 +packetLen(0x01ba, 81) // CZ_REMOVE_AID +#elif PACKETVER >= 20080311 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080304 +packetLen(0x01ba, 8) // CZ_REMOVE_AID +#elif PACKETVER >= 20080226 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080219 +packetLen(0x01ba, 14) // CZ_REMOVE_AID +#elif PACKETVER >= 20080124 +packetLen(0x01ba, 60) // CZ_REMOVE_AID +#elif PACKETVER >= 20080102 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +#endif + +// Packet: 0x01bb +#if PACKETVER >= 20081217 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20081203 +packetLen(0x01bb, 30) // CZ_SHIFT +#elif PACKETVER >= 20081119 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20081112 +packetLen(0x01bb, 65) // CZ_SHIFT +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20081029 +packetLen(0x01bb, 90) // CZ_SHIFT +#elif PACKETVER >= 20081022 +packetLen(0x01bb, 6) // CZ_SHIFT +#elif PACKETVER >= 20081015 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20081008 +packetLen(0x01bb, 7) // CZ_SHIFT +#elif PACKETVER >= 20081001 +packetLen(0x01bb, 32) // CZ_SHIFT +#elif PACKETVER >= 20080924 +packetLen(0x01bb, 27) // CZ_SHIFT +#elif PACKETVER >= 20080910 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080903 +packetLen(0x01bb, 7) // CZ_SHIFT +#elif PACKETVER >= 20080827 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080820 +packetLen(0x01bb, 2) // CZ_SHIFT +#elif PACKETVER >= 20080813 +packetLen(0x01bb, 79) // CZ_SHIFT +#elif PACKETVER >= 20080730 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080722 +packetLen(0x01bb, 10) // CZ_SHIFT +#elif PACKETVER >= 20080715 +packetLen(0x01bb, 20) // CZ_SHIFT +#elif PACKETVER >= 20080708 +packetLen(0x01bb, 6) // CZ_SHIFT +#elif PACKETVER >= 20080603 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080528 +packetLen(0x01bb, 16) // CZ_SHIFT +#elif PACKETVER >= 20080513 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080429 +packetLen(0x01bb, 2) // CZ_SHIFT +#elif PACKETVER >= 20080422 +packetLen(0x01bb, 26) // CZ_SHIFT +#elif PACKETVER >= 20080415 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080408 +packetLen(0x01bb, 3) // CZ_SHIFT +#elif PACKETVER >= 20080401 +packetLen(0x01bb, 4) // CZ_SHIFT +#elif PACKETVER >= 20080325 +packetLen(0x01bb, 43) // CZ_SHIFT +#elif PACKETVER >= 20080318 +packetLen(0x01bb, 31) // CZ_SHIFT +#elif PACKETVER >= 20080311 +packetLen(0x01bb, 4) // CZ_SHIFT +#elif PACKETVER >= 20080304 +packetLen(0x01bb, 8) // CZ_SHIFT +#elif PACKETVER >= 20080226 +packetLen(0x01bb, 6) // CZ_SHIFT +#elif PACKETVER >= 20080219 +packetLen(0x01bb, 3) // CZ_SHIFT +#elif PACKETVER >= 20080124 +packetLen(0x01bb, 81) // CZ_SHIFT +#elif PACKETVER >= 20080102 +packetLen(0x01bb, 26) // CZ_SHIFT +#endif + +// Packet: 0x01bc +#if PACKETVER >= 20081217 +packetLen(0x01bc, 4) // CZ_RECALL +#elif PACKETVER >= 20081203 +packetLen(0x01bc, 9) // CZ_RECALL +#elif PACKETVER >= 20081119 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20081112 +packetLen(0x01bc, 26) // CZ_RECALL +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20081029 +packetLen(0x01bc, 14) // CZ_RECALL +#elif PACKETVER >= 20081022 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20081015 +packetLen(0x01bc, 2) // CZ_RECALL +#elif PACKETVER >= 20081008 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20081001 +packetLen(0x01bc, 6) // CZ_RECALL +#elif PACKETVER >= 20080917 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080910 +packetLen(0x01bc, 3) // CZ_RECALL +#elif PACKETVER >= 20080903 +packetLen(0x01bc, 55) // CZ_RECALL +#elif PACKETVER >= 20080820 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080813 +packetLen(0x01bc, 43) // CZ_RECALL +#elif PACKETVER >= 20080806 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080730 +packetLen(0x01bc, 16) // CZ_RECALL +#elif PACKETVER >= 20080722 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080715 +packetLen(0x01bc, 28) // CZ_RECALL +#elif PACKETVER >= 20080708 +packetLen(0x01bc, 6) // CZ_RECALL +#elif PACKETVER >= 20080617 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080610 +packetLen(0x01bc, 2) // CZ_RECALL +#elif PACKETVER >= 20080603 +packetLen(0x01bc, 282) // CZ_RECALL +#elif PACKETVER >= 20080528 +packetLen(0x01bc, 7) // CZ_RECALL +#elif PACKETVER >= 20080520 +packetLen(0x01bc, 10) // CZ_RECALL +#elif PACKETVER >= 20080513 +packetLen(0x01bc, 20) // CZ_RECALL +#elif PACKETVER >= 20080507 +packetLen(0x01bc, 39) // CZ_RECALL +#elif PACKETVER >= 20080429 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080422 +packetLen(0x01bc, 26) // CZ_RECALL +#elif PACKETVER >= 20080415 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20080408 +packetLen(0x01bc, 8) // CZ_RECALL +#elif PACKETVER >= 20080401 +packetLen(0x01bc, 4) // CZ_RECALL +#elif PACKETVER >= 20080325 +packetLen(0x01bc, 26) // CZ_RECALL +#elif PACKETVER >= 20080318 +packetLen(0x01bc, 4) // CZ_RECALL +#elif PACKETVER >= 20080311 +packetLen(0x01bc, 9) // CZ_RECALL +#elif PACKETVER >= 20080304 +packetLen(0x01bc, 6) // CZ_RECALL +#elif PACKETVER >= 20080226 +packetLen(0x01bc, 86) // CZ_RECALL +#elif PACKETVER >= 20080219 +packetLen(0x01bc, 9) // CZ_RECALL +#elif PACKETVER >= 20080124 +packetLen(0x01bc, 10) // CZ_RECALL +#elif PACKETVER >= 20080102 +packetLen(0x01bc, 26) // CZ_RECALL +#endif + +// Packet: 0x01bd +#if PACKETVER >= 20081217 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20081203 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20081112 +packetLen(0x01bd, 26) // CZ_RECALL_GID +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01bd, 4) // CZ_RECALL_GID +#elif PACKETVER >= 20081015 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20081008 +packetLen(0x01bd, 26) // CZ_RECALL_GID +#elif PACKETVER >= 20081001 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20080924 +packetLen(0x01bd, 97) // CZ_RECALL_GID +#elif PACKETVER >= 20080820 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080813 +packetLen(0x01bd, 22) // CZ_RECALL_GID +#elif PACKETVER >= 20080730 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20080715 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080708 +packetLen(0x01bd, 43) // CZ_RECALL_GID +#elif PACKETVER >= 20080701 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20080624 +packetLen(0x01bd, 22) // CZ_RECALL_GID +#elif PACKETVER >= 20080617 +packetLen(0x01bd, 44) // CZ_RECALL_GID +#elif PACKETVER >= 20080610 +packetLen(0x01bd, 3) // CZ_RECALL_GID +#elif PACKETVER >= 20080603 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080528 +packetLen(0x01bd, 9) // CZ_RECALL_GID +#elif PACKETVER >= 20080520 +packetLen(0x01bd, 35) // CZ_RECALL_GID +#elif PACKETVER >= 20080507 +packetLen(0x01bd, 4) // CZ_RECALL_GID +#elif PACKETVER >= 20080429 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080422 +packetLen(0x01bd, 26) // CZ_RECALL_GID +#elif PACKETVER >= 20080415 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080408 +packetLen(0x01bd, 102) // CZ_RECALL_GID +#elif PACKETVER >= 20080401 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080325 +packetLen(0x01bd, 21) // CZ_RECALL_GID +#elif PACKETVER >= 20080311 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20080304 +packetLen(0x01bd, 102) // CZ_RECALL_GID +#elif PACKETVER >= 20080226 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080219 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20080124 +packetLen(0x01bd, 2) // CZ_RECALL_GID +#elif PACKETVER >= 20080102 +packetLen(0x01bd, 26) // CZ_RECALL_GID +#endif + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +#if PACKETVER >= 20081217 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20081203 +packetLen(0x01c3, 6) // ZC_BROADCAST2 +#elif PACKETVER >= 20081126 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20081119 +packetLen(0x01c3, 4) // ZC_BROADCAST2 +#elif PACKETVER >= 20081112 +packetLen(0x01c3, 2) // ZC_BROADCAST2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20081029 +packetLen(0x01c3, 3) // ZC_BROADCAST2 +#elif PACKETVER >= 20081022 +packetLen(0x01c3, 26) // ZC_BROADCAST2 +#elif PACKETVER >= 20081015 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20081008 +packetLen(0x01c3, 186) // ZC_BROADCAST2 +#elif PACKETVER >= 20080924 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080917 +packetLen(0x01c3, 31) // ZC_BROADCAST2 +#elif PACKETVER >= 20080910 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080903 +packetLen(0x01c3, 59) // ZC_BROADCAST2 +#elif PACKETVER >= 20080827 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080820 +packetLen(0x01c3, 43) // ZC_BROADCAST2 +#elif PACKETVER >= 20080813 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080806 +packetLen(0x01c3, 11) // ZC_BROADCAST2 +#elif PACKETVER >= 20080730 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080722 +packetLen(0x01c3, 26) // ZC_BROADCAST2 +#elif PACKETVER >= 20080708 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080701 +packetLen(0x01c3, 10) // ZC_BROADCAST2 +#elif PACKETVER >= 20080624 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080617 +packetLen(0x01c3, 6) // ZC_BROADCAST2 +#elif PACKETVER >= 20080610 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080603 +packetLen(0x01c3, 58) // ZC_BROADCAST2 +#elif PACKETVER >= 20080520 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080513 +packetLen(0x01c3, 66) // ZC_BROADCAST2 +#elif PACKETVER >= 20080507 +packetLen(0x01c3, 7) // ZC_BROADCAST2 +#elif PACKETVER >= 20080429 +packetLen(0x01c3, 3) // ZC_BROADCAST2 +#elif PACKETVER >= 20080422 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080415 +packetLen(0x01c3, 30) // ZC_BROADCAST2 +#elif PACKETVER >= 20080408 +packetLen(0x01c3, 6) // ZC_BROADCAST2 +#elif PACKETVER >= 20080401 +packetLen(0x01c3, 14) // ZC_BROADCAST2 +#elif PACKETVER >= 20080325 +packetLen(0x01c3, 30) // ZC_BROADCAST2 +#elif PACKETVER >= 20080318 +packetLen(0x01c3, 9) // ZC_BROADCAST2 +#elif PACKETVER >= 20080311 +packetLen(0x01c3, 58) // ZC_BROADCAST2 +#elif PACKETVER >= 20080304 +packetLen(0x01c3, 4) // ZC_BROADCAST2 +#elif PACKETVER >= 20080226 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080219 +packetLen(0x01c3, 14) // ZC_BROADCAST2 +#elif PACKETVER >= 20080124 +packetLen(0x01c3, 3) // ZC_BROADCAST2 +#elif PACKETVER >= 20080102 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#endif + +// Packet: 0x01c4 +#if PACKETVER >= 20081217 +packetLen(0x01c4, 9) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20081112 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01c4, 6) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20081008 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20081001 +packetLen(0x01c4, 5) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080924 +packetLen(0x01c4, 10) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080917 +packetLen(0x01c4, 282) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080910 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080903 +packetLen(0x01c4, 11) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080820 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080813 +packetLen(0x01c4, 4) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080730 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080722 +packetLen(0x01c4, 34) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080715 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080708 +packetLen(0x01c4, 5) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080617 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080610 +packetLen(0x01c4, 33) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080528 +packetLen(0x01c4, 6) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080520 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080513 +packetLen(0x01c4, 3) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080507 +packetLen(0x01c4, 31) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080429 +packetLen(0x01c4, 53) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080422 +packetLen(0x01c4, 34) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080415 +packetLen(0x01c4, 11) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080408 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080401 +packetLen(0x01c4, 2) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080325 +packetLen(0x01c4, 21) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080311 +packetLen(0x01c4, 2) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080219 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080124 +packetLen(0x01c4, 28) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080102 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#endif + +// Packet: 0x01c5 +#if PACKETVER >= 20081126 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20081119 +packetLen(0x01c5, 97) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20081112 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01c5, 14) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20081029 +packetLen(0x01c5, 15) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20081008 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20081001 +packetLen(0x01c5, 2) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080924 +packetLen(0x01c5, 3) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080917 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080910 +packetLen(0x01c5, 13) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080827 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080820 +packetLen(0x01c5, 6) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080813 +packetLen(0x01c5, 23) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080730 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080722 +packetLen(0x01c5, 11) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080715 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080708 +packetLen(0x01c5, 10) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080624 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080617 +packetLen(0x01c5, 8) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080610 +packetLen(0x01c5, 26) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080603 +packetLen(0x01c5, 30) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080528 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080520 +packetLen(0x01c5, 11) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080513 +packetLen(0x01c5, 3) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080429 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080422 +packetLen(0x01c5, 4) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080415 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080408 +packetLen(0x01c5, 7) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080401 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080325 +packetLen(0x01c5, 31) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080318 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080311 +packetLen(0x01c5, 10) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080226 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080219 +packetLen(0x01c5, 28) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080124 +packetLen(0x01c5, 90) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080102 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +#endif + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +#if PACKETVER >= 20081126 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20081119 +packetLen(0x01c8, 10) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20081112 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20081029 +packetLen(0x01c8, 35) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20081015 +packetLen(0x01c8, 6) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20081008 +packetLen(0x01c8, 35) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20081001 +packetLen(0x01c8, 6) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080910 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080903 +packetLen(0x01c8, 8) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080806 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080730 +packetLen(0x01c8, 4) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080722 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080708 +packetLen(0x01c8, 2) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080624 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080617 +packetLen(0x01c8, 65) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080610 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080603 +packetLen(0x01c8, 8) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080513 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080507 +packetLen(0x01c8, 29) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080429 +packetLen(0x01c8, 8) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080415 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080408 +packetLen(0x01c8, 26) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080401 +packetLen(0x01c8, 2) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080325 +packetLen(0x01c8, 4) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080318 +packetLen(0x01c8, 6) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080311 +packetLen(0x01c8, 4) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080304 +packetLen(0x01c8, 11) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080226 +packetLen(0x01c8, 8) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080219 +packetLen(0x01c8, 6) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080124 +packetLen(0x01c8, 5) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080102 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 +#endif + +// Packet: 0x01c9 +#if PACKETVER >= 20081217 +packetLen(0x01c9, 6) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20081203 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20081126 +packetLen(0x01c9, 4) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20081112 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20081029 +packetLen(0x01c9, 14) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080917 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080910 +packetLen(0x01c9, 6) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080903 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080827 +packetLen(0x01c9, 6) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080813 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080806 +packetLen(0x01c9, 7) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080730 +packetLen(0x01c9, 26) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080722 +packetLen(0x01c9, 6) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080715 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080708 +packetLen(0x01c9, 4) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080701 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080624 +packetLen(0x01c9, 11) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080617 +packetLen(0x01c9, 3) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080610 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080603 +packetLen(0x01c9, 4) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080528 +packetLen(0x01c9, 14) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080513 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080507 +packetLen(0x01c9, 6) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080429 +packetLen(0x01c9, 4) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080415 +packetLen(0x01c9, 58) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080408 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080401 +packetLen(0x01c9, 7) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080325 +packetLen(0x01c9, 2) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080318 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01c9, 2) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01c9, 22) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01c9, 26) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080124 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 +#endif + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +#if PACKETVER >= 20081217 +packetLen(0x01cd, 20) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20081203 +packetLen(0x01cd, 114) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20081126 +packetLen(0x01cd, 5) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20081112 +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20081029 +packetLen(0x01cd, 26) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080917 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080910 +packetLen(0x01cd, 33) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080903 +packetLen(0x01cd, 2) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080813 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080806 +packetLen(0x01cd, 11) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080708 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080701 +packetLen(0x01cd, 10) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080617 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080610 +packetLen(0x01cd, 102) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080603 +packetLen(0x01cd, 4) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080513 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080507 +packetLen(0x01cd, 10) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080429 +packetLen(0x01cd, 3) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080422 +packetLen(0x01cd, 10) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080415 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080408 +packetLen(0x01cd, 12) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080401 +packetLen(0x01cd, 6) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080325 +packetLen(0x01cd, 14) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080318 +packetLen(0x01cd, 2) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080311 +packetLen(0x01cd, 6) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080304 +packetLen(0x01cd, 5) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080226 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080219 +packetLen(0x01cd, 8) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080124 +packetLen(0x01cd, 10) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080102 +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST +#endif + +// Packet: 0x01ce +#if PACKETVER >= 20081203 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20081126 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20081119 +packetLen(0x01ce, 15) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20081112 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20081029 +packetLen(0x01ce, 10) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20081015 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20081008 +packetLen(0x01ce, 53) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080917 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080910 +packetLen(0x01ce, 10) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080903 +packetLen(0x01ce, 30) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080827 +packetLen(0x01ce, 8) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080820 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080813 +packetLen(0x01ce, 7) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080806 +packetLen(0x01ce, 13) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080624 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080617 +packetLen(0x01ce, 27) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080610 +packetLen(0x01ce, 3) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080603 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080528 +packetLen(0x01ce, 22) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080520 +packetLen(0x01ce, 53) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080513 +packetLen(0x01ce, 4) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080507 +packetLen(0x01ce, 65) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080429 +packetLen(0x01ce, 2) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080422 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080408 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080401 +packetLen(0x01ce, 26) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080325 +packetLen(0x01ce, 3) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080318 +packetLen(0x01ce, 21) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080304 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080226 +packetLen(0x01ce, 2) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080219 +packetLen(0x01ce, 28) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080102 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#endif + +// Packet: 0x01cf +#if PACKETVER >= 20081217 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20081203 +packetLen(0x01cf, 54) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20081126 +packetLen(0x01cf, 8) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20081119 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20081112 +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20081022 +packetLen(0x01cf, 6) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20081008 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20081001 +packetLen(0x01cf, 15) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080924 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080917 +packetLen(0x01cf, 5) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080903 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080827 +packetLen(0x01cf, 3) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080806 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080730 +packetLen(0x01cf, 5) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080722 +packetLen(0x01cf, 7) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080715 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080708 +packetLen(0x01cf, 14) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080701 +packetLen(0x01cf, 3) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080624 +packetLen(0x01cf, 11) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080617 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080610 +packetLen(0x01cf, 2) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080603 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080528 +packetLen(0x01cf, 15) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080520 +packetLen(0x01cf, 26) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080513 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080507 +packetLen(0x01cf, 2) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080415 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080408 +packetLen(0x01cf, 39) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080401 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080325 +packetLen(0x01cf, 186) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080318 +packetLen(0x01cf, 6) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080311 +packetLen(0x01cf, 23) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080304 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080226 +packetLen(0x01cf, 102) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080124 +packetLen(0x01cf, 5) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080102 +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST +#endif + +// Packet: 0x01d0 +#if PACKETVER >= 20081217 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20081203 +packetLen(0x01d0, 282) // ZC_SPIRITS +#elif PACKETVER >= 20081126 +packetLen(0x01d0, 31) // ZC_SPIRITS +#elif PACKETVER >= 20081119 +packetLen(0x01d0, 27) // ZC_SPIRITS +#elif PACKETVER >= 20081112 +packetLen(0x01d0, 8) // ZC_SPIRITS +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20081029 +packetLen(0x01d0, 21) // ZC_SPIRITS +#elif PACKETVER >= 20081015 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20081008 +packetLen(0x01d0, 10) // ZC_SPIRITS +#elif PACKETVER >= 20080917 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080910 +packetLen(0x01d0, 31) // ZC_SPIRITS +#elif PACKETVER >= 20080820 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080813 +packetLen(0x01d0, 32) // ZC_SPIRITS +#elif PACKETVER >= 20080806 +packetLen(0x01d0, 6) // ZC_SPIRITS +#elif PACKETVER >= 20080715 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080708 +packetLen(0x01d0, 33) // ZC_SPIRITS +#elif PACKETVER >= 20080701 +packetLen(0x01d0, 3) // ZC_SPIRITS +#elif PACKETVER >= 20080624 +packetLen(0x01d0, 9) // ZC_SPIRITS +#elif PACKETVER >= 20080617 +packetLen(0x01d0, 53) // ZC_SPIRITS +#elif PACKETVER >= 20080610 +packetLen(0x01d0, 7) // ZC_SPIRITS +#elif PACKETVER >= 20080603 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080528 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080520 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080513 +packetLen(0x01d0, 10) // ZC_SPIRITS +#elif PACKETVER >= 20080422 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080415 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080408 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080401 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080325 +packetLen(0x01d0, 65) // ZC_SPIRITS +#elif PACKETVER >= 20080318 +packetLen(0x01d0, 39) // ZC_SPIRITS +#elif PACKETVER >= 20080304 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080226 +packetLen(0x01d0, 26) // ZC_SPIRITS +#elif PACKETVER >= 20080219 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080124 +packetLen(0x01d0, 6) // ZC_SPIRITS +#elif PACKETVER >= 20080102 +packetLen(0x01d0, 8) // ZC_SPIRITS +#endif + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +#if PACKETVER >= 20081217 +packetLen(0x01d2, 10) // ZC_COMBODELAY +#elif PACKETVER >= 20081119 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20081112 +packetLen(0x01d2, 10) // ZC_COMBODELAY +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01d2, 10) // ZC_COMBODELAY +#elif PACKETVER >= 20081029 +packetLen(0x01d2, 4) // ZC_COMBODELAY +#elif PACKETVER >= 20081022 +packetLen(0x01d2, 29) // ZC_COMBODELAY +#elif PACKETVER >= 20081015 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20081008 +packetLen(0x01d2, 4) // ZC_COMBODELAY +#elif PACKETVER >= 20081001 +packetLen(0x01d2, 28) // ZC_COMBODELAY +#elif PACKETVER >= 20080917 +packetLen(0x01d2, 6) // ZC_COMBODELAY +#elif PACKETVER >= 20080910 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080903 +packetLen(0x01d2, 4) // ZC_COMBODELAY +#elif PACKETVER >= 20080827 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080820 +packetLen(0x01d2, 7) // ZC_COMBODELAY +#elif PACKETVER >= 20080806 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080730 +packetLen(0x01d2, 21) // ZC_COMBODELAY +#elif PACKETVER >= 20080722 +packetLen(0x01d2, 28) // ZC_COMBODELAY +#elif PACKETVER >= 20080708 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080701 +packetLen(0x01d2, 2) // ZC_COMBODELAY +#elif PACKETVER >= 20080624 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080617 +packetLen(0x01d2, 7) // ZC_COMBODELAY +#elif PACKETVER >= 20080603 +packetLen(0x01d2, 4) // ZC_COMBODELAY +#elif PACKETVER >= 20080520 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080513 +packetLen(0x01d2, 8) // ZC_COMBODELAY +#elif PACKETVER >= 20080507 +packetLen(0x01d2, 58) // ZC_COMBODELAY +#elif PACKETVER >= 20080415 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080408 +packetLen(0x01d2, 18) // ZC_COMBODELAY +#elif PACKETVER >= 20080401 +packetLen(0x01d2, 6) // ZC_COMBODELAY +#elif PACKETVER >= 20080325 +packetLen(0x01d2, 12) // ZC_COMBODELAY +#elif PACKETVER >= 20080318 +packetLen(0x01d2, 30) // ZC_COMBODELAY +#elif PACKETVER >= 20080311 +packetLen(0x01d2, 19) // ZC_COMBODELAY +#elif PACKETVER >= 20080304 +packetLen(0x01d2, 6) // ZC_COMBODELAY +#elif PACKETVER >= 20080226 +packetLen(0x01d2, 8) // ZC_COMBODELAY +#elif PACKETVER >= 20080219 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080124 +packetLen(0x01d2, 53) // ZC_COMBODELAY +#elif PACKETVER >= 20080102 +packetLen(0x01d2, 10) // ZC_COMBODELAY +#endif + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +#if PACKETVER >= 20081203 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20081126 +packetLen(0x01d4, 29) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20081112 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01d4, 2) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20081008 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20081001 +packetLen(0x01d4, 12) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080924 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080917 +packetLen(0x01d4, 28) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080910 +packetLen(0x01d4, 26) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080827 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080820 +packetLen(0x01d4, 22) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080813 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080806 +packetLen(0x01d4, 2) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080708 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080701 +packetLen(0x01d4, 8) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080624 +packetLen(0x01d4, 54) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080617 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080610 +packetLen(0x01d4, 20) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080520 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080513 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080401 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080325 +packetLen(0x01d4, 19) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080318 +packetLen(0x01d4, 60) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080311 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080304 +packetLen(0x01d4, 3) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080226 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080219 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080124 +packetLen(0x01d4, 15) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080102 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#endif + +// Packet: 0x01d5 +#if PACKETVER >= 20081217 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20081203 +packetLen(0x01d5, 26) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20081126 +packetLen(0x01d5, 8) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20081119 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20081112 +packetLen(0x01d5, 8) // CZ_INPUT_EDITDLGSTR +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01d5, 2) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20081029 +packetLen(0x01d5, 11) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20081022 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20081015 +packetLen(0x01d5, 4) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20081008 +packetLen(0x01d5, 6) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20081001 +packetLen(0x01d5, 21) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080924 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080917 +packetLen(0x01d5, 18) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080910 +packetLen(0x01d5, 10) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080903 +packetLen(0x01d5, 29) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080827 +packetLen(0x01d5, 10) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080813 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080806 +packetLen(0x01d5, 53) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080715 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080708 +packetLen(0x01d5, 10) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080701 +packetLen(0x01d5, 3) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080624 +packetLen(0x01d5, 27) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080610 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080603 +packetLen(0x01d5, 9) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080528 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080520 +packetLen(0x01d5, 6) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080507 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080429 +packetLen(0x01d5, 4) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080408 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080401 +packetLen(0x01d5, 97) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080325 +packetLen(0x01d5, 6) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080318 +packetLen(0x01d5, 34) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080311 +packetLen(0x01d5, 13) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080304 +packetLen(0x01d5, 5) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080226 +packetLen(0x01d5, 6) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080219 +packetLen(0x01d5, 16) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080102 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#endif + +// Packet: 0x01d6 +#if PACKETVER >= 20081217 +packetLen(0x01d6, 11) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20081203 +packetLen(0x01d6, 3) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20081126 +packetLen(0x01d6, 11) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20081119 +packetLen(0x01d6, 86) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20081112 +packetLen(0x01d6, 14) // ZC_NOTIFY_MAPPROPERTY2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081001 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080924 +packetLen(0x01d6, 28) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080917 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080910 +packetLen(0x01d6, 22) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080903 +packetLen(0x01d6, 58) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080827 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080820 +packetLen(0x01d6, 10) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080813 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080806 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080722 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080715 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080708 +packetLen(0x01d6, 3) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080701 +packetLen(0x01d6, 30) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080624 +packetLen(0x01d6, 3) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080617 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080610 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080603 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080528 +packetLen(0x01d6, 8) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080520 +packetLen(0x01d6, 2) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080513 +packetLen(0x01d6, 35) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080507 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080429 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080422 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080415 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080408 +packetLen(0x01d6, 54) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080401 +packetLen(0x01d6, 11) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080325 +packetLen(0x01d6, 54) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080318 +packetLen(0x01d6, 58) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080311 +packetLen(0x01d6, 5) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080304 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080226 +packetLen(0x01d6, 10) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080219 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080124 +packetLen(0x01d6, 16) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080102 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 +#endif + +// Packet: 0x01d7 +#if PACKETVER >= 20081217 +packetLen(0x01d7, 114) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20081203 +packetLen(0x01d7, 6) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20081112 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20081022 +packetLen(0x01d7, 55) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20081015 +packetLen(0x01d7, 60) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20081008 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20081001 +packetLen(0x01d7, 4) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080910 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080903 +packetLen(0x01d7, 102) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080827 +packetLen(0x01d7, 4) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080820 +packetLen(0x01d7, 8) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080806 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080722 +packetLen(0x01d7, 6) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080715 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080708 +packetLen(0x01d7, 27) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080701 +packetLen(0x01d7, 14) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080624 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080617 +packetLen(0x01d7, 8) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080610 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080603 +packetLen(0x01d7, 5) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080528 +packetLen(0x01d7, 9) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080520 +packetLen(0x01d7, 282) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080513 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080507 +packetLen(0x01d7, 2) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080408 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080401 +packetLen(0x01d7, 3) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080325 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080318 +packetLen(0x01d7, 4) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080311 +packetLen(0x01d7, 28) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080304 +packetLen(0x01d7, 54) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080226 +packetLen(0x01d7, 2) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080219 +packetLen(0x01d7, 35) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080124 +packetLen(0x01d7, 2) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080102 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +#endif + +// Packet: 0x01d8 +#if PACKETVER >= 20081217 +packetLen(0x01d8, 39) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20081203 +packetLen(0x01d8, 5) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20081126 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20081119 +packetLen(0x01d8, 9) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20081112 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01d8, 30) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20081008 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20081001 +packetLen(0x01d8, 8) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080917 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080910 +packetLen(0x01d8, 6) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080820 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080813 +packetLen(0x01d8, 3) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080806 +packetLen(0x01d8, 34) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080722 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080715 +packetLen(0x01d8, 10) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080708 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080701 +packetLen(0x01d8, 6) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080624 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080617 +packetLen(0x01d8, 6) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080610 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080603 +packetLen(0x01d8, 11) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080528 +packetLen(0x01d8, 3) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080520 +packetLen(0x01d8, 6) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080513 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080507 +packetLen(0x01d8, 6) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080429 +packetLen(0x01d8, 186) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080415 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080408 +packetLen(0x01d8, 4) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080401 +packetLen(0x01d8, 27) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080325 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080318 +packetLen(0x01d8, 5) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01d8, 2) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01d8, 10) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01d8, 15) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080124 +packetLen(0x01d8, 3) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +#endif + +// Packet: 0x01d9 +#if PACKETVER >= 20081217 +packetLen(0x01d9, 28) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20081203 +packetLen(0x01d9, 14) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20081126 +packetLen(0x01d9, 8) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20081119 +packetLen(0x01d9, 10) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20081112 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20081029 +packetLen(0x01d9, 23) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20081008 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20081001 +packetLen(0x01d9, 14) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080917 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080910 +packetLen(0x01d9, 282) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080903 +packetLen(0x01d9, 2) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080820 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080813 +packetLen(0x01d9, 7) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080806 +packetLen(0x01d9, 27) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080730 +packetLen(0x01d9, 13) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080708 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080701 +packetLen(0x01d9, 39) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080624 +packetLen(0x01d9, 15) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080617 +packetLen(0x01d9, 22) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080610 +packetLen(0x01d9, 8) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080528 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080520 +packetLen(0x01d9, 4) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080513 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080507 +packetLen(0x01d9, 60) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080429 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080422 +packetLen(0x01d9, 6) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080415 +packetLen(0x01d9, 26) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080408 +packetLen(0x01d9, 2) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080325 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080318 +packetLen(0x01d9, 282) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01d9, 28) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01d9, 42) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01d9, 8) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01d9, 282) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080124 +packetLen(0x01d9, 8) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +#endif + +// Packet: 0x01da +#if PACKETVER >= 20081217 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20081203 +packetLen(0x01da, 28) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20081126 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20081119 +packetLen(0x01da, 4) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20081112 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20081029 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20081022 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20081015 +packetLen(0x01da, 282) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20081008 +packetLen(0x01da, 55) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20081001 +packetLen(0x01da, 8) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080924 +packetLen(0x01da, 3) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080917 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080910 +packetLen(0x01da, 3) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080903 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080827 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080820 +packetLen(0x01da, 14) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080813 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080806 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080730 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080722 +packetLen(0x01da, 8) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080708 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080701 +packetLen(0x01da, 32) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080624 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080617 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080610 +packetLen(0x01da, 12) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080603 +packetLen(0x01da, 10) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080528 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080520 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080513 +packetLen(0x01da, 5) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080507 +packetLen(0x01da, 10) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080429 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080422 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080415 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080408 +packetLen(0x01da, 8) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080401 +packetLen(0x01da, 9) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080325 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080318 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01da, 79) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080124 +packetLen(0x01da, 12) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#endif + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +#if PACKETVER >= 20081126 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20081119 +packetLen(0x01de, 16) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20081112 +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01de, 22) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20081029 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20081022 +packetLen(0x01de, 2) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20081015 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20081008 +packetLen(0x01de, 7) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20081001 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080924 +packetLen(0x01de, 2) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080917 +packetLen(0x01de, 86) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080827 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080820 +packetLen(0x01de, 60) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080813 +packetLen(0x01de, 3) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080806 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080730 +packetLen(0x01de, 27) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080722 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080715 +packetLen(0x01de, 2) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080708 +packetLen(0x01de, 3) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080701 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080624 +packetLen(0x01de, 22) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080617 +packetLen(0x01de, 14) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080603 +packetLen(0x01de, 6) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080528 +packetLen(0x01de, 14) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080520 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080513 +packetLen(0x01de, 8) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080507 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080429 +packetLen(0x01de, 3) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080422 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080415 +packetLen(0x01de, 30) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080408 +packetLen(0x01de, 2) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080401 +packetLen(0x01de, 15) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080325 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080318 +packetLen(0x01de, 15) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080311 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080304 +packetLen(0x01de, 7) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080226 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080219 +packetLen(0x01de, 3) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080124 +packetLen(0x01de, 2) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080102 +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 +#endif + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +#if PACKETVER >= 20081217 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20081203 +packetLen(0x01e1, 10) // ZC_SPIRITS2 +#elif PACKETVER >= 20081112 +packetLen(0x01e1, 8) // ZC_SPIRITS2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01e1, 3) // ZC_SPIRITS2 +#elif PACKETVER >= 20081029 +packetLen(0x01e1, 86) // ZC_SPIRITS2 +#elif PACKETVER >= 20081022 +packetLen(0x01e1, 39) // ZC_SPIRITS2 +#elif PACKETVER >= 20081008 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20081001 +packetLen(0x01e1, 14) // ZC_SPIRITS2 +#elif PACKETVER >= 20080924 +packetLen(0x01e1, 19) // ZC_SPIRITS2 +#elif PACKETVER >= 20080917 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080910 +packetLen(0x01e1, 4) // ZC_SPIRITS2 +#elif PACKETVER >= 20080820 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080813 +packetLen(0x01e1, 5) // ZC_SPIRITS2 +#elif PACKETVER >= 20080806 +packetLen(0x01e1, 14) // ZC_SPIRITS2 +#elif PACKETVER >= 20080730 +packetLen(0x01e1, 4) // ZC_SPIRITS2 +#elif PACKETVER >= 20080701 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080624 +packetLen(0x01e1, 6) // ZC_SPIRITS2 +#elif PACKETVER >= 20080603 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080528 +packetLen(0x01e1, 43) // ZC_SPIRITS2 +#elif PACKETVER >= 20080520 +packetLen(0x01e1, 32) // ZC_SPIRITS2 +#elif PACKETVER >= 20080513 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080507 +packetLen(0x01e1, 3) // ZC_SPIRITS2 +#elif PACKETVER >= 20080429 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080422 +packetLen(0x01e1, 6) // ZC_SPIRITS2 +#elif PACKETVER >= 20080415 +packetLen(0x01e1, 8) // ZC_SPIRITS2 +#elif PACKETVER >= 20080408 +packetLen(0x01e1, 71) // ZC_SPIRITS2 +#elif PACKETVER >= 20080401 +packetLen(0x01e1, 2) // ZC_SPIRITS2 +#elif PACKETVER >= 20080325 +packetLen(0x01e1, 17) // ZC_SPIRITS2 +#elif PACKETVER >= 20080318 +packetLen(0x01e1, 60) // ZC_SPIRITS2 +#elif PACKETVER >= 20080304 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080226 +packetLen(0x01e1, 32) // ZC_SPIRITS2 +#elif PACKETVER >= 20080219 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080124 +packetLen(0x01e1, 11) // ZC_SPIRITS2 +#elif PACKETVER >= 20080102 +packetLen(0x01e1, 8) // ZC_SPIRITS2 +#endif + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +#if PACKETVER >= 20081126 +packetLen(0x01e7, 6) // CZ_DORIDORI +#elif PACKETVER >= 20081112 +packetLen(0x01e7, 2) // CZ_DORIDORI +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01e7, 8) // CZ_DORIDORI +#elif PACKETVER >= 20081029 +packetLen(0x01e7, 26) // CZ_DORIDORI +#elif PACKETVER >= 20081022 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20081015 +packetLen(0x01e7, 4) // CZ_DORIDORI +#elif PACKETVER >= 20081001 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080924 +packetLen(0x01e7, 8) // CZ_DORIDORI +#elif PACKETVER >= 20080917 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080910 +packetLen(0x01e7, 11) // CZ_DORIDORI +#elif PACKETVER >= 20080903 +packetLen(0x01e7, 6) // CZ_DORIDORI +#elif PACKETVER >= 20080827 +packetLen(0x01e7, 34) // CZ_DORIDORI +#elif PACKETVER >= 20080820 +packetLen(0x01e7, 4) // CZ_DORIDORI +#elif PACKETVER >= 20080813 +packetLen(0x01e7, 7) // CZ_DORIDORI +#elif PACKETVER >= 20080806 +packetLen(0x01e7, 3) // CZ_DORIDORI +#elif PACKETVER >= 20080730 +packetLen(0x01e7, 26) // CZ_DORIDORI +#elif PACKETVER >= 20080722 +packetLen(0x01e7, 21) // CZ_DORIDORI +#elif PACKETVER >= 20080715 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080708 +packetLen(0x01e7, 27) // CZ_DORIDORI +#elif PACKETVER >= 20080624 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080617 +packetLen(0x01e7, 6) // CZ_DORIDORI +#elif PACKETVER >= 20080610 +packetLen(0x01e7, 4) // CZ_DORIDORI +#elif PACKETVER >= 20080603 +packetLen(0x01e7, 14) // CZ_DORIDORI +#elif PACKETVER >= 20080528 +packetLen(0x01e7, 39) // CZ_DORIDORI +#elif PACKETVER >= 20080520 +packetLen(0x01e7, 22) // CZ_DORIDORI +#elif PACKETVER >= 20080513 +packetLen(0x01e7, 6) // CZ_DORIDORI +#elif PACKETVER >= 20080507 +packetLen(0x01e7, 54) // CZ_DORIDORI +#elif PACKETVER >= 20080429 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080422 +packetLen(0x01e7, 2) // CZ_DORIDORI +#elif PACKETVER >= 20080415 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080408 +packetLen(0x01e7, 60) // CZ_DORIDORI +#elif PACKETVER >= 20080401 +packetLen(0x01e7, 5) // CZ_DORIDORI +#elif PACKETVER >= 20080325 +packetLen(0x01e7, 20) // CZ_DORIDORI +#elif PACKETVER >= 20080318 +packetLen(0x01e7, 18) // CZ_DORIDORI +#elif PACKETVER >= 20080311 +packetLen(0x01e7, 55) // CZ_DORIDORI +#elif PACKETVER >= 20080304 +packetLen(0x01e7, 26) // CZ_DORIDORI +#elif PACKETVER >= 20080219 +packetLen(0x01e7, 2) // CZ_DORIDORI +#elif PACKETVER >= 20080124 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080102 +packetLen(0x01e7, 2) // CZ_DORIDORI +#endif + +// Packet: 0x01e8 +#if PACKETVER >= 20081203 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20081126 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20081112 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01e8, 8) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20081029 +packetLen(0x01e8, 59) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20081022 +packetLen(0x01e8, 6) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20081008 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20081001 +packetLen(0x01e8, 54) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080924 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080917 +packetLen(0x01e8, 33) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080730 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080722 +packetLen(0x01e8, 59) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080715 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080708 +packetLen(0x01e8, 8) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080701 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080624 +packetLen(0x01e8, 22) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080617 +packetLen(0x01e8, 14) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080610 +packetLen(0x01e8, 27) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080603 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080528 +packetLen(0x01e8, 53) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080520 +packetLen(0x01e8, 3) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080513 +packetLen(0x01e8, 10) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080507 +packetLen(0x01e8, 14) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080429 +packetLen(0x01e8, 10) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080422 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080415 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080408 +packetLen(0x01e8, 16) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080401 +packetLen(0x01e8, 10) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080318 +packetLen(0x01e8, 4) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080311 +packetLen(0x01e8, 6) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080304 +packetLen(0x01e8, 4) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080226 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080219 +packetLen(0x01e8, 6) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080124 +packetLen(0x01e8, 44) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080102 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#endif + +// Packet: 0x01e9 +#if PACKETVER >= 20081217 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20081203 +packetLen(0x01e9, 10) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20081126 +packetLen(0x01e9, 186) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20081119 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20081112 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20081029 +packetLen(0x01e9, 28) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080910 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080903 +packetLen(0x01e9, 9) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080820 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080813 +packetLen(0x01e9, 15) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080806 +packetLen(0x01e9, 26) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080730 +packetLen(0x01e9, 8) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080715 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080708 +packetLen(0x01e9, 3) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080701 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080624 +packetLen(0x01e9, 282) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080617 +packetLen(0x01e9, 6) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080610 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080528 +packetLen(0x01e9, 3) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080507 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080429 +packetLen(0x01e9, 5) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080422 +packetLen(0x01e9, 3) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080415 +packetLen(0x01e9, 2) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080408 +packetLen(0x01e9, 34) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080401 +packetLen(0x01e9, 8) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080325 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080318 +packetLen(0x01e9, 8) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080311 +packetLen(0x01e9, 2) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080304 +packetLen(0x01e9, 4) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080226 +packetLen(0x01e9, 12) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080219 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080124 +packetLen(0x01e9, 6) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080102 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 +#endif + +// Packet: 0x01ea +#if PACKETVER >= 20081217 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20081203 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20081126 +packetLen(0x01ea, 4) // ZC_CONGRATULATION +#elif PACKETVER >= 20081112 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20081029 +packetLen(0x01ea, 2) // ZC_CONGRATULATION +#elif PACKETVER >= 20081022 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20081015 +packetLen(0x01ea, 39) // ZC_CONGRATULATION +#elif PACKETVER >= 20081008 +packetLen(0x01ea, 11) // ZC_CONGRATULATION +#elif PACKETVER >= 20081001 +packetLen(0x01ea, 3) // ZC_CONGRATULATION +#elif PACKETVER >= 20080924 +packetLen(0x01ea, 8) // ZC_CONGRATULATION +#elif PACKETVER >= 20080917 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20080910 +packetLen(0x01ea, 4) // ZC_CONGRATULATION +#elif PACKETVER >= 20080806 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080730 +packetLen(0x01ea, 33) // ZC_CONGRATULATION +#elif PACKETVER >= 20080722 +packetLen(0x01ea, 2) // ZC_CONGRATULATION +#elif PACKETVER >= 20080708 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080701 +packetLen(0x01ea, 97) // ZC_CONGRATULATION +#elif PACKETVER >= 20080624 +packetLen(0x01ea, 79) // ZC_CONGRATULATION +#elif PACKETVER >= 20080617 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080610 +packetLen(0x01ea, 4) // ZC_CONGRATULATION +#elif PACKETVER >= 20080603 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080528 +packetLen(0x01ea, 2) // ZC_CONGRATULATION +#elif PACKETVER >= 20080513 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080507 +packetLen(0x01ea, 12) // ZC_CONGRATULATION +#elif PACKETVER >= 20080429 +packetLen(0x01ea, 22) // ZC_CONGRATULATION +#elif PACKETVER >= 20080422 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080415 +packetLen(0x01ea, 282) // ZC_CONGRATULATION +#elif PACKETVER >= 20080401 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080325 +packetLen(0x01ea, 27) // ZC_CONGRATULATION +#elif PACKETVER >= 20080318 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080311 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20080304 +packetLen(0x01ea, 60) // ZC_CONGRATULATION +#elif PACKETVER >= 20080219 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20080124 +packetLen(0x01ea, 10) // ZC_CONGRATULATION +#elif PACKETVER >= 20080102 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#endif + +// Packet: 0x01eb +#if PACKETVER >= 20081126 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20081119 +packetLen(0x01eb, 2) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20081112 +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081022 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20081015 +packetLen(0x01eb, 2) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20081008 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20081001 +packetLen(0x01eb, 30) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080924 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080917 +packetLen(0x01eb, 2) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080910 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080903 +packetLen(0x01eb, 16) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080827 +packetLen(0x01eb, 6) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080820 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080813 +packetLen(0x01eb, 6) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080722 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080715 +packetLen(0x01eb, 16) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080624 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080617 +packetLen(0x01eb, 7) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080610 +packetLen(0x01eb, 4) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080528 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080520 +packetLen(0x01eb, 4) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080513 +packetLen(0x01eb, 30) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080507 +packetLen(0x01eb, 114) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080429 +packetLen(0x01eb, 27) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080422 +packetLen(0x01eb, 30) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080415 +packetLen(0x01eb, 9) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080408 +packetLen(0x01eb, 13) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080401 +packetLen(0x01eb, 5) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080311 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080304 +packetLen(0x01eb, 30) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080226 +packetLen(0x01eb, 11) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080219 +packetLen(0x01eb, 26) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080124 +packetLen(0x01eb, 53) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080102 +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM +#endif + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +#if PACKETVER >= 20081217 +packetLen(0x01ed, 67) // CZ_CHOPOKGI +#elif PACKETVER >= 20081203 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20081126 +packetLen(0x01ed, 5) // CZ_CHOPOKGI +#elif PACKETVER >= 20081112 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20081015 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#elif PACKETVER >= 20081008 +packetLen(0x01ed, 8) // CZ_CHOPOKGI +#elif PACKETVER >= 20081001 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080924 +packetLen(0x01ed, 10) // CZ_CHOPOKGI +#elif PACKETVER >= 20080917 +packetLen(0x01ed, 8) // CZ_CHOPOKGI +#elif PACKETVER >= 20080910 +packetLen(0x01ed, 14) // CZ_CHOPOKGI +#elif PACKETVER >= 20080903 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080827 +packetLen(0x01ed, 4) // CZ_CHOPOKGI +#elif PACKETVER >= 20080820 +packetLen(0x01ed, 31) // CZ_CHOPOKGI +#elif PACKETVER >= 20080813 +packetLen(0x01ed, 11) // CZ_CHOPOKGI +#elif PACKETVER >= 20080806 +packetLen(0x01ed, 27) // CZ_CHOPOKGI +#elif PACKETVER >= 20080730 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#elif PACKETVER >= 20080722 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080715 +packetLen(0x01ed, 15) // CZ_CHOPOKGI +#elif PACKETVER >= 20080708 +packetLen(0x01ed, 54) // CZ_CHOPOKGI +#elif PACKETVER >= 20080701 +packetLen(0x01ed, 14) // CZ_CHOPOKGI +#elif PACKETVER >= 20080624 +packetLen(0x01ed, 6) // CZ_CHOPOKGI +#elif PACKETVER >= 20080610 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080603 +packetLen(0x01ed, 30) // CZ_CHOPOKGI +#elif PACKETVER >= 20080528 +packetLen(0x01ed, 4) // CZ_CHOPOKGI +#elif PACKETVER >= 20080520 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080513 +packetLen(0x01ed, 14) // CZ_CHOPOKGI +#elif PACKETVER >= 20080507 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080429 +packetLen(0x01ed, 30) // CZ_CHOPOKGI +#elif PACKETVER >= 20080422 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#elif PACKETVER >= 20080415 +packetLen(0x01ed, 3) // CZ_CHOPOKGI +#elif PACKETVER >= 20080408 +packetLen(0x01ed, 22) // CZ_CHOPOKGI +#elif PACKETVER >= 20080325 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080318 +packetLen(0x01ed, 10) // CZ_CHOPOKGI +#elif PACKETVER >= 20080311 +packetLen(0x01ed, 5) // CZ_CHOPOKGI +#elif PACKETVER >= 20080304 +packetLen(0x01ed, 4) // CZ_CHOPOKGI +#elif PACKETVER >= 20080226 +packetLen(0x01ed, 10) // CZ_CHOPOKGI +#elif PACKETVER >= 20080219 +packetLen(0x01ed, 22) // CZ_CHOPOKGI +#elif PACKETVER >= 20080124 +packetLen(0x01ed, 6) // CZ_CHOPOKGI +#elif PACKETVER >= 20080102 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#endif + +// Packet: 0x01ee +#if PACKETVER >= 20081217 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081203 +packetLen(0x01ee, 39) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081126 +packetLen(0x01ee, 17) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081112 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081105 +packetLen(0x01ee, 10) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081029 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081022 +packetLen(0x01ee, 23) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080903 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080827 +packetLen(0x01ee, 31) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080820 +packetLen(0x01ee, 10) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080813 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080806 +packetLen(0x01ee, 10) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080730 +packetLen(0x01ee, 5) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080715 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080708 +packetLen(0x01ee, 23) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080701 +packetLen(0x01ee, 8) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080617 +packetLen(0x01ee, 23) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080610 +packetLen(0x01ee, 8) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080528 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080520 +packetLen(0x01ee, 26) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x01ee, 2) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x01ee, 2) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x01ee, 71) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x01ee, 11) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x01ee, 8) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01ef +#if PACKETVER >= 20081217 +packetLen(0x01ef, 10) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081126 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081119 +packetLen(0x01ef, 10) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081112 +packetLen(0x01ef, 4) // ZC_CART_NORMAL_ITEMLIST2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01ef, 24) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081029 +packetLen(0x01ef, 18) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081001 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080917 +packetLen(0x01ef, 2) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080910 +packetLen(0x01ef, 90) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080813 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080806 +packetLen(0x01ef, 58) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080730 +packetLen(0x01ef, 10) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080722 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080715 +packetLen(0x01ef, 3) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080708 +packetLen(0x01ef, 6) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080701 +packetLen(0x01ef, 7) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080617 +packetLen(0x01ef, 10) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080603 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080528 +packetLen(0x01ef, 6) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080520 +packetLen(0x01ef, 14) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x01ef, 8) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x01ef, 7) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080429 +packetLen(0x01ef, 30) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x01ef, 16) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080415 +packetLen(0x01ef, 3) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x01ef, 6) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x01ef, 29) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x01ef, 8) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x01ef, 35) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x01ef, 6) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f0 +#if PACKETVER >= 20081217 +packetLen(0x01f0, 10) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081126 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081119 +packetLen(0x01f0, 3) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081112 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081105 +packetLen(0x01f0, 3) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081015 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20081008 +packetLen(0x01f0, 9) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080924 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080917 +packetLen(0x01f0, 65) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080903 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080827 +packetLen(0x01f0, 12) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080820 +packetLen(0x01f0, 4) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080813 +packetLen(0x01f0, 26) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080730 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080722 +packetLen(0x01f0, 4) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080715 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080708 +packetLen(0x01f0, 55) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080701 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x01f0, 8) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080617 +packetLen(0x01f0, 16) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080603 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080528 +packetLen(0x01f0, 8) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080520 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x01f0, 26) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080429 +packetLen(0x01f0, 7) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080415 +packetLen(0x01f0, 53) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x01f0, 22) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x01f0, 44) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x01f0, 13) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x01f0, 39) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x01f0, 4) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x01f0, 2) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x01f0, 30) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +#if PACKETVER >= 20081126 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20081119 +packetLen(0x01f2, 90) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20081112 +packetLen(0x01f2, 42) // ZC_UPDATE_CHARSTAT2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20081029 +packetLen(0x01f2, 6) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20081022 +packetLen(0x01f2, 59) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20081015 +packetLen(0x01f2, 8) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080924 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080917 +packetLen(0x01f2, 32) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080910 +packetLen(0x01f2, 6) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080903 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080827 +packetLen(0x01f2, 86) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080806 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080730 +packetLen(0x01f2, 3) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080722 +packetLen(0x01f2, 9) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080715 +packetLen(0x01f2, 2) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080708 +packetLen(0x01f2, 30) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080701 +packetLen(0x01f2, 12) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080603 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080528 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080513 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080507 +packetLen(0x01f2, 22) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080429 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080422 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080415 +packetLen(0x01f2, 8) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080408 +packetLen(0x01f2, 186) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080401 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080325 +packetLen(0x01f2, 6) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080318 +packetLen(0x01f2, 2) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080311 +packetLen(0x01f2, 28) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080304 +packetLen(0x01f2, 26) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080226 +packetLen(0x01f2, 27) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080219 +packetLen(0x01f2, 31) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080124 +packetLen(0x01f2, 14) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080102 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#endif + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +#if PACKETVER >= 20081217 +packetLen(0x01f4, 12) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20081203 +packetLen(0x01f4, 2) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20081119 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20081112 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081015 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20081008 +packetLen(0x01f4, 3) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20081001 +packetLen(0x01f4, 10) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080924 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080917 +packetLen(0x01f4, 4) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080910 +packetLen(0x01f4, 10) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080903 +packetLen(0x01f4, 14) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080820 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080813 +packetLen(0x01f4, 53) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080806 +packetLen(0x01f4, 7) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080715 +packetLen(0x01f4, 4) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080708 +packetLen(0x01f4, 6) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080701 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080624 +packetLen(0x01f4, 54) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080610 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080603 +packetLen(0x01f4, 7) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080520 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080513 +packetLen(0x01f4, 67) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080507 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080429 +packetLen(0x01f4, 28) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080422 +packetLen(0x01f4, 22) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080415 +packetLen(0x01f4, 6) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080408 +packetLen(0x01f4, 14) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080401 +packetLen(0x01f4, 6) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080325 +packetLen(0x01f4, 3) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080318 +packetLen(0x01f4, 10) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080311 +packetLen(0x01f4, 7) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080304 +packetLen(0x01f4, 12) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080226 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080124 +packetLen(0x01f4, 6) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080102 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f5 +#if PACKETVER >= 20081112 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20080924 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080917 +packetLen(0x01f5, 23) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080910 +packetLen(0x01f5, 102) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080903 +packetLen(0x01f5, 4) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080820 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080813 +packetLen(0x01f5, 4) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080722 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080715 +packetLen(0x01f5, 11) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080624 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080617 +packetLen(0x01f5, 6) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080603 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080528 +packetLen(0x01f5, 60) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080520 +packetLen(0x01f5, 5) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080513 +packetLen(0x01f5, 60) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080507 +packetLen(0x01f5, 4) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080429 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080422 +packetLen(0x01f5, 11) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080415 +packetLen(0x01f5, 4) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080408 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080401 +packetLen(0x01f5, 6) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080325 +packetLen(0x01f5, 14) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080318 +packetLen(0x01f5, 55) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080311 +packetLen(0x01f5, 30) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080304 +packetLen(0x01f5, 3) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080226 +packetLen(0x01f5, 10) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080219 +packetLen(0x01f5, 114) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080124 +packetLen(0x01f5, 7) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080102 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +#if PACKETVER >= 20081217 +packetLen(0x01fc, 11) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20081203 +packetLen(0x01fc, 15) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20081126 +packetLen(0x01fc, 2) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20081029 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x01fc, 6) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20081015 +packetLen(0x01fc, 44) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20081001 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080924 +packetLen(0x01fc, 3) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080910 +packetLen(0x01fc, 16) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080903 +packetLen(0x01fc, 27) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080827 +packetLen(0x01fc, 90) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080820 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x01fc, 16) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x01fc, 30) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x01fc, 7) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x01fc, 186) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080603 +packetLen(0x01fc, 71) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080528 +packetLen(0x01fc, 4) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x01fc, 26) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080429 +packetLen(0x01fc, 4) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x01fc, 59) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x01fc, 7) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x01fc, 6) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x01fc, 4) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x01fc, 282) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x01fc, 10) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#endif + +// Packet: 0x01fd +#if PACKETVER >= 20081203 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20081126 +packetLen(0x01fd, 32) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20081119 +packetLen(0x01fd, 20) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20081112 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01fd, 2) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20081029 +packetLen(0x01fd, 8) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20081001 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080924 +packetLen(0x01fd, 32) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080917 +packetLen(0x01fd, 27) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080910 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080903 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080827 +packetLen(0x01fd, 16) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080730 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080722 +packetLen(0x01fd, 7) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080715 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080708 +packetLen(0x01fd, 2) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080701 +packetLen(0x01fd, 13) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080617 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080610 +packetLen(0x01fd, 10) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080603 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080528 +packetLen(0x01fd, 26) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080520 +packetLen(0x01fd, 8) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080513 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080507 +packetLen(0x01fd, 6) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080429 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080422 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080415 +packetLen(0x01fd, 54) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080408 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080401 +packetLen(0x01fd, 6) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080325 +packetLen(0x01fd, 8) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080318 +packetLen(0x01fd, 6) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080311 +packetLen(0x01fd, 39) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080304 +packetLen(0x01fd, 6) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080226 +packetLen(0x01fd, 8) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080219 +packetLen(0x01fd, 26) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080124 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080102 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +#if PACKETVER >= 20081217 +packetLen(0x01fe, 15) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20081119 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20081112 +packetLen(0x01fe, 8) // ZC_ACK_ITEMREPAIR +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20081029 +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080924 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080917 +packetLen(0x01fe, 97) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080910 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080903 +packetLen(0x01fe, 8) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080827 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080820 +packetLen(0x01fe, 30) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080813 +packetLen(0x01fe, 20) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080806 +packetLen(0x01fe, 4) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080708 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080701 +packetLen(0x01fe, 30) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080624 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080617 +packetLen(0x01fe, 11) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080610 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080603 +packetLen(0x01fe, 4) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080513 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080507 +packetLen(0x01fe, 7) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080415 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080408 +packetLen(0x01fe, 8) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080401 +packetLen(0x01fe, 54) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080325 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080318 +packetLen(0x01fe, 20) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080311 +packetLen(0x01fe, 18) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080304 +packetLen(0x01fe, 22) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080226 +packetLen(0x01fe, 2) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080219 +packetLen(0x01fe, 13) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080124 +packetLen(0x01fe, 16) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080102 +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR +#endif + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +#if PACKETVER >= 20081217 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20081203 +packetLen(0x0201, 8) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20081126 +packetLen(0x0201, 67) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20081119 +packetLen(0x0201, 11) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20081105 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20081022 +packetLen(0x0201, 6) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20081015 +packetLen(0x0201, 8) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080813 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080806 +packetLen(0x0201, 3) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080715 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080708 +packetLen(0x0201, 22) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080701 +packetLen(0x0201, 9) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080624 +packetLen(0x0201, 3) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0201, 29) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0201, 26) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080513 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080507 +packetLen(0x0201, 67) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080429 +packetLen(0x0201, 33) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0201, 68) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0201, 58) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080408 +packetLen(0x0201, 54) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080401 +packetLen(0x0201, 7) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080325 +packetLen(0x0201, 5) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0201, 11) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0201, 282) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0201, 6) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0201, 7) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0201, 282) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#endif + +// Packet: 0x0202 +#if PACKETVER >= 20081217 +packetLen(0x0202, 9) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20081203 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20081126 +packetLen(0x0202, 14) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20081119 +packetLen(0x0202, 7) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20081112 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20081022 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20081015 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20081008 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080910 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080903 +packetLen(0x0202, 9) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080820 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080813 +packetLen(0x0202, 60) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080806 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080730 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080722 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080603 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x0202, 11) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x0202, 3) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x0202, 19) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080429 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080422 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080415 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080408 +packetLen(0x0202, 3) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0202, 33) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x0202, 11) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0202, 44) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +#if PACKETVER >= 20081112 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081015 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20081008 +packetLen(0x0203, 6) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20081001 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080924 +packetLen(0x0203, 6) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080917 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080910 +packetLen(0x0203, 58) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080903 +packetLen(0x0203, 11) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080827 +packetLen(0x0203, 6) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080813 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080806 +packetLen(0x0203, 2) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080730 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080722 +packetLen(0x0203, 282) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080715 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080708 +packetLen(0x0203, 4) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080701 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080624 +packetLen(0x0203, 3) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080603 +packetLen(0x0203, 7) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x0203, 34) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x0203, 4) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x0203, 7) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080429 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080422 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080401 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x0203, 3) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x0203, 67) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0203, 60) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0203, 7) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0203, 4) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x0203, 6) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#endif + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +#if PACKETVER >= 20081217 +packetLen(0x0206, 6) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20081203 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20081126 +packetLen(0x0206, 3) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20081119 +packetLen(0x0206, 8) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20081112 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0206, 44) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20081029 +packetLen(0x0206, 22) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20081001 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080924 +packetLen(0x0206, 8) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080917 +packetLen(0x0206, 81) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080910 +packetLen(0x0206, 2) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080903 +packetLen(0x0206, 65) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080827 +packetLen(0x0206, 8) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080813 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080806 +packetLen(0x0206, 8) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080730 +packetLen(0x0206, 6) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080722 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080715 +packetLen(0x0206, 282) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080708 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080701 +packetLen(0x0206, 2) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080624 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080617 +packetLen(0x0206, 30) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080603 +packetLen(0x0206, 3) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080520 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080513 +packetLen(0x0206, 6) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080429 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080422 +packetLen(0x0206, 7) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080415 +packetLen(0x0206, 4) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080408 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080401 +packetLen(0x0206, 59) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080325 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080318 +packetLen(0x0206, 30) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080311 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080304 +packetLen(0x0206, 9) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080226 +packetLen(0x0206, 8) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080219 +packetLen(0x0206, 7) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080124 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080102 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#endif + +// Packet: 0x0207 +#if PACKETVER >= 20081112 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0207, 5) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20081015 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20081008 +packetLen(0x0207, 2) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20081001 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080924 +packetLen(0x0207, 30) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080910 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080903 +packetLen(0x0207, 54) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080820 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080813 +packetLen(0x0207, 11) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080806 +packetLen(0x0207, 6) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080730 +packetLen(0x0207, 60) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080722 +packetLen(0x0207, 6) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080715 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080708 +packetLen(0x0207, 14) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080701 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080624 +packetLen(0x0207, 2) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080617 +packetLen(0x0207, 11) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0207, 7) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x0207, 28) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x0207, 2) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080429 +packetLen(0x0207, 5) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080422 +packetLen(0x0207, 2) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080408 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080401 +packetLen(0x0207, 102) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x0207, 8) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x0207, 2) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x0207, 6) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0207, 26) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0207, 66) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x0207, 28) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0208 +#if PACKETVER >= 20081112 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20081022 +packetLen(0x0208, 27) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20081015 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20081008 +packetLen(0x0208, 3) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20081001 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080924 +packetLen(0x0208, 18) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080820 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080813 +packetLen(0x0208, 3) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080730 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080722 +packetLen(0x0208, 2) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080715 +packetLen(0x0208, 12) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080708 +packetLen(0x0208, 16) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080701 +packetLen(0x0208, 2) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080624 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080617 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0208, 15) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080603 +packetLen(0x0208, 10) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x0208, 26) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x0208, 10) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x0208, 60) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080429 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080415 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080408 +packetLen(0x0208, 5) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080401 +packetLen(0x0208, 22) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x0208, 10) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0208, 71) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x0208, 65) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0209 +#if PACKETVER >= 20081112 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20081029 +packetLen(0x0209, 4) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20081022 +packetLen(0x0209, 10) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20081015 +packetLen(0x0209, 4) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20081001 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080924 +packetLen(0x0209, 3) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080917 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080910 +packetLen(0x0209, 12) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080827 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080820 +packetLen(0x0209, 20) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080730 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080722 +packetLen(0x0209, 5) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080715 +packetLen(0x0209, 8) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080708 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080701 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080624 +packetLen(0x0209, 9) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080617 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0209, 39) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080520 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080513 +packetLen(0x0209, 8) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080507 +packetLen(0x0209, 5) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080429 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0209, 18) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080408 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080401 +packetLen(0x0209, 10) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080325 +packetLen(0x0209, 3) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0209, 4) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0209, 10) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0209, 30) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0209, 10) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST +#endif + +// Packet: 0x020a +#if PACKETVER >= 20081217 +packetLen(0x020a, 4) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20081119 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20081112 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20081022 +packetLen(0x020a, 7) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20081015 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20081008 +packetLen(0x020a, 5) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20081001 +packetLen(0x020a, 27) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080924 +packetLen(0x020a, 4) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080917 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080910 +packetLen(0x020a, 7) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080903 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080827 +packetLen(0x020a, 7) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080820 +packetLen(0x020a, 29) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080813 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080730 +packetLen(0x020a, 3) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080722 +packetLen(0x020a, 6) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080715 +packetLen(0x020a, 30) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080701 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080624 +packetLen(0x020a, 68) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080617 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x020a, 186) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080603 +packetLen(0x020a, 11) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080528 +packetLen(0x020a, 32) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080520 +packetLen(0x020a, 30) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080513 +packetLen(0x020a, 2) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080507 +packetLen(0x020a, 71) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080422 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080415 +packetLen(0x020a, 6) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080408 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080401 +packetLen(0x020a, 14) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080325 +packetLen(0x020a, 13) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080318 +packetLen(0x020a, 7) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x020a, 6) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x020a, 11) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x020a, 20) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080124 +packetLen(0x020a, 2) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +#endif + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +#if PACKETVER >= 20081217 +packetLen(0x020e, 6) // ZC_STARSKILL +#elif PACKETVER >= 20081203 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20081126 +packetLen(0x020e, 10) // ZC_STARSKILL +#elif PACKETVER >= 20081112 +packetLen(0x020e, 32) // ZC_STARSKILL +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20081022 +packetLen(0x020e, 67) // ZC_STARSKILL +#elif PACKETVER >= 20081015 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20081001 +packetLen(0x020e, 2) // ZC_STARSKILL +#elif PACKETVER >= 20080910 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080903 +packetLen(0x020e, 30) // ZC_STARSKILL +#elif PACKETVER >= 20080827 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080820 +packetLen(0x020e, 4) // ZC_STARSKILL +#elif PACKETVER >= 20080813 +packetLen(0x020e, 6) // ZC_STARSKILL +#elif PACKETVER >= 20080806 +packetLen(0x020e, 2) // ZC_STARSKILL +#elif PACKETVER >= 20080730 +packetLen(0x020e, 3) // ZC_STARSKILL +#elif PACKETVER >= 20080722 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080715 +packetLen(0x020e, 2) // ZC_STARSKILL +#elif PACKETVER >= 20080708 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080701 +packetLen(0x020e, 10) // ZC_STARSKILL +#elif PACKETVER >= 20080624 +packetLen(0x020e, 5) // ZC_STARSKILL +#elif PACKETVER >= 20080603 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080528 +packetLen(0x020e, 7) // ZC_STARSKILL +#elif PACKETVER >= 20080520 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080513 +packetLen(0x020e, 32) // ZC_STARSKILL +#elif PACKETVER >= 20080507 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080429 +packetLen(0x020e, 54) // ZC_STARSKILL +#elif PACKETVER >= 20080415 +packetLen(0x020e, 4) // ZC_STARSKILL +#elif PACKETVER >= 20080408 +packetLen(0x020e, 3) // ZC_STARSKILL +#elif PACKETVER >= 20080401 +packetLen(0x020e, 6) // ZC_STARSKILL +#elif PACKETVER >= 20080318 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080311 +packetLen(0x020e, 6) // ZC_STARSKILL +#elif PACKETVER >= 20080304 +packetLen(0x020e, 27) // ZC_STARSKILL +#elif PACKETVER >= 20080226 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080219 +packetLen(0x020e, 8) // ZC_STARSKILL +#elif PACKETVER >= 20080124 +packetLen(0x020e, 102) // ZC_STARSKILL +#elif PACKETVER >= 20080102 +packetLen(0x020e, 32) // ZC_STARSKILL +#endif + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +#if PACKETVER >= 20081126 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20081119 +packetLen(0x0217, 28) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20081112 +packetLen(0x0217, 30) // CZ_BLACKSMITH_RANK +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0217, 10) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20081008 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20081001 +packetLen(0x0217, 7) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080924 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080917 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080903 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080827 +packetLen(0x0217, 26) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080820 +packetLen(0x0217, 55) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080806 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080730 +packetLen(0x0217, 7) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080722 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080715 +packetLen(0x0217, 54) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080708 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080701 +packetLen(0x0217, 7) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0217, 4) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0217, 53) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0217, 6) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080528 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080520 +packetLen(0x0217, 8) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0217, 65) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0217, 8) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0217, 15) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0217, 8) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0217, 13) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0217, 4) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0217, 26) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0217, 44) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0217, 5) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0217, 3) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#endif + +// Packet: 0x0218 +#if PACKETVER >= 20081203 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20081126 +packetLen(0x0218, 102) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20081119 +packetLen(0x0218, 13) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20081112 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20081105 +packetLen(0x0218, 30) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20081015 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20081008 +packetLen(0x0218, 3) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080917 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080910 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080820 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080813 +packetLen(0x0218, 11) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080806 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080730 +packetLen(0x0218, 4) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080722 +packetLen(0x0218, 33) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080715 +packetLen(0x0218, 8) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080701 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080624 +packetLen(0x0218, 10) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0218, 68) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0218, 30) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0218, 5) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080520 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0218, 18) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0218, 67) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0218, 6) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0218, 14) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0218, 4) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0218, 8) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0218, 26) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0218, 6) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#endif + +// Packet: 0x0219 +#if PACKETVER >= 20081217 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20081203 +packetLen(0x0219, 26) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20081119 +packetLen(0x0219, 8) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20081112 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0219, 5) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20081015 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20081008 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080924 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080917 +packetLen(0x0219, 2) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080910 +packetLen(0x0219, 4) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080903 +packetLen(0x0219, 8) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080827 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080820 +packetLen(0x0219, 5) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080813 +packetLen(0x0219, 186) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080722 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080715 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080624 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0219, 8) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0219, 4) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080528 +packetLen(0x0219, 30) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0219, 12) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0219, 9) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0219, 28) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0219, 4) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0219, 15) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0219, 3) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0219, 17) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0219, 8) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +#endif + +// Packet: 0x021a +#if PACKETVER >= 20081217 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20081203 +packetLen(0x021a, 13) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20081126 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20081119 +packetLen(0x021a, 60) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20081112 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20081029 +packetLen(0x021a, 10) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20081022 +packetLen(0x021a, 9) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080917 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080910 +packetLen(0x021a, 26) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080813 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080806 +packetLen(0x021a, 3) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080730 +packetLen(0x021a, 39) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080715 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080708 +packetLen(0x021a, 79) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080701 +packetLen(0x021a, 6) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080624 +packetLen(0x021a, 11) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080617 +packetLen(0x021a, 97) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080610 +packetLen(0x021a, 23) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080603 +packetLen(0x021a, 30) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080528 +packetLen(0x021a, 26) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080513 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080507 +packetLen(0x021a, 3) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080429 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080422 +packetLen(0x021a, 16) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080408 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080401 +packetLen(0x021a, 11) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080325 +packetLen(0x021a, 8) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080318 +packetLen(0x021a, 6) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080311 +packetLen(0x021a, 8) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080304 +packetLen(0x021a, 5) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080226 +packetLen(0x021a, 30) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080219 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080124 +packetLen(0x021a, 10) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080102 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +#endif + +// Packet: 0x021b +#if PACKETVER >= 20081217 +packetLen(0x021b, 28) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20081203 +packetLen(0x021b, 14) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20081119 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20081112 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x021b, 3) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20081008 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20081001 +packetLen(0x021b, 58) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080903 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080827 +packetLen(0x021b, 33) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080820 +packetLen(0x021b, 7) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080813 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080806 +packetLen(0x021b, 26) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080730 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080722 +packetLen(0x021b, 22) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080715 +packetLen(0x021b, 29) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080701 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080624 +packetLen(0x021b, 4) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080617 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080610 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080603 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080520 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080513 +packetLen(0x021b, 4) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080507 +packetLen(0x021b, 8) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080429 +packetLen(0x021b, 2) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080422 +packetLen(0x021b, 44) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080415 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080408 +packetLen(0x021b, 9) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080401 +packetLen(0x021b, 6) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080325 +packetLen(0x021b, 11) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080318 +packetLen(0x021b, 3) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080311 +packetLen(0x021b, 15) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080304 +packetLen(0x021b, 14) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080226 +packetLen(0x021b, 6) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080219 +packetLen(0x021b, 15) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080124 +packetLen(0x021b, 54) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080102 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#endif + +// Packet: 0x021c +#if PACKETVER >= 20081119 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20081112 +packetLen(0x021c, 33) // ZC_ALCHEMIST_POINT +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20081029 +packetLen(0x021c, 6) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20081008 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20081001 +packetLen(0x021c, 39) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080917 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080910 +packetLen(0x021c, 9) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080827 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080820 +packetLen(0x021c, 26) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080730 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080722 +packetLen(0x021c, 4) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080715 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080617 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080610 +packetLen(0x021c, 8) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080603 +packetLen(0x021c, 13) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080528 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080520 +packetLen(0x021c, 2) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080513 +packetLen(0x021c, 5) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080507 +packetLen(0x021c, 8) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080429 +packetLen(0x021c, 18) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080422 +packetLen(0x021c, 3) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080415 +packetLen(0x021c, 5) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080408 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080401 +packetLen(0x021c, 4) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080325 +packetLen(0x021c, 102) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080318 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080311 +packetLen(0x021c, 6) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080304 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080226 +packetLen(0x021c, 4) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080219 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080124 +packetLen(0x021c, 30) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080102 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#endif + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +#if PACKETVER >= 20081217 +packetLen(0x0224, 60) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20081203 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20081126 +packetLen(0x0224, 26) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20081112 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20081029 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20081022 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20081015 +packetLen(0x0224, 11) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20081008 +packetLen(0x0224, 282) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20081001 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080924 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080917 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080910 +packetLen(0x0224, 66) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080903 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080827 +packetLen(0x0224, 42) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080820 +packetLen(0x0224, 4) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080813 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080806 +packetLen(0x0224, 17) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080730 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080722 +packetLen(0x0224, 11) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080715 +packetLen(0x0224, 8) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080708 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080701 +packetLen(0x0224, 4) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080624 +packetLen(0x0224, 42) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080610 +packetLen(0x0224, 4) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080603 +packetLen(0x0224, 14) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080528 +packetLen(0x0224, 9) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080520 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080513 +packetLen(0x0224, 3) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080507 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080429 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080422 +packetLen(0x0224, 8) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080415 +packetLen(0x0224, 27) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080408 +packetLen(0x0224, 81) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080401 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080325 +packetLen(0x0224, 2) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080318 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080311 +packetLen(0x0224, 20) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080304 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080226 +packetLen(0x0224, 2) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080219 +packetLen(0x0224, 12) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080124 +packetLen(0x0224, 9) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080102 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#endif + +// Packet: 0x0225 +#if PACKETVER >= 20081203 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20081126 +packetLen(0x0225, 23) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20081119 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20081112 +packetLen(0x0225, 28) // CZ_TAEKWON_RANK +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20081015 +packetLen(0x0225, 10) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20081001 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080924 +packetLen(0x0225, 5) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080917 +packetLen(0x0225, 10) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080813 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080806 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080730 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080722 +packetLen(0x0225, 6) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080701 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080624 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0225, 7) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0225, 32) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0225, 14) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080520 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0225, 10) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0225, 9) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0225, 3) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0225, 4) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0225, 3) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0225, 5) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0225, 5) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0225, 29) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0225, 10) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0225, 3) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0225, 6) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#endif + +// Packet: 0x0226 +#if PACKETVER >= 20081217 +packetLen(0x0226, 102) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20081203 +packetLen(0x0226, 7) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20081112 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20081022 +packetLen(0x0226, 5) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20081008 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20081001 +packetLen(0x0226, 3) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080903 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080827 +packetLen(0x0226, 65) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080820 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080813 +packetLen(0x0226, 8) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080806 +packetLen(0x0226, 43) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080722 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080715 +packetLen(0x0226, 2) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080708 +packetLen(0x0226, 6) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080624 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0226, 3) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0226, 2) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080528 +packetLen(0x0226, 36) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0226, 2) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0226, 30) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0226, 2) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0226, 9) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0226, 3) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0226, 22) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0226, 3) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0226, 42) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0226, 4) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +#endif + +// Packet: 0x0227 +#if PACKETVER >= 20081217 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20081203 +packetLen(0x0227, 68) // ZC_GAME_GUARD +#elif PACKETVER >= 20081126 +packetLen(0x0227, 39) // ZC_GAME_GUARD +#elif PACKETVER >= 20081119 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20081112 +packetLen(0x0227, 26) // ZC_GAME_GUARD +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081015 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20081008 +packetLen(0x0227, 4) // ZC_GAME_GUARD +#elif PACKETVER >= 20081001 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080924 +packetLen(0x0227, 9) // ZC_GAME_GUARD +#elif PACKETVER >= 20080917 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080910 +packetLen(0x0227, 11) // ZC_GAME_GUARD +#elif PACKETVER >= 20080903 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080827 +packetLen(0x0227, 6) // ZC_GAME_GUARD +#elif PACKETVER >= 20080820 +packetLen(0x0227, 36) // ZC_GAME_GUARD +#elif PACKETVER >= 20080813 +packetLen(0x0227, 2) // ZC_GAME_GUARD +#elif PACKETVER >= 20080708 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080701 +packetLen(0x0227, 2) // ZC_GAME_GUARD +#elif PACKETVER >= 20080617 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080610 +packetLen(0x0227, 10) // ZC_GAME_GUARD +#elif PACKETVER >= 20080603 +packetLen(0x0227, 6) // ZC_GAME_GUARD +#elif PACKETVER >= 20080528 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080520 +packetLen(0x0227, 10) // ZC_GAME_GUARD +#elif PACKETVER >= 20080513 +packetLen(0x0227, 4) // ZC_GAME_GUARD +#elif PACKETVER >= 20080507 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080429 +packetLen(0x0227, 26) // ZC_GAME_GUARD +#elif PACKETVER >= 20080422 +packetLen(0x0227, 8) // ZC_GAME_GUARD +#elif PACKETVER >= 20080415 +packetLen(0x0227, 2) // ZC_GAME_GUARD +#elif PACKETVER >= 20080408 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080325 +packetLen(0x0227, 6) // ZC_GAME_GUARD +#elif PACKETVER >= 20080318 +packetLen(0x0227, 15) // ZC_GAME_GUARD +#elif PACKETVER >= 20080311 +packetLen(0x0227, 7) // ZC_GAME_GUARD +#elif PACKETVER >= 20080304 +packetLen(0x0227, 2) // ZC_GAME_GUARD +#elif PACKETVER >= 20080226 +packetLen(0x0227, 31) // ZC_GAME_GUARD +#elif PACKETVER >= 20080219 +packetLen(0x0227, 4) // ZC_GAME_GUARD +#elif PACKETVER >= 20080124 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080102 +packetLen(0x0227, 18) // ZC_GAME_GUARD +#endif + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +#if PACKETVER >= 20081217 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20081203 +packetLen(0x0229, 18) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20081126 +packetLen(0x0229, 7) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20081119 +packetLen(0x0229, 11) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20081112 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0229, 2) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20081029 +packetLen(0x0229, 6) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20081022 +packetLen(0x0229, 2) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20081015 +packetLen(0x0229, 6) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20081008 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20081001 +packetLen(0x0229, 6) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080910 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080903 +packetLen(0x0229, 10) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080820 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080813 +packetLen(0x0229, 3) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080806 +packetLen(0x0229, 8) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080730 +packetLen(0x0229, 12) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080715 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080708 +packetLen(0x0229, 20) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080701 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080624 +packetLen(0x0229, 2) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080617 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080610 +packetLen(0x0229, 21) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080603 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080528 +packetLen(0x0229, 2) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080520 +packetLen(0x0229, 31) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080507 +packetLen(0x0229, 5) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080429 +packetLen(0x0229, 2) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080422 +packetLen(0x0229, 3) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080415 +packetLen(0x0229, 7) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080408 +packetLen(0x0229, 5) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080401 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080325 +packetLen(0x0229, 6) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080318 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080311 +packetLen(0x0229, 22) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080304 +packetLen(0x0229, 33) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080226 +packetLen(0x0229, 182) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080219 +packetLen(0x0229, 6) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080124 +packetLen(0x0229, 22) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080102 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +#endif + +// Packet: 0x022a +#if PACKETVER >= 20081217 +packetLen(0x022a, 30) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20081126 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20081119 +packetLen(0x022a, 8) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20081112 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20081029 +packetLen(0x022a, 4) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20081022 +packetLen(0x022a, 282) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20081015 +packetLen(0x022a, 19) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20081008 +packetLen(0x022a, 6) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080917 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080910 +packetLen(0x022a, 21) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080903 +packetLen(0x022a, 26) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080827 +packetLen(0x022a, 13) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080806 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080730 +packetLen(0x022a, 26) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080722 +packetLen(0x022a, 66) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080701 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080624 +packetLen(0x022a, 2) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080617 +packetLen(0x022a, 8) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080520 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080513 +packetLen(0x022a, 5) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080507 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080429 +packetLen(0x022a, 3) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080422 +packetLen(0x022a, 23) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080415 +packetLen(0x022a, 3) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080408 +packetLen(0x022a, 10) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080401 +packetLen(0x022a, 8) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080325 +packetLen(0x022a, 114) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080318 +packetLen(0x022a, 2) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080311 +packetLen(0x022a, 10) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080304 +packetLen(0x022a, 2) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080226 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080219 +packetLen(0x022a, 2) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080124 +packetLen(0x022a, 8) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080102 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#endif + +// Packet: 0x022b +#if PACKETVER >= 20081217 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20081126 +packetLen(0x022b, 6) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20081119 +packetLen(0x022b, 2) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20081112 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081022 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20081015 +packetLen(0x022b, 282) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20081008 +packetLen(0x022b, 3) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20081001 +packetLen(0x022b, 6) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080806 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080730 +packetLen(0x022b, 4) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080701 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080624 +packetLen(0x022b, 90) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080617 +packetLen(0x022b, 6) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080610 +packetLen(0x022b, 2) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080603 +packetLen(0x022b, 18) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080528 +packetLen(0x022b, 7) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080520 +packetLen(0x022b, 10) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080513 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080507 +packetLen(0x022b, 6) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080429 +packetLen(0x022b, 26) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080415 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080408 +packetLen(0x022b, 27) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080401 +packetLen(0x022b, 6) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080325 +packetLen(0x022b, 282) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080318 +packetLen(0x022b, 102) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080311 +packetLen(0x022b, 10) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080304 +packetLen(0x022b, 8) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080219 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080124 +packetLen(0x022b, 23) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080102 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20081217 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20081203 +packetLen(0x022c, 54) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20081126 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20081119 +packetLen(0x022c, 60) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20081112 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20081029 +packetLen(0x022c, 8) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20081022 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20081015 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20081008 +packetLen(0x022c, 13) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20081001 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080924 +packetLen(0x022c, 15) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080917 +packetLen(0x022c, 10) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080910 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080903 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080827 +packetLen(0x022c, 282) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080730 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080722 +packetLen(0x022c, 2) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080715 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080708 +packetLen(0x022c, 59) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080603 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080520 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080513 +packetLen(0x022c, 8) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080507 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080429 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080422 +packetLen(0x022c, 33) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080415 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080408 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080401 +packetLen(0x022c, 4) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080325 +packetLen(0x022c, 68) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080318 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080304 +packetLen(0x022c, 10) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080226 +packetLen(0x022c, 31) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080219 +packetLen(0x022c, 53) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080124 +packetLen(0x022c, 22) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080102 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +#if PACKETVER >= 20081217 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20081203 +packetLen(0x022d, 44) // CZ_COMMAND_MER +#elif PACKETVER >= 20081126 +packetLen(0x022d, 20) // CZ_COMMAND_MER +#elif PACKETVER >= 20081112 +packetLen(0x022d, 5) // CZ_COMMAND_MER +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20081022 +packetLen(0x022d, 4) // CZ_COMMAND_MER +#elif PACKETVER >= 20081015 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20081008 +packetLen(0x022d, 26) // CZ_COMMAND_MER +#elif PACKETVER >= 20080730 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20080722 +packetLen(0x022d, 4) // CZ_COMMAND_MER +#elif PACKETVER >= 20080715 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20080708 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20080701 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20080520 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20080513 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20080507 +packetLen(0x022d, 29) // CZ_COMMAND_MER +#elif PACKETVER >= 20080429 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20080422 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20080408 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20080401 +packetLen(0x022d, 30) // CZ_COMMAND_MER +#elif PACKETVER >= 20080325 +packetLen(0x022d, 11) // CZ_COMMAND_MER +#elif PACKETVER >= 20080318 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20080311 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20080226 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20080219 +packetLen(0x022d, 9) // CZ_COMMAND_MER +#elif PACKETVER >= 20080124 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20080102 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +#if PACKETVER >= 20081217 +packetLen(0x022e, 186) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20081203 +packetLen(0x022e, 3) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20081126 +packetLen(0x022e, 9) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20081119 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20081112 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20081029 +packetLen(0x022e, 60) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20081022 +packetLen(0x022e, 3) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20081015 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20081008 +packetLen(0x022e, 17) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080924 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080917 +packetLen(0x022e, 10) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080910 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080903 +packetLen(0x022e, 30) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080820 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080813 +packetLen(0x022e, 18) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080730 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080722 +packetLen(0x022e, 4) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080708 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080701 +packetLen(0x022e, 30) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080624 +packetLen(0x022e, 4) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080610 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080603 +packetLen(0x022e, 10) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080520 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080513 +packetLen(0x022e, 4) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080507 +packetLen(0x022e, 8) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080429 +packetLen(0x022e, 3) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080422 +packetLen(0x022e, 7) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080415 +packetLen(0x022e, 30) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080408 +packetLen(0x022e, 9) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080401 +packetLen(0x022e, 2) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080325 +packetLen(0x022e, 4) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080318 +packetLen(0x022e, 28) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080311 +packetLen(0x022e, 5) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080304 +packetLen(0x022e, 55) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080226 +packetLen(0x022e, 9) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080219 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080124 +packetLen(0x022e, 4) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080102 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#endif + +// Packet: 0x022f +#if PACKETVER >= 20081217 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20081203 +packetLen(0x022f, 9) // ZC_FEED_MER +#elif PACKETVER >= 20081126 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20081119 +packetLen(0x022f, 30) // ZC_FEED_MER +#elif PACKETVER >= 20081112 +packetLen(0x022f, 5) // ZC_FEED_MER +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20081029 +packetLen(0x022f, 10) // ZC_FEED_MER +#elif PACKETVER >= 20081015 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20081008 +packetLen(0x022f, 30) // ZC_FEED_MER +#elif PACKETVER >= 20081001 +packetLen(0x022f, 182) // ZC_FEED_MER +#elif PACKETVER >= 20080924 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080917 +packetLen(0x022f, 6) // ZC_FEED_MER +#elif PACKETVER >= 20080813 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080806 +packetLen(0x022f, 10) // ZC_FEED_MER +#elif PACKETVER >= 20080722 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080715 +packetLen(0x022f, 10) // ZC_FEED_MER +#elif PACKETVER >= 20080701 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080624 +packetLen(0x022f, 10) // ZC_FEED_MER +#elif PACKETVER >= 20080617 +packetLen(0x022f, 4) // ZC_FEED_MER +#elif PACKETVER >= 20080610 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080603 +packetLen(0x022f, 22) // ZC_FEED_MER +#elif PACKETVER >= 20080528 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080520 +packetLen(0x022f, 26) // ZC_FEED_MER +#elif PACKETVER >= 20080429 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080422 +packetLen(0x022f, 7) // ZC_FEED_MER +#elif PACKETVER >= 20080415 +packetLen(0x022f, 3) // ZC_FEED_MER +#elif PACKETVER >= 20080401 +packetLen(0x022f, 10) // ZC_FEED_MER +#elif PACKETVER >= 20080325 +packetLen(0x022f, 67) // ZC_FEED_MER +#elif PACKETVER >= 20080318 +packetLen(0x022f, 7) // ZC_FEED_MER +#elif PACKETVER >= 20080304 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20080226 +packetLen(0x022f, 26) // ZC_FEED_MER +#elif PACKETVER >= 20080219 +packetLen(0x022f, 282) // ZC_FEED_MER +#elif PACKETVER >= 20080124 +packetLen(0x022f, 6) // ZC_FEED_MER +#elif PACKETVER >= 20080102 +packetLen(0x022f, 5) // ZC_FEED_MER +#endif + +// Packet: 0x0230 +#if PACKETVER >= 20081217 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20081203 +packetLen(0x0230, 2) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20081126 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20081119 +packetLen(0x0230, 4) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20081112 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0230, 10) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20081029 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20081022 +packetLen(0x0230, 8) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20081015 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20081008 +packetLen(0x0230, 10) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080924 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080917 +packetLen(0x0230, 71) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080903 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080827 +packetLen(0x0230, 22) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080813 +packetLen(0x0230, 6) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080722 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080715 +packetLen(0x0230, 6) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080624 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080617 +packetLen(0x0230, 4) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080520 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080513 +packetLen(0x0230, 6) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080507 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080429 +packetLen(0x0230, 6) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080415 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080401 +packetLen(0x0230, 43) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080325 +packetLen(0x0230, 8) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080318 +packetLen(0x0230, 4) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080311 +packetLen(0x0230, 3) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080304 +packetLen(0x0230, 16) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080226 +packetLen(0x0230, 28) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080219 +packetLen(0x0230, 54) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080124 +packetLen(0x0230, 3) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080102 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +#endif + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +#if PACKETVER >= 20081217 +packetLen(0x0232, 3) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20081203 +packetLen(0x0232, 58) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20081126 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20081119 +packetLen(0x0232, 8) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20081112 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20081022 +packetLen(0x0232, 102) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20081008 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20081001 +packetLen(0x0232, 8) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080910 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080903 +packetLen(0x0232, 6) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080730 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080722 +packetLen(0x0232, 2) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080715 +packetLen(0x0232, 28) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080708 +packetLen(0x0232, 12) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080701 +packetLen(0x0232, 28) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080624 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080617 +packetLen(0x0232, 6) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080610 +packetLen(0x0232, 30) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080603 +packetLen(0x0232, 2) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080528 +packetLen(0x0232, 4) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080520 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080513 +packetLen(0x0232, 17) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080429 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080422 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080415 +packetLen(0x0232, 10) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080408 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080401 +packetLen(0x0232, 2) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080325 +packetLen(0x0232, 10) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080318 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080311 +packetLen(0x0232, 5) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080304 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080226 +packetLen(0x0232, 2) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080219 +packetLen(0x0232, 36) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080124 +packetLen(0x0232, 17) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080102 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#endif + +// Packet: 0x0233 +#if PACKETVER >= 20081217 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20081203 +packetLen(0x0233, 32) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20081112 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20081029 +packetLen(0x0233, 16) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20081022 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20081015 +packetLen(0x0233, 3) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20081001 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080924 +packetLen(0x0233, 5) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080910 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080903 +packetLen(0x0233, 2) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080827 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080813 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080806 +packetLen(0x0233, 42) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080722 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080715 +packetLen(0x0233, 9) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080624 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080617 +packetLen(0x0233, 10) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080610 +packetLen(0x0233, 66) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080603 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080528 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080520 +packetLen(0x0233, 15) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080513 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080507 +packetLen(0x0233, 68) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080429 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080422 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080415 +packetLen(0x0233, 10) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080408 +packetLen(0x0233, 22) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080325 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080318 +packetLen(0x0233, 2) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080311 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080304 +packetLen(0x0233, 2) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080226 +packetLen(0x0233, 4) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080219 +packetLen(0x0233, 8) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080124 +packetLen(0x0233, 23) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080102 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#endif + +// Packet: 0x0234 +#if PACKETVER >= 20081217 +packetLen(0x0234, 10) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20081112 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0234, 20) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20081029 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20081015 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20081008 +packetLen(0x0234, 60) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080910 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080903 +packetLen(0x0234, 3) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080813 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080806 +packetLen(0x0234, 4) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080730 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080722 +packetLen(0x0234, 58) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080715 +packetLen(0x0234, 26) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080624 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080617 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080528 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080520 +packetLen(0x0234, 10) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080429 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080422 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080415 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080408 +packetLen(0x0234, 2) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080401 +packetLen(0x0234, 16) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080325 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080318 +packetLen(0x0234, 3) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080311 +packetLen(0x0234, 43) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080304 +packetLen(0x0234, 4) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080226 +packetLen(0x0234, 15) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080219 +packetLen(0x0234, 282) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080124 +packetLen(0x0234, 26) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080102 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#endif + +// Packet: 0x0235 +#if PACKETVER >= 20081217 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20081203 +packetLen(0x0235, 5) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20081126 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20081119 +packetLen(0x0235, 58) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20081112 +packetLen(0x0235, 30) // ZC_HOSKILLINFO_LIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0235, 59) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20081029 +packetLen(0x0235, 282) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20081022 +packetLen(0x0235, 3) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20081015 +packetLen(0x0235, 26) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20081008 +packetLen(0x0235, 6) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080903 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080827 +packetLen(0x0235, 7) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080813 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080730 +packetLen(0x0235, 9) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080722 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080715 +packetLen(0x0235, 9) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080708 +packetLen(0x0235, 2) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080701 +packetLen(0x0235, 6) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080617 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0235, 6) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080603 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080528 +packetLen(0x0235, 12) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080520 +packetLen(0x0235, 5) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080422 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080415 +packetLen(0x0235, 28) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080408 +packetLen(0x0235, 2) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080401 +packetLen(0x0235, 19) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080325 +packetLen(0x0235, 42) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080318 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0235, 44) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0235, 10) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0235, 33) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0235, 15) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080124 +packetLen(0x0235, 30) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#endif + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +#if PACKETVER >= 20081217 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20081203 +packetLen(0x0237, 3) // CZ_KILLER_RANK +#elif PACKETVER >= 20081119 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20081112 +packetLen(0x0237, 15) // CZ_KILLER_RANK +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081015 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20081008 +packetLen(0x0237, 23) // CZ_KILLER_RANK +#elif PACKETVER >= 20081001 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080924 +packetLen(0x0237, 5) // CZ_KILLER_RANK +#elif PACKETVER >= 20080917 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080910 +packetLen(0x0237, 9) // CZ_KILLER_RANK +#elif PACKETVER >= 20080820 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080813 +packetLen(0x0237, 54) // CZ_KILLER_RANK +#elif PACKETVER >= 20080806 +packetLen(0x0237, 8) // CZ_KILLER_RANK +#elif PACKETVER >= 20080730 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#elif PACKETVER >= 20080722 +packetLen(0x0237, 6) // CZ_KILLER_RANK +#elif PACKETVER >= 20080715 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080708 +packetLen(0x0237, 11) // CZ_KILLER_RANK +#elif PACKETVER >= 20080701 +packetLen(0x0237, 29) // CZ_KILLER_RANK +#elif PACKETVER >= 20080624 +packetLen(0x0237, 14) // CZ_KILLER_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0237, 5) // CZ_KILLER_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0237, 4) // CZ_KILLER_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080528 +packetLen(0x0237, 19) // CZ_KILLER_RANK +#elif PACKETVER >= 20080520 +packetLen(0x0237, 3) // CZ_KILLER_RANK +#elif PACKETVER >= 20080507 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0237, 24) // CZ_KILLER_RANK +#elif PACKETVER >= 20080422 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080408 +packetLen(0x0237, 60) // CZ_KILLER_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0237, 20) // CZ_KILLER_RANK +#elif PACKETVER >= 20080325 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0237, 8) // CZ_KILLER_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0237, 54) // CZ_KILLER_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0237, 3) // CZ_KILLER_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0237, 10) // CZ_KILLER_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0237, 3) // CZ_KILLER_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0237, 4) // CZ_KILLER_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#endif + +// Packet: 0x0238 +#if PACKETVER >= 20081217 +packetLen(0x0238, 22) // ZC_KILLER_RANK +#elif PACKETVER >= 20081203 +packetLen(0x0238, 9) // ZC_KILLER_RANK +#elif PACKETVER >= 20081126 +packetLen(0x0238, 2) // ZC_KILLER_RANK +#elif PACKETVER >= 20081119 +packetLen(0x0238, 35) // ZC_KILLER_RANK +#elif PACKETVER >= 20081112 +packetLen(0x0238, 282) // ZC_KILLER_RANK +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20081015 +packetLen(0x0238, 8) // ZC_KILLER_RANK +#elif PACKETVER >= 20081008 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20081001 +packetLen(0x0238, 14) // ZC_KILLER_RANK +#elif PACKETVER >= 20080917 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080910 +packetLen(0x0238, 71) // ZC_KILLER_RANK +#elif PACKETVER >= 20080903 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080827 +packetLen(0x0238, 10) // ZC_KILLER_RANK +#elif PACKETVER >= 20080813 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080806 +packetLen(0x0238, 71) // ZC_KILLER_RANK +#elif PACKETVER >= 20080722 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080715 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20080624 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080617 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20080610 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080603 +packetLen(0x0238, 21) // ZC_KILLER_RANK +#elif PACKETVER >= 20080513 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080429 +packetLen(0x0238, 10) // ZC_KILLER_RANK +#elif PACKETVER >= 20080415 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080401 +packetLen(0x0238, 10) // ZC_KILLER_RANK +#elif PACKETVER >= 20080318 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0238, 27) // ZC_KILLER_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0238, 14) // ZC_KILLER_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080124 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0238, 282) // ZC_KILLER_RANK +#endif + +// Packet: 0x0239 +#if PACKETVER >= 20081217 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20081203 +packetLen(0x0239, 86) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20081126 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20081119 +packetLen(0x0239, 29) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20081112 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081015 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20081008 +packetLen(0x0239, 19) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080917 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080910 +packetLen(0x0239, 3) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080903 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080827 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080820 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080813 +packetLen(0x0239, 12) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080806 +packetLen(0x0239, 32) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080730 +packetLen(0x0239, 3) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080722 +packetLen(0x0239, 6) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080715 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080701 +packetLen(0x0239, 30) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080624 +packetLen(0x0239, 8) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080610 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080603 +packetLen(0x0239, 2) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080528 +packetLen(0x0239, 29) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080520 +packetLen(0x0239, 282) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080513 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080507 +packetLen(0x0239, 5) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080429 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080422 +packetLen(0x0239, 5) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080415 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080408 +packetLen(0x0239, 36) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080401 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080325 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080318 +packetLen(0x0239, 26) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080311 +packetLen(0x0239, 8) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080304 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080226 +packetLen(0x0239, 39) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080219 +packetLen(0x0239, 8) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080124 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080102 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +#endif + +// Packet: 0x023a +#if PACKETVER >= 20081217 +packetLen(0x023a, 90) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20081203 +packetLen(0x023a, 97) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20081126 +packetLen(0x023a, 10) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20081119 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20081112 +packetLen(0x023a, 6) // ZC_REQ_STORE_PASSWORD +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20081029 +packetLen(0x023a, 2) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20081022 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20081015 +packetLen(0x023a, 54) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080910 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080903 +packetLen(0x023a, 3) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080827 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080820 +packetLen(0x023a, 26) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080813 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080806 +packetLen(0x023a, 28) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080715 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080708 +packetLen(0x023a, 9) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080701 +packetLen(0x023a, 13) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080624 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080617 +packetLen(0x023a, 10) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080513 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080507 +packetLen(0x023a, 28) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080429 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080422 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080415 +packetLen(0x023a, 2) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080401 +packetLen(0x023a, 6) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080325 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080318 +packetLen(0x023a, 8) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080311 +packetLen(0x023a, 10) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080304 +packetLen(0x023a, 2) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080226 +packetLen(0x023a, 6) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080219 +packetLen(0x023a, 11) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080124 +packetLen(0x023a, 71) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080102 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#endif + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +#if PACKETVER >= 20081217 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20081203 +packetLen(0x023c, 30) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20081126 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20081119 +packetLen(0x023c, 5) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20081112 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20081022 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20081015 +packetLen(0x023c, 18) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20081008 +packetLen(0x023c, 3) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080910 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080903 +packetLen(0x023c, 10) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080827 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080820 +packetLen(0x023c, 4) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080813 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080730 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080722 +packetLen(0x023c, 3) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080708 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080701 +packetLen(0x023c, 60) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080617 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080610 +packetLen(0x023c, 4) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080513 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080507 +packetLen(0x023c, 30) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080429 +packetLen(0x023c, 3) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080422 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080415 +packetLen(0x023c, 10) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080408 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080401 +packetLen(0x023c, 12) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080325 +packetLen(0x023c, 79) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080318 +packetLen(0x023c, 10) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080311 +packetLen(0x023c, 21) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080226 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080219 +packetLen(0x023c, 5) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080124 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080102 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#endif + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +#if PACKETVER >= 20081126 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20081119 +packetLen(0x0274, 11) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20081112 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0274, 3) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20081015 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20081008 +packetLen(0x0274, 6) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20081001 +packetLen(0x0274, 186) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080924 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080917 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080910 +packetLen(0x0274, 6) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080903 +packetLen(0x0274, 35) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080715 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080708 +packetLen(0x0274, 67) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080617 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080610 +packetLen(0x0274, 4) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080603 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080528 +packetLen(0x0274, 10) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080520 +packetLen(0x0274, 30) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080513 +packetLen(0x0274, 7) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080507 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080429 +packetLen(0x0274, 7) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080422 +packetLen(0x0274, 282) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080415 +packetLen(0x0274, 6) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080408 +packetLen(0x0274, 3) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080401 +packetLen(0x0274, 2) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080325 +packetLen(0x0274, 53) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080318 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080311 +packetLen(0x0274, 67) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080304 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080226 +packetLen(0x0274, 24) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080219 +packetLen(0x0274, 32) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080124 +packetLen(0x0274, 3) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080102 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#endif + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +#if PACKETVER >= 20080722 +packetLen(0x027c, 60) // CA_LOGIN4 +#elif PACKETVER >= 20080715 +packetLen(0x027c, 96) // CA_LOGIN4 +#elif PACKETVER >= 20080102 +packetLen(0x027c, 60) // CA_LOGIN4 +#endif + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +#if PACKETVER >= 20081105 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20081029 +packetLen(0x0287, 60) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20081022 +packetLen(0x0287, 42) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20081015 +packetLen(0x0287, 4) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080924 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080917 +packetLen(0x0287, 114) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080820 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080813 +packetLen(0x0287, 97) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080806 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080730 +packetLen(0x0287, 5) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080722 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080715 +packetLen(0x0287, 6) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080708 +packetLen(0x0287, 30) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080701 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080624 +packetLen(0x0287, 26) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080617 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x0287, 2) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080513 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080507 +packetLen(0x0287, 11) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080422 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080415 +packetLen(0x0287, 31) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080408 +packetLen(0x0287, 3) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080401 +packetLen(0x0287, 2) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080325 +packetLen(0x0287, 4) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080318 +packetLen(0x0287, 32) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0287, 18) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0287, 10) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0287, 11) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080124 +packetLen(0x0287, 3) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#endif + +// Packet: 0x0288 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +#if PACKETVER >= 20081203 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081126 +packetLen(0x0295, 7) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081119 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081112 +packetLen(0x0295, 8) // ZC_EQUIPMENT_ITEMLIST2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0295, 6) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081029 +packetLen(0x0295, 5) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081015 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081008 +packetLen(0x0295, 6) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081001 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080924 +packetLen(0x0295, 14) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080910 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080903 +packetLen(0x0295, 2) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080827 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080813 +packetLen(0x0295, 6) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080806 +packetLen(0x0295, 54) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080715 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080708 +packetLen(0x0295, 11) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080701 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x0295, 31) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080610 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080603 +packetLen(0x0295, 30) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x0295, 6) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080429 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x0295, 53) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080415 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x0295, 10) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x0295, 2) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x0295, 66) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x0295, 8) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x0295, 4) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x0295, 5) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x0295, 3) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x0295, 6) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x0295, 34) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0296 +#if PACKETVER >= 20081217 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081203 +packetLen(0x0296, 23) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081126 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081119 +packetLen(0x0296, 6) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081112 +packetLen(0x0296, 21) // ZC_STORE_EQUIPMENT_ITEMLIST2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081022 +packetLen(0x0296, 16) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081008 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081001 +packetLen(0x0296, 19) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080924 +packetLen(0x0296, 14) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080813 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080806 +packetLen(0x0296, 86) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080730 +packetLen(0x0296, 4) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080715 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080708 +packetLen(0x0296, 282) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080617 +packetLen(0x0296, 19) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080610 +packetLen(0x0296, 17) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080528 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080520 +packetLen(0x0296, 5) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x0296, 53) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080507 +packetLen(0x0296, 3) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080415 +packetLen(0x0296, 28) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x0296, 14) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x0296, 20) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x0296, 9) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x0296, 29) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x0296, 90) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x0296, 6) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x0296, 5) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x0296, 4) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0297 +#if PACKETVER >= 20081217 +packetLen(0x0297, 6) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081203 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081126 +packetLen(0x0297, 9) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081105 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081029 +packetLen(0x0297, 2) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081022 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20081008 +packetLen(0x0297, 6) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080910 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080903 +packetLen(0x0297, 6) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080820 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080813 +packetLen(0x0297, 14) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080806 +packetLen(0x0297, 8) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080730 +packetLen(0x0297, 86) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080715 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080708 +packetLen(0x0297, 67) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080701 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080624 +packetLen(0x0297, 4) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080610 +packetLen(0x0297, 6) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080603 +packetLen(0x0297, 9) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080513 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080429 +packetLen(0x0297, 2) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080422 +packetLen(0x0297, 8) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080408 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080401 +packetLen(0x0297, 3) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080325 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080318 +packetLen(0x0297, 36) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x0297, 2) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x0297, 11) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x0297, 5) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080124 +packetLen(0x0297, 29) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +#if PACKETVER >= 20081217 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20081203 +packetLen(0x029a, 7) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20081119 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20081112 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20081029 +packetLen(0x029a, 20) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20081022 +packetLen(0x029a, 6) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080924 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080917 +packetLen(0x029a, 4) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080910 +packetLen(0x029a, 2) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080813 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080806 +packetLen(0x029a, 9) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080715 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080708 +packetLen(0x029a, 6) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080610 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080603 +packetLen(0x029a, 28) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080528 +packetLen(0x029a, 7) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080520 +packetLen(0x029a, 55) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080513 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080507 +packetLen(0x029a, 12) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080429 +packetLen(0x029a, 44) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080422 +packetLen(0x029a, 11) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080408 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080401 +packetLen(0x029a, 14) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080325 +packetLen(0x029a, 2) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080318 +packetLen(0x029a, 16) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080311 +packetLen(0x029a, 8) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080304 +packetLen(0x029a, 21) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080226 +packetLen(0x029a, 3) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080219 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080124 +packetLen(0x029a, 30) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080102 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#endif + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +#if PACKETVER >= 20080122 +// removed +#elif PACKETVER >= 20080108 +packetLen(0x02a6, 204) // ZC_HACKSH_CPX_MSG +#elif PACKETVER >= 20080102 +packetLen(0x02a6, 22) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20080122 +// removed +#elif PACKETVER >= 20080108 +packetLen(0x02a7, 204) // CZ_HACKSH_CPX_MSG +#elif PACKETVER >= 20080102 +packetLen(0x02a7, 22) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a8 +#if PACKETVER >= 20080108 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02a8, 162) // ZC_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02a9 +#if PACKETVER >= 20080108 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02a9, 58) // CZ_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02bf +#if PACKETVER >= 20080318 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02bf, 10) // ZC_SRPACKETR2_INIT +#endif + +// Packet: 0x02c0 +#if PACKETVER >= 20080318 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02c0, 2) // CZ_SRPACKETR2_START +#endif + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +#if PACKETVER >= 20080304 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080226 +packetLen(0x02d4, 30) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080219 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080124 +packetLen(0x02d4, 32) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080102 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#endif + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +#if PACKETVER >= 20081217 +packetLen(0x02e1, 6) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20081112 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20081029 +packetLen(0x02e1, 5) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20081022 +packetLen(0x02e1, 90) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20081008 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20081001 +packetLen(0x02e1, 6) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080924 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080917 +packetLen(0x02e1, 6) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080910 +packetLen(0x02e1, 2) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080903 +packetLen(0x02e1, 5) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080827 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080820 +packetLen(0x02e1, 13) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080813 +packetLen(0x02e1, 2) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080730 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080722 +packetLen(0x02e1, 102) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080715 +packetLen(0x02e1, 3) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080617 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080610 +packetLen(0x02e1, 26) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080603 +packetLen(0x02e1, 8) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080528 +packetLen(0x02e1, 10) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080520 +packetLen(0x02e1, 6) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080513 +packetLen(0x02e1, 55) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080507 +packetLen(0x02e1, 22) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080408 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080401 +packetLen(0x02e1, 9) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080325 +packetLen(0x02e1, 26) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080311 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080304 +packetLen(0x02e1, 8) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080102 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 +#endif + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +#if PACKETVER >= 20081203 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20081119 +packetLen(0x02ec, 6) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20081112 +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 +// ignored packet from 2008-11-12dRagexe +#elif PACKETVER >= 20081105 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20081029 +packetLen(0x02ec, 68) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20081022 +packetLen(0x02ec, 30) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20081008 +packetLen(0x02ec, 4) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080917 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080910 +packetLen(0x02ec, 30) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080903 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080827 +packetLen(0x02ec, 26) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080820 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080813 +packetLen(0x02ec, 28) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080806 +packetLen(0x02ec, 68) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080730 +packetLen(0x02ec, 2) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080722 +packetLen(0x02ec, 29) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080715 +packetLen(0x02ec, 3) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080708 +packetLen(0x02ec, 32) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080624 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080617 +packetLen(0x02ec, 42) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080610 +packetLen(0x02ec, 6) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080603 +packetLen(0x02ec, 4) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080528 +packetLen(0x02ec, 6) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080520 +packetLen(0x02ec, 14) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080513 +packetLen(0x02ec, 11) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080507 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080429 +packetLen(0x02ec, 43) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080422 +packetLen(0x02ec, 60) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080415 +packetLen(0x02ec, 3) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080408 +packetLen(0x02ec, 6) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080401 +packetLen(0x02ec, 17) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080325 +packetLen(0x02ec, 29) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080318 +packetLen(0x02ec, 10) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080311 +packetLen(0x02ec, 12) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080304 +packetLen(0x02ec, 60) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080102 +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 +#endif + +// Packet: 0x02ed +#if PACKETVER >= 20081119 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20081112 +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081029 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20081022 +packetLen(0x02ed, 30) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20081015 +packetLen(0x02ed, 5) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20081008 +packetLen(0x02ed, 4) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20081001 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080924 +packetLen(0x02ed, 17) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080917 +packetLen(0x02ed, 10) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080910 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080903 +packetLen(0x02ed, 15) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080827 +packetLen(0x02ed, 2) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080813 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080806 +packetLen(0x02ed, 6) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080730 +packetLen(0x02ed, 29) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080715 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080708 +packetLen(0x02ed, 6) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080624 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080617 +packetLen(0x02ed, 60) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080610 +packetLen(0x02ed, 7) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080603 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080528 +packetLen(0x02ed, 97) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080520 +packetLen(0x02ed, 11) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080513 +packetLen(0x02ed, 21) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080507 +packetLen(0x02ed, 10) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080429 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080422 +packetLen(0x02ed, 30) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080415 +packetLen(0x02ed, 53) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080408 +packetLen(0x02ed, 7) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080401 +packetLen(0x02ed, 11) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080325 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080318 +packetLen(0x02ed, 6) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080304 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080102 +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 +#endif + +// Packet: 0x02ee +#if PACKETVER >= 20081203 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20081126 +packetLen(0x02ee, 6) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20081119 +packetLen(0x02ee, 26) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20081112 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x02ee, 14) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20081029 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20081008 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20081001 +packetLen(0x02ee, 6) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080924 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080910 +packetLen(0x02ee, 3) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080903 +packetLen(0x02ee, 2) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080827 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080820 +packetLen(0x02ee, 8) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080813 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080806 +packetLen(0x02ee, 6) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080730 +packetLen(0x02ee, 4) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080715 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080708 +packetLen(0x02ee, 36) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080610 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080603 +packetLen(0x02ee, 2) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080528 +packetLen(0x02ee, 3) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080520 +packetLen(0x02ee, 28) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080507 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080429 +packetLen(0x02ee, 4) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080422 +packetLen(0x02ee, 97) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080415 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080408 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080401 +packetLen(0x02ee, 42) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080325 +packetLen(0x02ee, 4) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080318 +packetLen(0x02ee, 13) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080311 +packetLen(0x02ee, 81) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080304 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080102 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#endif + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +#if PACKETVER >= 20080318 +packetLen(0x02f0, 10) // ZC_PROGRESS +#endif + +// Packet: 0x02f1 +#if PACKETVER >= 20080318 +packetLen(0x02f1, 2) // CZ_PROGRESS +#endif + +// Packet: 0x02f2 +#if PACKETVER >= 20080318 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL +#endif + +// Packet: 0x02f3 +#if PACKETVER >= 20081217 +packetLen(0x02f3, 3) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20081203 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20081126 +packetLen(0x02f3, 4) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20081022 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20081015 +packetLen(0x02f3, 7) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20081008 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20081001 +packetLen(0x02f3, 10) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080924 +packetLen(0x02f3, 58) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080910 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080903 +packetLen(0x02f3, 21) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080827 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080820 +packetLen(0x02f3, 2) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080813 +packetLen(0x02f3, 10) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080806 +packetLen(0x02f3, 4) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080730 +packetLen(0x02f3, 10) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080722 +packetLen(0x02f3, 2) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080715 +packetLen(0x02f3, 30) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080701 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080624 +packetLen(0x02f3, 2) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080617 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080610 +packetLen(0x02f3, 30) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080603 +packetLen(0x02f3, 9) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080528 +packetLen(0x02f3, 26) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080520 +packetLen(0x02f3, 5) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080513 +packetLen(0x02f3, 3) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080507 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080429 +packetLen(0x02f3, 7) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080422 +packetLen(0x02f3, 3) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080415 +packetLen(0x02f3, 67) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080408 +packetLen(0x02f3, 23) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080401 +packetLen(0x02f3, 71) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20080325 +packetLen(0x02f3, 2) // CZ_IRMAIL_SEND +#endif + +// Packet: 0x02f4 +#if PACKETVER >= 20081217 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20081203 +packetLen(0x02f4, 15) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20081126 +packetLen(0x02f4, 11) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20081112 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20081105 +packetLen(0x02f4, 2) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20081029 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20081015 +packetLen(0x02f4, 6) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20081008 +packetLen(0x02f4, 7) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20081001 +packetLen(0x02f4, 8) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080924 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080917 +packetLen(0x02f4, 55) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080910 +packetLen(0x02f4, 11) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080813 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080806 +packetLen(0x02f4, 35) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080715 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080708 +packetLen(0x02f4, 6) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080617 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080610 +packetLen(0x02f4, 30) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080507 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080429 +packetLen(0x02f4, 29) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080422 +packetLen(0x02f4, 6) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080408 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080401 +packetLen(0x02f4, 9) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080325 +packetLen(0x02f4, 4) // ZC_IRMAIL_SEND_RES +#endif + +// Packet: 0x02f5 +#if PACKETVER >= 20081217 +packetLen(0x02f5, 6) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20081126 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20081119 +packetLen(0x02f5, 2) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20081112 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20081105 +packetLen(0x02f5, 90) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20081029 +packetLen(0x02f5, 6) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20081022 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20081015 +packetLen(0x02f5, 71) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20081001 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080924 +packetLen(0x02f5, 10) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080910 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080903 +packetLen(0x02f5, 3) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080813 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080806 +packetLen(0x02f5, 11) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080722 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080715 +packetLen(0x02f5, 2) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080708 +packetLen(0x02f5, 26) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080701 +packetLen(0x02f5, 8) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080624 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080617 +packetLen(0x02f5, 26) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080610 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080603 +packetLen(0x02f5, 28) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080528 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080520 +packetLen(0x02f5, 2) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080513 +packetLen(0x02f5, 3) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080507 +packetLen(0x02f5, 5) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080429 +packetLen(0x02f5, 8) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080422 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080415 +packetLen(0x02f5, 60) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080401 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20080325 +packetLen(0x02f5, 86) // ZC_IRMAIL_NOTIFY +#endif + +// Packet: 0x02f6 +#if PACKETVER >= 20081217 +packetLen(0x02f6, 4) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20081126 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20081119 +packetLen(0x02f6, 2) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20081112 +packetLen(0x02f6, 29) // CZ_IRMAIL_LIST +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x02f6, 10) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20081015 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20081008 +packetLen(0x02f6, 30) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20081001 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080924 +packetLen(0x02f6, 11) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080827 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080820 +packetLen(0x02f6, 22) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080806 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080730 +packetLen(0x02f6, 4) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080708 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080624 +packetLen(0x02f6, 8) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080617 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080610 +packetLen(0x02f6, 5) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080603 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080528 +packetLen(0x02f6, 2) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080520 +packetLen(0x02f6, 12) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080513 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080507 +packetLen(0x02f6, 5) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080429 +packetLen(0x02f6, 22) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080422 +packetLen(0x02f6, 5) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080415 +packetLen(0x02f6, 2) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080408 +packetLen(0x02f6, 8) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080401 +packetLen(0x02f6, 6) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080325 +packetLen(0x02f6, 4) // CZ_IRMAIL_LIST +#endif + +// Packet: 0x02f7 +#if PACKETVER >= 20081217 +packetLen(0x02f7, 6) +#elif PACKETVER >= 20081119 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20081112 +packetLen(0x02f7, 2) +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x02f7, 2) +#elif PACKETVER >= 20081029 +packetLen(0x02f7, 3) +#elif PACKETVER >= 20081022 +packetLen(0x02f7, 11) +#elif PACKETVER >= 20081015 +packetLen(0x02f7, 6) +#elif PACKETVER >= 20081008 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20081001 +packetLen(0x02f7, 4) +#elif PACKETVER >= 20080910 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080903 +packetLen(0x02f7, 6) +#elif PACKETVER >= 20080827 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080820 +packetLen(0x02f7, 54) +#elif PACKETVER >= 20080730 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080722 +packetLen(0x02f7, 11) +#elif PACKETVER >= 20080715 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080708 +packetLen(0x02f7, 14) +#elif PACKETVER >= 20080624 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080617 +packetLen(0x02f7, 26) +#elif PACKETVER >= 20080610 +packetLen(0x02f7, 12) +#elif PACKETVER >= 20080603 +packetLen(0x02f7, 22) +#elif PACKETVER >= 20080528 +packetLen(0x02f7, 8) +#elif PACKETVER >= 20080520 +packetLen(0x02f7, 6) +#elif PACKETVER >= 20080513 +packetLen(0x02f7, 10) +#elif PACKETVER >= 20080507 +packetLen(0x02f7, 30) +#elif PACKETVER >= 20080429 +packetLen(0x02f7, 7) +#elif PACKETVER >= 20080422 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080415 +packetLen(0x02f7, 6) +#elif PACKETVER >= 20080408 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20080401 +packetLen(0x02f7, 26) +#elif PACKETVER >= 20080325 +packetLen(0x02f7, -1) +#endif + +// Packet: 0x02f8 +#if PACKETVER >= 20081126 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20081119 +packetLen(0x02f8, 26) +#elif PACKETVER >= 20081105 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20081029 +packetLen(0x02f8, 43) +#elif PACKETVER >= 20081015 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20081008 +packetLen(0x02f8, 6) +#elif PACKETVER >= 20081001 +packetLen(0x02f8, 10) +#elif PACKETVER >= 20080827 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20080820 +packetLen(0x02f8, 39) +#elif PACKETVER >= 20080806 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20080730 +packetLen(0x02f8, 8) +#elif PACKETVER >= 20080722 +packetLen(0x02f8, 4) +#elif PACKETVER >= 20080715 +packetLen(0x02f8, 8) +#elif PACKETVER >= 20080708 +packetLen(0x02f8, 22) +#elif PACKETVER >= 20080701 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20080624 +packetLen(0x02f8, 12) +#elif PACKETVER >= 20080617 +packetLen(0x02f8, 3) +#elif PACKETVER >= 20080610 +packetLen(0x02f8, 2) +#elif PACKETVER >= 20080520 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20080513 +packetLen(0x02f8, 30) +#elif PACKETVER >= 20080422 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20080415 +packetLen(0x02f8, 3) +#elif PACKETVER >= 20080408 +packetLen(0x02f8, 10) +#elif PACKETVER >= 20080401 +packetLen(0x02f8, 29) +#elif PACKETVER >= 20080325 +packetLen(0x02f8, 7) +#endif + +// Packet: 0x02f9 +#if PACKETVER >= 20081217 +packetLen(0x02f9, 4) +#elif PACKETVER >= 20081203 +packetLen(0x02f9, 11) +#elif PACKETVER >= 20081126 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20081119 +packetLen(0x02f9, 8) +#elif PACKETVER >= 20081112 +packetLen(0x02f9, 7) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081015 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20081008 +packetLen(0x02f9, 8) +#elif PACKETVER >= 20080924 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080917 +packetLen(0x02f9, 6) +#elif PACKETVER >= 20080903 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080827 +packetLen(0x02f9, 17) +#elif PACKETVER >= 20080806 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080730 +packetLen(0x02f9, 6) +#elif PACKETVER >= 20080722 +packetLen(0x02f9, 3) +#elif PACKETVER >= 20080701 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080624 +packetLen(0x02f9, 43) +#elif PACKETVER >= 20080617 +packetLen(0x02f9, 2) +#elif PACKETVER >= 20080610 +packetLen(0x02f9, 71) +#elif PACKETVER >= 20080528 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080520 +packetLen(0x02f9, 4) +#elif PACKETVER >= 20080513 +packetLen(0x02f9, 28) +#elif PACKETVER >= 20080507 +packetLen(0x02f9, 26) +#elif PACKETVER >= 20080429 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080422 +packetLen(0x02f9, 5) +#elif PACKETVER >= 20080415 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20080408 +packetLen(0x02f9, 8) +#elif PACKETVER >= 20080325 +packetLen(0x02f9, 6) +#endif + +// Packet: 0x02fa +#if PACKETVER >= 20081217 +packetLen(0x02fa, 3) +#elif PACKETVER >= 20081119 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20081112 +packetLen(0x02fa, 14) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20081029 +packetLen(0x02fa, 23) +#elif PACKETVER >= 20081022 +packetLen(0x02fa, 6) +#elif PACKETVER >= 20081001 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20080924 +packetLen(0x02fa, 2) +#elif PACKETVER >= 20080917 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20080910 +packetLen(0x02fa, 54) +#elif PACKETVER >= 20080903 +packetLen(0x02fa, 6) +#elif PACKETVER >= 20080827 +packetLen(0x02fa, 4) +#elif PACKETVER >= 20080820 +packetLen(0x02fa, 97) +#elif PACKETVER >= 20080813 +packetLen(0x02fa, 7) +#elif PACKETVER >= 20080806 +packetLen(0x02fa, 27) +#elif PACKETVER >= 20080715 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20080708 +packetLen(0x02fa, 26) +#elif PACKETVER >= 20080701 +packetLen(0x02fa, 8) +#elif PACKETVER >= 20080617 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02fa, 6) +#elif PACKETVER >= 20080603 +packetLen(0x02fa, 65) +#elif PACKETVER >= 20080528 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20080520 +packetLen(0x02fa, 6) +#elif PACKETVER >= 20080513 +packetLen(0x02fa, 27) +#elif PACKETVER >= 20080507 +packetLen(0x02fa, 33) +#elif PACKETVER >= 20080429 +packetLen(0x02fa, 68) +#elif PACKETVER >= 20080422 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20080415 +packetLen(0x02fa, 54) +#elif PACKETVER >= 20080408 +packetLen(0x02fa, 2) +#elif PACKETVER >= 20080401 +packetLen(0x02fa, 16) +#elif PACKETVER >= 20080325 +packetLen(0x02fa, 3) +#endif + +// Packet: 0x02fb +#if PACKETVER >= 20081217 +packetLen(0x02fb, 10) +#elif PACKETVER >= 20081203 +packetLen(0x02fb, 33) +#elif PACKETVER >= 20081126 +packetLen(0x02fb, 20) +#elif PACKETVER >= 20081112 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20081105 +packetLen(0x02fb, 54) +#elif PACKETVER >= 20081022 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20081015 +packetLen(0x02fb, 8) +#elif PACKETVER >= 20080917 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080910 +packetLen(0x02fb, 4) +#elif PACKETVER >= 20080903 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080827 +packetLen(0x02fb, 2) +#elif PACKETVER >= 20080820 +packetLen(0x02fb, 6) +#elif PACKETVER >= 20080715 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080708 +packetLen(0x02fb, 3) +#elif PACKETVER >= 20080701 +packetLen(0x02fb, 4) +#elif PACKETVER >= 20080624 +packetLen(0x02fb, 11) +#elif PACKETVER >= 20080617 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02fb, 29) +#elif PACKETVER >= 20080603 +packetLen(0x02fb, 8) +#elif PACKETVER >= 20080528 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080513 +packetLen(0x02fb, 6) +#elif PACKETVER >= 20080507 +packetLen(0x02fb, 8) +#elif PACKETVER >= 20080422 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080415 +packetLen(0x02fb, 10) +#elif PACKETVER >= 20080408 +packetLen(0x02fb, 4) +#elif PACKETVER >= 20080401 +packetLen(0x02fb, 10) +#elif PACKETVER >= 20080325 +packetLen(0x02fb, 3) +#endif + +// Packet: 0x02fc +#if PACKETVER >= 20081217 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20081203 +packetLen(0x02fc, 6) +#elif PACKETVER >= 20081119 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20081112 +packetLen(0x02fc, 54) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20081029 +packetLen(0x02fc, 8) +#elif PACKETVER >= 20080917 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080910 +packetLen(0x02fc, 42) +#elif PACKETVER >= 20080903 +packetLen(0x02fc, 2) +#elif PACKETVER >= 20080827 +packetLen(0x02fc, 27) +#elif PACKETVER >= 20080806 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080722 +packetLen(0x02fc, 6) +#elif PACKETVER >= 20080715 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080708 +packetLen(0x02fc, 17) +#elif PACKETVER >= 20080701 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080624 +packetLen(0x02fc, 8) +#elif PACKETVER >= 20080617 +packetLen(0x02fc, 5) +#elif PACKETVER >= 20080520 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080513 +packetLen(0x02fc, 2) +#elif PACKETVER >= 20080507 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080429 +packetLen(0x02fc, 4) +#elif PACKETVER >= 20080408 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20080401 +packetLen(0x02fc, 3) +#elif PACKETVER >= 20080325 +packetLen(0x02fc, -1) +#endif + +// Packet: 0x02fd +#if PACKETVER >= 20081217 +packetLen(0x02fd, 11) +#elif PACKETVER >= 20081203 +packetLen(0x02fd, 10) +#elif PACKETVER >= 20081119 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20081112 +packetLen(0x02fd, 55) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x02fd, 10) +#elif PACKETVER >= 20081029 +packetLen(0x02fd, 3) +#elif PACKETVER >= 20081008 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20081001 +packetLen(0x02fd, 6) +#elif PACKETVER >= 20080924 +packetLen(0x02fd, 5) +#elif PACKETVER >= 20080820 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080813 +packetLen(0x02fd, 2) +#elif PACKETVER >= 20080806 +packetLen(0x02fd, 20) +#elif PACKETVER >= 20080715 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080708 +packetLen(0x02fd, 2) +#elif PACKETVER >= 20080701 +packetLen(0x02fd, 30) +#elif PACKETVER >= 20080624 +packetLen(0x02fd, 18) +#elif PACKETVER >= 20080617 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02fd, 54) +#elif PACKETVER >= 20080528 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080520 +packetLen(0x02fd, 8) +#elif PACKETVER >= 20080507 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080429 +packetLen(0x02fd, 2) +#elif PACKETVER >= 20080415 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20080408 +packetLen(0x02fd, 30) +#elif PACKETVER >= 20080401 +packetLen(0x02fd, 29) +#elif PACKETVER >= 20080325 +packetLen(0x02fd, 3) +#endif + +// Packet: 0x02fe +#if PACKETVER >= 20081217 +packetLen(0x02fe, 2) +#elif PACKETVER >= 20081203 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20081126 +packetLen(0x02fe, 4) +#elif PACKETVER >= 20081119 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20081112 +packetLen(0x02fe, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20081022 +packetLen(0x02fe, 34) +#elif PACKETVER >= 20081008 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20081001 +packetLen(0x02fe, 53) +#elif PACKETVER >= 20080910 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20080903 +packetLen(0x02fe, 2) +#elif PACKETVER >= 20080820 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20080813 +packetLen(0x02fe, 2) +#elif PACKETVER >= 20080617 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20080603 +packetLen(0x02fe, 2) +#elif PACKETVER >= 20080528 +packetLen(0x02fe, 6) +#elif PACKETVER >= 20080513 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20080507 +packetLen(0x02fe, 4) +#elif PACKETVER >= 20080429 +packetLen(0x02fe, 8) +#elif PACKETVER >= 20080422 +packetLen(0x02fe, 11) +#elif PACKETVER >= 20080415 +packetLen(0x02fe, 28) +#elif PACKETVER >= 20080408 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20080401 +packetLen(0x02fe, 2) +#elif PACKETVER >= 20080325 +packetLen(0x02fe, -1) +#endif + +// Packet: 0x02ff +#if PACKETVER >= 20081112 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20081105 +packetLen(0x02ff, 2) +#elif PACKETVER >= 20081015 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20081008 +packetLen(0x02ff, 16) +#elif PACKETVER >= 20081001 +packetLen(0x02ff, 9) +#elif PACKETVER >= 20080924 +packetLen(0x02ff, 8) +#elif PACKETVER >= 20080917 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080910 +packetLen(0x02ff, 7) +#elif PACKETVER >= 20080903 +packetLen(0x02ff, 6) +#elif PACKETVER >= 20080827 +packetLen(0x02ff, 18) +#elif PACKETVER >= 20080820 +packetLen(0x02ff, 10) +#elif PACKETVER >= 20080813 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080806 +packetLen(0x02ff, 54) +#elif PACKETVER >= 20080715 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080708 +packetLen(0x02ff, 4) +#elif PACKETVER >= 20080624 +packetLen(0x02ff, 2) +#elif PACKETVER >= 20080617 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02ff, 11) +#elif PACKETVER >= 20080603 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080528 +packetLen(0x02ff, 6) +#elif PACKETVER >= 20080520 +packetLen(0x02ff, 12) +#elif PACKETVER >= 20080507 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080429 +packetLen(0x02ff, 4) +#elif PACKETVER >= 20080422 +packetLen(0x02ff, 8) +#elif PACKETVER >= 20080415 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080408 +packetLen(0x02ff, 30) +#elif PACKETVER >= 20080325 +packetLen(0x02ff, 6) +#endif + +// Packet: 0x0300 +#if PACKETVER >= 20081217 +packetLen(0x0300, 10) +#elif PACKETVER >= 20081119 +packetLen(0x0300, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0300, 28) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0300, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0300, 67) +#elif PACKETVER >= 20081008 +packetLen(0x0300, 22) +#elif PACKETVER >= 20080910 +packetLen(0x0300, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0300, 5) +#elif PACKETVER >= 20080820 +packetLen(0x0300, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0300, 39) +#elif PACKETVER >= 20080806 +packetLen(0x0300, 8) +#elif PACKETVER >= 20080730 +packetLen(0x0300, 3) +#elif PACKETVER >= 20080715 +packetLen(0x0300, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0300, 2) +#elif PACKETVER >= 20080701 +packetLen(0x0300, 4) +#elif PACKETVER >= 20080624 +packetLen(0x0300, 13) +#elif PACKETVER >= 20080617 +packetLen(0x0300, 16) +#elif PACKETVER >= 20080610 +packetLen(0x0300, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0300, 26) +#elif PACKETVER >= 20080520 +packetLen(0x0300, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0300, 13) +#elif PACKETVER >= 20080507 +packetLen(0x0300, 14) +#elif PACKETVER >= 20080429 +packetLen(0x0300, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0300, 17) +#elif PACKETVER >= 20080415 +packetLen(0x0300, 20) +#elif PACKETVER >= 20080325 +packetLen(0x0300, -1) +#endif + +// Packet: 0x0301 +#if PACKETVER >= 20081203 +packetLen(0x0301, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0301, 30) +#elif PACKETVER >= 20081105 +packetLen(0x0301, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0301, 17) +#elif PACKETVER >= 20081022 +packetLen(0x0301, 33) +#elif PACKETVER >= 20081015 +packetLen(0x0301, 8) +#elif PACKETVER >= 20081008 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0301, 2) +#elif PACKETVER >= 20080917 +packetLen(0x0301, 4) +#elif PACKETVER >= 20080910 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0301, 6) +#elif PACKETVER >= 20080806 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0301, 6) +#elif PACKETVER >= 20080715 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0301, 26) +#elif PACKETVER >= 20080701 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0301, 6) +#elif PACKETVER >= 20080617 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0301, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0301, 15) +#elif PACKETVER >= 20080513 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0301, 10) +#elif PACKETVER >= 20080429 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0301, 14) +#elif PACKETVER >= 20080415 +packetLen(0x0301, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0301, 6) +#elif PACKETVER >= 20080401 +packetLen(0x0301, -1) +#endif + +// Packet: 0x0302 +#if PACKETVER >= 20081217 +packetLen(0x0302, 6) +#elif PACKETVER >= 20081203 +packetLen(0x0302, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0302, 8) +#elif PACKETVER >= 20081112 +packetLen(0x0302, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0302, 8) +#elif PACKETVER >= 20081022 +packetLen(0x0302, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0302, 6) +#elif PACKETVER >= 20080924 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0302, 11) +#elif PACKETVER >= 20080903 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0302, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0302, 3) +#elif PACKETVER >= 20080813 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0302, 10) +#elif PACKETVER >= 20080722 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0302, 7) +#elif PACKETVER >= 20080708 +packetLen(0x0302, 10) +#elif PACKETVER >= 20080701 +packetLen(0x0302, 5) +#elif PACKETVER >= 20080624 +packetLen(0x0302, 21) +#elif PACKETVER >= 20080617 +packetLen(0x0302, 3) +#elif PACKETVER >= 20080610 +packetLen(0x0302, 68) +#elif PACKETVER >= 20080528 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0302, 58) +#elif PACKETVER >= 20080513 +packetLen(0x0302, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0302, 2) +#elif PACKETVER >= 20080422 +packetLen(0x0302, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0302, 3) +#elif PACKETVER >= 20080401 +packetLen(0x0302, -1) +#endif + +// Packet: 0x0303 +#if PACKETVER >= 20081203 +packetLen(0x0303, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0303, 13) +#elif PACKETVER >= 20081119 +packetLen(0x0303, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0303, 11) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0303, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0303, 6) +#elif PACKETVER >= 20080903 +packetLen(0x0303, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0303, 54) +#elif PACKETVER >= 20080820 +packetLen(0x0303, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0303, 5) +#elif PACKETVER >= 20080806 +packetLen(0x0303, 10) +#elif PACKETVER >= 20080730 +packetLen(0x0303, 12) +#elif PACKETVER >= 20080715 +packetLen(0x0303, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0303, 6) +#elif PACKETVER >= 20080701 +packetLen(0x0303, 3) +#elif PACKETVER >= 20080624 +packetLen(0x0303, 58) +#elif PACKETVER >= 20080617 +packetLen(0x0303, 30) +#elif PACKETVER >= 20080610 +packetLen(0x0303, 22) +#elif PACKETVER >= 20080603 +packetLen(0x0303, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0303, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0303, 14) +#elif PACKETVER >= 20080513 +packetLen(0x0303, 4) +#elif PACKETVER >= 20080507 +packetLen(0x0303, 10) +#elif PACKETVER >= 20080422 +packetLen(0x0303, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0303, 282) +#elif PACKETVER >= 20080401 +packetLen(0x0303, -1) +#endif + +// Packet: 0x0304 +#if PACKETVER >= 20081217 +packetLen(0x0304, 26) +#elif PACKETVER >= 20081203 +packetLen(0x0304, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0304, 2) +#elif PACKETVER >= 20081119 +packetLen(0x0304, 6) +#elif PACKETVER >= 20081112 +packetLen(0x0304, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0304, 53) +#elif PACKETVER >= 20081029 +packetLen(0x0304, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0304, 57) +#elif PACKETVER >= 20081008 +packetLen(0x0304, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0304, 6) +#elif PACKETVER >= 20080924 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0304, 30) +#elif PACKETVER >= 20080910 +packetLen(0x0304, 8) +#elif PACKETVER >= 20080827 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0304, 30) +#elif PACKETVER >= 20080730 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0304, 14) +#elif PACKETVER >= 20080715 +packetLen(0x0304, 3) +#elif PACKETVER >= 20080624 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0304, 20) +#elif PACKETVER >= 20080610 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0304, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0304, 2) +#elif PACKETVER >= 20080520 +packetLen(0x0304, 14) +#elif PACKETVER >= 20080513 +packetLen(0x0304, 10) +#elif PACKETVER >= 20080507 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0304, 16) +#elif PACKETVER >= 20080415 +packetLen(0x0304, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0304, 6) +#elif PACKETVER >= 20080401 +packetLen(0x0304, -1) +#endif + +// Packet: 0x0305 +#if PACKETVER >= 20081217 +packetLen(0x0305, 282) +#elif PACKETVER >= 20081203 +packetLen(0x0305, 11) +#elif PACKETVER >= 20081126 +packetLen(0x0305, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0305, 4) +#elif PACKETVER >= 20081105 +packetLen(0x0305, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0305, 24) +#elif PACKETVER >= 20081008 +packetLen(0x0305, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0305, 26) +#elif PACKETVER >= 20080924 +packetLen(0x0305, 11) +#elif PACKETVER >= 20080910 +packetLen(0x0305, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0305, 11) +#elif PACKETVER >= 20080820 +packetLen(0x0305, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0305, 7) +#elif PACKETVER >= 20080730 +packetLen(0x0305, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0305, 2) +#elif PACKETVER >= 20080715 +packetLen(0x0305, 6) +#elif PACKETVER >= 20080708 +packetLen(0x0305, 22) +#elif PACKETVER >= 20080701 +packetLen(0x0305, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0305, 2) +#elif PACKETVER >= 20080617 +packetLen(0x0305, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0305, 15) +#elif PACKETVER >= 20080603 +packetLen(0x0305, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0305, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0305, 2) +#elif PACKETVER >= 20080513 +packetLen(0x0305, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0305, 8) +#elif PACKETVER >= 20080429 +packetLen(0x0305, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0305, 27) +#elif PACKETVER >= 20080401 +packetLen(0x0305, -1) +#endif + +// Packet: 0x0306 +#if PACKETVER >= 20081217 +packetLen(0x0306, 33) +#elif PACKETVER >= 20081126 +packetLen(0x0306, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0306, 10) +#elif PACKETVER >= 20081112 +packetLen(0x0306, 5) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0306, 10) +#elif PACKETVER >= 20081029 +packetLen(0x0306, 39) +#elif PACKETVER >= 20081022 +packetLen(0x0306, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0306, 11) +#elif PACKETVER >= 20080924 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0306, 18) +#elif PACKETVER >= 20080910 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0306, 34) +#elif PACKETVER >= 20080827 +packetLen(0x0306, 2) +#elif PACKETVER >= 20080820 +packetLen(0x0306, 30) +#elif PACKETVER >= 20080813 +packetLen(0x0306, 3) +#elif PACKETVER >= 20080806 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0306, 10) +#elif PACKETVER >= 20080722 +packetLen(0x0306, 14) +#elif PACKETVER >= 20080715 +packetLen(0x0306, 12) +#elif PACKETVER >= 20080701 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0306, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0306, 23) +#elif PACKETVER >= 20080520 +packetLen(0x0306, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0306, 10) +#elif PACKETVER >= 20080422 +packetLen(0x0306, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0306, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0306, 5) +#elif PACKETVER >= 20080401 +packetLen(0x0306, -1) +#endif + +// Packet: 0x0307 +#if PACKETVER >= 20081203 +packetLen(0x0307, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0307, 10) +#elif PACKETVER >= 20081119 +packetLen(0x0307, 21) +#elif PACKETVER >= 20081112 +packetLen(0x0307, 11) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0307, 6) +#elif PACKETVER >= 20081029 +packetLen(0x0307, 29) +#elif PACKETVER >= 20081022 +packetLen(0x0307, 30) +#elif PACKETVER >= 20080917 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0307, 67) +#elif PACKETVER >= 20080903 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0307, 186) +#elif PACKETVER >= 20080820 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0307, 10) +#elif PACKETVER >= 20080806 +packetLen(0x0307, 6) +#elif PACKETVER >= 20080715 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0307, 6) +#elif PACKETVER >= 20080624 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0307, 30) +#elif PACKETVER >= 20080610 +packetLen(0x0307, 58) +#elif PACKETVER >= 20080603 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0307, 15) +#elif PACKETVER >= 20080520 +packetLen(0x0307, 10) +#elif PACKETVER >= 20080513 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0307, 16) +#elif PACKETVER >= 20080422 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0307, 2) +#elif PACKETVER >= 20080401 +packetLen(0x0307, -1) +#endif + +// Packet: 0x0308 +#if PACKETVER >= 20081217 +packetLen(0x0308, 6) +#elif PACKETVER >= 20081203 +packetLen(0x0308, 13) +#elif PACKETVER >= 20081119 +packetLen(0x0308, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0308, 10) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0308, 33) +#elif PACKETVER >= 20081022 +packetLen(0x0308, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0308, 14) +#elif PACKETVER >= 20081008 +packetLen(0x0308, 44) +#elif PACKETVER >= 20080917 +packetLen(0x0308, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0308, 2) +#elif PACKETVER >= 20080820 +packetLen(0x0308, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0308, 54) +#elif PACKETVER >= 20080806 +packetLen(0x0308, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0308, 67) +#elif PACKETVER >= 20080722 +packetLen(0x0308, 54) +#elif PACKETVER >= 20080617 +packetLen(0x0308, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0308, 182) +#elif PACKETVER >= 20080603 +packetLen(0x0308, 15) +#elif PACKETVER >= 20080528 +packetLen(0x0308, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0308, 5) +#elif PACKETVER >= 20080513 +packetLen(0x0308, 7) +#elif PACKETVER >= 20080507 +packetLen(0x0308, 4) +#elif PACKETVER >= 20080429 +packetLen(0x0308, 15) +#elif PACKETVER >= 20080422 +packetLen(0x0308, 7) +#elif PACKETVER >= 20080415 +packetLen(0x0308, 6) +#elif PACKETVER >= 20080408 +packetLen(0x0308, 10) +#endif + +// Packet: 0x0309 +#if PACKETVER >= 20081217 +packetLen(0x0309, 4) +#elif PACKETVER >= 20081126 +packetLen(0x0309, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0309, 7) +#elif PACKETVER >= 20081112 +packetLen(0x0309, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0309, 22) +#elif PACKETVER >= 20081029 +packetLen(0x0309, 2) +#elif PACKETVER >= 20081022 +packetLen(0x0309, 6) +#elif PACKETVER >= 20081001 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0309, 8) +#elif PACKETVER >= 20080917 +packetLen(0x0309, 26) +#elif PACKETVER >= 20080910 +packetLen(0x0309, 182) +#elif PACKETVER >= 20080827 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0309, 26) +#elif PACKETVER >= 20080813 +packetLen(0x0309, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0309, 4) +#elif PACKETVER >= 20080715 +packetLen(0x0309, 3) +#elif PACKETVER >= 20080701 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0309, 14) +#elif PACKETVER >= 20080617 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0309, 10) +#elif PACKETVER >= 20080528 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0309, 2) +#elif PACKETVER >= 20080513 +packetLen(0x0309, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0309, 14) +#elif PACKETVER >= 20080429 +packetLen(0x0309, 15) +#elif PACKETVER >= 20080422 +packetLen(0x0309, 5) +#elif PACKETVER >= 20080415 +packetLen(0x0309, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0309, 6) +#endif + +// Packet: 0x030a +#if PACKETVER >= 20081217 +packetLen(0x030a, 32) +#elif PACKETVER >= 20081203 +packetLen(0x030a, 2) +#elif PACKETVER >= 20081126 +packetLen(0x030a, -1) +#elif PACKETVER >= 20081119 +packetLen(0x030a, 282) +#elif PACKETVER >= 20081112 +packetLen(0x030a, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x030a, -1) +#elif PACKETVER >= 20081029 +packetLen(0x030a, 3) +#elif PACKETVER >= 20081015 +packetLen(0x030a, -1) +#elif PACKETVER >= 20081008 +packetLen(0x030a, 11) +#elif PACKETVER >= 20081001 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080924 +packetLen(0x030a, 282) +#elif PACKETVER >= 20080910 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080903 +packetLen(0x030a, 3) +#elif PACKETVER >= 20080813 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080806 +packetLen(0x030a, 3) +#elif PACKETVER >= 20080730 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080722 +packetLen(0x030a, 4) +#elif PACKETVER >= 20080715 +packetLen(0x030a, 8) +#elif PACKETVER >= 20080708 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080701 +packetLen(0x030a, 6) +#elif PACKETVER >= 20080624 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080617 +packetLen(0x030a, 35) +#elif PACKETVER >= 20080610 +packetLen(0x030a, 10) +#elif PACKETVER >= 20080528 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080520 +packetLen(0x030a, 16) +#elif PACKETVER >= 20080513 +packetLen(0x030a, 6) +#elif PACKETVER >= 20080507 +packetLen(0x030a, -1) +#elif PACKETVER >= 20080429 +packetLen(0x030a, 9) +#elif PACKETVER >= 20080408 +packetLen(0x030a, -1) +#endif + +// Packet: 0x030b +#if PACKETVER >= 20081203 +packetLen(0x030b, -1) +#elif PACKETVER >= 20081126 +packetLen(0x030b, 2) +#elif PACKETVER >= 20081119 +packetLen(0x030b, -1) +#elif PACKETVER >= 20081112 +packetLen(0x030b, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x030b, -1) +#elif PACKETVER >= 20081029 +packetLen(0x030b, 7) +#elif PACKETVER >= 20080813 +packetLen(0x030b, -1) +#elif PACKETVER >= 20080806 +packetLen(0x030b, 32) +#elif PACKETVER >= 20080730 +packetLen(0x030b, 4) +#elif PACKETVER >= 20080722 +packetLen(0x030b, 9) +#elif PACKETVER >= 20080715 +packetLen(0x030b, -1) +#elif PACKETVER >= 20080708 +packetLen(0x030b, 5) +#elif PACKETVER >= 20080701 +packetLen(0x030b, 6) +#elif PACKETVER >= 20080624 +packetLen(0x030b, 7) +#elif PACKETVER >= 20080610 +packetLen(0x030b, -1) +#elif PACKETVER >= 20080603 +packetLen(0x030b, 10) +#elif PACKETVER >= 20080528 +packetLen(0x030b, 6) +#elif PACKETVER >= 20080520 +packetLen(0x030b, 65) +#elif PACKETVER >= 20080513 +packetLen(0x030b, 16) +#elif PACKETVER >= 20080507 +packetLen(0x030b, 15) +#elif PACKETVER >= 20080429 +packetLen(0x030b, -1) +#elif PACKETVER >= 20080422 +packetLen(0x030b, 17) +#elif PACKETVER >= 20080408 +packetLen(0x030b, 10) +#endif + +// Packet: 0x030c +#if PACKETVER >= 20081217 +packetLen(0x030c, -1) +#elif PACKETVER >= 20081203 +packetLen(0x030c, 66) +#elif PACKETVER >= 20081112 +packetLen(0x030c, -1) +#elif PACKETVER >= 20081105 +packetLen(0x030c, 3) +#elif PACKETVER >= 20081029 +packetLen(0x030c, -1) +#elif PACKETVER >= 20081022 +packetLen(0x030c, 21) +#elif PACKETVER >= 20081008 +packetLen(0x030c, -1) +#elif PACKETVER >= 20081001 +packetLen(0x030c, 29) +#elif PACKETVER >= 20080924 +packetLen(0x030c, 4) +#elif PACKETVER >= 20080917 +packetLen(0x030c, 27) +#elif PACKETVER >= 20080910 +packetLen(0x030c, 8) +#elif PACKETVER >= 20080903 +packetLen(0x030c, 3) +#elif PACKETVER >= 20080827 +packetLen(0x030c, 10) +#elif PACKETVER >= 20080701 +packetLen(0x030c, -1) +#elif PACKETVER >= 20080624 +packetLen(0x030c, 2) +#elif PACKETVER >= 20080617 +packetLen(0x030c, 6) +#elif PACKETVER >= 20080610 +packetLen(0x030c, 282) +#elif PACKETVER >= 20080603 +packetLen(0x030c, 36) +#elif PACKETVER >= 20080520 +packetLen(0x030c, 2) +#elif PACKETVER >= 20080513 +packetLen(0x030c, 12) +#elif PACKETVER >= 20080422 +packetLen(0x030c, -1) +#elif PACKETVER >= 20080415 +packetLen(0x030c, 10) +#elif PACKETVER >= 20080408 +packetLen(0x030c, 66) +#endif + +// Packet: 0x030d +#if PACKETVER >= 20081217 +packetLen(0x030d, 2) +#elif PACKETVER >= 20081203 +packetLen(0x030d, 6) +#elif PACKETVER >= 20081119 +packetLen(0x030d, -1) +#elif PACKETVER >= 20081112 +packetLen(0x030d, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x030d, 10) +#elif PACKETVER >= 20081029 +packetLen(0x030d, -1) +#elif PACKETVER >= 20081022 +packetLen(0x030d, 54) +#elif PACKETVER >= 20081015 +packetLen(0x030d, 4) +#elif PACKETVER >= 20081008 +packetLen(0x030d, 3) +#elif PACKETVER >= 20081001 +packetLen(0x030d, 97) +#elif PACKETVER >= 20080924 +packetLen(0x030d, 28) +#elif PACKETVER >= 20080903 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080827 +packetLen(0x030d, 2) +#elif PACKETVER >= 20080820 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080813 +packetLen(0x030d, 31) +#elif PACKETVER >= 20080806 +packetLen(0x030d, 14) +#elif PACKETVER >= 20080730 +packetLen(0x030d, 8) +#elif PACKETVER >= 20080722 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080715 +packetLen(0x030d, 32) +#elif PACKETVER >= 20080708 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080701 +packetLen(0x030d, 16) +#elif PACKETVER >= 20080624 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080617 +packetLen(0x030d, 282) +#elif PACKETVER >= 20080610 +packetLen(0x030d, 10) +#elif PACKETVER >= 20080603 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080528 +packetLen(0x030d, 71) +#elif PACKETVER >= 20080520 +packetLen(0x030d, 4) +#elif PACKETVER >= 20080513 +packetLen(0x030d, 6) +#elif PACKETVER >= 20080422 +packetLen(0x030d, -1) +#elif PACKETVER >= 20080415 +packetLen(0x030d, 19) +#elif PACKETVER >= 20080408 +packetLen(0x030d, 10) +#endif + +// Packet: 0x030e +#if PACKETVER >= 20081217 +packetLen(0x030e, 5) +#elif PACKETVER >= 20081022 +packetLen(0x030e, -1) +#elif PACKETVER >= 20081015 +packetLen(0x030e, 10) +#elif PACKETVER >= 20081008 +packetLen(0x030e, 4) +#elif PACKETVER >= 20081001 +packetLen(0x030e, 6) +#elif PACKETVER >= 20080924 +packetLen(0x030e, -1) +#elif PACKETVER >= 20080917 +packetLen(0x030e, 58) +#elif PACKETVER >= 20080910 +packetLen(0x030e, 6) +#elif PACKETVER >= 20080820 +packetLen(0x030e, -1) +#elif PACKETVER >= 20080813 +packetLen(0x030e, 21) +#elif PACKETVER >= 20080730 +packetLen(0x030e, -1) +#elif PACKETVER >= 20080722 +packetLen(0x030e, 6) +#elif PACKETVER >= 20080715 +packetLen(0x030e, 27) +#elif PACKETVER >= 20080701 +packetLen(0x030e, -1) +#elif PACKETVER >= 20080624 +packetLen(0x030e, 13) +#elif PACKETVER >= 20080617 +packetLen(0x030e, -1) +#elif PACKETVER >= 20080610 +packetLen(0x030e, 2) +#elif PACKETVER >= 20080603 +packetLen(0x030e, 21) +#elif PACKETVER >= 20080528 +packetLen(0x030e, 10) +#elif PACKETVER >= 20080520 +packetLen(0x030e, 2) +#elif PACKETVER >= 20080513 +packetLen(0x030e, 10) +#elif PACKETVER >= 20080507 +packetLen(0x030e, -1) +#elif PACKETVER >= 20080422 +packetLen(0x030e, 6) +#elif PACKETVER >= 20080415 +packetLen(0x030e, 2) +#elif PACKETVER >= 20080408 +packetLen(0x030e, 3) +#endif + +// Packet: 0x030f +#if PACKETVER >= 20081217 +packetLen(0x030f, 53) +#elif PACKETVER >= 20081203 +packetLen(0x030f, 28) +#elif PACKETVER >= 20081029 +packetLen(0x030f, -1) +#elif PACKETVER >= 20081022 +packetLen(0x030f, 11) +#elif PACKETVER >= 20080924 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080917 +packetLen(0x030f, 54) +#elif PACKETVER >= 20080910 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080903 +packetLen(0x030f, 10) +#elif PACKETVER >= 20080827 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080820 +packetLen(0x030f, 6) +#elif PACKETVER >= 20080806 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080730 +packetLen(0x030f, 4) +#elif PACKETVER >= 20080722 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080715 +packetLen(0x030f, 10) +#elif PACKETVER >= 20080701 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x030f, 17) +#elif PACKETVER >= 20080617 +packetLen(0x030f, 10) +#elif PACKETVER >= 20080603 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080528 +packetLen(0x030f, 2) +#elif PACKETVER >= 20080520 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080513 +packetLen(0x030f, 67) +#elif PACKETVER >= 20080507 +packetLen(0x030f, 2) +#elif PACKETVER >= 20080429 +packetLen(0x030f, 6) +#elif PACKETVER >= 20080422 +packetLen(0x030f, -1) +#elif PACKETVER >= 20080415 +packetLen(0x030f, 14) +#elif PACKETVER >= 20080408 +packetLen(0x030f, -1) +#endif + +// Packet: 0x0310 +#if PACKETVER >= 20081217 +packetLen(0x0310, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0310, 3) +#elif PACKETVER >= 20081126 +packetLen(0x0310, 6) +#elif PACKETVER >= 20081029 +packetLen(0x0310, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0310, 4) +#elif PACKETVER >= 20081015 +packetLen(0x0310, 3) +#elif PACKETVER >= 20081008 +packetLen(0x0310, 6) +#elif PACKETVER >= 20081001 +packetLen(0x0310, 17) +#elif PACKETVER >= 20080924 +packetLen(0x0310, 2) +#elif PACKETVER >= 20080917 +packetLen(0x0310, 7) +#elif PACKETVER >= 20080910 +packetLen(0x0310, 27) +#elif PACKETVER >= 20080820 +packetLen(0x0310, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0310, 8) +#elif PACKETVER >= 20080806 +packetLen(0x0310, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0310, 7) +#elif PACKETVER >= 20080722 +packetLen(0x0310, 2) +#elif PACKETVER >= 20080715 +packetLen(0x0310, 13) +#elif PACKETVER >= 20080708 +packetLen(0x0310, 10) +#elif PACKETVER >= 20080701 +packetLen(0x0310, 27) +#elif PACKETVER >= 20080624 +packetLen(0x0310, 10) +#elif PACKETVER >= 20080617 +packetLen(0x0310, 16) +#elif PACKETVER >= 20080610 +packetLen(0x0310, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0310, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0310, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0310, 182) +#elif PACKETVER >= 20080507 +packetLen(0x0310, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0310, 2) +#elif PACKETVER >= 20080422 +packetLen(0x0310, 57) +#elif PACKETVER >= 20080415 +packetLen(0x0310, 59) +#elif PACKETVER >= 20080408 +packetLen(0x0310, -1) +#endif + +// Packet: 0x0311 +#if PACKETVER >= 20081217 +packetLen(0x0311, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0311, 15) +#elif PACKETVER >= 20081126 +packetLen(0x0311, 10) +#elif PACKETVER >= 20081119 +packetLen(0x0311, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0311, 30) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0311, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0311, 10) +#elif PACKETVER >= 20081022 +packetLen(0x0311, 6) +#elif PACKETVER >= 20080924 +packetLen(0x0311, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0311, 2) +#elif PACKETVER >= 20080910 +packetLen(0x0311, 5) +#elif PACKETVER >= 20080903 +packetLen(0x0311, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0311, 71) +#elif PACKETVER >= 20080820 +packetLen(0x0311, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0311, 5) +#elif PACKETVER >= 20080806 +packetLen(0x0311, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0311, 8) +#elif PACKETVER >= 20080722 +packetLen(0x0311, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0311, 2) +#elif PACKETVER >= 20080708 +packetLen(0x0311, 30) +#elif PACKETVER >= 20080701 +packetLen(0x0311, 2) +#elif PACKETVER >= 20080624 +packetLen(0x0311, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0311, 6) +#elif PACKETVER >= 20080610 +packetLen(0x0311, 30) +#elif PACKETVER >= 20080603 +packetLen(0x0311, 7) +#elif PACKETVER >= 20080528 +packetLen(0x0311, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0311, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0311, 4) +#elif PACKETVER >= 20080415 +packetLen(0x0311, 7) +#elif PACKETVER >= 20080408 +packetLen(0x0311, 10) +#endif + +// Packet: 0x0312 +#if PACKETVER >= 20081022 +packetLen(0x0312, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0312, 10) +#elif PACKETVER >= 20080917 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0312, 8) +#elif PACKETVER >= 20080827 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0312, 33) +#elif PACKETVER >= 20080617 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0312, 34) +#elif PACKETVER >= 20080603 +packetLen(0x0312, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0312, 13) +#elif PACKETVER >= 20080507 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0312, 81) +#elif PACKETVER >= 20080422 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0312, 67) +#elif PACKETVER >= 20080408 +packetLen(0x0312, 6) +#endif + +// Packet: 0x0313 +#if PACKETVER >= 20081126 +packetLen(0x0313, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0313, 282) +#elif PACKETVER >= 20081112 +packetLen(0x0313, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0313, 4) +#elif PACKETVER >= 20081022 +packetLen(0x0313, 7) +#elif PACKETVER >= 20081015 +packetLen(0x0313, 3) +#elif PACKETVER >= 20081008 +packetLen(0x0313, 7) +#elif PACKETVER >= 20080917 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0313, 9) +#elif PACKETVER >= 20080903 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0313, 5) +#elif PACKETVER >= 20080813 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0313, 8) +#elif PACKETVER >= 20080722 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0313, 3) +#elif PACKETVER >= 20080708 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0313, 3) +#elif PACKETVER >= 20080624 +packetLen(0x0313, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0313, 3) +#elif PACKETVER >= 20080528 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0313, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0313, 26) +#elif PACKETVER >= 20080429 +packetLen(0x0313, 282) +#elif PACKETVER >= 20080422 +packetLen(0x0313, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0313, 26) +#elif PACKETVER >= 20080408 +packetLen(0x0313, 2) +#endif + +// Packet: 0x0314 +#if PACKETVER >= 20081217 +packetLen(0x0314, 6) +#elif PACKETVER >= 20081203 +packetLen(0x0314, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0314, 26) +#elif PACKETVER >= 20081119 +packetLen(0x0314, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0314, 4) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0314, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0314, 2) +#elif PACKETVER >= 20081008 +packetLen(0x0314, 32) +#elif PACKETVER >= 20081001 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0314, 7) +#elif PACKETVER >= 20080917 +packetLen(0x0314, 42) +#elif PACKETVER >= 20080903 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0314, 13) +#elif PACKETVER >= 20080820 +packetLen(0x0314, 14) +#elif PACKETVER >= 20080806 +packetLen(0x0314, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0314, 4) +#elif PACKETVER >= 20080624 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0314, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0314, 4) +#elif PACKETVER >= 20080520 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0314, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0314, 2) +#elif PACKETVER >= 20080429 +packetLen(0x0314, 4) +#elif PACKETVER >= 20080422 +packetLen(0x0314, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0314, 29) +#elif PACKETVER >= 20080408 +packetLen(0x0314, 12) +#endif + +// Packet: 0x0315 +#if PACKETVER >= 20081217 +packetLen(0x0315, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0315, 30) +#elif PACKETVER >= 20081119 +packetLen(0x0315, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0315, 10) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0315, 18) +#elif PACKETVER >= 20081029 +packetLen(0x0315, 12) +#elif PACKETVER >= 20081022 +packetLen(0x0315, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0315, 54) +#elif PACKETVER >= 20081008 +packetLen(0x0315, 7) +#elif PACKETVER >= 20081001 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0315, 6) +#elif PACKETVER >= 20080917 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0315, 6) +#elif PACKETVER >= 20080827 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0315, 11) +#elif PACKETVER >= 20080813 +packetLen(0x0315, 7) +#elif PACKETVER >= 20080806 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0315, 8) +#elif PACKETVER >= 20080722 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0315, 4) +#elif PACKETVER >= 20080708 +packetLen(0x0315, 6) +#elif PACKETVER >= 20080701 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0315, 14) +#elif PACKETVER >= 20080617 +packetLen(0x0315, 8) +#elif PACKETVER >= 20080610 +packetLen(0x0315, 10) +#elif PACKETVER >= 20080528 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0315, 67) +#elif PACKETVER >= 20080513 +packetLen(0x0315, 60) +#elif PACKETVER >= 20080429 +packetLen(0x0315, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0315, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0315, 14) +#elif PACKETVER >= 20080408 +packetLen(0x0315, 44) +#endif + +// Packet: 0x0316 +#if PACKETVER >= 20081217 +packetLen(0x0316, 4) +#elif PACKETVER >= 20081203 +packetLen(0x0316, 31) +#elif PACKETVER >= 20081126 +packetLen(0x0316, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0316, 6) +#elif PACKETVER >= 20081112 +packetLen(0x0316, 8) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0316, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0316, 4) +#elif PACKETVER >= 20081022 +packetLen(0x0316, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0316, 4) +#elif PACKETVER >= 20080910 +packetLen(0x0316, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0316, 9) +#elif PACKETVER >= 20080827 +packetLen(0x0316, 282) +#elif PACKETVER >= 20080820 +packetLen(0x0316, 3) +#elif PACKETVER >= 20080708 +packetLen(0x0316, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0316, 8) +#elif PACKETVER >= 20080624 +packetLen(0x0316, 97) +#elif PACKETVER >= 20080617 +packetLen(0x0316, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0316, 8) +#elif PACKETVER >= 20080603 +packetLen(0x0316, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0316, 30) +#elif PACKETVER >= 20080520 +packetLen(0x0316, 11) +#elif PACKETVER >= 20080513 +packetLen(0x0316, 23) +#elif PACKETVER >= 20080507 +packetLen(0x0316, 14) +#elif PACKETVER >= 20080429 +packetLen(0x0316, 9) +#elif PACKETVER >= 20080422 +packetLen(0x0316, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0316, 6) +#elif PACKETVER >= 20080408 +packetLen(0x0316, 16) +#endif + +// Packet: 0x0317 +#if PACKETVER >= 20081022 +packetLen(0x0317, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0317, 30) +#elif PACKETVER >= 20081008 +packetLen(0x0317, 11) +#elif PACKETVER >= 20081001 +packetLen(0x0317, 9) +#elif PACKETVER >= 20080924 +packetLen(0x0317, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0317, 5) +#elif PACKETVER >= 20080910 +packetLen(0x0317, 18) +#elif PACKETVER >= 20080903 +packetLen(0x0317, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0317, 8) +#elif PACKETVER >= 20080813 +packetLen(0x0317, 6) +#elif PACKETVER >= 20080806 +packetLen(0x0317, 3) +#elif PACKETVER >= 20080730 +packetLen(0x0317, 2) +#elif PACKETVER >= 20080722 +packetLen(0x0317, 79) +#elif PACKETVER >= 20080715 +packetLen(0x0317, 60) +#elif PACKETVER >= 20080701 +packetLen(0x0317, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0317, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0317, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0317, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0317, 21) +#elif PACKETVER >= 20080520 +packetLen(0x0317, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0317, 7) +#elif PACKETVER >= 20080507 +packetLen(0x0317, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0317, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0317, 14) +#elif PACKETVER >= 20080408 +packetLen(0x0317, -1) +#endif + +// Packet: 0x0318 +#if PACKETVER >= 20081217 +packetLen(0x0318, 59) +#elif PACKETVER >= 20081126 +packetLen(0x0318, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0318, 2) +#elif PACKETVER >= 20081112 +packetLen(0x0318, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0318, 282) +#elif PACKETVER >= 20081015 +packetLen(0x0318, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0318, 11) +#elif PACKETVER >= 20080924 +packetLen(0x0318, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0318, 22) +#elif PACKETVER >= 20080903 +packetLen(0x0318, 42) +#elif PACKETVER >= 20080827 +packetLen(0x0318, 8) +#elif PACKETVER >= 20080806 +packetLen(0x0318, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0318, 3) +#elif PACKETVER >= 20080722 +packetLen(0x0318, 6) +#elif PACKETVER >= 20080708 +packetLen(0x0318, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0318, 6) +#elif PACKETVER >= 20080610 +packetLen(0x0318, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0318, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0318, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0318, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0318, 2) +#elif PACKETVER >= 20080429 +packetLen(0x0318, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0318, 54) +#elif PACKETVER >= 20080415 +packetLen(0x0318, 4) +#elif PACKETVER >= 20080408 +packetLen(0x0318, 26) +#endif + +// Packet: 0x0319 +#if PACKETVER >= 20081112 +packetLen(0x0319, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0319, 12) +#elif PACKETVER >= 20081022 +packetLen(0x0319, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0319, 2) +#elif PACKETVER >= 20081008 +packetLen(0x0319, 29) +#elif PACKETVER >= 20081001 +packetLen(0x0319, 3) +#elif PACKETVER >= 20080910 +packetLen(0x0319, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0319, 30) +#elif PACKETVER >= 20080827 +packetLen(0x0319, 4) +#elif PACKETVER >= 20080820 +packetLen(0x0319, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0319, 2) +#elif PACKETVER >= 20080722 +packetLen(0x0319, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0319, 12) +#elif PACKETVER >= 20080610 +packetLen(0x0319, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0319, 19) +#elif PACKETVER >= 20080528 +packetLen(0x0319, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0319, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0319, 22) +#elif PACKETVER >= 20080422 +packetLen(0x0319, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0319, 2) +#elif PACKETVER >= 20080408 +packetLen(0x0319, 17) +#endif + +// Packet: 0x031a +#if PACKETVER >= 20081217 +packetLen(0x031a, 8) +#elif PACKETVER >= 20081203 +packetLen(0x031a, -1) +#elif PACKETVER >= 20081126 +packetLen(0x031a, 6) +#elif PACKETVER >= 20081119 +packetLen(0x031a, 5) +#elif PACKETVER >= 20081112 +packetLen(0x031a, -1) +#elif PACKETVER >= 20081105 +packetLen(0x031a, 26) +#elif PACKETVER >= 20081001 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080924 +packetLen(0x031a, 30) +#elif PACKETVER >= 20080903 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080827 +packetLen(0x031a, 26) +#elif PACKETVER >= 20080820 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080813 +packetLen(0x031a, 8) +#elif PACKETVER >= 20080730 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080722 +packetLen(0x031a, 12) +#elif PACKETVER >= 20080701 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080624 +packetLen(0x031a, 4) +#elif PACKETVER >= 20080617 +packetLen(0x031a, 5) +#elif PACKETVER >= 20080610 +packetLen(0x031a, 6) +#elif PACKETVER >= 20080603 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080528 +packetLen(0x031a, 6) +#elif PACKETVER >= 20080520 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080513 +packetLen(0x031a, 86) +#elif PACKETVER >= 20080507 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080429 +packetLen(0x031a, 4) +#elif PACKETVER >= 20080422 +packetLen(0x031a, -1) +#elif PACKETVER >= 20080415 +packetLen(0x031a, 7) +#elif PACKETVER >= 20080408 +packetLen(0x031a, 4) +#endif + +// Packet: 0x031b +#if PACKETVER >= 20081217 +packetLen(0x031b, 282) +#elif PACKETVER >= 20081203 +packetLen(0x031b, -1) +#elif PACKETVER >= 20081126 +packetLen(0x031b, 30) +#elif PACKETVER >= 20081119 +packetLen(0x031b, 18) +#elif PACKETVER >= 20081105 +packetLen(0x031b, -1) +#elif PACKETVER >= 20081029 +packetLen(0x031b, 4) +#elif PACKETVER >= 20081022 +packetLen(0x031b, 6) +#elif PACKETVER >= 20081015 +packetLen(0x031b, -1) +#elif PACKETVER >= 20081008 +packetLen(0x031b, 18) +#elif PACKETVER >= 20081001 +packetLen(0x031b, 2) +#elif PACKETVER >= 20080924 +packetLen(0x031b, -1) +#elif PACKETVER >= 20080917 +packetLen(0x031b, 20) +#elif PACKETVER >= 20080910 +packetLen(0x031b, 6) +#elif PACKETVER >= 20080903 +packetLen(0x031b, 2) +#elif PACKETVER >= 20080820 +packetLen(0x031b, -1) +#elif PACKETVER >= 20080813 +packetLen(0x031b, 2) +#elif PACKETVER >= 20080806 +packetLen(0x031b, 30) +#elif PACKETVER >= 20080730 +packetLen(0x031b, 11) +#elif PACKETVER >= 20080722 +packetLen(0x031b, 60) +#elif PACKETVER >= 20080715 +packetLen(0x031b, 114) +#elif PACKETVER >= 20080610 +packetLen(0x031b, -1) +#elif PACKETVER >= 20080603 +packetLen(0x031b, 2) +#elif PACKETVER >= 20080528 +packetLen(0x031b, 10) +#elif PACKETVER >= 20080520 +packetLen(0x031b, -1) +#elif PACKETVER >= 20080513 +packetLen(0x031b, 2) +#elif PACKETVER >= 20080507 +packetLen(0x031b, 42) +#elif PACKETVER >= 20080429 +packetLen(0x031b, 6) +#elif PACKETVER >= 20080422 +packetLen(0x031b, -1) +#elif PACKETVER >= 20080415 +packetLen(0x031b, 6) +#elif PACKETVER >= 20080408 +packetLen(0x031b, 10) +#endif + +// Packet: 0x031c +#if PACKETVER >= 20081126 +packetLen(0x031c, 6) +#elif PACKETVER >= 20081105 +packetLen(0x031c, -1) +#elif PACKETVER >= 20081029 +packetLen(0x031c, 2) +#elif PACKETVER >= 20081008 +packetLen(0x031c, -1) +#elif PACKETVER >= 20080924 +packetLen(0x031c, 2) +#elif PACKETVER >= 20080917 +packetLen(0x031c, -1) +#elif PACKETVER >= 20080910 +packetLen(0x031c, 30) +#elif PACKETVER >= 20080820 +packetLen(0x031c, -1) +#elif PACKETVER >= 20080813 +packetLen(0x031c, 7) +#elif PACKETVER >= 20080806 +packetLen(0x031c, 4) +#elif PACKETVER >= 20080730 +packetLen(0x031c, 14) +#elif PACKETVER >= 20080722 +packetLen(0x031c, 2) +#elif PACKETVER >= 20080715 +packetLen(0x031c, 39) +#elif PACKETVER >= 20080708 +packetLen(0x031c, 10) +#elif PACKETVER >= 20080701 +packetLen(0x031c, 6) +#elif PACKETVER >= 20080624 +packetLen(0x031c, 7) +#elif PACKETVER >= 20080617 +packetLen(0x031c, 54) +#elif PACKETVER >= 20080610 +packetLen(0x031c, 6) +#elif PACKETVER >= 20080603 +packetLen(0x031c, -1) +#elif PACKETVER >= 20080528 +packetLen(0x031c, 44) +#elif PACKETVER >= 20080513 +packetLen(0x031c, -1) +#elif PACKETVER >= 20080507 +packetLen(0x031c, 17) +#elif PACKETVER >= 20080429 +packetLen(0x031c, 4) +#elif PACKETVER >= 20080422 +packetLen(0x031c, 9) +#elif PACKETVER >= 20080415 +packetLen(0x031c, -1) +#elif PACKETVER >= 20080408 +packetLen(0x031c, 23) +#endif + +// Packet: 0x031d +#if PACKETVER >= 20081217 +packetLen(0x031d, -1) +#elif PACKETVER >= 20081203 +packetLen(0x031d, 60) +#elif PACKETVER >= 20081126 +packetLen(0x031d, -1) +#elif PACKETVER >= 20081119 +packetLen(0x031d, 22) +#elif PACKETVER >= 20081105 +packetLen(0x031d, -1) +#elif PACKETVER >= 20081029 +packetLen(0x031d, 2) +#elif PACKETVER >= 20081022 +packetLen(0x031d, -1) +#elif PACKETVER >= 20081015 +packetLen(0x031d, 30) +#elif PACKETVER >= 20081008 +packetLen(0x031d, -1) +#elif PACKETVER >= 20081001 +packetLen(0x031d, 3) +#elif PACKETVER >= 20080924 +packetLen(0x031d, -1) +#elif PACKETVER >= 20080917 +packetLen(0x031d, 3) +#elif PACKETVER >= 20080903 +packetLen(0x031d, -1) +#elif PACKETVER >= 20080827 +packetLen(0x031d, 3) +#elif PACKETVER >= 20080820 +packetLen(0x031d, -1) +#elif PACKETVER >= 20080813 +packetLen(0x031d, 8) +#elif PACKETVER >= 20080806 +packetLen(0x031d, 2) +#elif PACKETVER >= 20080730 +packetLen(0x031d, 4) +#elif PACKETVER >= 20080722 +packetLen(0x031d, 31) +#elif PACKETVER >= 20080715 +packetLen(0x031d, 282) +#elif PACKETVER >= 20080708 +packetLen(0x031d, 8) +#elif PACKETVER >= 20080701 +packetLen(0x031d, -1) +#elif PACKETVER >= 20080624 +packetLen(0x031d, 28) +#elif PACKETVER >= 20080507 +packetLen(0x031d, -1) +#elif PACKETVER >= 20080429 +packetLen(0x031d, 35) +#elif PACKETVER >= 20080422 +packetLen(0x031d, 12) +#elif PACKETVER >= 20080415 +packetLen(0x031d, -1) +#elif PACKETVER >= 20080408 +packetLen(0x031d, 2) +#endif + +// Packet: 0x031e +#if PACKETVER >= 20081217 +packetLen(0x031e, -1) +#elif PACKETVER >= 20081203 +packetLen(0x031e, 10) +#elif PACKETVER >= 20081126 +packetLen(0x031e, 26) +#elif PACKETVER >= 20081119 +packetLen(0x031e, 12) +#elif PACKETVER >= 20081029 +packetLen(0x031e, -1) +#elif PACKETVER >= 20081015 +packetLen(0x031e, 2) +#elif PACKETVER >= 20081008 +packetLen(0x031e, -1) +#elif PACKETVER >= 20081001 +packetLen(0x031e, 15) +#elif PACKETVER >= 20080924 +packetLen(0x031e, 2) +#elif PACKETVER >= 20080917 +packetLen(0x031e, 5) +#elif PACKETVER >= 20080813 +packetLen(0x031e, -1) +#elif PACKETVER >= 20080806 +packetLen(0x031e, 6) +#elif PACKETVER >= 20080730 +packetLen(0x031e, -1) +#elif PACKETVER >= 20080722 +packetLen(0x031e, 13) +#elif PACKETVER >= 20080715 +packetLen(0x031e, -1) +#elif PACKETVER >= 20080708 +packetLen(0x031e, 5) +#elif PACKETVER >= 20080701 +packetLen(0x031e, 4) +#elif PACKETVER >= 20080610 +packetLen(0x031e, -1) +#elif PACKETVER >= 20080603 +packetLen(0x031e, 26) +#elif PACKETVER >= 20080507 +packetLen(0x031e, -1) +#elif PACKETVER >= 20080429 +packetLen(0x031e, 7) +#elif PACKETVER >= 20080422 +packetLen(0x031e, 11) +#elif PACKETVER >= 20080415 +packetLen(0x031e, 30) +#elif PACKETVER >= 20080408 +packetLen(0x031e, -1) +#endif + +// Packet: 0x031f +#if PACKETVER >= 20081203 +packetLen(0x031f, -1) +#elif PACKETVER >= 20081126 +packetLen(0x031f, 11) +#elif PACKETVER >= 20081119 +packetLen(0x031f, 3) +#elif PACKETVER >= 20081112 +packetLen(0x031f, 11) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x031f, -1) +#elif PACKETVER >= 20081029 +packetLen(0x031f, 28) +#elif PACKETVER >= 20081001 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080924 +packetLen(0x031f, 8) +#elif PACKETVER >= 20080820 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080813 +packetLen(0x031f, 30) +#elif PACKETVER >= 20080806 +packetLen(0x031f, 10) +#elif PACKETVER >= 20080722 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080715 +packetLen(0x031f, 6) +#elif PACKETVER >= 20080708 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080701 +packetLen(0x031f, 4) +#elif PACKETVER >= 20080624 +packetLen(0x031f, 32) +#elif PACKETVER >= 20080617 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080610 +packetLen(0x031f, 54) +#elif PACKETVER >= 20080603 +packetLen(0x031f, 26) +#elif PACKETVER >= 20080528 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080520 +packetLen(0x031f, 2) +#elif PACKETVER >= 20080513 +packetLen(0x031f, 4) +#elif PACKETVER >= 20080507 +packetLen(0x031f, 8) +#elif PACKETVER >= 20080429 +packetLen(0x031f, 282) +#elif PACKETVER >= 20080415 +packetLen(0x031f, -1) +#elif PACKETVER >= 20080408 +packetLen(0x031f, 30) +#endif + +// Packet: 0x0320 +#if PACKETVER >= 20081217 +packetLen(0x0320, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0320, 21) +#elif PACKETVER >= 20081126 +packetLen(0x0320, 4) +#elif PACKETVER >= 20081112 +packetLen(0x0320, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0320, 35) +#elif PACKETVER >= 20081029 +packetLen(0x0320, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0320, 14) +#elif PACKETVER >= 20080813 +packetLen(0x0320, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0320, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0320, 7) +#elif PACKETVER >= 20080722 +packetLen(0x0320, 28) +#elif PACKETVER >= 20080708 +packetLen(0x0320, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0320, 3) +#elif PACKETVER >= 20080617 +packetLen(0x0320, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0320, 14) +#elif PACKETVER >= 20080603 +packetLen(0x0320, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0320, 22) +#elif PACKETVER >= 20080429 +packetLen(0x0320, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0320, 15) +#elif PACKETVER >= 20080415 +packetLen(0x0320, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0320, 15) +#endif + +// Packet: 0x0321 +#if PACKETVER >= 20081217 +packetLen(0x0321, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0321, 53) +#elif PACKETVER >= 20081126 +packetLen(0x0321, 37) +#elif PACKETVER >= 20081119 +packetLen(0x0321, 68) +#elif PACKETVER >= 20081029 +packetLen(0x0321, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0321, 3) +#elif PACKETVER >= 20081015 +packetLen(0x0321, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0321, 3) +#elif PACKETVER >= 20080924 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0321, 29) +#elif PACKETVER >= 20080910 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0321, 6) +#elif PACKETVER >= 20080827 +packetLen(0x0321, 29) +#elif PACKETVER >= 20080820 +packetLen(0x0321, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0321, 3) +#elif PACKETVER >= 20080715 +packetLen(0x0321, 6) +#elif PACKETVER >= 20080708 +packetLen(0x0321, 7) +#elif PACKETVER >= 20080701 +packetLen(0x0321, 10) +#elif PACKETVER >= 20080610 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0321, 23) +#elif PACKETVER >= 20080507 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0321, 30) +#elif PACKETVER >= 20080422 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0321, 24) +#elif PACKETVER >= 20080408 +packetLen(0x0321, -1) +#endif + +// Packet: 0x0322 +#if PACKETVER >= 20081217 +packetLen(0x0322, 27) +#elif PACKETVER >= 20081126 +packetLen(0x0322, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0322, 3) +#elif PACKETVER >= 20081105 +packetLen(0x0322, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0322, 2) +#elif PACKETVER >= 20081022 +packetLen(0x0322, 31) +#elif PACKETVER >= 20081015 +packetLen(0x0322, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0322, 7) +#elif PACKETVER >= 20081001 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0322, 6) +#elif PACKETVER >= 20080917 +packetLen(0x0322, 10) +#elif PACKETVER >= 20080827 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0322, 5) +#elif PACKETVER >= 20080806 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0322, 5) +#elif PACKETVER >= 20080722 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0322, 8) +#elif PACKETVER >= 20080708 +packetLen(0x0322, 6) +#elif PACKETVER >= 20080701 +packetLen(0x0322, 26) +#elif PACKETVER >= 20080624 +packetLen(0x0322, 5) +#elif PACKETVER >= 20080617 +packetLen(0x0322, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0322, 282) +#elif PACKETVER >= 20080528 +packetLen(0x0322, 2) +#elif PACKETVER >= 20080520 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0322, 14) +#elif PACKETVER >= 20080507 +packetLen(0x0322, 5) +#elif PACKETVER >= 20080429 +packetLen(0x0322, 12) +#elif PACKETVER >= 20080422 +packetLen(0x0322, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0322, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0322, 68) +#endif + +// Packet: 0x0323 +#if PACKETVER >= 20081217 +packetLen(0x0323, 7) +#elif PACKETVER >= 20081203 +packetLen(0x0323, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0323, 30) +#elif PACKETVER >= 20081119 +packetLen(0x0323, 3) +#elif PACKETVER >= 20081112 +packetLen(0x0323, 54) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0323, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0323, 3) +#elif PACKETVER >= 20080827 +packetLen(0x0323, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0323, 30) +#elif PACKETVER >= 20080813 +packetLen(0x0323, 10) +#elif PACKETVER >= 20080806 +packetLen(0x0323, 182) +#elif PACKETVER >= 20080730 +packetLen(0x0323, 68) +#elif PACKETVER >= 20080701 +packetLen(0x0323, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0323, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0323, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0323, 67) +#elif PACKETVER >= 20080528 +packetLen(0x0323, 14) +#elif PACKETVER >= 20080520 +packetLen(0x0323, 4) +#elif PACKETVER >= 20080513 +packetLen(0x0323, 14) +#elif PACKETVER >= 20080507 +packetLen(0x0323, 186) +#elif PACKETVER >= 20080429 +packetLen(0x0323, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0323, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0323, 34) +#elif PACKETVER >= 20080408 +packetLen(0x0323, 7) +#endif + +// Packet: 0x0324 +#if PACKETVER >= 20081217 +packetLen(0x0324, 10) +#elif PACKETVER >= 20081203 +packetLen(0x0324, 21) +#elif PACKETVER >= 20081126 +packetLen(0x0324, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0324, 6) +#elif PACKETVER >= 20081112 +packetLen(0x0324, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0324, 4) +#elif PACKETVER >= 20081029 +packetLen(0x0324, 8) +#elif PACKETVER >= 20080910 +packetLen(0x0324, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0324, 8) +#elif PACKETVER >= 20080827 +packetLen(0x0324, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0324, 26) +#elif PACKETVER >= 20080813 +packetLen(0x0324, 4) +#elif PACKETVER >= 20080806 +packetLen(0x0324, 10) +#elif PACKETVER >= 20080730 +packetLen(0x0324, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0324, 31) +#elif PACKETVER >= 20080715 +packetLen(0x0324, 22) +#elif PACKETVER >= 20080701 +packetLen(0x0324, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0324, 3) +#elif PACKETVER >= 20080617 +packetLen(0x0324, 66) +#elif PACKETVER >= 20080610 +packetLen(0x0324, 2) +#elif PACKETVER >= 20080603 +packetLen(0x0324, 32) +#elif PACKETVER >= 20080528 +packetLen(0x0324, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0324, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0324, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0324, 13) +#elif PACKETVER >= 20080429 +packetLen(0x0324, 26) +#elif PACKETVER >= 20080422 +packetLen(0x0324, 3) +#elif PACKETVER >= 20080415 +packetLen(0x0324, 26) +#elif PACKETVER >= 20080408 +packetLen(0x0324, -1) +#endif + +// Packet: 0x0325 +#if PACKETVER >= 20081203 +packetLen(0x0325, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0325, 6) +#elif PACKETVER >= 20081105 +packetLen(0x0325, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0325, 31) +#elif PACKETVER >= 20081022 +packetLen(0x0325, 5) +#elif PACKETVER >= 20081015 +packetLen(0x0325, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0325, 6) +#elif PACKETVER >= 20081001 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0325, 3) +#elif PACKETVER >= 20080827 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0325, 4) +#elif PACKETVER >= 20080806 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0325, 8) +#elif PACKETVER >= 20080715 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0325, 13) +#elif PACKETVER >= 20080701 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0325, 7) +#elif PACKETVER >= 20080528 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0325, 39) +#elif PACKETVER >= 20080513 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0325, 2) +#elif PACKETVER >= 20080415 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0325, 6) +#endif + +// Packet: 0x0326 +#if PACKETVER >= 20081217 +packetLen(0x0326, 14) +#elif PACKETVER >= 20081203 +packetLen(0x0326, 2) +#elif PACKETVER >= 20081126 +packetLen(0x0326, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0326, 39) +#elif PACKETVER >= 20081008 +packetLen(0x0326, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0326, 6) +#elif PACKETVER >= 20080910 +packetLen(0x0326, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0326, 6) +#elif PACKETVER >= 20080827 +packetLen(0x0326, 2) +#elif PACKETVER >= 20080820 +packetLen(0x0326, 28) +#elif PACKETVER >= 20080813 +packetLen(0x0326, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0326, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0326, 60) +#elif PACKETVER >= 20080715 +packetLen(0x0326, 36) +#elif PACKETVER >= 20080617 +packetLen(0x0326, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0326, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0326, 42) +#elif PACKETVER >= 20080528 +packetLen(0x0326, 282) +#elif PACKETVER >= 20080520 +packetLen(0x0326, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0326, 21) +#elif PACKETVER >= 20080507 +packetLen(0x0326, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0326, 7) +#elif PACKETVER >= 20080422 +packetLen(0x0326, 39) +#elif PACKETVER >= 20080408 +packetLen(0x0326, -1) +#endif + +// Packet: 0x0327 +#if PACKETVER >= 20080917 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0327, 10) +#elif PACKETVER >= 20080903 +packetLen(0x0327, 4) +#elif PACKETVER >= 20080827 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0327, 8) +#elif PACKETVER >= 20080813 +packetLen(0x0327, 7) +#elif PACKETVER >= 20080806 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0327, 3) +#elif PACKETVER >= 20080722 +packetLen(0x0327, 60) +#elif PACKETVER >= 20080715 +packetLen(0x0327, 54) +#elif PACKETVER >= 20080701 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0327, 4) +#elif PACKETVER >= 20080617 +packetLen(0x0327, 3) +#elif PACKETVER >= 20080610 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0327, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0327, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0327, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0327, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0327, 6) +#elif PACKETVER >= 20080408 +packetLen(0x0327, 5) +#endif + +// Packet: 0x0328 +#if PACKETVER >= 20081217 +packetLen(0x0328, 26) +#elif PACKETVER >= 20081203 +packetLen(0x0328, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0328, 19) +#elif PACKETVER >= 20081119 +packetLen(0x0328, 8) +#elif PACKETVER >= 20081029 +packetLen(0x0328, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0328, 2) +#elif PACKETVER >= 20081015 +packetLen(0x0328, 58) +#elif PACKETVER >= 20081008 +packetLen(0x0328, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0328, 14) +#elif PACKETVER >= 20080924 +packetLen(0x0328, 26) +#elif PACKETVER >= 20080917 +packetLen(0x0328, 11) +#elif PACKETVER >= 20080910 +packetLen(0x0328, 65) +#elif PACKETVER >= 20080903 +packetLen(0x0328, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0328, 55) +#elif PACKETVER >= 20080708 +packetLen(0x0328, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0328, 30) +#elif PACKETVER >= 20080624 +packetLen(0x0328, 282) +#elif PACKETVER >= 20080617 +packetLen(0x0328, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0328, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0328, 54) +#elif PACKETVER >= 20080513 +packetLen(0x0328, 19) +#elif PACKETVER >= 20080507 +packetLen(0x0328, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0328, 90) +#elif PACKETVER >= 20080422 +packetLen(0x0328, 22) +#elif PACKETVER >= 20080415 +packetLen(0x0328, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0328, 14) +#endif + +// Packet: 0x0329 +#if PACKETVER >= 20081203 +packetLen(0x0329, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0329, 2) +#elif PACKETVER >= 20081119 +packetLen(0x0329, 6) +#elif PACKETVER >= 20081105 +packetLen(0x0329, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0329, 22) +#elif PACKETVER >= 20081008 +packetLen(0x0329, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0329, 8) +#elif PACKETVER >= 20080910 +packetLen(0x0329, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0329, 2) +#elif PACKETVER >= 20080806 +packetLen(0x0329, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0329, 54) +#elif PACKETVER >= 20080708 +packetLen(0x0329, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0329, 186) +#elif PACKETVER >= 20080624 +packetLen(0x0329, 66) +#elif PACKETVER >= 20080610 +packetLen(0x0329, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0329, 23) +#elif PACKETVER >= 20080528 +packetLen(0x0329, 4) +#elif PACKETVER >= 20080520 +packetLen(0x0329, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0329, 8) +#elif PACKETVER >= 20080429 +packetLen(0x0329, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0329, 3) +#elif PACKETVER >= 20080415 +packetLen(0x0329, 30) +#elif PACKETVER >= 20080408 +packetLen(0x0329, -1) +#endif + +// Packet: 0x032a +#if PACKETVER >= 20081217 +packetLen(0x032a, 7) +#elif PACKETVER >= 20081203 +packetLen(0x032a, -1) +#elif PACKETVER >= 20081126 +packetLen(0x032a, 22) +#elif PACKETVER >= 20081112 +packetLen(0x032a, -1) +#elif PACKETVER >= 20081105 +packetLen(0x032a, 21) +#elif PACKETVER >= 20081022 +packetLen(0x032a, -1) +#elif PACKETVER >= 20081015 +packetLen(0x032a, 8) +#elif PACKETVER >= 20081008 +packetLen(0x032a, 29) +#elif PACKETVER >= 20080910 +packetLen(0x032a, -1) +#elif PACKETVER >= 20080903 +packetLen(0x032a, 114) +#elif PACKETVER >= 20080827 +packetLen(0x032a, 3) +#elif PACKETVER >= 20080820 +packetLen(0x032a, 14) +#elif PACKETVER >= 20080813 +packetLen(0x032a, -1) +#elif PACKETVER >= 20080806 +packetLen(0x032a, 5) +#elif PACKETVER >= 20080730 +packetLen(0x032a, 6) +#elif PACKETVER >= 20080708 +packetLen(0x032a, -1) +#elif PACKETVER >= 20080701 +packetLen(0x032a, 17) +#elif PACKETVER >= 20080624 +packetLen(0x032a, 10) +#elif PACKETVER >= 20080617 +packetLen(0x032a, 9) +#elif PACKETVER >= 20080610 +packetLen(0x032a, 14) +#elif PACKETVER >= 20080603 +packetLen(0x032a, -1) +#elif PACKETVER >= 20080528 +packetLen(0x032a, 5) +#elif PACKETVER >= 20080520 +packetLen(0x032a, 32) +#elif PACKETVER >= 20080507 +packetLen(0x032a, -1) +#elif PACKETVER >= 20080429 +packetLen(0x032a, 6) +#elif PACKETVER >= 20080422 +packetLen(0x032a, 11) +#elif PACKETVER >= 20080415 +packetLen(0x032a, -1) +#elif PACKETVER >= 20080408 +packetLen(0x032a, 8) +#endif + +// Packet: 0x032b +#if PACKETVER >= 20081203 +packetLen(0x032b, 4) +#elif PACKETVER >= 20081126 +packetLen(0x032b, -1) +#elif PACKETVER >= 20081119 +packetLen(0x032b, 3) +#elif PACKETVER >= 20081112 +packetLen(0x032b, 4) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x032b, 2) +#elif PACKETVER >= 20081029 +packetLen(0x032b, -1) +#elif PACKETVER >= 20081022 +packetLen(0x032b, 7) +#elif PACKETVER >= 20081015 +packetLen(0x032b, -1) +#elif PACKETVER >= 20081008 +packetLen(0x032b, 10) +#elif PACKETVER >= 20081001 +packetLen(0x032b, 30) +#elif PACKETVER >= 20080924 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080917 +packetLen(0x032b, 14) +#elif PACKETVER >= 20080903 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080827 +packetLen(0x032b, 7) +#elif PACKETVER >= 20080813 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080806 +packetLen(0x032b, 2) +#elif PACKETVER >= 20080730 +packetLen(0x032b, 3) +#elif PACKETVER >= 20080722 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080715 +packetLen(0x032b, 6) +#elif PACKETVER >= 20080708 +packetLen(0x032b, 2) +#elif PACKETVER >= 20080701 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080624 +packetLen(0x032b, 3) +#elif PACKETVER >= 20080610 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080603 +packetLen(0x032b, 6) +#elif PACKETVER >= 20080528 +packetLen(0x032b, 3) +#elif PACKETVER >= 20080520 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080513 +packetLen(0x032b, 7) +#elif PACKETVER >= 20080507 +packetLen(0x032b, 44) +#elif PACKETVER >= 20080429 +packetLen(0x032b, 14) +#elif PACKETVER >= 20080422 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080415 +packetLen(0x032b, 4) +#elif PACKETVER >= 20080408 +packetLen(0x032b, -1) +#endif + +// Packet: 0x032c +#if PACKETVER >= 20081126 +packetLen(0x032c, -1) +#elif PACKETVER >= 20081119 +packetLen(0x032c, 9) +#elif PACKETVER >= 20081112 +packetLen(0x032c, -1) +#elif PACKETVER >= 20081105 +packetLen(0x032c, 5) +#elif PACKETVER >= 20081029 +packetLen(0x032c, 22) +#elif PACKETVER >= 20081022 +packetLen(0x032c, 2) +#elif PACKETVER >= 20081015 +packetLen(0x032c, -1) +#elif PACKETVER >= 20081008 +packetLen(0x032c, 4) +#elif PACKETVER >= 20081001 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080924 +packetLen(0x032c, 67) +#elif PACKETVER >= 20080917 +packetLen(0x032c, 30) +#elif PACKETVER >= 20080910 +packetLen(0x032c, 15) +#elif PACKETVER >= 20080903 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080827 +packetLen(0x032c, 2) +#elif PACKETVER >= 20080820 +packetLen(0x032c, 22) +#elif PACKETVER >= 20080813 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080806 +packetLen(0x032c, 22) +#elif PACKETVER >= 20080730 +packetLen(0x032c, 2) +#elif PACKETVER >= 20080722 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080715 +packetLen(0x032c, 6) +#elif PACKETVER >= 20080708 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080701 +packetLen(0x032c, 27) +#elif PACKETVER >= 20080624 +packetLen(0x032c, 18) +#elif PACKETVER >= 20080617 +packetLen(0x032c, 2) +#elif PACKETVER >= 20080603 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080528 +packetLen(0x032c, 12) +#elif PACKETVER >= 20080520 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080513 +packetLen(0x032c, 3) +#elif PACKETVER >= 20080429 +packetLen(0x032c, -1) +#elif PACKETVER >= 20080422 +packetLen(0x032c, 8) +#elif PACKETVER >= 20080415 +packetLen(0x032c, 6) +#elif PACKETVER >= 20080408 +packetLen(0x032c, -1) +#endif + +// Packet: 0x032d +#if PACKETVER >= 20081217 +packetLen(0x032d, 6) +#elif PACKETVER >= 20081203 +packetLen(0x032d, -1) +#elif PACKETVER >= 20081126 +packetLen(0x032d, 4) +#elif PACKETVER >= 20081119 +packetLen(0x032d, -1) +#elif PACKETVER >= 20081112 +packetLen(0x032d, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x032d, 17) +#elif PACKETVER >= 20081029 +packetLen(0x032d, 282) +#elif PACKETVER >= 20081022 +packetLen(0x032d, 3) +#elif PACKETVER >= 20081001 +packetLen(0x032d, -1) +#elif PACKETVER >= 20080924 +packetLen(0x032d, 11) +#elif PACKETVER >= 20080917 +packetLen(0x032d, 6) +#elif PACKETVER >= 20080903 +packetLen(0x032d, -1) +#elif PACKETVER >= 20080827 +packetLen(0x032d, 58) +#elif PACKETVER >= 20080820 +packetLen(0x032d, -1) +#elif PACKETVER >= 20080813 +packetLen(0x032d, 12) +#elif PACKETVER >= 20080806 +packetLen(0x032d, -1) +#elif PACKETVER >= 20080722 +packetLen(0x032d, 2) +#elif PACKETVER >= 20080708 +packetLen(0x032d, -1) +#elif PACKETVER >= 20080701 +packetLen(0x032d, 10) +#elif PACKETVER >= 20080624 +packetLen(0x032d, 32) +#elif PACKETVER >= 20080617 +packetLen(0x032d, -1) +#elif PACKETVER >= 20080610 +packetLen(0x032d, 4) +#elif PACKETVER >= 20080603 +packetLen(0x032d, 3) +#elif PACKETVER >= 20080528 +packetLen(0x032d, 10) +#elif PACKETVER >= 20080520 +packetLen(0x032d, 6) +#elif PACKETVER >= 20080513 +packetLen(0x032d, 30) +#elif PACKETVER >= 20080429 +packetLen(0x032d, 3) +#elif PACKETVER >= 20080422 +packetLen(0x032d, 90) +#elif PACKETVER >= 20080415 +packetLen(0x032d, 8) +#elif PACKETVER >= 20080408 +packetLen(0x032d, -1) +#endif + +// Packet: 0x032e +#if PACKETVER >= 20081203 +packetLen(0x032e, -1) +#elif PACKETVER >= 20081126 +packetLen(0x032e, 44) +#elif PACKETVER >= 20081015 +packetLen(0x032e, -1) +#elif PACKETVER >= 20081008 +packetLen(0x032e, 22) +#elif PACKETVER >= 20081001 +packetLen(0x032e, 30) +#elif PACKETVER >= 20080924 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080917 +packetLen(0x032e, 6) +#elif PACKETVER >= 20080910 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080903 +packetLen(0x032e, 30) +#elif PACKETVER >= 20080820 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080813 +packetLen(0x032e, 11) +#elif PACKETVER >= 20080730 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080722 +packetLen(0x032e, 67) +#elif PACKETVER >= 20080708 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080701 +packetLen(0x032e, 26) +#elif PACKETVER >= 20080624 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080617 +packetLen(0x032e, 10) +#elif PACKETVER >= 20080610 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080528 +packetLen(0x032e, 3) +#elif PACKETVER >= 20080520 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080513 +packetLen(0x032e, 20) +#elif PACKETVER >= 20080507 +packetLen(0x032e, 24) +#elif PACKETVER >= 20080429 +packetLen(0x032e, 42) +#elif PACKETVER >= 20080422 +packetLen(0x032e, -1) +#elif PACKETVER >= 20080415 +packetLen(0x032e, 10) +#elif PACKETVER >= 20080408 +packetLen(0x032e, 27) +#endif + +// Packet: 0x032f +#if PACKETVER >= 20081126 +packetLen(0x032f, -1) +#elif PACKETVER >= 20081119 +packetLen(0x032f, 2) +#elif PACKETVER >= 20081112 +packetLen(0x032f, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x032f, 6) +#elif PACKETVER >= 20081029 +packetLen(0x032f, -1) +#elif PACKETVER >= 20081022 +packetLen(0x032f, 8) +#elif PACKETVER >= 20081015 +packetLen(0x032f, -1) +#elif PACKETVER >= 20081008 +packetLen(0x032f, 4) +#elif PACKETVER >= 20080924 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080917 +packetLen(0x032f, 2) +#elif PACKETVER >= 20080813 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080806 +packetLen(0x032f, 3) +#elif PACKETVER >= 20080701 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x032f, 53) +#elif PACKETVER >= 20080603 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080528 +packetLen(0x032f, 58) +#elif PACKETVER >= 20080520 +packetLen(0x032f, 10) +#elif PACKETVER >= 20080513 +packetLen(0x032f, 26) +#elif PACKETVER >= 20080507 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080429 +packetLen(0x032f, 8) +#elif PACKETVER >= 20080422 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080415 +packetLen(0x032f, 27) +#elif PACKETVER >= 20080408 +packetLen(0x032f, -1) +#endif + +// Packet: 0x0330 +#if PACKETVER >= 20081217 +packetLen(0x0330, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0330, 6) +#elif PACKETVER >= 20081119 +packetLen(0x0330, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0330, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081001 +packetLen(0x0330, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0330, 2) +#elif PACKETVER >= 20080910 +packetLen(0x0330, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0330, 2) +#elif PACKETVER >= 20080827 +packetLen(0x0330, 22) +#elif PACKETVER >= 20080820 +packetLen(0x0330, 6) +#elif PACKETVER >= 20080813 +packetLen(0x0330, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0330, 7) +#elif PACKETVER >= 20080730 +packetLen(0x0330, 54) +#elif PACKETVER >= 20080722 +packetLen(0x0330, 6) +#elif PACKETVER >= 20080715 +packetLen(0x0330, 15) +#elif PACKETVER >= 20080708 +packetLen(0x0330, 11) +#elif PACKETVER >= 20080701 +packetLen(0x0330, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0330, 10) +#elif PACKETVER >= 20080617 +packetLen(0x0330, 8) +#elif PACKETVER >= 20080610 +packetLen(0x0330, 67) +#elif PACKETVER >= 20080603 +packetLen(0x0330, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0330, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0330, 4) +#elif PACKETVER >= 20080429 +packetLen(0x0330, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0330, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0330, 16) +#elif PACKETVER >= 20080408 +packetLen(0x0330, 54) +#endif + +// Packet: 0x0331 +#if PACKETVER >= 20081217 +packetLen(0x0331, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0331, 2) +#elif PACKETVER >= 20081126 +packetLen(0x0331, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0331, 2) +#elif PACKETVER >= 20081112 +packetLen(0x0331, 60) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0331, 15) +#elif PACKETVER >= 20081029 +packetLen(0x0331, 4) +#elif PACKETVER >= 20081022 +packetLen(0x0331, 186) +#elif PACKETVER >= 20081015 +packetLen(0x0331, 4) +#elif PACKETVER >= 20081008 +packetLen(0x0331, 10) +#elif PACKETVER >= 20080917 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0331, 10) +#elif PACKETVER >= 20080903 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0331, 4) +#elif PACKETVER >= 20080820 +packetLen(0x0331, 16) +#elif PACKETVER >= 20080722 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0331, 6) +#elif PACKETVER >= 20080708 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0331, 18) +#elif PACKETVER >= 20080617 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0331, 8) +#elif PACKETVER >= 20080603 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0331, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0331, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0331, 12) +#elif PACKETVER >= 20080507 +packetLen(0x0331, 4) +#elif PACKETVER >= 20080429 +packetLen(0x0331, 54) +#elif PACKETVER >= 20080422 +packetLen(0x0331, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0331, 12) +#elif PACKETVER >= 20080408 +packetLen(0x0331, -1) +#endif + +// Packet: 0x0332 +#if PACKETVER >= 20081217 +packetLen(0x0332, 3) +#elif PACKETVER >= 20081203 +packetLen(0x0332, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0332, 4) +#elif PACKETVER >= 20081119 +packetLen(0x0332, 26) +#elif PACKETVER >= 20081112 +packetLen(0x0332, 58) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0332, 6) +#elif PACKETVER >= 20081022 +packetLen(0x0332, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0332, 10) +#elif PACKETVER >= 20081008 +packetLen(0x0332, 60) +#elif PACKETVER >= 20081001 +packetLen(0x0332, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0332, 30) +#elif PACKETVER >= 20080827 +packetLen(0x0332, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0332, 6) +#elif PACKETVER >= 20080708 +packetLen(0x0332, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0332, 15) +#elif PACKETVER >= 20080624 +packetLen(0x0332, 282) +#elif PACKETVER >= 20080429 +packetLen(0x0332, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0332, 114) +#elif PACKETVER >= 20080415 +packetLen(0x0332, 8) +#elif PACKETVER >= 20080408 +packetLen(0x0332, 4) +#endif + +// Packet: 0x0333 +#if PACKETVER >= 20081217 +packetLen(0x0333, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0333, 3) +#elif PACKETVER >= 20081119 +packetLen(0x0333, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0333, 8) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0333, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0333, 5) +#elif PACKETVER >= 20081008 +packetLen(0x0333, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0333, 6) +#elif PACKETVER >= 20080924 +packetLen(0x0333, 2) +#elif PACKETVER >= 20080910 +packetLen(0x0333, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0333, 2) +#elif PACKETVER >= 20080813 +packetLen(0x0333, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0333, 16) +#elif PACKETVER >= 20080730 +packetLen(0x0333, 90) +#elif PACKETVER >= 20080722 +packetLen(0x0333, 186) +#elif PACKETVER >= 20080715 +packetLen(0x0333, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0333, 18) +#elif PACKETVER >= 20080701 +packetLen(0x0333, 28) +#elif PACKETVER >= 20080610 +packetLen(0x0333, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0333, 17) +#elif PACKETVER >= 20080528 +packetLen(0x0333, 2) +#elif PACKETVER >= 20080520 +packetLen(0x0333, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0333, 29) +#elif PACKETVER >= 20080507 +packetLen(0x0333, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0333, 9) +#elif PACKETVER >= 20080422 +packetLen(0x0333, 35) +#elif PACKETVER >= 20080415 +packetLen(0x0333, 5) +#elif PACKETVER >= 20080408 +packetLen(0x0333, -1) +#endif + +// Packet: 0x0334 +#if PACKETVER >= 20081217 +packetLen(0x0334, 27) +#elif PACKETVER >= 20081203 +packetLen(0x0334, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0334, 2) +#elif PACKETVER >= 20081112 +packetLen(0x0334, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0334, 6) +#elif PACKETVER >= 20081029 +packetLen(0x0334, 14) +#elif PACKETVER >= 20081022 +packetLen(0x0334, 4) +#elif PACKETVER >= 20081008 +packetLen(0x0334, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0334, 26) +#elif PACKETVER >= 20080917 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0334, 28) +#elif PACKETVER >= 20080813 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0334, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0334, 3) +#elif PACKETVER >= 20080715 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0334, 26) +#elif PACKETVER >= 20080624 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0334, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0334, 7) +#elif PACKETVER >= 20080603 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0334, 28) +#elif PACKETVER >= 20080520 +packetLen(0x0334, 60) +#elif PACKETVER >= 20080507 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0334, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0334, 60) +#elif PACKETVER >= 20080415 +packetLen(0x0334, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0334, 5) +#endif + +// Packet: 0x0335 +#if PACKETVER >= 20081217 +packetLen(0x0335, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0335, 9) +#elif PACKETVER >= 20081126 +packetLen(0x0335, 36) +#elif PACKETVER >= 20081119 +packetLen(0x0335, 282) +#elif PACKETVER >= 20081022 +packetLen(0x0335, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0335, 60) +#elif PACKETVER >= 20081008 +packetLen(0x0335, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0335, 7) +#elif PACKETVER >= 20080924 +packetLen(0x0335, 10) +#elif PACKETVER >= 20080827 +packetLen(0x0335, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0335, 2) +#elif PACKETVER >= 20080806 +packetLen(0x0335, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0335, 28) +#elif PACKETVER >= 20080701 +packetLen(0x0335, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0335, 3) +#elif PACKETVER >= 20080617 +packetLen(0x0335, 22) +#elif PACKETVER >= 20080610 +packetLen(0x0335, 4) +#elif PACKETVER >= 20080603 +packetLen(0x0335, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0335, 7) +#elif PACKETVER >= 20080520 +packetLen(0x0335, 4) +#elif PACKETVER >= 20080513 +packetLen(0x0335, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0335, 28) +#elif PACKETVER >= 20080408 +packetLen(0x0335, -1) +#endif + +// Packet: 0x0336 +#if PACKETVER >= 20081126 +packetLen(0x0336, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0336, 4) +#elif PACKETVER >= 20081022 +packetLen(0x0336, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0336, 2) +#elif PACKETVER >= 20081008 +packetLen(0x0336, 23) +#elif PACKETVER >= 20081001 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0336, 4) +#elif PACKETVER >= 20080917 +packetLen(0x0336, 2) +#elif PACKETVER >= 20080910 +packetLen(0x0336, 26) +#elif PACKETVER >= 20080827 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0336, 4) +#elif PACKETVER >= 20080813 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0336, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0336, 97) +#elif PACKETVER >= 20080722 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0336, 8) +#elif PACKETVER >= 20080708 +packetLen(0x0336, 2) +#elif PACKETVER >= 20080624 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0336, 30) +#elif PACKETVER >= 20080610 +packetLen(0x0336, 33) +#elif PACKETVER >= 20080603 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080528 +packetLen(0x0336, 6) +#elif PACKETVER >= 20080520 +packetLen(0x0336, 7) +#elif PACKETVER >= 20080513 +packetLen(0x0336, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0336, 11) +#elif PACKETVER >= 20080429 +packetLen(0x0336, 27) +#elif PACKETVER >= 20080415 +packetLen(0x0336, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0336, 6) +#endif + +// Packet: 0x0337 +#if PACKETVER >= 20081217 +packetLen(0x0337, 6) +#elif PACKETVER >= 20081008 +packetLen(0x0337, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0337, 36) +#elif PACKETVER >= 20080924 +packetLen(0x0337, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0337, 54) +#elif PACKETVER >= 20080910 +packetLen(0x0337, 5) +#elif PACKETVER >= 20080903 +packetLen(0x0337, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0337, 30) +#elif PACKETVER >= 20080820 +packetLen(0x0337, 5) +#elif PACKETVER >= 20080806 +packetLen(0x0337, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0337, 43) +#elif PACKETVER >= 20080722 +packetLen(0x0337, 33) +#elif PACKETVER >= 20080715 +packetLen(0x0337, 23) +#elif PACKETVER >= 20080708 +packetLen(0x0337, 32) +#elif PACKETVER >= 20080624 +packetLen(0x0337, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0337, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0337, 4) +#elif PACKETVER >= 20080603 +packetLen(0x0337, 282) +#elif PACKETVER >= 20080528 +packetLen(0x0337, 11) +#elif PACKETVER >= 20080520 +packetLen(0x0337, 2) +#elif PACKETVER >= 20080507 +packetLen(0x0337, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0337, 8) +#elif PACKETVER >= 20080422 +packetLen(0x0337, 58) +#elif PACKETVER >= 20080415 +packetLen(0x0337, 9) +#elif PACKETVER >= 20080408 +packetLen(0x0337, 42) +#endif + +// Packet: 0x0338 +#if PACKETVER >= 20081001 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0338, 6) +#elif PACKETVER >= 20080917 +packetLen(0x0338, 4) +#elif PACKETVER >= 20080910 +packetLen(0x0338, 28) +#elif PACKETVER >= 20080903 +packetLen(0x0338, 26) +#elif PACKETVER >= 20080827 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0338, 10) +#elif PACKETVER >= 20080813 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0338, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0338, 10) +#elif PACKETVER >= 20080715 +packetLen(0x0338, 3) +#elif PACKETVER >= 20080708 +packetLen(0x0338, 44) +#elif PACKETVER >= 20080701 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0338, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0338, 32) +#elif PACKETVER >= 20080507 +packetLen(0x0338, 11) +#elif PACKETVER >= 20080429 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0338, 67) +#elif PACKETVER >= 20080415 +packetLen(0x0338, 6) +#elif PACKETVER >= 20080408 +packetLen(0x0338, -1) +#endif + +// Packet: 0x0339 +#if PACKETVER >= 20081217 +packetLen(0x0339, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0339, 17) +#elif PACKETVER >= 20081126 +packetLen(0x0339, 10) +#elif PACKETVER >= 20081029 +packetLen(0x0339, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0339, 3) +#elif PACKETVER >= 20081008 +packetLen(0x0339, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0339, 2) +#elif PACKETVER >= 20080910 +packetLen(0x0339, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0339, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0339, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0339, 16) +#elif PACKETVER >= 20080806 +packetLen(0x0339, 17) +#elif PACKETVER >= 20080730 +packetLen(0x0339, 4) +#elif PACKETVER >= 20080722 +packetLen(0x0339, 7) +#elif PACKETVER >= 20080715 +packetLen(0x0339, 4) +#elif PACKETVER >= 20080701 +packetLen(0x0339, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0339, 39) +#elif PACKETVER >= 20080617 +packetLen(0x0339, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0339, 27) +#elif PACKETVER >= 20080603 +packetLen(0x0339, 79) +#elif PACKETVER >= 20080528 +packetLen(0x0339, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0339, 7) +#elif PACKETVER >= 20080415 +packetLen(0x0339, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0339, 7) +#endif + +// Packet: 0x033a +#if PACKETVER >= 20081217 +packetLen(0x033a, -1) +#elif PACKETVER >= 20081203 +packetLen(0x033a, 10) +#elif PACKETVER >= 20081126 +packetLen(0x033a, 114) +#elif PACKETVER >= 20081119 +packetLen(0x033a, 6) +#elif PACKETVER >= 20081112 +packetLen(0x033a, -1) +#elif PACKETVER >= 20081105 +packetLen(0x033a, 11) +#elif PACKETVER >= 20080924 +packetLen(0x033a, -1) +#elif PACKETVER >= 20080917 +packetLen(0x033a, 57) +#elif PACKETVER >= 20080903 +packetLen(0x033a, -1) +#elif PACKETVER >= 20080827 +packetLen(0x033a, 9) +#elif PACKETVER >= 20080820 +packetLen(0x033a, -1) +#elif PACKETVER >= 20080813 +packetLen(0x033a, 6) +#elif PACKETVER >= 20080806 +packetLen(0x033a, 67) +#elif PACKETVER >= 20080730 +packetLen(0x033a, 30) +#elif PACKETVER >= 20080722 +packetLen(0x033a, 3) +#elif PACKETVER >= 20080708 +packetLen(0x033a, -1) +#elif PACKETVER >= 20080701 +packetLen(0x033a, 3) +#elif PACKETVER >= 20080610 +packetLen(0x033a, -1) +#elif PACKETVER >= 20080603 +packetLen(0x033a, 5) +#elif PACKETVER >= 20080528 +packetLen(0x033a, 67) +#elif PACKETVER >= 20080520 +packetLen(0x033a, 33) +#elif PACKETVER >= 20080513 +packetLen(0x033a, 39) +#elif PACKETVER >= 20080507 +packetLen(0x033a, -1) +#elif PACKETVER >= 20080429 +packetLen(0x033a, 6) +#elif PACKETVER >= 20080422 +packetLen(0x033a, 4) +#elif PACKETVER >= 20080415 +packetLen(0x033a, 6) +#elif PACKETVER >= 20080408 +packetLen(0x033a, 32) +#endif + +// Packet: 0x033b +#if PACKETVER >= 20081217 +packetLen(0x033b, 97) +#elif PACKETVER >= 20081203 +packetLen(0x033b, 67) +#elif PACKETVER >= 20081126 +packetLen(0x033b, 30) +#elif PACKETVER >= 20081119 +packetLen(0x033b, 8) +#elif PACKETVER >= 20081112 +packetLen(0x033b, -1) +#elif PACKETVER >= 20081105 +packetLen(0x033b, 186) +#elif PACKETVER >= 20081029 +packetLen(0x033b, 6) +#elif PACKETVER >= 20081022 +packetLen(0x033b, 7) +#elif PACKETVER >= 20081015 +packetLen(0x033b, -1) +#elif PACKETVER >= 20081008 +packetLen(0x033b, 6) +#elif PACKETVER >= 20080917 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080910 +packetLen(0x033b, 30) +#elif PACKETVER >= 20080903 +packetLen(0x033b, 2) +#elif PACKETVER >= 20080730 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080722 +packetLen(0x033b, 6) +#elif PACKETVER >= 20080708 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080701 +packetLen(0x033b, 6) +#elif PACKETVER >= 20080617 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080610 +packetLen(0x033b, 14) +#elif PACKETVER >= 20080603 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080528 +packetLen(0x033b, 4) +#elif PACKETVER >= 20080520 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080513 +packetLen(0x033b, 182) +#elif PACKETVER >= 20080507 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080429 +packetLen(0x033b, 20) +#elif PACKETVER >= 20080422 +packetLen(0x033b, 6) +#elif PACKETVER >= 20080415 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080408 +packetLen(0x033b, 3) +#endif + +// Packet: 0x033c +#if PACKETVER >= 20081203 +packetLen(0x033c, -1) +#elif PACKETVER >= 20081126 +packetLen(0x033c, 282) +#elif PACKETVER >= 20081105 +packetLen(0x033c, -1) +#elif PACKETVER >= 20081029 +packetLen(0x033c, 2) +#elif PACKETVER >= 20081022 +packetLen(0x033c, 11) +#elif PACKETVER >= 20081015 +packetLen(0x033c, 3) +#elif PACKETVER >= 20081008 +packetLen(0x033c, 59) +#elif PACKETVER >= 20081001 +packetLen(0x033c, 3) +#elif PACKETVER >= 20080924 +packetLen(0x033c, 6) +#elif PACKETVER >= 20080903 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080827 +packetLen(0x033c, 6) +#elif PACKETVER >= 20080813 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080806 +packetLen(0x033c, 16) +#elif PACKETVER >= 20080730 +packetLen(0x033c, 5) +#elif PACKETVER >= 20080722 +packetLen(0x033c, 8) +#elif PACKETVER >= 20080715 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080708 +packetLen(0x033c, 6) +#elif PACKETVER >= 20080701 +packetLen(0x033c, 53) +#elif PACKETVER >= 20080624 +packetLen(0x033c, 12) +#elif PACKETVER >= 20080610 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080603 +packetLen(0x033c, 4) +#elif PACKETVER >= 20080528 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080520 +packetLen(0x033c, 10) +#elif PACKETVER >= 20080513 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080507 +packetLen(0x033c, 30) +#elif PACKETVER >= 20080429 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080422 +packetLen(0x033c, 10) +#elif PACKETVER >= 20080415 +packetLen(0x033c, 21) +#elif PACKETVER >= 20080408 +packetLen(0x033c, 86) +#endif + +// Packet: 0x033d +#if PACKETVER >= 20081217 +packetLen(0x033d, 43) +#elif PACKETVER >= 20081203 +packetLen(0x033d, 4) +#elif PACKETVER >= 20081119 +packetLen(0x033d, -1) +#elif PACKETVER >= 20081112 +packetLen(0x033d, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x033d, -1) +#elif PACKETVER >= 20081001 +packetLen(0x033d, 29) +#elif PACKETVER >= 20080924 +packetLen(0x033d, 11) +#elif PACKETVER >= 20080917 +packetLen(0x033d, 10) +#elif PACKETVER >= 20080910 +packetLen(0x033d, 14) +#elif PACKETVER >= 20080903 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080827 +packetLen(0x033d, 26) +#elif PACKETVER >= 20080806 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080730 +packetLen(0x033d, 5) +#elif PACKETVER >= 20080722 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080708 +packetLen(0x033d, 5) +#elif PACKETVER >= 20080701 +packetLen(0x033d, 32) +#elif PACKETVER >= 20080624 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080617 +packetLen(0x033d, 28) +#elif PACKETVER >= 20080528 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080520 +packetLen(0x033d, 11) +#elif PACKETVER >= 20080513 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080507 +packetLen(0x033d, 10) +#elif PACKETVER >= 20080429 +packetLen(0x033d, 21) +#elif PACKETVER >= 20080415 +packetLen(0x033d, -1) +#elif PACKETVER >= 20080408 +packetLen(0x033d, 10) +#endif + +// Packet: 0x033e +#if PACKETVER >= 20081203 +packetLen(0x033e, -1) +#elif PACKETVER >= 20081126 +packetLen(0x033e, 7) +#elif PACKETVER >= 20081119 +packetLen(0x033e, 3) +#elif PACKETVER >= 20081112 +packetLen(0x033e, 5) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x033e, 3) +#elif PACKETVER >= 20081029 +packetLen(0x033e, 71) +#elif PACKETVER >= 20080924 +packetLen(0x033e, -1) +#elif PACKETVER >= 20080917 +packetLen(0x033e, 26) +#elif PACKETVER >= 20080910 +packetLen(0x033e, 6) +#elif PACKETVER >= 20080903 +packetLen(0x033e, -1) +#elif PACKETVER >= 20080827 +packetLen(0x033e, 22) +#elif PACKETVER >= 20080820 +packetLen(0x033e, -1) +#elif PACKETVER >= 20080813 +packetLen(0x033e, 12) +#elif PACKETVER >= 20080806 +packetLen(0x033e, 10) +#elif PACKETVER >= 20080708 +packetLen(0x033e, -1) +#elif PACKETVER >= 20080624 +packetLen(0x033e, 6) +#elif PACKETVER >= 20080603 +packetLen(0x033e, -1) +#elif PACKETVER >= 20080528 +packetLen(0x033e, 11) +#elif PACKETVER >= 20080520 +packetLen(0x033e, 33) +#elif PACKETVER >= 20080513 +packetLen(0x033e, 6) +#elif PACKETVER >= 20080507 +packetLen(0x033e, 4) +#elif PACKETVER >= 20080429 +packetLen(0x033e, 33) +#elif PACKETVER >= 20080422 +packetLen(0x033e, -1) +#elif PACKETVER >= 20080415 +packetLen(0x033e, 3) +#elif PACKETVER >= 20080408 +packetLen(0x033e, 9) +#endif + +// Packet: 0x033f +#if PACKETVER >= 20081126 +packetLen(0x033f, -1) +#elif PACKETVER >= 20081119 +packetLen(0x033f, 12) +#elif PACKETVER >= 20081112 +packetLen(0x033f, -1) +#elif PACKETVER >= 20081105 +packetLen(0x033f, 6) +#elif PACKETVER >= 20081029 +packetLen(0x033f, 54) +#elif PACKETVER >= 20081022 +packetLen(0x033f, -1) +#elif PACKETVER >= 20081015 +packetLen(0x033f, 33) +#elif PACKETVER >= 20081008 +packetLen(0x033f, 3) +#elif PACKETVER >= 20081001 +packetLen(0x033f, 31) +#elif PACKETVER >= 20080924 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080917 +packetLen(0x033f, 8) +#elif PACKETVER >= 20080910 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080903 +packetLen(0x033f, 12) +#elif PACKETVER >= 20080813 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080806 +packetLen(0x033f, 8) +#elif PACKETVER >= 20080730 +packetLen(0x033f, 57) +#elif PACKETVER >= 20080722 +packetLen(0x033f, 3) +#elif PACKETVER >= 20080715 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080708 +packetLen(0x033f, 17) +#elif PACKETVER >= 20080701 +packetLen(0x033f, 3) +#elif PACKETVER >= 20080624 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080617 +packetLen(0x033f, 3) +#elif PACKETVER >= 20080610 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080603 +packetLen(0x033f, 8) +#elif PACKETVER >= 20080528 +packetLen(0x033f, 5) +#elif PACKETVER >= 20080520 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080513 +packetLen(0x033f, 282) +#elif PACKETVER >= 20080507 +packetLen(0x033f, 27) +#elif PACKETVER >= 20080429 +packetLen(0x033f, 3) +#elif PACKETVER >= 20080422 +packetLen(0x033f, -1) +#elif PACKETVER >= 20080415 +packetLen(0x033f, 2) +#elif PACKETVER >= 20080408 +packetLen(0x033f, -1) +#endif + +// Packet: 0x0340 +#if PACKETVER >= 20081217 +packetLen(0x0340, 10) +#elif PACKETVER >= 20081119 +packetLen(0x0340, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0340, 66) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0340, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0340, 12) +#elif PACKETVER >= 20080917 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0340, 4) +#elif PACKETVER >= 20080827 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0340, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0340, 32) +#elif PACKETVER >= 20080715 +packetLen(0x0340, 2) +#elif PACKETVER >= 20080708 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0340, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0340, 27) +#elif PACKETVER >= 20080528 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0340, 19) +#elif PACKETVER >= 20080513 +packetLen(0x0340, 4) +#elif PACKETVER >= 20080507 +packetLen(0x0340, 18) +#elif PACKETVER >= 20080429 +packetLen(0x0340, 8) +#elif PACKETVER >= 20080422 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0340, 23) +#elif PACKETVER >= 20080408 +packetLen(0x0340, -1) +#endif + +// Packet: 0x0341 +#if PACKETVER >= 20081112 +packetLen(0x0341, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0341, 27) +#elif PACKETVER >= 20081029 +packetLen(0x0341, 10) +#elif PACKETVER >= 20081008 +packetLen(0x0341, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0341, 30) +#elif PACKETVER >= 20080924 +packetLen(0x0341, 10) +#elif PACKETVER >= 20080917 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0341, 6) +#elif PACKETVER >= 20080827 +packetLen(0x0341, 57) +#elif PACKETVER >= 20080813 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0341, 33) +#elif PACKETVER >= 20080722 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0341, 30) +#elif PACKETVER >= 20080708 +packetLen(0x0341, 58) +#elif PACKETVER >= 20080617 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0341, 16) +#elif PACKETVER >= 20080429 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0341, 11) +#elif PACKETVER >= 20080415 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0341, 2) +#endif + +// Packet: 0x0342 +#if PACKETVER >= 20081203 +packetLen(0x0342, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0342, 60) +#elif PACKETVER >= 20081112 +packetLen(0x0342, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0342, 11) +#elif PACKETVER >= 20080910 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0342, 6) +#elif PACKETVER >= 20080827 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0342, 9) +#elif PACKETVER >= 20080813 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0342, 3) +#elif PACKETVER >= 20080722 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0342, 3) +#elif PACKETVER >= 20080701 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0342, 186) +#elif PACKETVER >= 20080610 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0342, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0342, 4) +#elif PACKETVER >= 20080513 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0342, 14) +#elif PACKETVER >= 20080429 +packetLen(0x0342, 30) +#elif PACKETVER >= 20080422 +packetLen(0x0342, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0342, 5) +#elif PACKETVER >= 20080408 +packetLen(0x0342, 4) +#endif + +// Packet: 0x0343 +#if PACKETVER >= 20081217 +packetLen(0x0343, 21) +#elif PACKETVER >= 20081203 +packetLen(0x0343, 10) +#elif PACKETVER >= 20081126 +packetLen(0x0343, 3) +#elif PACKETVER >= 20081119 +packetLen(0x0343, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0343, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0343, 67) +#elif PACKETVER >= 20081029 +packetLen(0x0343, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0343, 10) +#elif PACKETVER >= 20081015 +packetLen(0x0343, 97) +#elif PACKETVER >= 20081008 +packetLen(0x0343, 3) +#elif PACKETVER >= 20081001 +packetLen(0x0343, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0343, 6) +#elif PACKETVER >= 20080917 +packetLen(0x0343, 26) +#elif PACKETVER >= 20080910 +packetLen(0x0343, 6) +#elif PACKETVER >= 20080903 +packetLen(0x0343, 71) +#elif PACKETVER >= 20080827 +packetLen(0x0343, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0343, 22) +#elif PACKETVER >= 20080730 +packetLen(0x0343, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0343, 6) +#elif PACKETVER >= 20080715 +packetLen(0x0343, 14) +#elif PACKETVER >= 20080708 +packetLen(0x0343, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0343, 4) +#elif PACKETVER >= 20080617 +packetLen(0x0343, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0343, 17) +#elif PACKETVER >= 20080422 +packetLen(0x0343, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0343, 2) +#elif PACKETVER >= 20080408 +packetLen(0x0343, -1) +#endif + +// Packet: 0x0344 +#if PACKETVER >= 20081217 +packetLen(0x0344, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0344, 2) +#elif PACKETVER >= 20081119 +packetLen(0x0344, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0344, 7) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0344, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0344, 32) +#elif PACKETVER >= 20080924 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0344, 6) +#elif PACKETVER >= 20080910 +packetLen(0x0344, 14) +#elif PACKETVER >= 20080903 +packetLen(0x0344, 3) +#elif PACKETVER >= 20080820 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0344, 5) +#elif PACKETVER >= 20080806 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0344, 14) +#elif PACKETVER >= 20080701 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0344, 6) +#elif PACKETVER >= 20080617 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0344, 35) +#elif PACKETVER >= 20080603 +packetLen(0x0344, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0344, 4) +#elif PACKETVER >= 20080520 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0344, 10) +#elif PACKETVER >= 20080507 +packetLen(0x0344, 2) +#elif PACKETVER >= 20080422 +packetLen(0x0344, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0344, 3) +#elif PACKETVER >= 20080408 +packetLen(0x0344, -1) +#endif + +// Packet: 0x0345 +#if PACKETVER >= 20081217 +packetLen(0x0345, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0345, 4) +#elif PACKETVER >= 20081008 +packetLen(0x0345, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0345, 9) +#elif PACKETVER >= 20080924 +packetLen(0x0345, 6) +#elif PACKETVER >= 20080917 +packetLen(0x0345, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0345, 11) +#elif PACKETVER >= 20080903 +packetLen(0x0345, 186) +#elif PACKETVER >= 20080827 +packetLen(0x0345, 2) +#elif PACKETVER >= 20080820 +packetLen(0x0345, 10) +#elif PACKETVER >= 20080813 +packetLen(0x0345, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0345, 5) +#elif PACKETVER >= 20080730 +packetLen(0x0345, 9) +#elif PACKETVER >= 20080722 +packetLen(0x0345, 11) +#elif PACKETVER >= 20080715 +packetLen(0x0345, 27) +#elif PACKETVER >= 20080708 +packetLen(0x0345, 4) +#elif PACKETVER >= 20080701 +packetLen(0x0345, 3) +#elif PACKETVER >= 20080624 +packetLen(0x0345, 60) +#elif PACKETVER >= 20080617 +packetLen(0x0345, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0345, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0345, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0345, 9) +#elif PACKETVER >= 20080513 +packetLen(0x0345, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0345, 6) +#elif PACKETVER >= 20080429 +packetLen(0x0345, 14) +#elif PACKETVER >= 20080408 +packetLen(0x0345, -1) +#endif + +// Packet: 0x0346 +#if PACKETVER >= 20081217 +packetLen(0x0346, 13) +#elif PACKETVER >= 20081126 +packetLen(0x0346, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0346, 2) +#elif PACKETVER >= 20081112 +packetLen(0x0346, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0346, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0346, 31) +#elif PACKETVER >= 20080924 +packetLen(0x0346, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0346, 5) +#elif PACKETVER >= 20080903 +packetLen(0x0346, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0346, 4) +#elif PACKETVER >= 20080820 +packetLen(0x0346, 5) +#elif PACKETVER >= 20080813 +packetLen(0x0346, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0346, 15) +#elif PACKETVER >= 20080617 +packetLen(0x0346, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0346, 16) +#elif PACKETVER >= 20080603 +packetLen(0x0346, 3) +#elif PACKETVER >= 20080520 +packetLen(0x0346, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0346, 26) +#elif PACKETVER >= 20080507 +packetLen(0x0346, 11) +#elif PACKETVER >= 20080429 +packetLen(0x0346, 5) +#elif PACKETVER >= 20080422 +packetLen(0x0346, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0346, 55) +#elif PACKETVER >= 20080408 +packetLen(0x0346, 8) +#endif + +// Packet: 0x0347 +#if PACKETVER >= 20081217 +packetLen(0x0347, 8) +#elif PACKETVER >= 20081126 +packetLen(0x0347, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0347, 4) +#elif PACKETVER >= 20081112 +packetLen(0x0347, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0347, 10) +#elif PACKETVER >= 20080827 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0347, 32) +#elif PACKETVER >= 20080813 +packetLen(0x0347, 3) +#elif PACKETVER >= 20080806 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0347, 6) +#elif PACKETVER >= 20080722 +packetLen(0x0347, 16) +#elif PACKETVER >= 20080701 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0347, 4) +#elif PACKETVER >= 20080617 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0347, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0347, 29) +#elif PACKETVER >= 20080513 +packetLen(0x0347, 8) +#elif PACKETVER >= 20080507 +packetLen(0x0347, 6) +#elif PACKETVER >= 20080429 +packetLen(0x0347, 39) +#elif PACKETVER >= 20080422 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0347, 39) +#elif PACKETVER >= 20080408 +packetLen(0x0347, -1) +#endif + +// Packet: 0x0348 +#if PACKETVER >= 20081217 +packetLen(0x0348, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0348, 6) +#elif PACKETVER >= 20081126 +packetLen(0x0348, 5) +#elif PACKETVER >= 20081105 +packetLen(0x0348, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0348, 31) +#elif PACKETVER >= 20081015 +packetLen(0x0348, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0348, 2) +#elif PACKETVER >= 20081001 +packetLen(0x0348, 4) +#elif PACKETVER >= 20080917 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0348, 17) +#elif PACKETVER >= 20080827 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0348, 26) +#elif PACKETVER >= 20080806 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0348, 10) +#elif PACKETVER >= 20080722 +packetLen(0x0348, 6) +#elif PACKETVER >= 20080715 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0348, 11) +#elif PACKETVER >= 20080701 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0348, 3) +#elif PACKETVER >= 20080610 +packetLen(0x0348, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0348, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0348, 2) +#elif PACKETVER >= 20080520 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0348, 26) +#elif PACKETVER >= 20080507 +packetLen(0x0348, 3) +#elif PACKETVER >= 20080415 +packetLen(0x0348, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0348, 6) +#endif + +// Packet: 0x0349 +#if PACKETVER >= 20081217 +packetLen(0x0349, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0349, 6) +#elif PACKETVER >= 20081126 +packetLen(0x0349, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0349, 2) +#elif PACKETVER >= 20081029 +packetLen(0x0349, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0349, 2) +#elif PACKETVER >= 20081015 +packetLen(0x0349, 30) +#elif PACKETVER >= 20081001 +packetLen(0x0349, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0349, 31) +#elif PACKETVER >= 20080917 +packetLen(0x0349, 32) +#elif PACKETVER >= 20080910 +packetLen(0x0349, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0349, 11) +#elif PACKETVER >= 20080827 +packetLen(0x0349, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0349, 10) +#elif PACKETVER >= 20080813 +packetLen(0x0349, 20) +#elif PACKETVER >= 20080806 +packetLen(0x0349, 16) +#elif PACKETVER >= 20080730 +packetLen(0x0349, 26) +#elif PACKETVER >= 20080722 +packetLen(0x0349, 10) +#elif PACKETVER >= 20080715 +packetLen(0x0349, 30) +#elif PACKETVER >= 20080708 +packetLen(0x0349, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0349, 3) +#elif PACKETVER >= 20080610 +packetLen(0x0349, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0349, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0349, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0349, 26) +#elif PACKETVER >= 20080513 +packetLen(0x0349, 36) +#elif PACKETVER >= 20080507 +packetLen(0x0349, 4) +#elif PACKETVER >= 20080429 +packetLen(0x0349, 54) +#elif PACKETVER >= 20080422 +packetLen(0x0349, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0349, 11) +#elif PACKETVER >= 20080408 +packetLen(0x0349, 4) +#endif + +// Packet: 0x034a +#if PACKETVER >= 20081217 +packetLen(0x034a, 2) +#elif PACKETVER >= 20081203 +packetLen(0x034a, -1) +#elif PACKETVER >= 20081126 +packetLen(0x034a, 2) +#elif PACKETVER >= 20081119 +packetLen(0x034a, -1) +#elif PACKETVER >= 20081112 +packetLen(0x034a, 5) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x034a, -1) +#elif PACKETVER >= 20081022 +packetLen(0x034a, 4) +#elif PACKETVER >= 20080924 +packetLen(0x034a, -1) +#elif PACKETVER >= 20080917 +packetLen(0x034a, 8) +#elif PACKETVER >= 20080910 +packetLen(0x034a, 3) +#elif PACKETVER >= 20080903 +packetLen(0x034a, 6) +#elif PACKETVER >= 20080820 +packetLen(0x034a, -1) +#elif PACKETVER >= 20080813 +packetLen(0x034a, 3) +#elif PACKETVER >= 20080722 +packetLen(0x034a, -1) +#elif PACKETVER >= 20080715 +packetLen(0x034a, 6) +#elif PACKETVER >= 20080708 +packetLen(0x034a, 7) +#elif PACKETVER >= 20080701 +packetLen(0x034a, 57) +#elif PACKETVER >= 20080624 +packetLen(0x034a, 34) +#elif PACKETVER >= 20080617 +packetLen(0x034a, 10) +#elif PACKETVER >= 20080610 +packetLen(0x034a, -1) +#elif PACKETVER >= 20080603 +packetLen(0x034a, 26) +#elif PACKETVER >= 20080528 +packetLen(0x034a, 9) +#elif PACKETVER >= 20080520 +packetLen(0x034a, -1) +#elif PACKETVER >= 20080513 +packetLen(0x034a, 59) +#elif PACKETVER >= 20080429 +packetLen(0x034a, -1) +#elif PACKETVER >= 20080422 +packetLen(0x034a, 6) +#elif PACKETVER >= 20080408 +packetLen(0x034a, -1) +#endif + +// Packet: 0x034b +#if PACKETVER >= 20081203 +packetLen(0x034b, -1) +#elif PACKETVER >= 20081126 +packetLen(0x034b, 27) +#elif PACKETVER >= 20081119 +packetLen(0x034b, -1) +#elif PACKETVER >= 20081112 +packetLen(0x034b, 14) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x034b, -1) +#elif PACKETVER >= 20081001 +packetLen(0x034b, 6) +#elif PACKETVER >= 20080924 +packetLen(0x034b, 3) +#elif PACKETVER >= 20080917 +packetLen(0x034b, -1) +#elif PACKETVER >= 20080910 +packetLen(0x034b, 2) +#elif PACKETVER >= 20080903 +packetLen(0x034b, 4) +#elif PACKETVER >= 20080827 +packetLen(0x034b, 26) +#elif PACKETVER >= 20080820 +packetLen(0x034b, 28) +#elif PACKETVER >= 20080813 +packetLen(0x034b, 5) +#elif PACKETVER >= 20080806 +packetLen(0x034b, 282) +#elif PACKETVER >= 20080730 +packetLen(0x034b, 18) +#elif PACKETVER >= 20080715 +packetLen(0x034b, -1) +#elif PACKETVER >= 20080708 +packetLen(0x034b, 8) +#elif PACKETVER >= 20080701 +packetLen(0x034b, 24) +#elif PACKETVER >= 20080624 +packetLen(0x034b, 33) +#elif PACKETVER >= 20080617 +packetLen(0x034b, 26) +#elif PACKETVER >= 20080610 +packetLen(0x034b, -1) +#elif PACKETVER >= 20080603 +packetLen(0x034b, 10) +#elif PACKETVER >= 20080513 +packetLen(0x034b, -1) +#elif PACKETVER >= 20080429 +packetLen(0x034b, 60) +#elif PACKETVER >= 20080422 +packetLen(0x034b, 14) +#elif PACKETVER >= 20080415 +packetLen(0x034b, 65) +#elif PACKETVER >= 20080408 +packetLen(0x034b, 7) +#endif + +// Packet: 0x034c +#if PACKETVER >= 20081217 +packetLen(0x034c, -1) +#elif PACKETVER >= 20081203 +packetLen(0x034c, 33) +#elif PACKETVER >= 20081126 +packetLen(0x034c, 6) +#elif PACKETVER >= 20081119 +packetLen(0x034c, 2) +#elif PACKETVER >= 20081105 +packetLen(0x034c, -1) +#elif PACKETVER >= 20081029 +packetLen(0x034c, 282) +#elif PACKETVER >= 20080924 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080917 +packetLen(0x034c, 6) +#elif PACKETVER >= 20080827 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080820 +packetLen(0x034c, 21) +#elif PACKETVER >= 20080813 +packetLen(0x034c, 4) +#elif PACKETVER >= 20080715 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080708 +packetLen(0x034c, 3) +#elif PACKETVER >= 20080701 +packetLen(0x034c, 10) +#elif PACKETVER >= 20080624 +packetLen(0x034c, 6) +#elif PACKETVER >= 20080610 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080603 +packetLen(0x034c, 10) +#elif PACKETVER >= 20080528 +packetLen(0x034c, 86) +#elif PACKETVER >= 20080520 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080513 +packetLen(0x034c, 14) +#elif PACKETVER >= 20080507 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080429 +packetLen(0x034c, 16) +#elif PACKETVER >= 20080408 +packetLen(0x034c, -1) +#endif + +// Packet: 0x034d +#if PACKETVER >= 20081217 +packetLen(0x034d, 60) +#elif PACKETVER >= 20081126 +packetLen(0x034d, -1) +#elif PACKETVER >= 20081119 +packetLen(0x034d, 6) +#elif PACKETVER >= 20081105 +packetLen(0x034d, -1) +#elif PACKETVER >= 20081029 +packetLen(0x034d, 3) +#elif PACKETVER >= 20081022 +packetLen(0x034d, 7) +#elif PACKETVER >= 20081015 +packetLen(0x034d, 3) +#elif PACKETVER >= 20080827 +packetLen(0x034d, -1) +#elif PACKETVER >= 20080820 +packetLen(0x034d, 26) +#elif PACKETVER >= 20080730 +packetLen(0x034d, -1) +#elif PACKETVER >= 20080722 +packetLen(0x034d, 36) +#elif PACKETVER >= 20080715 +packetLen(0x034d, 2) +#elif PACKETVER >= 20080624 +packetLen(0x034d, -1) +#elif PACKETVER >= 20080617 +packetLen(0x034d, 2) +#elif PACKETVER >= 20080603 +packetLen(0x034d, -1) +#elif PACKETVER >= 20080520 +packetLen(0x034d, 6) +#elif PACKETVER >= 20080429 +packetLen(0x034d, -1) +#elif PACKETVER >= 20080422 +packetLen(0x034d, 36) +#elif PACKETVER >= 20080415 +packetLen(0x034d, 23) +#elif PACKETVER >= 20080408 +packetLen(0x034d, 2) +#endif + +// Packet: 0x034e +#if PACKETVER >= 20081217 +packetLen(0x034e, 30) +#elif PACKETVER >= 20081126 +packetLen(0x034e, -1) +#elif PACKETVER >= 20081119 +packetLen(0x034e, 6) +#elif PACKETVER >= 20081112 +packetLen(0x034e, -1) +#elif PACKETVER >= 20081105 +packetLen(0x034e, 4) +#elif PACKETVER >= 20081029 +packetLen(0x034e, 32) +#elif PACKETVER >= 20081022 +packetLen(0x034e, 4) +#elif PACKETVER >= 20080910 +packetLen(0x034e, -1) +#elif PACKETVER >= 20080903 +packetLen(0x034e, 6) +#elif PACKETVER >= 20080806 +packetLen(0x034e, -1) +#elif PACKETVER >= 20080730 +packetLen(0x034e, 19) +#elif PACKETVER >= 20080722 +packetLen(0x034e, 6) +#elif PACKETVER >= 20080624 +packetLen(0x034e, -1) +#elif PACKETVER >= 20080617 +packetLen(0x034e, 2) +#elif PACKETVER >= 20080603 +packetLen(0x034e, 6) +#elif PACKETVER >= 20080528 +packetLen(0x034e, 59) +#elif PACKETVER >= 20080520 +packetLen(0x034e, 7) +#elif PACKETVER >= 20080429 +packetLen(0x034e, -1) +#elif PACKETVER >= 20080422 +packetLen(0x034e, 27) +#elif PACKETVER >= 20080415 +packetLen(0x034e, 90) +#elif PACKETVER >= 20080408 +packetLen(0x034e, 11) +#endif + +// Packet: 0x034f +#if PACKETVER >= 20081217 +packetLen(0x034f, 2) +#elif PACKETVER >= 20081126 +packetLen(0x034f, -1) +#elif PACKETVER >= 20081119 +packetLen(0x034f, 14) +#elif PACKETVER >= 20081112 +packetLen(0x034f, 2) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x034f, -1) +#elif PACKETVER >= 20081001 +packetLen(0x034f, 67) +#elif PACKETVER >= 20080924 +packetLen(0x034f, 2) +#elif PACKETVER >= 20080903 +packetLen(0x034f, -1) +#elif PACKETVER >= 20080827 +packetLen(0x034f, 35) +#elif PACKETVER >= 20080820 +packetLen(0x034f, -1) +#elif PACKETVER >= 20080813 +packetLen(0x034f, 10) +#elif PACKETVER >= 20080715 +packetLen(0x034f, -1) +#elif PACKETVER >= 20080708 +packetLen(0x034f, 20) +#elif PACKETVER >= 20080701 +packetLen(0x034f, 6) +#elif PACKETVER >= 20080624 +packetLen(0x034f, 71) +#elif PACKETVER >= 20080617 +packetLen(0x034f, -1) +#elif PACKETVER >= 20080610 +packetLen(0x034f, 2) +#elif PACKETVER >= 20080603 +packetLen(0x034f, 8) +#elif PACKETVER >= 20080528 +packetLen(0x034f, 27) +#elif PACKETVER >= 20080520 +packetLen(0x034f, -1) +#elif PACKETVER >= 20080513 +packetLen(0x034f, 8) +#elif PACKETVER >= 20080429 +packetLen(0x034f, 4) +#elif PACKETVER >= 20080422 +packetLen(0x034f, 18) +#elif PACKETVER >= 20080415 +packetLen(0x034f, 11) +#elif PACKETVER >= 20080408 +packetLen(0x034f, 2) +#endif + +// Packet: 0x0350 +#if PACKETVER >= 20081203 +packetLen(0x0350, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0350, 4) +#elif PACKETVER >= 20081119 +packetLen(0x0350, 11) +#elif PACKETVER >= 20081112 +packetLen(0x0350, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0350, 2) +#elif PACKETVER >= 20081029 +packetLen(0x0350, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0350, 15) +#elif PACKETVER >= 20081015 +packetLen(0x0350, 3) +#elif PACKETVER >= 20081008 +packetLen(0x0350, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0350, 6) +#elif PACKETVER >= 20080910 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0350, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0350, 30) +#elif PACKETVER >= 20080806 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0350, 66) +#elif PACKETVER >= 20080722 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0350, 43) +#elif PACKETVER >= 20080708 +packetLen(0x0350, 13) +#elif PACKETVER >= 20080624 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0350, 4) +#elif PACKETVER >= 20080610 +packetLen(0x0350, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0350, 60) +#elif PACKETVER >= 20080520 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0350, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0350, 6) +#elif PACKETVER >= 20080429 +packetLen(0x0350, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0350, 6) +#elif PACKETVER >= 20080415 +packetLen(0x0350, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0350, -1) +#endif + +// Packet: 0x0351 +#if PACKETVER >= 20081217 +packetLen(0x0351, 30) +#elif PACKETVER >= 20081203 +packetLen(0x0351, 6) +#elif PACKETVER >= 20081112 +packetLen(0x0351, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0351, 33) +#elif PACKETVER >= 20081029 +packetLen(0x0351, 66) +#elif PACKETVER >= 20081022 +packetLen(0x0351, 11) +#elif PACKETVER >= 20081015 +packetLen(0x0351, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0351, 27) +#elif PACKETVER >= 20081001 +packetLen(0x0351, 23) +#elif PACKETVER >= 20080917 +packetLen(0x0351, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0351, 10) +#elif PACKETVER >= 20080903 +packetLen(0x0351, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0351, 5) +#elif PACKETVER >= 20080813 +packetLen(0x0351, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0351, 4) +#elif PACKETVER >= 20080730 +packetLen(0x0351, 10) +#elif PACKETVER >= 20080722 +packetLen(0x0351, 5) +#elif PACKETVER >= 20080715 +packetLen(0x0351, 16) +#elif PACKETVER >= 20080708 +packetLen(0x0351, 3) +#elif PACKETVER >= 20080701 +packetLen(0x0351, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0351, 282) +#elif PACKETVER >= 20080617 +packetLen(0x0351, 30) +#elif PACKETVER >= 20080610 +packetLen(0x0351, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0351, 20) +#elif PACKETVER >= 20080513 +packetLen(0x0351, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0351, 6) +#elif PACKETVER >= 20080422 +packetLen(0x0351, 5) +#elif PACKETVER >= 20080415 +packetLen(0x0351, 15) +#elif PACKETVER >= 20080408 +packetLen(0x0351, -1) +#endif + +// Packet: 0x0352 +#if PACKETVER >= 20081217 +packetLen(0x0352, 14) +#elif PACKETVER >= 20081203 +packetLen(0x0352, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0352, 5) +#elif PACKETVER >= 20081119 +packetLen(0x0352, 28) +#elif PACKETVER >= 20081112 +packetLen(0x0352, 22) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0352, 66) +#elif PACKETVER >= 20081029 +packetLen(0x0352, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0352, 17) +#elif PACKETVER >= 20081001 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0352, 12) +#elif PACKETVER >= 20080917 +packetLen(0x0352, 10) +#elif PACKETVER >= 20080910 +packetLen(0x0352, 3) +#elif PACKETVER >= 20080820 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0352, 10) +#elif PACKETVER >= 20080806 +packetLen(0x0352, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0352, 9) +#elif PACKETVER >= 20080715 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0352, 2) +#elif PACKETVER >= 20080701 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0352, 2) +#elif PACKETVER >= 20080617 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0352, 60) +#elif PACKETVER >= 20080603 +packetLen(0x0352, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0352, 54) +#elif PACKETVER >= 20080520 +packetLen(0x0352, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0352, 9) +#elif PACKETVER >= 20080507 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0352, 3) +#elif PACKETVER >= 20080422 +packetLen(0x0352, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0352, 8) +#endif + +// Packet: 0x0353 +#if PACKETVER >= 20081217 +packetLen(0x0353, 6) +#elif PACKETVER >= 20081126 +packetLen(0x0353, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0353, 30) +#elif PACKETVER >= 20081112 +packetLen(0x0353, 29) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0353, 26) +#elif PACKETVER >= 20081029 +packetLen(0x0353, 14) +#elif PACKETVER >= 20081022 +packetLen(0x0353, 2) +#elif PACKETVER >= 20081015 +packetLen(0x0353, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0353, 30) +#elif PACKETVER >= 20080924 +packetLen(0x0353, 10) +#elif PACKETVER >= 20080917 +packetLen(0x0353, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0353, 4) +#elif PACKETVER >= 20080820 +packetLen(0x0353, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0353, 10) +#elif PACKETVER >= 20080806 +packetLen(0x0353, 4) +#elif PACKETVER >= 20080730 +packetLen(0x0353, 29) +#elif PACKETVER >= 20080722 +packetLen(0x0353, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0353, 7) +#elif PACKETVER >= 20080701 +packetLen(0x0353, 6) +#elif PACKETVER >= 20080610 +packetLen(0x0353, -1) +#elif PACKETVER >= 20080603 +packetLen(0x0353, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0353, 30) +#elif PACKETVER >= 20080520 +packetLen(0x0353, 4) +#elif PACKETVER >= 20080513 +packetLen(0x0353, 2) +#elif PACKETVER >= 20080507 +packetLen(0x0353, 34) +#elif PACKETVER >= 20080429 +packetLen(0x0353, 9) +#elif PACKETVER >= 20080422 +packetLen(0x0353, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0353, 4) +#elif PACKETVER >= 20080408 +packetLen(0x0353, -1) +#endif + +// Packet: 0x0354 +#if PACKETVER >= 20081217 +packetLen(0x0354, 19) +#elif PACKETVER >= 20081126 +packetLen(0x0354, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0354, 2) +#elif PACKETVER >= 20081112 +packetLen(0x0354, 7) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x0354, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0354, 6) +#elif PACKETVER >= 20080924 +packetLen(0x0354, 36) +#elif PACKETVER >= 20080910 +packetLen(0x0354, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0354, 2) +#elif PACKETVER >= 20080827 +packetLen(0x0354, 4) +#elif PACKETVER >= 20080820 +packetLen(0x0354, 2) +#elif PACKETVER >= 20080708 +packetLen(0x0354, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0354, 23) +#elif PACKETVER >= 20080624 +packetLen(0x0354, 2) +#elif PACKETVER >= 20080617 +packetLen(0x0354, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0354, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0354, 22) +#elif PACKETVER >= 20080528 +packetLen(0x0354, 10) +#elif PACKETVER >= 20080520 +packetLen(0x0354, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0354, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0354, 6) +#elif PACKETVER >= 20080429 +packetLen(0x0354, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0354, 182) +#elif PACKETVER >= 20080415 +packetLen(0x0354, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0354, 3) +#endif + +// Packet: 0x0355 +#if PACKETVER >= 20081217 +packetLen(0x0355, 16) +#elif PACKETVER >= 20081203 +packetLen(0x0355, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0355, 26) +#elif PACKETVER >= 20081119 +packetLen(0x0355, 2) +#elif PACKETVER >= 20081112 +packetLen(0x0355, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0355, 60) +#elif PACKETVER >= 20081029 +packetLen(0x0355, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0355, 20) +#elif PACKETVER >= 20081015 +packetLen(0x0355, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0355, 54) +#elif PACKETVER >= 20080917 +packetLen(0x0355, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0355, 53) +#elif PACKETVER >= 20080903 +packetLen(0x0355, 3) +#elif PACKETVER >= 20080827 +packetLen(0x0355, 10) +#elif PACKETVER >= 20080730 +packetLen(0x0355, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0355, 26) +#elif PACKETVER >= 20080715 +packetLen(0x0355, 7) +#elif PACKETVER >= 20080708 +packetLen(0x0355, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0355, 58) +#elif PACKETVER >= 20080624 +packetLen(0x0355, 30) +#elif PACKETVER >= 20080617 +packetLen(0x0355, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0355, 7) +#elif PACKETVER >= 20080603 +packetLen(0x0355, 55) +#elif PACKETVER >= 20080528 +packetLen(0x0355, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0355, 6) +#elif PACKETVER >= 20080513 +packetLen(0x0355, 33) +#elif PACKETVER >= 20080507 +packetLen(0x0355, 10) +#elif PACKETVER >= 20080429 +packetLen(0x0355, 36) +#elif PACKETVER >= 20080422 +packetLen(0x0355, 39) +#elif PACKETVER >= 20080415 +packetLen(0x0355, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0355, 2) +#endif + +// Packet: 0x0356 +#if PACKETVER >= 20081119 +packetLen(0x0356, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0356, 4) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0356, 30) +#elif PACKETVER >= 20081029 +packetLen(0x0356, 11) +#elif PACKETVER >= 20081008 +packetLen(0x0356, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0356, 3) +#elif PACKETVER >= 20080924 +packetLen(0x0356, 26) +#elif PACKETVER >= 20080827 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0356, 4) +#elif PACKETVER >= 20080722 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0356, 8) +#elif PACKETVER >= 20080617 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0356, 29) +#elif PACKETVER >= 20080603 +packetLen(0x0356, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0356, 27) +#elif PACKETVER >= 20080513 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080507 +packetLen(0x0356, 2) +#elif PACKETVER >= 20080429 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0356, 10) +#elif PACKETVER >= 20080415 +packetLen(0x0356, 54) +#elif PACKETVER >= 20080408 +packetLen(0x0356, 57) +#endif + +// Packet: 0x0357 +#if PACKETVER >= 20081126 +packetLen(0x0357, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0357, 54) +#elif PACKETVER >= 20081112 +packetLen(0x0357, 2) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0357, 7) +#elif PACKETVER >= 20081029 +packetLen(0x0357, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0357, 23) +#elif PACKETVER >= 20081015 +packetLen(0x0357, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0357, 36) +#elif PACKETVER >= 20081001 +packetLen(0x0357, 6) +#elif PACKETVER >= 20080924 +packetLen(0x0357, 67) +#elif PACKETVER >= 20080917 +packetLen(0x0357, 3) +#elif PACKETVER >= 20080910 +packetLen(0x0357, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0357, 23) +#elif PACKETVER >= 20080827 +packetLen(0x0357, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0357, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0357, 6) +#elif PACKETVER >= 20080715 +packetLen(0x0357, 282) +#elif PACKETVER >= 20080708 +packetLen(0x0357, 10) +#elif PACKETVER >= 20080617 +packetLen(0x0357, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0357, 3) +#elif PACKETVER >= 20080603 +packetLen(0x0357, 15) +#elif PACKETVER >= 20080528 +packetLen(0x0357, -1) +#elif PACKETVER >= 20080520 +packetLen(0x0357, 21) +#elif PACKETVER >= 20080513 +packetLen(0x0357, 31) +#elif PACKETVER >= 20080507 +packetLen(0x0357, 22) +#elif PACKETVER >= 20080429 +packetLen(0x0357, -1) +#elif PACKETVER >= 20080422 +packetLen(0x0357, 21) +#elif PACKETVER >= 20080415 +packetLen(0x0357, 10) +#elif PACKETVER >= 20080408 +packetLen(0x0357, 33) +#endif + +// Packet: 0x0358 +#if PACKETVER >= 20081119 +packetLen(0x0358, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0358, 13) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0358, 27) +#elif PACKETVER >= 20080924 +packetLen(0x0358, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0358, 4) +#elif PACKETVER >= 20080903 +packetLen(0x0358, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0358, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0358, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0358, 20) +#elif PACKETVER >= 20080624 +packetLen(0x0358, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0358, 14) +#elif PACKETVER >= 20080610 +packetLen(0x0358, 5) +#elif PACKETVER >= 20080603 +packetLen(0x0358, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0358, 14) +#elif PACKETVER >= 20080513 +packetLen(0x0358, 6) +#elif PACKETVER >= 20080507 +packetLen(0x0358, -1) +#elif PACKETVER >= 20080429 +packetLen(0x0358, 10) +#elif PACKETVER >= 20080422 +packetLen(0x0358, 3) +#elif PACKETVER >= 20080415 +packetLen(0x0358, -1) +#elif PACKETVER >= 20080408 +packetLen(0x0358, 10) +#endif + +// Packet: 0x0359 +#if PACKETVER >= 20081105 +packetLen(0x0359, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0359, 16) +#elif PACKETVER >= 20081022 +packetLen(0x0359, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0359, 2) +#elif PACKETVER >= 20081001 +packetLen(0x0359, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0359, 11) +#elif PACKETVER >= 20080917 +packetLen(0x0359, 8) +#elif PACKETVER >= 20080820 +packetLen(0x0359, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0359, 6) +#elif PACKETVER >= 20080806 +packetLen(0x0359, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0359, 6) +#elif PACKETVER >= 20080722 +packetLen(0x0359, 3) +#elif PACKETVER >= 20080715 +packetLen(0x0359, 10) +#elif PACKETVER >= 20080701 +packetLen(0x0359, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0359, 102) +#elif PACKETVER >= 20080617 +packetLen(0x0359, 2) +#elif PACKETVER >= 20080610 +packetLen(0x0359, 6) +#elif PACKETVER >= 20080603 +packetLen(0x0359, 16) +#elif PACKETVER >= 20080520 +packetLen(0x0359, -1) +#elif PACKETVER >= 20080513 +packetLen(0x0359, 3) +#elif PACKETVER >= 20080507 +packetLen(0x0359, 55) +#elif PACKETVER >= 20080429 +packetLen(0x0359, 30) +#elif PACKETVER >= 20080422 +packetLen(0x0359, -1) +#elif PACKETVER >= 20080415 +packetLen(0x0359, 3) +#elif PACKETVER >= 20080408 +packetLen(0x0359, -1) +#endif + +// Packet: 0x035a +#if PACKETVER >= 20081217 +packetLen(0x035a, 12) +#elif PACKETVER >= 20081119 +packetLen(0x035a, -1) +#elif PACKETVER >= 20081112 +packetLen(0x035a, 20) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x035a, -1) +#elif PACKETVER >= 20081015 +packetLen(0x035a, 6) +#elif PACKETVER >= 20080924 +packetLen(0x035a, -1) +#elif PACKETVER >= 20080917 +packetLen(0x035a, 53) +#elif PACKETVER >= 20080910 +packetLen(0x035a, 2) +#elif PACKETVER >= 20080903 +packetLen(0x035a, 8) +#elif PACKETVER >= 20080820 +packetLen(0x035a, -1) +#elif PACKETVER >= 20080813 +packetLen(0x035a, 6) +#elif PACKETVER >= 20080806 +packetLen(0x035a, 55) +#elif PACKETVER >= 20080730 +packetLen(0x035a, 6) +#elif PACKETVER >= 20080722 +packetLen(0x035a, 4) +#elif PACKETVER >= 20080715 +packetLen(0x035a, 8) +#elif PACKETVER >= 20080624 +packetLen(0x035a, -1) +#elif PACKETVER >= 20080617 +packetLen(0x035a, 28) +#elif PACKETVER >= 20080603 +packetLen(0x035a, 3) +#elif PACKETVER >= 20080528 +packetLen(0x035a, 4) +#elif PACKETVER >= 20080520 +packetLen(0x035a, 31) +#elif PACKETVER >= 20080513 +packetLen(0x035a, -1) +#elif PACKETVER >= 20080507 +packetLen(0x035a, 282) +#elif PACKETVER >= 20080429 +packetLen(0x035a, 8) +#elif PACKETVER >= 20080422 +packetLen(0x035a, 79) +#elif PACKETVER >= 20080415 +packetLen(0x035a, 3) +#elif PACKETVER >= 20080408 +packetLen(0x035a, -1) +#endif + +// Packet: 0x035b +#if PACKETVER >= 20081203 +packetLen(0x035b, -1) +#elif PACKETVER >= 20081126 +packetLen(0x035b, 3) +#elif PACKETVER >= 20081119 +packetLen(0x035b, 6) +#elif PACKETVER >= 20081112 +packetLen(0x035b, -1) +#elif PACKETVER >= 20081105 +packetLen(0x035b, 31) +#elif PACKETVER >= 20081022 +packetLen(0x035b, -1) +#elif PACKETVER >= 20081015 +packetLen(0x035b, 24) +#elif PACKETVER >= 20081001 +packetLen(0x035b, -1) +#elif PACKETVER >= 20080924 +packetLen(0x035b, 29) +#elif PACKETVER >= 20080910 +packetLen(0x035b, -1) +#elif PACKETVER >= 20080903 +packetLen(0x035b, 3) +#elif PACKETVER >= 20080827 +packetLen(0x035b, 19) +#elif PACKETVER >= 20080813 +packetLen(0x035b, -1) +#elif PACKETVER >= 20080806 +packetLen(0x035b, 11) +#elif PACKETVER >= 20080730 +packetLen(0x035b, 4) +#elif PACKETVER >= 20080715 +packetLen(0x035b, -1) +#elif PACKETVER >= 20080708 +packetLen(0x035b, 3) +#elif PACKETVER >= 20080701 +packetLen(0x035b, 6) +#elif PACKETVER >= 20080624 +packetLen(0x035b, 30) +#elif PACKETVER >= 20080617 +packetLen(0x035b, 29) +#elif PACKETVER >= 20080610 +packetLen(0x035b, 6) +#elif PACKETVER >= 20080603 +packetLen(0x035b, 14) +#elif PACKETVER >= 20080528 +packetLen(0x035b, 16) +#elif PACKETVER >= 20080520 +packetLen(0x035b, 6) +#elif PACKETVER >= 20080513 +packetLen(0x035b, 11) +#elif PACKETVER >= 20080507 +packetLen(0x035b, 9) +#elif PACKETVER >= 20080429 +packetLen(0x035b, 5) +#elif PACKETVER >= 20080415 +packetLen(0x035b, -1) +#elif PACKETVER >= 20080408 +packetLen(0x035b, 3) +#endif + +// Packet: 0x035c +#if PACKETVER >= 20080520 +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST +#endif + +// Packet: 0x035d +#if PACKETVER >= 20080521 +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST +#elif PACKETVER >= 20080520 +packetLen(0x035d, 10) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST +#endif + +// Packet: 0x035e +#if PACKETVER >= 20080521 +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW +#elif PACKETVER >= 20080520 +packetLen(0x035e, -1) // CZ_CLOSE_WINDOW +#endif + +// Packet: 0x035f +#if PACKETVER >= 20081126 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20081119 +packetLen(0x035f, 59) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20081112 +packetLen(0x035f, 186) // CZ_REQUEST_MOVE2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x035f, 30) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20081029 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20081008 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20081001 +packetLen(0x035f, 30) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080924 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080917 +packetLen(0x035f, 3) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080910 +packetLen(0x035f, 8) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080730 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080722 +packetLen(0x035f, 282) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080715 +packetLen(0x035f, 9) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080708 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080624 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080617 +packetLen(0x035f, 4) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080528 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20081217 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20081203 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20081112 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20081105 +packetLen(0x0360, 14) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20081029 +packetLen(0x0360, 28) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20081022 +packetLen(0x0360, 26) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20081001 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080924 +packetLen(0x0360, 16) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080917 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080910 +packetLen(0x0360, 8) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080903 +packetLen(0x0360, 28) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080827 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080820 +packetLen(0x0360, 12) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080806 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080730 +packetLen(0x0360, 21) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080722 +packetLen(0x0360, 4) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080715 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080708 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080701 +packetLen(0x0360, 10) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080624 +packetLen(0x0360, 11) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080528 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20081217 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20081203 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20081126 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20081119 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20081112 +packetLen(0x0361, 9) // CZ_CHANGE_DIRECTION2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20081029 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20081022 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20081015 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20081008 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080910 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080903 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080827 +packetLen(0x0361, 60) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080813 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080806 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080730 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080722 +packetLen(0x0361, 81) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080708 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080701 +packetLen(0x0361, 27) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080624 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080617 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080528 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20081112 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20081105 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20081029 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20081022 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20081008 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20081001 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080903 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080827 +packetLen(0x0362, 11) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080820 +packetLen(0x0362, 34) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080813 +packetLen(0x0362, 3) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080806 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080730 +packetLen(0x0362, 7) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080722 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080715 +packetLen(0x0362, 66) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080708 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080701 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080624 +packetLen(0x0362, 4) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20080528 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20081203 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20081126 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20081112 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20081015 +packetLen(0x0363, 17) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20081008 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20081001 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080924 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080917 +packetLen(0x0363, 13) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080910 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080903 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080813 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080806 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080730 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080715 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080708 +packetLen(0x0363, 4) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080701 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080624 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080617 +packetLen(0x0363, 58) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20080528 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20081203 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20081126 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20081119 +packetLen(0x0364, 4) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20081112 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20081029 +packetLen(0x0364, 29) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20081022 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20081015 +packetLen(0x0364, 11) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20081008 +packetLen(0x0364, 22) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20081001 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080924 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080917 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080910 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080903 +packetLen(0x0364, 182) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080708 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080701 +packetLen(0x0364, 43) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080624 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080617 +packetLen(0x0364, 15) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080528 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20081217 +packetLen(0x0365, 4) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20081203 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20081126 +packetLen(0x0365, 4) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20081119 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20081112 +packetLen(0x0365, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20081029 +packetLen(0x0365, 9) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20081001 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080924 +packetLen(0x0365, 86) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080917 +packetLen(0x0365, 13) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080910 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080903 +packetLen(0x0365, 7) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080820 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080813 +packetLen(0x0365, 30) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080806 +packetLen(0x0365, 79) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080708 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080701 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080528 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20081105 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20081029 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20081015 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20081008 +packetLen(0x0366, 14) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20081001 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080924 +packetLen(0x0366, 14) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080910 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080903 +packetLen(0x0366, 4) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080827 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080820 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080715 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080708 +packetLen(0x0366, 71) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080701 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080624 +packetLen(0x0366, 67) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20080528 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20081217 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20081105 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20081029 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20081022 +packetLen(0x0367, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20081015 +packetLen(0x0367, 58) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20081001 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080924 +packetLen(0x0367, 11) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080917 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080910 +packetLen(0x0367, 30) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080827 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080820 +packetLen(0x0367, 282) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080813 +packetLen(0x0367, 59) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080708 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080624 +packetLen(0x0367, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080617 +packetLen(0x0367, 29) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20080528 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20081217 +packetLen(0x0368, 4) // CZ_REQNAME2 +#elif PACKETVER >= 20081126 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20081119 +packetLen(0x0368, 34) // CZ_REQNAME2 +#elif PACKETVER >= 20081105 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20081029 +packetLen(0x0368, 8) // CZ_REQNAME2 +#elif PACKETVER >= 20081022 +packetLen(0x0368, 10) // CZ_REQNAME2 +#elif PACKETVER >= 20081008 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20081001 +packetLen(0x0368, 3) // CZ_REQNAME2 +#elif PACKETVER >= 20080924 +packetLen(0x0368, 13) // CZ_REQNAME2 +#elif PACKETVER >= 20080917 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20080910 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20080903 +packetLen(0x0368, 43) // CZ_REQNAME2 +#elif PACKETVER >= 20080827 +packetLen(0x0368, 21) // CZ_REQNAME2 +#elif PACKETVER >= 20080820 +packetLen(0x0368, 4) // CZ_REQNAME2 +#elif PACKETVER >= 20080806 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20080730 +packetLen(0x0368, 16) // CZ_REQNAME2 +#elif PACKETVER >= 20080722 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20080715 +packetLen(0x0368, 3) // CZ_REQNAME2 +#elif PACKETVER >= 20080528 +packetLen(0x0368, -1) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20081126 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20081119 +packetLen(0x0369, 10) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20081112 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20081022 +packetLen(0x0369, 53) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080924 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080917 +packetLen(0x0369, 15) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080910 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080903 +packetLen(0x0369, 33) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080827 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080813 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080806 +packetLen(0x0369, 30) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080722 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080715 +packetLen(0x0369, 29) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080708 +packetLen(0x0369, 39) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080701 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080624 +packetLen(0x0369, 28) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080528 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x036a +#if PACKETVER >= 20081217 +packetLen(0x036a, 6) +#elif PACKETVER >= 20081119 +packetLen(0x036a, -1) +#elif PACKETVER >= 20081112 +packetLen(0x036a, 2) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x036a, -1) +#elif PACKETVER >= 20081022 +packetLen(0x036a, 32) +#elif PACKETVER >= 20081001 +packetLen(0x036a, -1) +#elif PACKETVER >= 20080924 +packetLen(0x036a, 26) +#elif PACKETVER >= 20080917 +packetLen(0x036a, -1) +#elif PACKETVER >= 20080910 +packetLen(0x036a, 68) +#elif PACKETVER >= 20080903 +packetLen(0x036a, 54) +#elif PACKETVER >= 20080827 +packetLen(0x036a, -1) +#elif PACKETVER >= 20080820 +packetLen(0x036a, 12) +#elif PACKETVER >= 20080813 +packetLen(0x036a, 30) +#elif PACKETVER >= 20080730 +packetLen(0x036a, -1) +#elif PACKETVER >= 20080722 +packetLen(0x036a, 26) +#elif PACKETVER >= 20080715 +packetLen(0x036a, -1) +#elif PACKETVER >= 20080708 +packetLen(0x036a, 2) +#elif PACKETVER >= 20080701 +packetLen(0x036a, -1) +#elif PACKETVER >= 20080624 +packetLen(0x036a, 2) +#elif PACKETVER >= 20080528 +packetLen(0x036a, -1) +#endif + +// Packet: 0x036b +#if PACKETVER >= 20081217 +packetLen(0x036b, -1) +#elif PACKETVER >= 20081203 +packetLen(0x036b, 7) +#elif PACKETVER >= 20081112 +packetLen(0x036b, -1) +#elif PACKETVER >= 20081105 +packetLen(0x036b, 97) +#elif PACKETVER >= 20081029 +packetLen(0x036b, 8) +#elif PACKETVER >= 20081015 +packetLen(0x036b, -1) +#elif PACKETVER >= 20081008 +packetLen(0x036b, 10) +#elif PACKETVER >= 20080924 +packetLen(0x036b, -1) +#elif PACKETVER >= 20080917 +packetLen(0x036b, 8) +#elif PACKETVER >= 20080910 +packetLen(0x036b, 32) +#elif PACKETVER >= 20080903 +packetLen(0x036b, 4) +#elif PACKETVER >= 20080708 +packetLen(0x036b, -1) +#elif PACKETVER >= 20080701 +packetLen(0x036b, 6) +#elif PACKETVER >= 20080624 +packetLen(0x036b, -1) +#elif PACKETVER >= 20080617 +packetLen(0x036b, 28) +#elif PACKETVER >= 20080528 +packetLen(0x036b, -1) +#endif + +// Packet: 0x036c +#if PACKETVER >= 20081217 +packetLen(0x036c, 5) +#elif PACKETVER >= 20081119 +packetLen(0x036c, -1) +#elif PACKETVER >= 20081112 +packetLen(0x036c, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x036c, 4) +#elif PACKETVER >= 20081029 +packetLen(0x036c, 10) +#elif PACKETVER >= 20081022 +packetLen(0x036c, 35) +#elif PACKETVER >= 20081015 +packetLen(0x036c, 42) +#elif PACKETVER >= 20081001 +packetLen(0x036c, -1) +#elif PACKETVER >= 20080924 +packetLen(0x036c, 6) +#elif PACKETVER >= 20080917 +packetLen(0x036c, -1) +#elif PACKETVER >= 20080910 +packetLen(0x036c, 8) +#elif PACKETVER >= 20080903 +packetLen(0x036c, 4) +#elif PACKETVER >= 20080827 +packetLen(0x036c, 11) +#elif PACKETVER >= 20080820 +packetLen(0x036c, 8) +#elif PACKETVER >= 20080813 +packetLen(0x036c, 32) +#elif PACKETVER >= 20080806 +packetLen(0x036c, 6) +#elif PACKETVER >= 20080722 +packetLen(0x036c, -1) +#elif PACKETVER >= 20080715 +packetLen(0x036c, 9) +#elif PACKETVER >= 20080708 +packetLen(0x036c, -1) +#elif PACKETVER >= 20080701 +packetLen(0x036c, 4) +#elif PACKETVER >= 20080624 +packetLen(0x036c, 6) +#elif PACKETVER >= 20080528 +packetLen(0x036c, -1) +#endif + +// Packet: 0x036d +#if PACKETVER >= 20081217 +packetLen(0x036d, 2) +#elif PACKETVER >= 20081112 +packetLen(0x036d, -1) +#elif PACKETVER >= 20081105 +packetLen(0x036d, 6) +#elif PACKETVER >= 20081022 +packetLen(0x036d, -1) +#elif PACKETVER >= 20081015 +packetLen(0x036d, 16) +#elif PACKETVER >= 20081001 +packetLen(0x036d, -1) +#elif PACKETVER >= 20080924 +packetLen(0x036d, 60) +#elif PACKETVER >= 20080917 +packetLen(0x036d, -1) +#elif PACKETVER >= 20080910 +packetLen(0x036d, 2) +#elif PACKETVER >= 20080903 +packetLen(0x036d, -1) +#elif PACKETVER >= 20080827 +packetLen(0x036d, 9) +#elif PACKETVER >= 20080820 +packetLen(0x036d, 33) +#elif PACKETVER >= 20080813 +packetLen(0x036d, 6) +#elif PACKETVER >= 20080806 +packetLen(0x036d, 20) +#elif PACKETVER >= 20080730 +packetLen(0x036d, 10) +#elif PACKETVER >= 20080708 +packetLen(0x036d, -1) +#elif PACKETVER >= 20080701 +packetLen(0x036d, 5) +#elif PACKETVER >= 20080624 +packetLen(0x036d, 21) +#elif PACKETVER >= 20080617 +packetLen(0x036d, 6) +#elif PACKETVER >= 20080528 +packetLen(0x036d, -1) +#endif + +// Packet: 0x036e +#if PACKETVER >= 20081217 +packetLen(0x036e, -1) +#elif PACKETVER >= 20081203 +packetLen(0x036e, 2) +#elif PACKETVER >= 20081119 +packetLen(0x036e, -1) +#elif PACKETVER >= 20081112 +packetLen(0x036e, 53) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x036e, -1) +#elif PACKETVER >= 20081015 +packetLen(0x036e, 31) +#elif PACKETVER >= 20080917 +packetLen(0x036e, -1) +#elif PACKETVER >= 20080910 +packetLen(0x036e, 2) +#elif PACKETVER >= 20080903 +packetLen(0x036e, 6) +#elif PACKETVER >= 20080813 +packetLen(0x036e, -1) +#elif PACKETVER >= 20080806 +packetLen(0x036e, 2) +#elif PACKETVER >= 20080722 +packetLen(0x036e, -1) +#elif PACKETVER >= 20080715 +packetLen(0x036e, 6) +#elif PACKETVER >= 20080624 +packetLen(0x036e, -1) +#elif PACKETVER >= 20080617 +packetLen(0x036e, 3) +#elif PACKETVER >= 20080528 +packetLen(0x036e, -1) +#endif + +// Packet: 0x036f +#if PACKETVER >= 20081217 +packetLen(0x036f, 28) +#elif PACKETVER >= 20081203 +packetLen(0x036f, -1) +#elif PACKETVER >= 20081126 +packetLen(0x036f, 8) +#elif PACKETVER >= 20081119 +packetLen(0x036f, -1) +#elif PACKETVER >= 20081112 +packetLen(0x036f, 4) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x036f, 6) +#elif PACKETVER >= 20081022 +packetLen(0x036f, -1) +#elif PACKETVER >= 20081015 +packetLen(0x036f, 14) +#elif PACKETVER >= 20081008 +packetLen(0x036f, 20) +#elif PACKETVER >= 20081001 +packetLen(0x036f, 7) +#elif PACKETVER >= 20080910 +packetLen(0x036f, -1) +#elif PACKETVER >= 20080903 +packetLen(0x036f, 6) +#elif PACKETVER >= 20080813 +packetLen(0x036f, -1) +#elif PACKETVER >= 20080806 +packetLen(0x036f, 5) +#elif PACKETVER >= 20080730 +packetLen(0x036f, 30) +#elif PACKETVER >= 20080722 +packetLen(0x036f, 114) +#elif PACKETVER >= 20080708 +packetLen(0x036f, -1) +#elif PACKETVER >= 20080701 +packetLen(0x036f, 3) +#elif PACKETVER >= 20080624 +packetLen(0x036f, 8) +#elif PACKETVER >= 20080528 +packetLen(0x036f, -1) +#endif + +// Packet: 0x0370 +#if PACKETVER >= 20081217 +packetLen(0x0370, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0370, 4) +#elif PACKETVER >= 20081126 +packetLen(0x0370, 11) +#elif PACKETVER >= 20081119 +packetLen(0x0370, 19) +#elif PACKETVER >= 20081112 +packetLen(0x0370, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0370, 8) +#elif PACKETVER >= 20081029 +packetLen(0x0370, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0370, 8) +#elif PACKETVER >= 20081001 +packetLen(0x0370, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0370, 31) +#elif PACKETVER >= 20080910 +packetLen(0x0370, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0370, 16) +#elif PACKETVER >= 20080806 +packetLen(0x0370, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0370, 2) +#elif PACKETVER >= 20080708 +packetLen(0x0370, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0370, 4) +#elif PACKETVER >= 20080624 +packetLen(0x0370, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0370, 10) +#elif PACKETVER >= 20080528 +packetLen(0x0370, -1) +#endif + +// Packet: 0x0371 +#if PACKETVER >= 20081203 +packetLen(0x0371, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0371, 282) +#elif PACKETVER >= 20081105 +packetLen(0x0371, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0371, 55) +#elif PACKETVER >= 20080924 +packetLen(0x0371, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0371, 6) +#elif PACKETVER >= 20080910 +packetLen(0x0371, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0371, 282) +#elif PACKETVER >= 20080827 +packetLen(0x0371, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0371, 20) +#elif PACKETVER >= 20080813 +packetLen(0x0371, 8) +#elif PACKETVER >= 20080806 +packetLen(0x0371, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0371, 55) +#elif PACKETVER >= 20080715 +packetLen(0x0371, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0371, 14) +#elif PACKETVER >= 20080701 +packetLen(0x0371, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0371, -1) +#endif + +// Packet: 0x0372 +#if PACKETVER >= 20081203 +packetLen(0x0372, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0372, 23) +#elif PACKETVER >= 20081119 +packetLen(0x0372, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0372, 17) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0372, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0372, 6) +#elif PACKETVER >= 20081015 +packetLen(0x0372, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0372, 66) +#elif PACKETVER >= 20080917 +packetLen(0x0372, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0372, 23) +#elif PACKETVER >= 20080903 +packetLen(0x0372, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0372, 10) +#elif PACKETVER >= 20080820 +packetLen(0x0372, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0372, 15) +#elif PACKETVER >= 20080730 +packetLen(0x0372, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0372, 67) +#elif PACKETVER >= 20080715 +packetLen(0x0372, 2) +#elif PACKETVER >= 20080708 +packetLen(0x0372, 34) +#elif PACKETVER >= 20080701 +packetLen(0x0372, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0372, -1) +#endif + +// Packet: 0x0373 +#if PACKETVER >= 20081217 +packetLen(0x0373, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0373, 12) +#elif PACKETVER >= 20081126 +packetLen(0x0373, 4) +#elif PACKETVER >= 20081008 +packetLen(0x0373, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0373, 10) +#elif PACKETVER >= 20080827 +packetLen(0x0373, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0373, 14) +#elif PACKETVER >= 20080722 +packetLen(0x0373, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0373, 33) +#elif PACKETVER >= 20080708 +packetLen(0x0373, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0373, 9) +#elif PACKETVER >= 20080624 +packetLen(0x0373, 86) +#elif PACKETVER >= 20080528 +packetLen(0x0373, -1) +#endif + +// Packet: 0x0374 +#if PACKETVER >= 20081217 +packetLen(0x0374, 36) +#elif PACKETVER >= 20081126 +packetLen(0x0374, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0374, 3) +#elif PACKETVER >= 20081029 +packetLen(0x0374, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0374, 4) +#elif PACKETVER >= 20081001 +packetLen(0x0374, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0374, 68) +#elif PACKETVER >= 20080917 +packetLen(0x0374, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0374, 22) +#elif PACKETVER >= 20080903 +packetLen(0x0374, 14) +#elif PACKETVER >= 20080827 +packetLen(0x0374, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0374, 17) +#elif PACKETVER >= 20080813 +packetLen(0x0374, 3) +#elif PACKETVER >= 20080806 +packetLen(0x0374, 90) +#elif PACKETVER >= 20080730 +packetLen(0x0374, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0374, 8) +#elif PACKETVER >= 20080708 +packetLen(0x0374, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0374, 21) +#elif PACKETVER >= 20080528 +packetLen(0x0374, -1) +#endif + +// Packet: 0x0375 +#if PACKETVER >= 20081217 +packetLen(0x0375, 6) +#elif PACKETVER >= 20081203 +packetLen(0x0375, 29) +#elif PACKETVER >= 20081126 +packetLen(0x0375, 8) +#elif PACKETVER >= 20081119 +packetLen(0x0375, 15) +#elif PACKETVER >= 20081112 +packetLen(0x0375, 5) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0375, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0375, 28) +#elif PACKETVER >= 20081008 +packetLen(0x0375, 4) +#elif PACKETVER >= 20080924 +packetLen(0x0375, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0375, 3) +#elif PACKETVER >= 20080827 +packetLen(0x0375, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0375, 8) +#elif PACKETVER >= 20080813 +packetLen(0x0375, 3) +#elif PACKETVER >= 20080806 +packetLen(0x0375, 6) +#elif PACKETVER >= 20080730 +packetLen(0x0375, 11) +#elif PACKETVER >= 20080722 +packetLen(0x0375, 5) +#elif PACKETVER >= 20080624 +packetLen(0x0375, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0375, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0375, -1) +#endif + +// Packet: 0x0376 +#if PACKETVER >= 20081217 +packetLen(0x0376, 10) +#elif PACKETVER >= 20081119 +packetLen(0x0376, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0376, 26) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081015 +packetLen(0x0376, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0376, 31) +#elif PACKETVER >= 20081001 +packetLen(0x0376, 6) +#elif PACKETVER >= 20080924 +packetLen(0x0376, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0376, 6) +#elif PACKETVER >= 20080910 +packetLen(0x0376, 31) +#elif PACKETVER >= 20080903 +packetLen(0x0376, 6) +#elif PACKETVER >= 20080827 +packetLen(0x0376, 10) +#elif PACKETVER >= 20080820 +packetLen(0x0376, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0376, 3) +#elif PACKETVER >= 20080722 +packetLen(0x0376, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0376, 6) +#elif PACKETVER >= 20080708 +packetLen(0x0376, 12) +#elif PACKETVER >= 20080528 +packetLen(0x0376, -1) +#endif + +// Packet: 0x0377 +#if PACKETVER >= 20081203 +packetLen(0x0377, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0377, 8) +#elif PACKETVER >= 20081119 +packetLen(0x0377, 33) +#elif PACKETVER >= 20081112 +packetLen(0x0377, 5) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0377, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0377, 6) +#elif PACKETVER >= 20080910 +packetLen(0x0377, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0377, 3) +#elif PACKETVER >= 20080827 +packetLen(0x0377, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0377, 60) +#elif PACKETVER >= 20080806 +packetLen(0x0377, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0377, 8) +#elif PACKETVER >= 20080722 +packetLen(0x0377, 3) +#elif PACKETVER >= 20080528 +packetLen(0x0377, -1) +#endif + +// Packet: 0x0378 +#if PACKETVER >= 20081126 +packetLen(0x0378, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0378, 6) +#elif PACKETVER >= 20081112 +packetLen(0x0378, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0378, 7) +#elif PACKETVER >= 20081022 +packetLen(0x0378, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0378, 4) +#elif PACKETVER >= 20081008 +packetLen(0x0378, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0378, 2) +#elif PACKETVER >= 20080924 +packetLen(0x0378, 3) +#elif PACKETVER >= 20080910 +packetLen(0x0378, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0378, 5) +#elif PACKETVER >= 20080827 +packetLen(0x0378, 4) +#elif PACKETVER >= 20080820 +packetLen(0x0378, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0378, 2) +#elif PACKETVER >= 20080806 +packetLen(0x0378, 22) +#elif PACKETVER >= 20080715 +packetLen(0x0378, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0378, 30) +#elif PACKETVER >= 20080528 +packetLen(0x0378, -1) +#endif + +// Packet: 0x0379 +#if PACKETVER >= 20081126 +packetLen(0x0379, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0379, 10) +#elif PACKETVER >= 20081105 +packetLen(0x0379, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0379, 34) +#elif PACKETVER >= 20081015 +packetLen(0x0379, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0379, 28) +#elif PACKETVER >= 20080917 +packetLen(0x0379, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0379, 54) +#elif PACKETVER >= 20080820 +packetLen(0x0379, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0379, 9) +#elif PACKETVER >= 20080806 +packetLen(0x0379, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0379, 6) +#elif PACKETVER >= 20080722 +packetLen(0x0379, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0379, 4) +#elif PACKETVER >= 20080708 +packetLen(0x0379, 6) +#elif PACKETVER >= 20080701 +packetLen(0x0379, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0379, 10) +#elif PACKETVER >= 20080617 +packetLen(0x0379, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0379, -1) +#endif + +// Packet: 0x037a +#if PACKETVER >= 20081217 +packetLen(0x037a, 3) +#elif PACKETVER >= 20081203 +packetLen(0x037a, -1) +#elif PACKETVER >= 20081126 +packetLen(0x037a, 2) +#elif PACKETVER >= 20081119 +packetLen(0x037a, 6) +#elif PACKETVER >= 20081112 +packetLen(0x037a, 71) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x037a, 8) +#elif PACKETVER >= 20081029 +packetLen(0x037a, 15) +#elif PACKETVER >= 20080903 +packetLen(0x037a, -1) +#elif PACKETVER >= 20080827 +packetLen(0x037a, 30) +#elif PACKETVER >= 20080813 +packetLen(0x037a, -1) +#elif PACKETVER >= 20080806 +packetLen(0x037a, 10) +#elif PACKETVER >= 20080730 +packetLen(0x037a, 30) +#elif PACKETVER >= 20080722 +packetLen(0x037a, 4) +#elif PACKETVER >= 20080715 +packetLen(0x037a, -1) +#elif PACKETVER >= 20080708 +packetLen(0x037a, 8) +#elif PACKETVER >= 20080528 +packetLen(0x037a, -1) +#endif + +// Packet: 0x037b +#if PACKETVER >= 20081126 +packetLen(0x037b, -1) +#elif PACKETVER >= 20081119 +packetLen(0x037b, 10) +#elif PACKETVER >= 20081105 +packetLen(0x037b, -1) +#elif PACKETVER >= 20081029 +packetLen(0x037b, 4) +#elif PACKETVER >= 20081022 +packetLen(0x037b, -1) +#elif PACKETVER >= 20081015 +packetLen(0x037b, 6) +#elif PACKETVER >= 20081001 +packetLen(0x037b, -1) +#elif PACKETVER >= 20080924 +packetLen(0x037b, 2) +#elif PACKETVER >= 20080917 +packetLen(0x037b, -1) +#elif PACKETVER >= 20080910 +packetLen(0x037b, 39) +#elif PACKETVER >= 20080903 +packetLen(0x037b, 22) +#elif PACKETVER >= 20080827 +packetLen(0x037b, 26) +#elif PACKETVER >= 20080820 +packetLen(0x037b, 6) +#elif PACKETVER >= 20080813 +packetLen(0x037b, -1) +#elif PACKETVER >= 20080806 +packetLen(0x037b, 10) +#elif PACKETVER >= 20080722 +packetLen(0x037b, 8) +#elif PACKETVER >= 20080715 +packetLen(0x037b, 81) +#elif PACKETVER >= 20080708 +packetLen(0x037b, -1) +#elif PACKETVER >= 20080701 +packetLen(0x037b, 6) +#elif PACKETVER >= 20080624 +packetLen(0x037b, -1) +#elif PACKETVER >= 20080617 +packetLen(0x037b, 11) +#elif PACKETVER >= 20080528 +packetLen(0x037b, -1) +#endif + +// Packet: 0x037c +#if PACKETVER >= 20081217 +packetLen(0x037c, 3) +#elif PACKETVER >= 20081119 +packetLen(0x037c, -1) +#elif PACKETVER >= 20081112 +packetLen(0x037c, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x037c, -1) +#elif PACKETVER >= 20081015 +packetLen(0x037c, 5) +#elif PACKETVER >= 20081001 +packetLen(0x037c, -1) +#elif PACKETVER >= 20080924 +packetLen(0x037c, 6) +#elif PACKETVER >= 20080903 +packetLen(0x037c, -1) +#elif PACKETVER >= 20080827 +packetLen(0x037c, 26) +#elif PACKETVER >= 20080806 +packetLen(0x037c, -1) +#elif PACKETVER >= 20080730 +packetLen(0x037c, 6) +#elif PACKETVER >= 20080715 +packetLen(0x037c, -1) +#elif PACKETVER >= 20080708 +packetLen(0x037c, 4) +#elif PACKETVER >= 20080701 +packetLen(0x037c, -1) +#elif PACKETVER >= 20080624 +packetLen(0x037c, 10) +#elif PACKETVER >= 20080617 +packetLen(0x037c, 53) +#elif PACKETVER >= 20080528 +packetLen(0x037c, -1) +#endif + +// Packet: 0x037d +#if PACKETVER >= 20081126 +packetLen(0x037d, -1) +#elif PACKETVER >= 20081119 +packetLen(0x037d, 27) +#elif PACKETVER >= 20081029 +packetLen(0x037d, -1) +#elif PACKETVER >= 20081022 +packetLen(0x037d, 17) +#elif PACKETVER >= 20081001 +packetLen(0x037d, -1) +#elif PACKETVER >= 20080924 +packetLen(0x037d, 282) +#elif PACKETVER >= 20080903 +packetLen(0x037d, -1) +#elif PACKETVER >= 20080827 +packetLen(0x037d, 4) +#elif PACKETVER >= 20080722 +packetLen(0x037d, -1) +#elif PACKETVER >= 20080715 +packetLen(0x037d, 5) +#elif PACKETVER >= 20080708 +packetLen(0x037d, 60) +#elif PACKETVER >= 20080701 +packetLen(0x037d, 3) +#elif PACKETVER >= 20080528 +packetLen(0x037d, -1) +#endif + +// Packet: 0x037e +#if PACKETVER >= 20081217 +packetLen(0x037e, 4) +#elif PACKETVER >= 20081203 +packetLen(0x037e, -1) +#elif PACKETVER >= 20081126 +packetLen(0x037e, 6) +#elif PACKETVER >= 20081119 +packetLen(0x037e, 3) +#elif PACKETVER >= 20081008 +packetLen(0x037e, -1) +#elif PACKETVER >= 20081001 +packetLen(0x037e, 2) +#elif PACKETVER >= 20080924 +packetLen(0x037e, 26) +#elif PACKETVER >= 20080917 +packetLen(0x037e, 67) +#elif PACKETVER >= 20080910 +packetLen(0x037e, 5) +#elif PACKETVER >= 20080903 +packetLen(0x037e, -1) +#elif PACKETVER >= 20080827 +packetLen(0x037e, 9) +#elif PACKETVER >= 20080820 +packetLen(0x037e, -1) +#elif PACKETVER >= 20080813 +packetLen(0x037e, 114) +#elif PACKETVER >= 20080715 +packetLen(0x037e, -1) +#elif PACKETVER >= 20080708 +packetLen(0x037e, 10) +#elif PACKETVER >= 20080701 +packetLen(0x037e, 8) +#elif PACKETVER >= 20080624 +packetLen(0x037e, 6) +#elif PACKETVER >= 20080528 +packetLen(0x037e, -1) +#endif + +// Packet: 0x037f +#if PACKETVER >= 20081217 +packetLen(0x037f, 22) +#elif PACKETVER >= 20081126 +packetLen(0x037f, -1) +#elif PACKETVER >= 20081119 +packetLen(0x037f, 26) +#elif PACKETVER >= 20081112 +packetLen(0x037f, 10) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x037f, -1) +#elif PACKETVER >= 20081001 +packetLen(0x037f, 68) +#elif PACKETVER >= 20080917 +packetLen(0x037f, -1) +#elif PACKETVER >= 20080910 +packetLen(0x037f, 6) +#elif PACKETVER >= 20080903 +packetLen(0x037f, -1) +#elif PACKETVER >= 20080827 +packetLen(0x037f, 10) +#elif PACKETVER >= 20080820 +packetLen(0x037f, -1) +#elif PACKETVER >= 20080806 +packetLen(0x037f, 10) +#elif PACKETVER >= 20080722 +packetLen(0x037f, -1) +#elif PACKETVER >= 20080715 +packetLen(0x037f, 30) +#elif PACKETVER >= 20080701 +packetLen(0x037f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x037f, 8) +#elif PACKETVER >= 20080528 +packetLen(0x037f, -1) +#endif + +// Packet: 0x0380 +#if PACKETVER >= 20081126 +packetLen(0x0380, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0380, 4) +#elif PACKETVER >= 20081112 +packetLen(0x0380, 7) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0380, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0380, 5) +#elif PACKETVER >= 20081022 +packetLen(0x0380, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0380, 282) +#elif PACKETVER >= 20081008 +packetLen(0x0380, 3) +#elif PACKETVER >= 20080910 +packetLen(0x0380, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0380, 28) +#elif PACKETVER >= 20080827 +packetLen(0x0380, 30) +#elif PACKETVER >= 20080820 +packetLen(0x0380, 2) +#elif PACKETVER >= 20080730 +packetLen(0x0380, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0380, 32) +#elif PACKETVER >= 20080708 +packetLen(0x0380, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0380, 11) +#elif PACKETVER >= 20080528 +packetLen(0x0380, -1) +#endif + +// Packet: 0x0381 +#if PACKETVER >= 20081217 +packetLen(0x0381, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0381, 14) +#elif PACKETVER >= 20081119 +packetLen(0x0381, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0381, 8) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0381, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0381, 53) +#elif PACKETVER >= 20081022 +packetLen(0x0381, 6) +#elif PACKETVER >= 20080924 +packetLen(0x0381, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0381, 10) +#elif PACKETVER >= 20080903 +packetLen(0x0381, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0381, 9) +#elif PACKETVER >= 20080820 +packetLen(0x0381, 35) +#elif PACKETVER >= 20080813 +packetLen(0x0381, 6) +#elif PACKETVER >= 20080806 +packetLen(0x0381, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0381, 28) +#elif PACKETVER >= 20080624 +packetLen(0x0381, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0381, 14) +#elif PACKETVER >= 20080528 +packetLen(0x0381, -1) +#endif + +// Packet: 0x0382 +#if PACKETVER >= 20081217 +packetLen(0x0382, 2) +#elif PACKETVER >= 20081203 +packetLen(0x0382, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0382, 9) +#elif PACKETVER >= 20081119 +packetLen(0x0382, 54) +#elif PACKETVER >= 20081022 +packetLen(0x0382, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0382, 14) +#elif PACKETVER >= 20081008 +packetLen(0x0382, 2) +#elif PACKETVER >= 20080917 +packetLen(0x0382, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0382, 10) +#elif PACKETVER >= 20080903 +packetLen(0x0382, 14) +#elif PACKETVER >= 20080820 +packetLen(0x0382, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0382, 10) +#elif PACKETVER >= 20080730 +packetLen(0x0382, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0382, 14) +#elif PACKETVER >= 20080715 +packetLen(0x0382, 2) +#elif PACKETVER >= 20080708 +packetLen(0x0382, 3) +#elif PACKETVER >= 20080624 +packetLen(0x0382, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0382, 2) +#elif PACKETVER >= 20080528 +packetLen(0x0382, -1) +#endif + +// Packet: 0x0383 +#if PACKETVER >= 20081217 +packetLen(0x0383, 3) +#elif PACKETVER >= 20081029 +packetLen(0x0383, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0383, 114) +#elif PACKETVER >= 20080910 +packetLen(0x0383, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0383, 18) +#elif PACKETVER >= 20080827 +packetLen(0x0383, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0383, 30) +#elif PACKETVER >= 20080813 +packetLen(0x0383, 57) +#elif PACKETVER >= 20080806 +packetLen(0x0383, 4) +#elif PACKETVER >= 20080722 +packetLen(0x0383, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0383, 58) +#elif PACKETVER >= 20080624 +packetLen(0x0383, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0383, 5) +#elif PACKETVER >= 20080528 +packetLen(0x0383, -1) +#endif + +// Packet: 0x0384 +#if PACKETVER >= 20081126 +packetLen(0x0384, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0384, 2) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0384, 7) +#elif PACKETVER >= 20081022 +packetLen(0x0384, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0384, 54) +#elif PACKETVER >= 20081001 +packetLen(0x0384, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0384, 34) +#elif PACKETVER >= 20080917 +packetLen(0x0384, 7) +#elif PACKETVER >= 20080910 +packetLen(0x0384, 2) +#elif PACKETVER >= 20080827 +packetLen(0x0384, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0384, 14) +#elif PACKETVER >= 20080813 +packetLen(0x0384, 9) +#elif PACKETVER >= 20080806 +packetLen(0x0384, 4) +#elif PACKETVER >= 20080722 +packetLen(0x0384, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0384, 11) +#elif PACKETVER >= 20080708 +packetLen(0x0384, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0384, 30) +#elif PACKETVER >= 20080624 +packetLen(0x0384, 8) +#elif PACKETVER >= 20080528 +packetLen(0x0384, -1) +#endif + +// Packet: 0x0385 +#if PACKETVER >= 20081217 +packetLen(0x0385, 2) +#elif PACKETVER >= 20081203 +packetLen(0x0385, 53) +#elif PACKETVER >= 20081029 +packetLen(0x0385, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0385, 39) +#elif PACKETVER >= 20081001 +packetLen(0x0385, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0385, 6) +#elif PACKETVER >= 20080903 +packetLen(0x0385, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0385, 8) +#elif PACKETVER >= 20080820 +packetLen(0x0385, 28) +#elif PACKETVER >= 20080813 +packetLen(0x0385, 2) +#elif PACKETVER >= 20080806 +packetLen(0x0385, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0385, 6) +#elif PACKETVER >= 20080722 +packetLen(0x0385, 2) +#elif PACKETVER >= 20080715 +packetLen(0x0385, 67) +#elif PACKETVER >= 20080708 +packetLen(0x0385, 97) +#elif PACKETVER >= 20080624 +packetLen(0x0385, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0385, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0385, -1) +#endif + +// Packet: 0x0386 +#if PACKETVER >= 20081217 +packetLen(0x0386, 30) +#elif PACKETVER >= 20081203 +packetLen(0x0386, 2) +#elif PACKETVER >= 20081029 +packetLen(0x0386, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0386, 4) +#elif PACKETVER >= 20081015 +packetLen(0x0386, 23) +#elif PACKETVER >= 20081001 +packetLen(0x0386, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0386, 43) +#elif PACKETVER >= 20080917 +packetLen(0x0386, 22) +#elif PACKETVER >= 20080730 +packetLen(0x0386, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0386, 8) +#elif PACKETVER >= 20080715 +packetLen(0x0386, 2) +#elif PACKETVER >= 20080708 +packetLen(0x0386, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0386, 6) +#elif PACKETVER >= 20080624 +packetLen(0x0386, 9) +#elif PACKETVER >= 20080617 +packetLen(0x0386, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0386, -1) +#endif + +// Packet: 0x0387 +#if PACKETVER >= 20081217 +packetLen(0x0387, 71) +#elif PACKETVER >= 20081203 +packetLen(0x0387, 8) +#elif PACKETVER >= 20081126 +packetLen(0x0387, 90) +#elif PACKETVER >= 20081119 +packetLen(0x0387, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0387, 60) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0387, 8) +#elif PACKETVER >= 20081029 +packetLen(0x0387, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0387, 282) +#elif PACKETVER >= 20081015 +packetLen(0x0387, 4) +#elif PACKETVER >= 20081008 +packetLen(0x0387, 8) +#elif PACKETVER >= 20081001 +packetLen(0x0387, 53) +#elif PACKETVER >= 20080924 +packetLen(0x0387, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0387, 28) +#elif PACKETVER >= 20080910 +packetLen(0x0387, 4) +#elif PACKETVER >= 20080903 +packetLen(0x0387, 7) +#elif PACKETVER >= 20080827 +packetLen(0x0387, 114) +#elif PACKETVER >= 20080722 +packetLen(0x0387, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0387, 17) +#elif PACKETVER >= 20080708 +packetLen(0x0387, 4) +#elif PACKETVER >= 20080701 +packetLen(0x0387, 22) +#elif PACKETVER >= 20080624 +packetLen(0x0387, 30) +#elif PACKETVER >= 20080617 +packetLen(0x0387, 21) +#elif PACKETVER >= 20080528 +packetLen(0x0387, -1) +#endif + +// Packet: 0x0388 +#if PACKETVER >= 20081217 +packetLen(0x0388, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0388, 4) +#elif PACKETVER >= 20081112 +packetLen(0x0388, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0388, 13) +#elif PACKETVER >= 20081029 +packetLen(0x0388, 11) +#elif PACKETVER >= 20081022 +packetLen(0x0388, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0388, 11) +#elif PACKETVER >= 20081008 +packetLen(0x0388, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0388, 8) +#elif PACKETVER >= 20080924 +packetLen(0x0388, 29) +#elif PACKETVER >= 20080917 +packetLen(0x0388, 4) +#elif PACKETVER >= 20080910 +packetLen(0x0388, 10) +#elif PACKETVER >= 20080903 +packetLen(0x0388, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0388, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0388, 10) +#elif PACKETVER >= 20080722 +packetLen(0x0388, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0388, 30) +#elif PACKETVER >= 20080624 +packetLen(0x0388, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0388, 22) +#elif PACKETVER >= 20080528 +packetLen(0x0388, -1) +#endif + +// Packet: 0x0389 +#if PACKETVER >= 20081217 +packetLen(0x0389, 2) +#elif PACKETVER >= 20081126 +packetLen(0x0389, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0389, 2) +#elif PACKETVER >= 20081001 +packetLen(0x0389, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0389, 10) +#elif PACKETVER >= 20080903 +packetLen(0x0389, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0389, 3) +#elif PACKETVER >= 20080820 +packetLen(0x0389, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0389, 21) +#elif PACKETVER >= 20080806 +packetLen(0x0389, 102) +#elif PACKETVER >= 20080730 +packetLen(0x0389, 7) +#elif PACKETVER >= 20080722 +packetLen(0x0389, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0389, 39) +#elif PACKETVER >= 20080701 +packetLen(0x0389, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0389, 8) +#elif PACKETVER >= 20080617 +packetLen(0x0389, 4) +#elif PACKETVER >= 20080528 +packetLen(0x0389, -1) +#endif + +// Packet: 0x038a +#if PACKETVER >= 20081217 +packetLen(0x038a, -1) +#elif PACKETVER >= 20081203 +packetLen(0x038a, 10) +#elif PACKETVER >= 20081022 +packetLen(0x038a, -1) +#elif PACKETVER >= 20081015 +packetLen(0x038a, 4) +#elif PACKETVER >= 20081008 +packetLen(0x038a, -1) +#elif PACKETVER >= 20081001 +packetLen(0x038a, 6) +#elif PACKETVER >= 20080924 +packetLen(0x038a, 54) +#elif PACKETVER >= 20080827 +packetLen(0x038a, -1) +#elif PACKETVER >= 20080820 +packetLen(0x038a, 2) +#elif PACKETVER >= 20080806 +packetLen(0x038a, -1) +#elif PACKETVER >= 20080730 +packetLen(0x038a, 9) +#elif PACKETVER >= 20080722 +packetLen(0x038a, 24) +#elif PACKETVER >= 20080715 +packetLen(0x038a, 2) +#elif PACKETVER >= 20080708 +packetLen(0x038a, 3) +#elif PACKETVER >= 20080701 +packetLen(0x038a, 102) +#elif PACKETVER >= 20080624 +packetLen(0x038a, 26) +#elif PACKETVER >= 20080617 +packetLen(0x038a, 6) +#elif PACKETVER >= 20080528 +packetLen(0x038a, -1) +#endif + +// Packet: 0x038b +#if PACKETVER >= 20081217 +packetLen(0x038b, 27) +#elif PACKETVER >= 20081203 +packetLen(0x038b, 3) +#elif PACKETVER >= 20081126 +packetLen(0x038b, 10) +#elif PACKETVER >= 20081119 +packetLen(0x038b, 6) +#elif PACKETVER >= 20081022 +packetLen(0x038b, -1) +#elif PACKETVER >= 20081015 +packetLen(0x038b, 2) +#elif PACKETVER >= 20081008 +packetLen(0x038b, 9) +#elif PACKETVER >= 20080917 +packetLen(0x038b, -1) +#elif PACKETVER >= 20080910 +packetLen(0x038b, 6) +#elif PACKETVER >= 20080903 +packetLen(0x038b, 30) +#elif PACKETVER >= 20080813 +packetLen(0x038b, -1) +#elif PACKETVER >= 20080806 +packetLen(0x038b, 26) +#elif PACKETVER >= 20080730 +packetLen(0x038b, -1) +#elif PACKETVER >= 20080722 +packetLen(0x038b, 6) +#elif PACKETVER >= 20080715 +packetLen(0x038b, -1) +#elif PACKETVER >= 20080708 +packetLen(0x038b, 26) +#elif PACKETVER >= 20080701 +packetLen(0x038b, 2) +#elif PACKETVER >= 20080624 +packetLen(0x038b, 11) +#elif PACKETVER >= 20080617 +packetLen(0x038b, 4) +#elif PACKETVER >= 20080528 +packetLen(0x038b, -1) +#endif + +// Packet: 0x038c +#if PACKETVER >= 20081217 +packetLen(0x038c, -1) +#elif PACKETVER >= 20081203 +packetLen(0x038c, 29) +#elif PACKETVER >= 20081126 +packetLen(0x038c, -1) +#elif PACKETVER >= 20081119 +packetLen(0x038c, 6) +#elif PACKETVER >= 20081112 +packetLen(0x038c, -1) +#elif PACKETVER >= 20081105 +packetLen(0x038c, 5) +#elif PACKETVER >= 20081029 +packetLen(0x038c, -1) +#elif PACKETVER >= 20081022 +packetLen(0x038c, 14) +#elif PACKETVER >= 20081015 +packetLen(0x038c, 102) +#elif PACKETVER >= 20081008 +packetLen(0x038c, -1) +#elif PACKETVER >= 20081001 +packetLen(0x038c, 2) +#elif PACKETVER >= 20080910 +packetLen(0x038c, -1) +#elif PACKETVER >= 20080903 +packetLen(0x038c, 10) +#elif PACKETVER >= 20080827 +packetLen(0x038c, 3) +#elif PACKETVER >= 20080820 +packetLen(0x038c, -1) +#elif PACKETVER >= 20080813 +packetLen(0x038c, 11) +#elif PACKETVER >= 20080806 +packetLen(0x038c, 26) +#elif PACKETVER >= 20080730 +packetLen(0x038c, -1) +#elif PACKETVER >= 20080722 +packetLen(0x038c, 14) +#elif PACKETVER >= 20080708 +packetLen(0x038c, -1) +#elif PACKETVER >= 20080701 +packetLen(0x038c, 4) +#elif PACKETVER >= 20080624 +packetLen(0x038c, 30) +#elif PACKETVER >= 20080617 +packetLen(0x038c, 8) +#elif PACKETVER >= 20080528 +packetLen(0x038c, -1) +#endif + +// Packet: 0x038d +#if PACKETVER >= 20081217 +packetLen(0x038d, 32) +#elif PACKETVER >= 20081203 +packetLen(0x038d, -1) +#elif PACKETVER >= 20081126 +packetLen(0x038d, 33) +#elif PACKETVER >= 20081119 +packetLen(0x038d, 6) +#elif PACKETVER >= 20081112 +packetLen(0x038d, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x038d, 9) +#elif PACKETVER >= 20081022 +packetLen(0x038d, -1) +#elif PACKETVER >= 20081015 +packetLen(0x038d, 6) +#elif PACKETVER >= 20081008 +packetLen(0x038d, 2) +#elif PACKETVER >= 20080924 +packetLen(0x038d, -1) +#elif PACKETVER >= 20080917 +packetLen(0x038d, 30) +#elif PACKETVER >= 20080910 +packetLen(0x038d, 21) +#elif PACKETVER >= 20080903 +packetLen(0x038d, 27) +#elif PACKETVER >= 20080827 +packetLen(0x038d, 28) +#elif PACKETVER >= 20080820 +packetLen(0x038d, 182) +#elif PACKETVER >= 20080722 +packetLen(0x038d, -1) +#elif PACKETVER >= 20080715 +packetLen(0x038d, 60) +#elif PACKETVER >= 20080701 +packetLen(0x038d, -1) +#elif PACKETVER >= 20080624 +packetLen(0x038d, 10) +#elif PACKETVER >= 20080617 +packetLen(0x038d, 8) +#elif PACKETVER >= 20080528 +packetLen(0x038d, -1) +#endif + +// Packet: 0x038e +#if PACKETVER >= 20081217 +packetLen(0x038e, -1) +#elif PACKETVER >= 20081126 +packetLen(0x038e, 4) +#elif PACKETVER >= 20081119 +packetLen(0x038e, -1) +#elif PACKETVER >= 20081112 +packetLen(0x038e, 30) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081001 +packetLen(0x038e, -1) +#elif PACKETVER >= 20080924 +packetLen(0x038e, 3) +#elif PACKETVER >= 20080917 +packetLen(0x038e, 5) +#elif PACKETVER >= 20080903 +packetLen(0x038e, -1) +#elif PACKETVER >= 20080827 +packetLen(0x038e, 28) +#elif PACKETVER >= 20080820 +packetLen(0x038e, -1) +#elif PACKETVER >= 20080813 +packetLen(0x038e, 44) +#elif PACKETVER >= 20080730 +packetLen(0x038e, -1) +#elif PACKETVER >= 20080722 +packetLen(0x038e, 6) +#elif PACKETVER >= 20080715 +packetLen(0x038e, -1) +#elif PACKETVER >= 20080708 +packetLen(0x038e, 282) +#elif PACKETVER >= 20080701 +packetLen(0x038e, -1) +#elif PACKETVER >= 20080624 +packetLen(0x038e, 6) +#elif PACKETVER >= 20080528 +packetLen(0x038e, -1) +#endif + +// Packet: 0x038f +#if PACKETVER >= 20081217 +packetLen(0x038f, 39) +#elif PACKETVER >= 20081203 +packetLen(0x038f, 22) +#elif PACKETVER >= 20081126 +packetLen(0x038f, -1) +#elif PACKETVER >= 20081119 +packetLen(0x038f, 4) +#elif PACKETVER >= 20081029 +packetLen(0x038f, -1) +#elif PACKETVER >= 20081022 +packetLen(0x038f, 19) +#elif PACKETVER >= 20081008 +packetLen(0x038f, -1) +#elif PACKETVER >= 20081001 +packetLen(0x038f, 4) +#elif PACKETVER >= 20080924 +packetLen(0x038f, 22) +#elif PACKETVER >= 20080917 +packetLen(0x038f, 8) +#elif PACKETVER >= 20080910 +packetLen(0x038f, 4) +#elif PACKETVER >= 20080903 +packetLen(0x038f, -1) +#elif PACKETVER >= 20080827 +packetLen(0x038f, 16) +#elif PACKETVER >= 20080820 +packetLen(0x038f, 14) +#elif PACKETVER >= 20080813 +packetLen(0x038f, -1) +#elif PACKETVER >= 20080806 +packetLen(0x038f, 114) +#elif PACKETVER >= 20080701 +packetLen(0x038f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x038f, 2) +#elif PACKETVER >= 20080528 +packetLen(0x038f, -1) +#endif + +// Packet: 0x0390 +#if PACKETVER >= 20081203 +packetLen(0x0390, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0390, 2) +#elif PACKETVER >= 20081119 +packetLen(0x0390, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0390, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x0390, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0390, 2) +#elif PACKETVER >= 20081015 +packetLen(0x0390, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0390, 2) +#elif PACKETVER >= 20080903 +packetLen(0x0390, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0390, 10) +#elif PACKETVER >= 20080722 +packetLen(0x0390, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0390, 182) +#elif PACKETVER >= 20080708 +packetLen(0x0390, 4) +#elif PACKETVER >= 20080701 +packetLen(0x0390, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0390, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0390, -1) +#endif + +// Packet: 0x0391 +#if PACKETVER >= 20081217 +packetLen(0x0391, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0391, 5) +#elif PACKETVER >= 20081126 +packetLen(0x0391, 3) +#elif PACKETVER >= 20081119 +packetLen(0x0391, 30) +#elif PACKETVER >= 20081112 +packetLen(0x0391, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0391, 8) +#elif PACKETVER >= 20081029 +packetLen(0x0391, 7) +#elif PACKETVER >= 20081022 +packetLen(0x0391, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0391, 5) +#elif PACKETVER >= 20081008 +packetLen(0x0391, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0391, 11) +#elif PACKETVER >= 20080910 +packetLen(0x0391, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0391, 16) +#elif PACKETVER >= 20080813 +packetLen(0x0391, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0391, 29) +#elif PACKETVER >= 20080722 +packetLen(0x0391, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0391, 26) +#elif PACKETVER >= 20080528 +packetLen(0x0391, -1) +#endif + +// Packet: 0x0392 +#if PACKETVER >= 20081217 +packetLen(0x0392, 8) +#elif PACKETVER >= 20081203 +packetLen(0x0392, 10) +#elif PACKETVER >= 20081126 +packetLen(0x0392, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0392, 3) +#elif PACKETVER >= 20081112 +packetLen(0x0392, 4) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0392, 11) +#elif PACKETVER >= 20081029 +packetLen(0x0392, 3) +#elif PACKETVER >= 20081022 +packetLen(0x0392, 24) +#elif PACKETVER >= 20081015 +packetLen(0x0392, 14) +#elif PACKETVER >= 20080924 +packetLen(0x0392, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0392, 2) +#elif PACKETVER >= 20080910 +packetLen(0x0392, 6) +#elif PACKETVER >= 20080903 +packetLen(0x0392, 17) +#elif PACKETVER >= 20080820 +packetLen(0x0392, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0392, 29) +#elif PACKETVER >= 20080806 +packetLen(0x0392, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0392, 2) +#elif PACKETVER >= 20080722 +packetLen(0x0392, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0392, 22) +#elif PACKETVER >= 20080708 +packetLen(0x0392, 60) +#elif PACKETVER >= 20080624 +packetLen(0x0392, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0392, 26) +#elif PACKETVER >= 20080528 +packetLen(0x0392, -1) +#endif + +// Packet: 0x0393 +#if PACKETVER >= 20081217 +packetLen(0x0393, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0393, 6) +#elif PACKETVER >= 20081112 +packetLen(0x0393, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0393, 4) +#elif PACKETVER >= 20081029 +packetLen(0x0393, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0393, 60) +#elif PACKETVER >= 20081015 +packetLen(0x0393, 26) +#elif PACKETVER >= 20081008 +packetLen(0x0393, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0393, 33) +#elif PACKETVER >= 20080924 +packetLen(0x0393, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0393, 26) +#elif PACKETVER >= 20080820 +packetLen(0x0393, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0393, 6) +#elif PACKETVER >= 20080806 +packetLen(0x0393, 7) +#elif PACKETVER >= 20080730 +packetLen(0x0393, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0393, 7) +#elif PACKETVER >= 20080715 +packetLen(0x0393, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0393, 26) +#elif PACKETVER >= 20080701 +packetLen(0x0393, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0393, 17) +#elif PACKETVER >= 20080617 +packetLen(0x0393, 14) +#elif PACKETVER >= 20080528 +packetLen(0x0393, -1) +#endif + +// Packet: 0x0394 +#if PACKETVER >= 20081203 +packetLen(0x0394, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0394, 28) +#elif PACKETVER >= 20081105 +packetLen(0x0394, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0394, 9) +#elif PACKETVER >= 20081022 +packetLen(0x0394, 58) +#elif PACKETVER >= 20081015 +packetLen(0x0394, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0394, 26) +#elif PACKETVER >= 20081001 +packetLen(0x0394, 4) +#elif PACKETVER >= 20080917 +packetLen(0x0394, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0394, 6) +#elif PACKETVER >= 20080827 +packetLen(0x0394, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0394, 54) +#elif PACKETVER >= 20080813 +packetLen(0x0394, 15) +#elif PACKETVER >= 20080806 +packetLen(0x0394, 19) +#elif PACKETVER >= 20080730 +packetLen(0x0394, 282) +#elif PACKETVER >= 20080722 +packetLen(0x0394, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0394, 19) +#elif PACKETVER >= 20080708 +packetLen(0x0394, 5) +#elif PACKETVER >= 20080701 +packetLen(0x0394, 6) +#elif PACKETVER >= 20080528 +packetLen(0x0394, -1) +#endif + +// Packet: 0x0395 +#if PACKETVER >= 20081217 +packetLen(0x0395, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0395, 6) +#elif PACKETVER >= 20081126 +packetLen(0x0395, 8) +#elif PACKETVER >= 20081119 +packetLen(0x0395, 55) +#elif PACKETVER >= 20081112 +packetLen(0x0395, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0395, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0395, 58) +#elif PACKETVER >= 20081022 +packetLen(0x0395, 4) +#elif PACKETVER >= 20081015 +packetLen(0x0395, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0395, 21) +#elif PACKETVER >= 20081001 +packetLen(0x0395, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0395, 35) +#elif PACKETVER >= 20080903 +packetLen(0x0395, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0395, 32) +#elif PACKETVER >= 20080813 +packetLen(0x0395, -1) +#elif PACKETVER >= 20080806 +packetLen(0x0395, 8) +#elif PACKETVER >= 20080730 +packetLen(0x0395, 10) +#elif PACKETVER >= 20080722 +packetLen(0x0395, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0395, 4) +#elif PACKETVER >= 20080708 +packetLen(0x0395, 5) +#elif PACKETVER >= 20080701 +packetLen(0x0395, 4) +#elif PACKETVER >= 20080624 +packetLen(0x0395, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0395, 3) +#elif PACKETVER >= 20080528 +packetLen(0x0395, -1) +#endif + +// Packet: 0x0396 +#if PACKETVER >= 20081217 +packetLen(0x0396, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0396, 26) +#elif PACKETVER >= 20081001 +packetLen(0x0396, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0396, 6) +#elif PACKETVER >= 20080917 +packetLen(0x0396, 10) +#elif PACKETVER >= 20080910 +packetLen(0x0396, 8) +#elif PACKETVER >= 20080903 +packetLen(0x0396, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0396, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0396, 11) +#elif PACKETVER >= 20080813 +packetLen(0x0396, 6) +#elif PACKETVER >= 20080722 +packetLen(0x0396, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0396, 186) +#elif PACKETVER >= 20080708 +packetLen(0x0396, 60) +#elif PACKETVER >= 20080701 +packetLen(0x0396, 2) +#elif PACKETVER >= 20080624 +packetLen(0x0396, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0396, 33) +#elif PACKETVER >= 20080528 +packetLen(0x0396, -1) +#endif + +// Packet: 0x0397 +#if PACKETVER >= 20081217 +packetLen(0x0397, 6) +#elif PACKETVER >= 20081203 +packetLen(0x0397, 282) +#elif PACKETVER >= 20081112 +packetLen(0x0397, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0397, 3) +#elif PACKETVER >= 20081029 +packetLen(0x0397, 114) +#elif PACKETVER >= 20081022 +packetLen(0x0397, 5) +#elif PACKETVER >= 20081001 +packetLen(0x0397, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0397, 12) +#elif PACKETVER >= 20080910 +packetLen(0x0397, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0397, 13) +#elif PACKETVER >= 20080827 +packetLen(0x0397, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0397, 11) +#elif PACKETVER >= 20080813 +packetLen(0x0397, 26) +#elif PACKETVER >= 20080730 +packetLen(0x0397, -1) +#elif PACKETVER >= 20080722 +packetLen(0x0397, 3) +#elif PACKETVER >= 20080715 +packetLen(0x0397, 53) +#elif PACKETVER >= 20080708 +packetLen(0x0397, 6) +#elif PACKETVER >= 20080701 +packetLen(0x0397, -1) +#elif PACKETVER >= 20080624 +packetLen(0x0397, 5) +#elif PACKETVER >= 20080528 +packetLen(0x0397, -1) +#endif + +// Packet: 0x0398 +#if PACKETVER >= 20081203 +packetLen(0x0398, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0398, 3) +#elif PACKETVER >= 20081119 +packetLen(0x0398, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0398, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0398, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0398, 6) +#elif PACKETVER >= 20081015 +packetLen(0x0398, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0398, 14) +#elif PACKETVER >= 20081001 +packetLen(0x0398, 26) +#elif PACKETVER >= 20080910 +packetLen(0x0398, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0398, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0398, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0398, 10) +#elif PACKETVER >= 20080806 +packetLen(0x0398, -1) +#elif PACKETVER >= 20080730 +packetLen(0x0398, 10) +#elif PACKETVER >= 20080722 +packetLen(0x0398, -1) +#elif PACKETVER >= 20080715 +packetLen(0x0398, 3) +#elif PACKETVER >= 20080708 +packetLen(0x0398, -1) +#elif PACKETVER >= 20080701 +packetLen(0x0398, 53) +#elif PACKETVER >= 20080624 +packetLen(0x0398, -1) +#elif PACKETVER >= 20080617 +packetLen(0x0398, 282) +#elif PACKETVER >= 20080528 +packetLen(0x0398, -1) +#endif + +// Packet: 0x0399 +#if PACKETVER >= 20081217 +packetLen(0x0399, 9) +#elif PACKETVER >= 20081203 +packetLen(0x0399, 4) +#elif PACKETVER >= 20081126 +packetLen(0x0399, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0399, 8) +#elif PACKETVER >= 20081022 +packetLen(0x0399, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0399, 2) +#elif PACKETVER >= 20080924 +packetLen(0x0399, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0399, 4) +#elif PACKETVER >= 20080903 +packetLen(0x0399, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0399, 7) +#elif PACKETVER >= 20080820 +packetLen(0x0399, 9) +#elif PACKETVER >= 20080806 +packetLen(0x0399, 30) +#elif PACKETVER >= 20080730 +packetLen(0x0399, 2) +#elif PACKETVER >= 20080722 +packetLen(0x0399, 3) +#elif PACKETVER >= 20080715 +packetLen(0x0399, -1) +#elif PACKETVER >= 20080708 +packetLen(0x0399, 3) +#elif PACKETVER >= 20080701 +packetLen(0x0399, 16) +#elif PACKETVER >= 20080624 +packetLen(0x0399, 65) +#elif PACKETVER >= 20080528 +packetLen(0x0399, -1) +#endif + +// Packet: 0x039a +#if PACKETVER >= 20081217 +packetLen(0x039a, 3) +#elif PACKETVER >= 20081203 +packetLen(0x039a, 17) +#elif PACKETVER >= 20081126 +packetLen(0x039a, -1) +#elif PACKETVER >= 20081119 +packetLen(0x039a, 6) +#elif PACKETVER >= 20081112 +packetLen(0x039a, -1) +#elif PACKETVER >= 20081105 +packetLen(0x039a, 4) +#elif PACKETVER >= 20081022 +packetLen(0x039a, -1) +#elif PACKETVER >= 20081015 +packetLen(0x039a, 29) +#elif PACKETVER >= 20081008 +packetLen(0x039a, 2) +#elif PACKETVER >= 20080910 +packetLen(0x039a, -1) +#elif PACKETVER >= 20080903 +packetLen(0x039a, 27) +#elif PACKETVER >= 20080701 +packetLen(0x039a, -1) +#elif PACKETVER >= 20080624 +packetLen(0x039a, 6) +#elif PACKETVER >= 20080528 +packetLen(0x039a, -1) +#endif + +// Packet: 0x039b +#if PACKETVER >= 20081217 +packetLen(0x039b, 10) +#elif PACKETVER >= 20081203 +packetLen(0x039b, 6) +#elif PACKETVER >= 20081126 +packetLen(0x039b, 43) +#elif PACKETVER >= 20081119 +packetLen(0x039b, -1) +#elif PACKETVER >= 20081112 +packetLen(0x039b, 36) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x039b, -1) +#elif PACKETVER >= 20081029 +packetLen(0x039b, 3) +#elif PACKETVER >= 20081008 +packetLen(0x039b, -1) +#elif PACKETVER >= 20081001 +packetLen(0x039b, 6) +#elif PACKETVER >= 20080924 +packetLen(0x039b, -1) +#elif PACKETVER >= 20080917 +packetLen(0x039b, 6) +#elif PACKETVER >= 20080910 +packetLen(0x039b, 3) +#elif PACKETVER >= 20080903 +packetLen(0x039b, -1) +#elif PACKETVER >= 20080827 +packetLen(0x039b, 5) +#elif PACKETVER >= 20080820 +packetLen(0x039b, 30) +#elif PACKETVER >= 20080715 +packetLen(0x039b, -1) +#elif PACKETVER >= 20080708 +packetLen(0x039b, 8) +#elif PACKETVER >= 20080624 +packetLen(0x039b, -1) +#elif PACKETVER >= 20080617 +packetLen(0x039b, 6) +#elif PACKETVER >= 20080528 +packetLen(0x039b, -1) +#endif + +// Packet: 0x039c +#if PACKETVER >= 20081217 +packetLen(0x039c, 86) +#elif PACKETVER >= 20081203 +packetLen(0x039c, 4) +#elif PACKETVER >= 20081126 +packetLen(0x039c, 12) +#elif PACKETVER >= 20081105 +packetLen(0x039c, -1) +#elif PACKETVER >= 20081029 +packetLen(0x039c, 14) +#elif PACKETVER >= 20081022 +packetLen(0x039c, 18) +#elif PACKETVER >= 20081015 +packetLen(0x039c, -1) +#elif PACKETVER >= 20081008 +packetLen(0x039c, 6) +#elif PACKETVER >= 20081001 +packetLen(0x039c, -1) +#elif PACKETVER >= 20080924 +packetLen(0x039c, 6) +#elif PACKETVER >= 20080903 +packetLen(0x039c, -1) +#elif PACKETVER >= 20080827 +packetLen(0x039c, 67) +#elif PACKETVER >= 20080820 +packetLen(0x039c, 4) +#elif PACKETVER >= 20080813 +packetLen(0x039c, -1) +#elif PACKETVER >= 20080806 +packetLen(0x039c, 31) +#elif PACKETVER >= 20080730 +packetLen(0x039c, 3) +#elif PACKETVER >= 20080715 +packetLen(0x039c, 6) +#elif PACKETVER >= 20080701 +packetLen(0x039c, -1) +#elif PACKETVER >= 20080624 +packetLen(0x039c, 6) +#elif PACKETVER >= 20080617 +packetLen(0x039c, 26) +#elif PACKETVER >= 20080528 +packetLen(0x039c, -1) +#endif + +// Packet: 0x039d +#if PACKETVER >= 20081217 +packetLen(0x039d, 30) +#elif PACKETVER >= 20081203 +packetLen(0x039d, 8) +#elif PACKETVER >= 20081126 +packetLen(0x039d, 30) +#elif PACKETVER >= 20081119 +packetLen(0x039d, 7) +#elif PACKETVER >= 20081112 +packetLen(0x039d, 27) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081001 +packetLen(0x039d, -1) +#elif PACKETVER >= 20080917 +packetLen(0x039d, 3) +#elif PACKETVER >= 20080910 +packetLen(0x039d, 7) +#elif PACKETVER >= 20080903 +packetLen(0x039d, 17) +#elif PACKETVER >= 20080827 +packetLen(0x039d, 24) +#elif PACKETVER >= 20080820 +packetLen(0x039d, -1) +#elif PACKETVER >= 20080813 +packetLen(0x039d, 26) +#elif PACKETVER >= 20080730 +packetLen(0x039d, -1) +#elif PACKETVER >= 20080722 +packetLen(0x039d, 10) +#elif PACKETVER >= 20080715 +packetLen(0x039d, 2) +#elif PACKETVER >= 20080708 +packetLen(0x039d, -1) +#elif PACKETVER >= 20080701 +packetLen(0x039d, 6) +#elif PACKETVER >= 20080624 +packetLen(0x039d, 3) +#elif PACKETVER >= 20080617 +packetLen(0x039d, 7) +#elif PACKETVER >= 20080528 +packetLen(0x039d, -1) +#endif + +// Packet: 0x039e +#if PACKETVER >= 20081119 +packetLen(0x039e, -1) +#elif PACKETVER >= 20081112 +packetLen(0x039e, 182) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x039e, 11) +#elif PACKETVER >= 20081001 +packetLen(0x039e, -1) +#elif PACKETVER >= 20080924 +packetLen(0x039e, 2) +#elif PACKETVER >= 20080917 +packetLen(0x039e, 39) +#elif PACKETVER >= 20080910 +packetLen(0x039e, -1) +#elif PACKETVER >= 20080903 +packetLen(0x039e, 14) +#elif PACKETVER >= 20080827 +packetLen(0x039e, 54) +#elif PACKETVER >= 20080806 +packetLen(0x039e, -1) +#elif PACKETVER >= 20080730 +packetLen(0x039e, 42) +#elif PACKETVER >= 20080722 +packetLen(0x039e, 6) +#elif PACKETVER >= 20080715 +packetLen(0x039e, 27) +#elif PACKETVER >= 20080701 +packetLen(0x039e, -1) +#elif PACKETVER >= 20080624 +packetLen(0x039e, 6) +#elif PACKETVER >= 20080617 +packetLen(0x039e, 10) +#elif PACKETVER >= 20080528 +packetLen(0x039e, -1) +#endif + +// Packet: 0x039f +#if PACKETVER >= 20081217 +packetLen(0x039f, 30) +#elif PACKETVER >= 20081203 +packetLen(0x039f, 39) +#elif PACKETVER >= 20081126 +packetLen(0x039f, -1) +#elif PACKETVER >= 20081119 +packetLen(0x039f, 26) +#elif PACKETVER >= 20081029 +packetLen(0x039f, -1) +#elif PACKETVER >= 20081022 +packetLen(0x039f, 10) +#elif PACKETVER >= 20081015 +packetLen(0x039f, 2) +#elif PACKETVER >= 20081008 +packetLen(0x039f, 282) +#elif PACKETVER >= 20081001 +packetLen(0x039f, 14) +#elif PACKETVER >= 20080924 +packetLen(0x039f, 2) +#elif PACKETVER >= 20080917 +packetLen(0x039f, 8) +#elif PACKETVER >= 20080910 +packetLen(0x039f, 14) +#elif PACKETVER >= 20080820 +packetLen(0x039f, -1) +#elif PACKETVER >= 20080813 +packetLen(0x039f, 2) +#elif PACKETVER >= 20080806 +packetLen(0x039f, 8) +#elif PACKETVER >= 20080722 +packetLen(0x039f, -1) +#elif PACKETVER >= 20080715 +packetLen(0x039f, 7) +#elif PACKETVER >= 20080701 +packetLen(0x039f, -1) +#elif PACKETVER >= 20080624 +packetLen(0x039f, 6) +#elif PACKETVER >= 20080528 +packetLen(0x039f, -1) +#endif + +// Packet: 0x03a0 +#if PACKETVER >= 20081203 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03a0, 2) +#elif PACKETVER >= 20081119 +packetLen(0x03a0, 17) +#elif PACKETVER >= 20081112 +packetLen(0x03a0, 10) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03a0, 11) +#elif PACKETVER >= 20081022 +packetLen(0x03a0, 22) +#elif PACKETVER >= 20081015 +packetLen(0x03a0, 3) +#elif PACKETVER >= 20080917 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03a0, 2) +#elif PACKETVER >= 20080827 +packetLen(0x03a0, 5) +#elif PACKETVER >= 20080813 +packetLen(0x03a0, 6) +#elif PACKETVER >= 20080730 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03a0, 16) +#elif PACKETVER >= 20080715 +packetLen(0x03a0, 5) +#elif PACKETVER >= 20080708 +packetLen(0x03a0, 2) +#elif PACKETVER >= 20080624 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03a0, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03a0, -1) +#endif + +// Packet: 0x03a1 +#if PACKETVER >= 20081203 +packetLen(0x03a1, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03a1, 6) +#elif PACKETVER >= 20081119 +packetLen(0x03a1, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03a1, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03a1, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03a1, 32) +#elif PACKETVER >= 20081022 +packetLen(0x03a1, 10) +#elif PACKETVER >= 20080924 +packetLen(0x03a1, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03a1, 6) +#elif PACKETVER >= 20080910 +packetLen(0x03a1, 5) +#elif PACKETVER >= 20080806 +packetLen(0x03a1, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03a1, 3) +#elif PACKETVER >= 20080722 +packetLen(0x03a1, 15) +#elif PACKETVER >= 20080715 +packetLen(0x03a1, 71) +#elif PACKETVER >= 20080708 +packetLen(0x03a1, 3) +#elif PACKETVER >= 20080701 +packetLen(0x03a1, 6) +#elif PACKETVER >= 20080624 +packetLen(0x03a1, 30) +#elif PACKETVER >= 20080528 +packetLen(0x03a1, -1) +#endif + +// Packet: 0x03a2 +#if PACKETVER >= 20081217 +packetLen(0x03a2, 282) +#elif PACKETVER >= 20081203 +packetLen(0x03a2, 6) +#elif PACKETVER >= 20081112 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03a2, 14) +#elif PACKETVER >= 20081015 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03a2, 8) +#elif PACKETVER >= 20081001 +packetLen(0x03a2, 2) +#elif PACKETVER >= 20080924 +packetLen(0x03a2, 10) +#elif PACKETVER >= 20080917 +packetLen(0x03a2, 3) +#elif PACKETVER >= 20080910 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03a2, 11) +#elif PACKETVER >= 20080827 +packetLen(0x03a2, 3) +#elif PACKETVER >= 20080820 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03a2, 13) +#elif PACKETVER >= 20080806 +packetLen(0x03a2, 26) +#elif PACKETVER >= 20080730 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03a2, 26) +#elif PACKETVER >= 20080715 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03a2, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03a2, -1) +#endif + +// Packet: 0x03a3 +#if PACKETVER >= 20081126 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03a3, 6) +#elif PACKETVER >= 20081029 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03a3, 20) +#elif PACKETVER >= 20080910 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03a3, 28) +#elif PACKETVER >= 20080827 +packetLen(0x03a3, 21) +#elif PACKETVER >= 20080820 +packetLen(0x03a3, 6) +#elif PACKETVER >= 20080813 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03a3, 26) +#elif PACKETVER >= 20080730 +packetLen(0x03a3, 23) +#elif PACKETVER >= 20080722 +packetLen(0x03a3, 6) +#elif PACKETVER >= 20080715 +packetLen(0x03a3, 2) +#elif PACKETVER >= 20080708 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03a3, 21) +#elif PACKETVER >= 20080624 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03a3, 8) +#elif PACKETVER >= 20080528 +packetLen(0x03a3, -1) +#endif + +// Packet: 0x03a4 +#if PACKETVER >= 20081217 +packetLen(0x03a4, 44) +#elif PACKETVER >= 20081203 +packetLen(0x03a4, 4) +#elif PACKETVER >= 20081126 +packetLen(0x03a4, 58) +#elif PACKETVER >= 20081119 +packetLen(0x03a4, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03a4, 2) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03a4, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03a4, 6) +#elif PACKETVER >= 20081022 +packetLen(0x03a4, 12) +#elif PACKETVER >= 20080910 +packetLen(0x03a4, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03a4, 3) +#elif PACKETVER >= 20080827 +packetLen(0x03a4, 33) +#elif PACKETVER >= 20080820 +packetLen(0x03a4, 14) +#elif PACKETVER >= 20080730 +packetLen(0x03a4, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03a4, 30) +#elif PACKETVER >= 20080701 +packetLen(0x03a4, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03a4, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03a4, -1) +#endif + +// Packet: 0x03a5 +#if PACKETVER >= 20081217 +packetLen(0x03a5, 8) +#elif PACKETVER >= 20081203 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03a5, 3) +#elif PACKETVER >= 20081105 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03a5, 54) +#elif PACKETVER >= 20081022 +packetLen(0x03a5, 6) +#elif PACKETVER >= 20081015 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03a5, 2) +#elif PACKETVER >= 20080924 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03a5, 3) +#elif PACKETVER >= 20080910 +packetLen(0x03a5, 26) +#elif PACKETVER >= 20080903 +packetLen(0x03a5, 6) +#elif PACKETVER >= 20080827 +packetLen(0x03a5, 8) +#elif PACKETVER >= 20080820 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03a5, 26) +#elif PACKETVER >= 20080730 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03a5, 8) +#elif PACKETVER >= 20080715 +packetLen(0x03a5, 2) +#elif PACKETVER >= 20080708 +packetLen(0x03a5, 28) +#elif PACKETVER >= 20080701 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03a5, 28) +#elif PACKETVER >= 20080617 +packetLen(0x03a5, 5) +#elif PACKETVER >= 20080528 +packetLen(0x03a5, -1) +#endif + +// Packet: 0x03a6 +#if PACKETVER >= 20081203 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03a6, 14) +#elif PACKETVER >= 20081029 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03a6, 8) +#elif PACKETVER >= 20081001 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03a6, 8) +#elif PACKETVER >= 20080917 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03a6, 18) +#elif PACKETVER >= 20080903 +packetLen(0x03a6, 4) +#elif PACKETVER >= 20080820 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03a6, 27) +#elif PACKETVER >= 20080730 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03a6, 10) +#elif PACKETVER >= 20080715 +packetLen(0x03a6, 3) +#elif PACKETVER >= 20080708 +packetLen(0x03a6, 31) +#elif PACKETVER >= 20080701 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03a6, 59) +#elif PACKETVER >= 20080528 +packetLen(0x03a6, -1) +#endif + +// Packet: 0x03a7 +#if PACKETVER >= 20081217 +packetLen(0x03a7, 8) +#elif PACKETVER >= 20081203 +packetLen(0x03a7, 2) +#elif PACKETVER >= 20081126 +packetLen(0x03a7, 67) +#elif PACKETVER >= 20081119 +packetLen(0x03a7, 6) +#elif PACKETVER >= 20081105 +packetLen(0x03a7, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03a7, 6) +#elif PACKETVER >= 20081022 +packetLen(0x03a7, 4) +#elif PACKETVER >= 20081015 +packetLen(0x03a7, 60) +#elif PACKETVER >= 20080917 +packetLen(0x03a7, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03a7, 17) +#elif PACKETVER >= 20080820 +packetLen(0x03a7, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03a7, 28) +#elif PACKETVER >= 20080806 +packetLen(0x03a7, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03a7, 8) +#elif PACKETVER >= 20080722 +packetLen(0x03a7, 5) +#elif PACKETVER >= 20080715 +packetLen(0x03a7, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03a7, 6) +#elif PACKETVER >= 20080701 +packetLen(0x03a7, 68) +#elif PACKETVER >= 20080624 +packetLen(0x03a7, 11) +#elif PACKETVER >= 20080528 +packetLen(0x03a7, -1) +#endif + +// Packet: 0x03a8 +#if PACKETVER >= 20081203 +packetLen(0x03a8, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03a8, 59) +#elif PACKETVER >= 20081119 +packetLen(0x03a8, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03a8, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x03a8, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03a8, 26) +#elif PACKETVER >= 20080813 +packetLen(0x03a8, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03a8, 2) +#elif PACKETVER >= 20080715 +packetLen(0x03a8, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03a8, 2) +#elif PACKETVER >= 20080701 +packetLen(0x03a8, 3) +#elif PACKETVER >= 20080624 +packetLen(0x03a8, 6) +#elif PACKETVER >= 20080617 +packetLen(0x03a8, 4) +#elif PACKETVER >= 20080528 +packetLen(0x03a8, -1) +#endif + +// Packet: 0x03a9 +#if PACKETVER >= 20081217 +packetLen(0x03a9, 15) +#elif PACKETVER >= 20081203 +packetLen(0x03a9, 18) +#elif PACKETVER >= 20081119 +packetLen(0x03a9, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03a9, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x03a9, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03a9, 7) +#elif PACKETVER >= 20080813 +packetLen(0x03a9, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03a9, 2) +#elif PACKETVER >= 20080730 +packetLen(0x03a9, 3) +#elif PACKETVER >= 20080715 +packetLen(0x03a9, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03a9, 8) +#elif PACKETVER >= 20080624 +packetLen(0x03a9, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03a9, 67) +#elif PACKETVER >= 20080528 +packetLen(0x03a9, -1) +#endif + +// Packet: 0x03aa +#if PACKETVER >= 20081217 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03aa, 6) +#elif PACKETVER >= 20081112 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03aa, 2) +#elif PACKETVER >= 20081029 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03aa, 3) +#elif PACKETVER >= 20081015 +packetLen(0x03aa, 7) +#elif PACKETVER >= 20081008 +packetLen(0x03aa, 26) +#elif PACKETVER >= 20081001 +packetLen(0x03aa, 10) +#elif PACKETVER >= 20080917 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03aa, 30) +#elif PACKETVER >= 20080903 +packetLen(0x03aa, 20) +#elif PACKETVER >= 20080827 +packetLen(0x03aa, 10) +#elif PACKETVER >= 20080813 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03aa, 2) +#elif PACKETVER >= 20080730 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03aa, 39) +#elif PACKETVER >= 20080715 +packetLen(0x03aa, 7) +#elif PACKETVER >= 20080708 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03aa, 11) +#elif PACKETVER >= 20080528 +packetLen(0x03aa, -1) +#endif + +// Packet: 0x03ab +#if PACKETVER >= 20081217 +packetLen(0x03ab, 8) +#elif PACKETVER >= 20081203 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03ab, 9) +#elif PACKETVER >= 20081119 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03ab, 2) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03ab, 30) +#elif PACKETVER >= 20081015 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03ab, 6) +#elif PACKETVER >= 20081001 +packetLen(0x03ab, 10) +#elif PACKETVER >= 20080917 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03ab, 2) +#elif PACKETVER >= 20080827 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03ab, 23) +#elif PACKETVER >= 20080813 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03ab, 18) +#elif PACKETVER >= 20080730 +packetLen(0x03ab, 11) +#elif PACKETVER >= 20080722 +packetLen(0x03ab, 53) +#elif PACKETVER >= 20080715 +packetLen(0x03ab, 8) +#elif PACKETVER >= 20080708 +packetLen(0x03ab, 86) +#elif PACKETVER >= 20080624 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03ab, 14) +#elif PACKETVER >= 20080528 +packetLen(0x03ab, -1) +#endif + +// Packet: 0x03ac +#if PACKETVER >= 20081203 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03ac, 10) +#elif PACKETVER >= 20081112 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03ac, 6) +#elif PACKETVER >= 20081015 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03ac, 5) +#elif PACKETVER >= 20081001 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03ac, 54) +#elif PACKETVER >= 20080917 +packetLen(0x03ac, 28) +#elif PACKETVER >= 20080910 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03ac, 58) +#elif PACKETVER >= 20080827 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03ac, 6) +#elif PACKETVER >= 20080813 +packetLen(0x03ac, 9) +#elif PACKETVER >= 20080730 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03ac, 8) +#elif PACKETVER >= 20080624 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03ac, 282) +#elif PACKETVER >= 20080528 +packetLen(0x03ac, -1) +#endif + +// Packet: 0x03ad +#if PACKETVER >= 20081217 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03ad, 6) +#elif PACKETVER >= 20081126 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03ad, 22) +#elif PACKETVER >= 20081112 +packetLen(0x03ad, 16) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03ad, 10) +#elif PACKETVER >= 20081022 +packetLen(0x03ad, 8) +#elif PACKETVER >= 20081008 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03ad, 7) +#elif PACKETVER >= 20080827 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03ad, 7) +#elif PACKETVER >= 20080813 +packetLen(0x03ad, 8) +#elif PACKETVER >= 20080722 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20080715 +packetLen(0x03ad, 10) +#elif PACKETVER >= 20080701 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03ad, 2) +#elif PACKETVER >= 20080617 +packetLen(0x03ad, 21) +#elif PACKETVER >= 20080528 +packetLen(0x03ad, -1) +#endif + +// Packet: 0x03ae +#if PACKETVER >= 20081217 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03ae, 30) +#elif PACKETVER >= 20081126 +packetLen(0x03ae, 14) +#elif PACKETVER >= 20081112 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03ae, 4) +#elif PACKETVER >= 20081029 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03ae, 58) +#elif PACKETVER >= 20081008 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03ae, 20) +#elif PACKETVER >= 20080917 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03ae, 4) +#elif PACKETVER >= 20080813 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03ae, 4) +#elif PACKETVER >= 20080730 +packetLen(0x03ae, 7) +#elif PACKETVER >= 20080708 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03ae, 8) +#elif PACKETVER >= 20080624 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03ae, 57) +#elif PACKETVER >= 20080528 +packetLen(0x03ae, -1) +#endif + +// Packet: 0x03af +#if PACKETVER >= 20081217 +packetLen(0x03af, 10) +#elif PACKETVER >= 20081119 +packetLen(0x03af, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03af, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03af, 22) +#elif PACKETVER >= 20081029 +packetLen(0x03af, 7) +#elif PACKETVER >= 20081022 +packetLen(0x03af, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03af, 13) +#elif PACKETVER >= 20081001 +packetLen(0x03af, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03af, 4) +#elif PACKETVER >= 20080917 +packetLen(0x03af, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03af, 5) +#elif PACKETVER >= 20080903 +packetLen(0x03af, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03af, 6) +#elif PACKETVER >= 20080820 +packetLen(0x03af, 60) +#elif PACKETVER >= 20080813 +packetLen(0x03af, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03af, 23) +#elif PACKETVER >= 20080730 +packetLen(0x03af, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03af, 10) +#elif PACKETVER >= 20080715 +packetLen(0x03af, 3) +#elif PACKETVER >= 20080708 +packetLen(0x03af, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03af, 2) +#elif PACKETVER >= 20080624 +packetLen(0x03af, 10) +#elif PACKETVER >= 20080617 +packetLen(0x03af, 14) +#elif PACKETVER >= 20080528 +packetLen(0x03af, -1) +#endif + +// Packet: 0x03b0 +#if PACKETVER >= 20081217 +packetLen(0x03b0, 26) +#elif PACKETVER >= 20081126 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03b0, 4) +#elif PACKETVER >= 20081029 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03b0, 6) +#elif PACKETVER >= 20081015 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03b0, 2) +#elif PACKETVER >= 20080910 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03b0, 33) +#elif PACKETVER >= 20080827 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03b0, 81) +#elif PACKETVER >= 20080813 +packetLen(0x03b0, 282) +#elif PACKETVER >= 20080806 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03b0, 10) +#elif PACKETVER >= 20080722 +packetLen(0x03b0, 4) +#elif PACKETVER >= 20080708 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03b0, 8) +#elif PACKETVER >= 20080528 +packetLen(0x03b0, -1) +#endif + +// Packet: 0x03b1 +#if PACKETVER >= 20081217 +packetLen(0x03b1, 22) +#elif PACKETVER >= 20081029 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03b1, 6) +#elif PACKETVER >= 20081008 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03b1, 7) +#elif PACKETVER >= 20080924 +packetLen(0x03b1, 20) +#elif PACKETVER >= 20080917 +packetLen(0x03b1, 6) +#elif PACKETVER >= 20080910 +packetLen(0x03b1, 10) +#elif PACKETVER >= 20080903 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03b1, 2) +#elif PACKETVER >= 20080730 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03b1, 4) +#elif PACKETVER >= 20080715 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03b1, 4) +#elif PACKETVER >= 20080528 +packetLen(0x03b1, -1) +#endif + +// Packet: 0x03b2 +#if PACKETVER >= 20081217 +packetLen(0x03b2, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03b2, 6) +#elif PACKETVER >= 20081126 +packetLen(0x03b2, 4) +#elif PACKETVER >= 20081119 +packetLen(0x03b2, 32) +#elif PACKETVER >= 20081029 +packetLen(0x03b2, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03b2, 10) +#elif PACKETVER >= 20081015 +packetLen(0x03b2, 282) +#elif PACKETVER >= 20081008 +packetLen(0x03b2, 2) +#elif PACKETVER >= 20081001 +packetLen(0x03b2, 6) +#elif PACKETVER >= 20080806 +packetLen(0x03b2, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03b2, 2) +#elif PACKETVER >= 20080722 +packetLen(0x03b2, 86) +#elif PACKETVER >= 20080715 +packetLen(0x03b2, 4) +#elif PACKETVER >= 20080624 +packetLen(0x03b2, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03b2, 6) +#elif PACKETVER >= 20080528 +packetLen(0x03b2, -1) +#endif + +// Packet: 0x03b3 +#if PACKETVER >= 20081203 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03b3, 6) +#elif PACKETVER >= 20081119 +packetLen(0x03b3, 8) +#elif PACKETVER >= 20081112 +packetLen(0x03b3, 26) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03b3, 6) +#elif PACKETVER >= 20081008 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03b3, 17) +#elif PACKETVER >= 20080924 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03b3, 11) +#elif PACKETVER >= 20080903 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03b3, 3) +#elif PACKETVER >= 20080820 +packetLen(0x03b3, 6) +#elif PACKETVER >= 20080813 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03b3, 24) +#elif PACKETVER >= 20080730 +packetLen(0x03b3, 4) +#elif PACKETVER >= 20080624 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03b3, 32) +#elif PACKETVER >= 20080528 +packetLen(0x03b3, -1) +#endif + +// Packet: 0x03b4 +#if PACKETVER >= 20081203 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03b4, 42) +#elif PACKETVER >= 20081119 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03b4, 8) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03b4, 8) +#elif PACKETVER >= 20081022 +packetLen(0x03b4, 14) +#elif PACKETVER >= 20081015 +packetLen(0x03b4, 2) +#elif PACKETVER >= 20081008 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03b4, 60) +#elif PACKETVER >= 20080924 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03b4, 54) +#elif PACKETVER >= 20080910 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03b4, 4) +#elif PACKETVER >= 20080827 +packetLen(0x03b4, 15) +#elif PACKETVER >= 20080820 +packetLen(0x03b4, 6) +#elif PACKETVER >= 20080813 +packetLen(0x03b4, 8) +#elif PACKETVER >= 20080806 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03b4, 15) +#elif PACKETVER >= 20080722 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20080715 +packetLen(0x03b4, 2) +#elif PACKETVER >= 20080701 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03b4, 27) +#elif PACKETVER >= 20080617 +packetLen(0x03b4, 29) +#elif PACKETVER >= 20080528 +packetLen(0x03b4, -1) +#endif + +// Packet: 0x03b5 +#if PACKETVER >= 20081217 +packetLen(0x03b5, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03b5, 20) +#elif PACKETVER >= 20081126 +packetLen(0x03b5, 33) +#elif PACKETVER >= 20081119 +packetLen(0x03b5, 8) +#elif PACKETVER >= 20081112 +packetLen(0x03b5, 2) +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03b5, 2) +#elif PACKETVER >= 20081001 +packetLen(0x03b5, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03b5, 66) +#elif PACKETVER >= 20080917 +packetLen(0x03b5, 31) +#elif PACKETVER >= 20080910 +packetLen(0x03b5, 10) +#elif PACKETVER >= 20080813 +packetLen(0x03b5, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03b5, 14) +#elif PACKETVER >= 20080730 +packetLen(0x03b5, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03b5, 2) +#elif PACKETVER >= 20080715 +packetLen(0x03b5, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03b5, 11) +#elif PACKETVER >= 20080528 +packetLen(0x03b5, -1) +#endif + +// Packet: 0x03b6 +#if PACKETVER >= 20081112 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03b6, 16) +#elif PACKETVER >= 20081029 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03b6, 6) +#elif PACKETVER >= 20081015 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03b6, 10) +#elif PACKETVER >= 20081001 +packetLen(0x03b6, 86) +#elif PACKETVER >= 20080924 +packetLen(0x03b6, 6) +#elif PACKETVER >= 20080917 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03b6, 8) +#elif PACKETVER >= 20080820 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03b6, 28) +#elif PACKETVER >= 20080806 +packetLen(0x03b6, 5) +#elif PACKETVER >= 20080708 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03b6, 10) +#elif PACKETVER >= 20080624 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03b6, 114) +#elif PACKETVER >= 20080528 +packetLen(0x03b6, -1) +#endif + +// Packet: 0x03b7 +#if PACKETVER >= 20081217 +packetLen(0x03b7, 29) +#elif PACKETVER >= 20081203 +packetLen(0x03b7, 182) +#elif PACKETVER >= 20081126 +packetLen(0x03b7, 2) +#elif PACKETVER >= 20081119 +packetLen(0x03b7, 6) +#elif PACKETVER >= 20081112 +packetLen(0x03b7, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03b7, 7) +#elif PACKETVER >= 20081022 +packetLen(0x03b7, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03b7, 28) +#elif PACKETVER >= 20081008 +packetLen(0x03b7, 34) +#elif PACKETVER >= 20081001 +packetLen(0x03b7, 30) +#elif PACKETVER >= 20080924 +packetLen(0x03b7, 21) +#elif PACKETVER >= 20080903 +packetLen(0x03b7, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03b7, 2) +#elif PACKETVER >= 20080820 +packetLen(0x03b7, 68) +#elif PACKETVER >= 20080813 +packetLen(0x03b7, 34) +#elif PACKETVER >= 20080806 +packetLen(0x03b7, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03b7, 67) +#elif PACKETVER >= 20080722 +packetLen(0x03b7, -1) +#elif PACKETVER >= 20080715 +packetLen(0x03b7, 9) +#elif PACKETVER >= 20080708 +packetLen(0x03b7, 4) +#elif PACKETVER >= 20080701 +packetLen(0x03b7, 2) +#elif PACKETVER >= 20080624 +packetLen(0x03b7, 4) +#elif PACKETVER >= 20080617 +packetLen(0x03b7, 8) +#elif PACKETVER >= 20080528 +packetLen(0x03b7, -1) +#endif + +// Packet: 0x03b8 +#if PACKETVER >= 20081119 +packetLen(0x03b8, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03b8, 2) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03b8, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03b8, 3) +#elif PACKETVER >= 20081008 +packetLen(0x03b8, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03b8, 11) +#elif PACKETVER >= 20080924 +packetLen(0x03b8, 4) +#elif PACKETVER >= 20080910 +packetLen(0x03b8, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03b8, 53) +#elif PACKETVER >= 20080827 +packetLen(0x03b8, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03b8, 6) +#elif PACKETVER >= 20080730 +packetLen(0x03b8, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03b8, 6) +#elif PACKETVER >= 20080528 +packetLen(0x03b8, -1) +#endif + +// Packet: 0x03b9 +#if PACKETVER >= 20081217 +packetLen(0x03b9, 18) +#elif PACKETVER >= 20081203 +packetLen(0x03b9, 3) +#elif PACKETVER >= 20081126 +packetLen(0x03b9, 2) +#elif PACKETVER >= 20081119 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03b9, 30) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03b9, 7) +#elif PACKETVER >= 20081015 +packetLen(0x03b9, 10) +#elif PACKETVER >= 20081008 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03b9, 6) +#elif PACKETVER >= 20080917 +packetLen(0x03b9, 22) +#elif PACKETVER >= 20080910 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03b9, 18) +#elif PACKETVER >= 20080827 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03b9, 10) +#elif PACKETVER >= 20080806 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03b9, 14) +#elif PACKETVER >= 20080722 +packetLen(0x03b9, 5) +#elif PACKETVER >= 20080715 +packetLen(0x03b9, 79) +#elif PACKETVER >= 20080708 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03b9, 28) +#elif PACKETVER >= 20080624 +packetLen(0x03b9, 19) +#elif PACKETVER >= 20080528 +packetLen(0x03b9, -1) +#endif + +// Packet: 0x03ba +#if PACKETVER >= 20081217 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03ba, 7) +#elif PACKETVER >= 20081126 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03ba, 6) +#elif PACKETVER >= 20081105 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03ba, 3) +#elif PACKETVER >= 20081022 +packetLen(0x03ba, 13) +#elif PACKETVER >= 20081015 +packetLen(0x03ba, 65) +#elif PACKETVER >= 20081008 +packetLen(0x03ba, 30) +#elif PACKETVER >= 20081001 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03ba, 4) +#elif PACKETVER >= 20080917 +packetLen(0x03ba, 7) +#elif PACKETVER >= 20080910 +packetLen(0x03ba, 60) +#elif PACKETVER >= 20080903 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03ba, 30) +#elif PACKETVER >= 20080820 +packetLen(0x03ba, 8) +#elif PACKETVER >= 20080813 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03ba, 6) +#elif PACKETVER >= 20080730 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03ba, 6) +#elif PACKETVER >= 20080715 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03ba, 7) +#elif PACKETVER >= 20080701 +packetLen(0x03ba, 14) +#elif PACKETVER >= 20080624 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03ba, 26) +#elif PACKETVER >= 20080528 +packetLen(0x03ba, -1) +#endif + +// Packet: 0x03bb +#if PACKETVER >= 20081217 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03bb, 30) +#elif PACKETVER >= 20081126 +packetLen(0x03bb, 34) +#elif PACKETVER >= 20081119 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03bb, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03bb, 17) +#elif PACKETVER >= 20081015 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03bb, 26) +#elif PACKETVER >= 20080924 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03bb, 3) +#elif PACKETVER >= 20080910 +packetLen(0x03bb, 8) +#elif PACKETVER >= 20080903 +packetLen(0x03bb, 6) +#elif PACKETVER >= 20080813 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03bb, 4) +#elif PACKETVER >= 20080730 +packetLen(0x03bb, 9) +#elif PACKETVER >= 20080722 +packetLen(0x03bb, 10) +#elif PACKETVER >= 20080701 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03bb, 28) +#elif PACKETVER >= 20080528 +packetLen(0x03bb, -1) +#endif + +// Packet: 0x03bc +#if PACKETVER >= 20081126 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03bc, 3) +#elif PACKETVER >= 20081105 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03bc, 6) +#elif PACKETVER >= 20081022 +packetLen(0x03bc, 3) +#elif PACKETVER >= 20081015 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03bc, 14) +#elif PACKETVER >= 20081001 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03bc, 26) +#elif PACKETVER >= 20080917 +packetLen(0x03bc, 4) +#elif PACKETVER >= 20080910 +packetLen(0x03bc, 10) +#elif PACKETVER >= 20080903 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03bc, 4) +#elif PACKETVER >= 20080820 +packetLen(0x03bc, 2) +#elif PACKETVER >= 20080730 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03bc, 10) +#elif PACKETVER >= 20080715 +packetLen(0x03bc, 13) +#elif PACKETVER >= 20080708 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03bc, 54) +#elif PACKETVER >= 20080624 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03bc, 182) +#elif PACKETVER >= 20080528 +packetLen(0x03bc, -1) +#endif + +// Packet: 0x03bd +#if PACKETVER >= 20081203 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03bd, 3) +#elif PACKETVER >= 20081112 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03bd, 3) +#elif PACKETVER >= 20081029 +packetLen(0x03bd, 6) +#elif PACKETVER >= 20081008 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03bd, 4) +#elif PACKETVER >= 20080910 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03bd, 6) +#elif PACKETVER >= 20080827 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03bd, 27) +#elif PACKETVER >= 20080813 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03bd, 31) +#elif PACKETVER >= 20080730 +packetLen(0x03bd, 6) +#elif PACKETVER >= 20080708 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03bd, 29) +#elif PACKETVER >= 20080528 +packetLen(0x03bd, -1) +#endif + +// Packet: 0x03be +#if PACKETVER >= 20081217 +packetLen(0x03be, 6) +#elif PACKETVER >= 20081203 +packetLen(0x03be, 31) +#elif PACKETVER >= 20081112 +packetLen(0x03be, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03be, 2) +#elif PACKETVER >= 20081029 +packetLen(0x03be, 28) +#elif PACKETVER >= 20081022 +packetLen(0x03be, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03be, 6) +#elif PACKETVER >= 20081008 +packetLen(0x03be, 26) +#elif PACKETVER >= 20080924 +packetLen(0x03be, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03be, 19) +#elif PACKETVER >= 20080910 +packetLen(0x03be, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03be, 6) +#elif PACKETVER >= 20080820 +packetLen(0x03be, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03be, 22) +#elif PACKETVER >= 20080806 +packetLen(0x03be, 5) +#elif PACKETVER >= 20080730 +packetLen(0x03be, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03be, 27) +#elif PACKETVER >= 20080715 +packetLen(0x03be, 6) +#elif PACKETVER >= 20080708 +packetLen(0x03be, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03be, 282) +#elif PACKETVER >= 20080624 +packetLen(0x03be, 3) +#elif PACKETVER >= 20080528 +packetLen(0x03be, -1) +#endif + +// Packet: 0x03bf +#if PACKETVER >= 20081217 +packetLen(0x03bf, 28) +#elif PACKETVER >= 20081203 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03bf, 14) +#elif PACKETVER >= 20081112 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03bf, 4) +#elif PACKETVER >= 20081029 +packetLen(0x03bf, 10) +#elif PACKETVER >= 20081022 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03bf, 2) +#elif PACKETVER >= 20081001 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03bf, 9) +#elif PACKETVER >= 20080910 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03bf, 14) +#elif PACKETVER >= 20080827 +packetLen(0x03bf, 7) +#elif PACKETVER >= 20080820 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03bf, 2) +#elif PACKETVER >= 20080806 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03bf, 6) +#elif PACKETVER >= 20080722 +packetLen(0x03bf, 8) +#elif PACKETVER >= 20080715 +packetLen(0x03bf, 6) +#elif PACKETVER >= 20080708 +packetLen(0x03bf, 23) +#elif PACKETVER >= 20080701 +packetLen(0x03bf, 22) +#elif PACKETVER >= 20080528 +packetLen(0x03bf, -1) +#endif + +// Packet: 0x03c0 +#if PACKETVER >= 20081119 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03c0, 17) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03c0, 7) +#elif PACKETVER >= 20081022 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03c0, 36) +#elif PACKETVER >= 20081008 +packetLen(0x03c0, 10) +#elif PACKETVER >= 20081001 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03c0, 20) +#elif PACKETVER >= 20080917 +packetLen(0x03c0, 7) +#elif PACKETVER >= 20080903 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03c0, 14) +#elif PACKETVER >= 20080820 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03c0, 7) +#elif PACKETVER >= 20080806 +packetLen(0x03c0, 12) +#elif PACKETVER >= 20080722 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20080715 +packetLen(0x03c0, 4) +#elif PACKETVER >= 20080708 +packetLen(0x03c0, 6) +#elif PACKETVER >= 20080701 +packetLen(0x03c0, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03c0, -1) +#endif + +// Packet: 0x03c1 +#if PACKETVER >= 20081203 +packetLen(0x03c1, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03c1, 4) +#elif PACKETVER >= 20081119 +packetLen(0x03c1, 10) +#elif PACKETVER >= 20081015 +packetLen(0x03c1, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03c1, 6) +#elif PACKETVER >= 20081001 +packetLen(0x03c1, 18) +#elif PACKETVER >= 20080924 +packetLen(0x03c1, 15) +#elif PACKETVER >= 20080917 +packetLen(0x03c1, 17) +#elif PACKETVER >= 20080910 +packetLen(0x03c1, 60) +#elif PACKETVER >= 20080806 +packetLen(0x03c1, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03c1, 2) +#elif PACKETVER >= 20080722 +packetLen(0x03c1, 58) +#elif PACKETVER >= 20080624 +packetLen(0x03c1, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03c1, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03c1, -1) +#endif + +// Packet: 0x03c2 +#if PACKETVER >= 20081126 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03c2, 20) +#elif PACKETVER >= 20081112 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03c2, 3) +#elif PACKETVER >= 20081029 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03c2, 29) +#elif PACKETVER >= 20081015 +packetLen(0x03c2, 6) +#elif PACKETVER >= 20081008 +packetLen(0x03c2, 4) +#elif PACKETVER >= 20080917 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03c2, 7) +#elif PACKETVER >= 20080903 +packetLen(0x03c2, 8) +#elif PACKETVER >= 20080827 +packetLen(0x03c2, 6) +#elif PACKETVER >= 20080806 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03c2, 3) +#elif PACKETVER >= 20080722 +packetLen(0x03c2, 9) +#elif PACKETVER >= 20080715 +packetLen(0x03c2, 14) +#elif PACKETVER >= 20080708 +packetLen(0x03c2, 3) +#elif PACKETVER >= 20080701 +packetLen(0x03c2, 10) +#elif PACKETVER >= 20080624 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03c2, 67) +#elif PACKETVER >= 20080528 +packetLen(0x03c2, -1) +#endif + +// Packet: 0x03c3 +#if PACKETVER >= 20081217 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03c3, 14) +#elif PACKETVER >= 20081119 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03c3, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03c3, 11) +#elif PACKETVER >= 20081015 +packetLen(0x03c3, 13) +#elif PACKETVER >= 20081008 +packetLen(0x03c3, 90) +#elif PACKETVER >= 20081001 +packetLen(0x03c3, 4) +#elif PACKETVER >= 20080924 +packetLen(0x03c3, 5) +#elif PACKETVER >= 20080806 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03c3, 6) +#elif PACKETVER >= 20080715 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03c3, 3) +#elif PACKETVER >= 20080528 +packetLen(0x03c3, -1) +#endif + +// Packet: 0x03c4 +#if PACKETVER >= 20081217 +packetLen(0x03c4, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03c4, 29) +#elif PACKETVER >= 20081126 +packetLen(0x03c4, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03c4, 33) +#elif PACKETVER >= 20081112 +packetLen(0x03c4, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03c4, 7) +#elif PACKETVER >= 20081029 +packetLen(0x03c4, 186) +#elif PACKETVER >= 20080827 +packetLen(0x03c4, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03c4, 65) +#elif PACKETVER >= 20080813 +packetLen(0x03c4, 29) +#elif PACKETVER >= 20080806 +packetLen(0x03c4, 5) +#elif PACKETVER >= 20080730 +packetLen(0x03c4, 6) +#elif PACKETVER >= 20080722 +packetLen(0x03c4, 7) +#elif PACKETVER >= 20080715 +packetLen(0x03c4, 28) +#elif PACKETVER >= 20080528 +packetLen(0x03c4, -1) +#endif + +// Packet: 0x03c5 +#if PACKETVER >= 20081217 +packetLen(0x03c5, 12) +#elif PACKETVER >= 20081029 +packetLen(0x03c5, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03c5, 18) +#elif PACKETVER >= 20080708 +packetLen(0x03c5, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03c5, 35) +#elif PACKETVER >= 20080624 +packetLen(0x03c5, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03c5, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03c5, -1) +#endif + +// Packet: 0x03c6 +#if PACKETVER >= 20081217 +packetLen(0x03c6, 7) +#elif PACKETVER >= 20081015 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03c6, 54) +#elif PACKETVER >= 20081001 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03c6, 6) +#elif PACKETVER >= 20080917 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03c6, 6) +#elif PACKETVER >= 20080903 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03c6, 29) +#elif PACKETVER >= 20080820 +packetLen(0x03c6, 32) +#elif PACKETVER >= 20080715 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03c6, 53) +#elif PACKETVER >= 20080624 +packetLen(0x03c6, 6) +#elif PACKETVER >= 20080617 +packetLen(0x03c6, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03c6, -1) +#endif + +// Packet: 0x03c7 +#if PACKETVER >= 20081217 +packetLen(0x03c7, 9) +#elif PACKETVER >= 20081203 +packetLen(0x03c7, 6) +#elif PACKETVER >= 20081119 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03c7, 26) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03c7, 14) +#elif PACKETVER >= 20081015 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03c7, 16) +#elif PACKETVER >= 20081001 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03c7, 10) +#elif PACKETVER >= 20080917 +packetLen(0x03c7, 5) +#elif PACKETVER >= 20080806 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03c7, 5) +#elif PACKETVER >= 20080722 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20080715 +packetLen(0x03c7, 4) +#elif PACKETVER >= 20080624 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03c7, 5) +#elif PACKETVER >= 20080528 +packetLen(0x03c7, -1) +#endif + +// Packet: 0x03c8 +#if PACKETVER >= 20081022 +packetLen(0x03c8, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03c8, 15) +#elif PACKETVER >= 20081008 +packetLen(0x03c8, 67) +#elif PACKETVER >= 20081001 +packetLen(0x03c8, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03c8, 53) +#elif PACKETVER >= 20080917 +packetLen(0x03c8, 3) +#elif PACKETVER >= 20080910 +packetLen(0x03c8, 2) +#elif PACKETVER >= 20080903 +packetLen(0x03c8, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03c8, 22) +#elif PACKETVER >= 20080820 +packetLen(0x03c8, 8) +#elif PACKETVER >= 20080813 +packetLen(0x03c8, 54) +#elif PACKETVER >= 20080806 +packetLen(0x03c8, 6) +#elif PACKETVER >= 20080730 +packetLen(0x03c8, 2) +#elif PACKETVER >= 20080722 +packetLen(0x03c8, 6) +#elif PACKETVER >= 20080715 +packetLen(0x03c8, 32) +#elif PACKETVER >= 20080708 +packetLen(0x03c8, 9) +#elif PACKETVER >= 20080528 +packetLen(0x03c8, -1) +#endif + +// Packet: 0x03c9 +#if PACKETVER >= 20081217 +packetLen(0x03c9, 68) +#elif PACKETVER >= 20081119 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03c9, 10) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081015 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03c9, 4) +#elif PACKETVER >= 20080917 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03c9, 6) +#elif PACKETVER >= 20080903 +packetLen(0x03c9, 4) +#elif PACKETVER >= 20080827 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03c9, 2) +#elif PACKETVER >= 20080813 +packetLen(0x03c9, 8) +#elif PACKETVER >= 20080806 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03c9, 16) +#elif PACKETVER >= 20080722 +packetLen(0x03c9, 2) +#elif PACKETVER >= 20080715 +packetLen(0x03c9, 33) +#elif PACKETVER >= 20080528 +packetLen(0x03c9, -1) +#endif + +// Packet: 0x03ca +#if PACKETVER >= 20081217 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03ca, 5) +#elif PACKETVER >= 20081126 +packetLen(0x03ca, 53) +#elif PACKETVER >= 20081119 +packetLen(0x03ca, 4) +#elif PACKETVER >= 20081105 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03ca, 14) +#elif PACKETVER >= 20081022 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03ca, 8) +#elif PACKETVER >= 20081008 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03ca, 29) +#elif PACKETVER >= 20080924 +packetLen(0x03ca, 6) +#elif PACKETVER >= 20080917 +packetLen(0x03ca, 8) +#elif PACKETVER >= 20080910 +packetLen(0x03ca, 53) +#elif PACKETVER >= 20080903 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03ca, 30) +#elif PACKETVER >= 20080820 +packetLen(0x03ca, 4) +#elif PACKETVER >= 20080813 +packetLen(0x03ca, 5) +#elif PACKETVER >= 20080806 +packetLen(0x03ca, 10) +#elif PACKETVER >= 20080528 +packetLen(0x03ca, -1) +#endif + +// Packet: 0x03cb +#if PACKETVER >= 20081217 +packetLen(0x03cb, 2) +#elif PACKETVER >= 20081126 +packetLen(0x03cb, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03cb, 30) +#elif PACKETVER >= 20081112 +packetLen(0x03cb, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03cb, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03cb, 26) +#elif PACKETVER >= 20081022 +packetLen(0x03cb, 4) +#elif PACKETVER >= 20081015 +packetLen(0x03cb, 5) +#elif PACKETVER >= 20081008 +packetLen(0x03cb, 9) +#elif PACKETVER >= 20080924 +packetLen(0x03cb, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03cb, 4) +#elif PACKETVER >= 20080730 +packetLen(0x03cb, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03cb, 22) +#elif PACKETVER >= 20080708 +packetLen(0x03cb, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03cb, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03cb, -1) +#endif + +// Packet: 0x03cc +#if PACKETVER >= 20081203 +packetLen(0x03cc, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03cc, 2) +#elif PACKETVER >= 20081105 +packetLen(0x03cc, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03cc, 4) +#elif PACKETVER >= 20081022 +packetLen(0x03cc, 10) +#elif PACKETVER >= 20081015 +packetLen(0x03cc, 9) +#elif PACKETVER >= 20080910 +packetLen(0x03cc, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03cc, 36) +#elif PACKETVER >= 20080827 +packetLen(0x03cc, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03cc, 2) +#elif PACKETVER >= 20080813 +packetLen(0x03cc, 4) +#elif PACKETVER >= 20080806 +packetLen(0x03cc, 14) +#elif PACKETVER >= 20080730 +packetLen(0x03cc, 4) +#elif PACKETVER >= 20080722 +packetLen(0x03cc, -1) +#elif PACKETVER >= 20080715 +packetLen(0x03cc, 31) +#elif PACKETVER >= 20080708 +packetLen(0x03cc, 7) +#elif PACKETVER >= 20080701 +packetLen(0x03cc, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03cc, 35) +#elif PACKETVER >= 20080617 +packetLen(0x03cc, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03cc, -1) +#endif + +// Packet: 0x03cd +#if PACKETVER >= 20081203 +packetLen(0x03cd, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03cd, 6) +#elif PACKETVER >= 20081119 +packetLen(0x03cd, 43) +#elif PACKETVER >= 20081112 +packetLen(0x03cd, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03cd, 81) +#elif PACKETVER >= 20081015 +packetLen(0x03cd, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03cd, 79) +#elif PACKETVER >= 20081001 +packetLen(0x03cd, 10) +#elif PACKETVER >= 20080924 +packetLen(0x03cd, 6) +#elif PACKETVER >= 20080903 +packetLen(0x03cd, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03cd, 31) +#elif PACKETVER >= 20080820 +packetLen(0x03cd, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03cd, 8) +#elif PACKETVER >= 20080806 +packetLen(0x03cd, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03cd, 60) +#elif PACKETVER >= 20080722 +packetLen(0x03cd, 4) +#elif PACKETVER >= 20080708 +packetLen(0x03cd, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03cd, 65) +#elif PACKETVER >= 20080624 +packetLen(0x03cd, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03cd, -1) +#endif + +// Packet: 0x03ce +#if PACKETVER >= 20081119 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03ce, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03ce, 30) +#elif PACKETVER >= 20081015 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03ce, 6) +#elif PACKETVER >= 20080924 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03ce, 9) +#elif PACKETVER >= 20080910 +packetLen(0x03ce, 8) +#elif PACKETVER >= 20080827 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03ce, 6) +#elif PACKETVER >= 20080701 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03ce, 7) +#elif PACKETVER >= 20080617 +packetLen(0x03ce, 39) +#elif PACKETVER >= 20080528 +packetLen(0x03ce, -1) +#endif + +// Packet: 0x03cf +#if PACKETVER >= 20081217 +packetLen(0x03cf, 3) +#elif PACKETVER >= 20081203 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03cf, 6) +#elif PACKETVER >= 20081022 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03cf, 22) +#elif PACKETVER >= 20081008 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03cf, 26) +#elif PACKETVER >= 20080924 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03cf, 8) +#elif PACKETVER >= 20080910 +packetLen(0x03cf, 2) +#elif PACKETVER >= 20080827 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03cf, 29) +#elif PACKETVER >= 20080806 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03cf, 65) +#elif PACKETVER >= 20080722 +packetLen(0x03cf, 10) +#elif PACKETVER >= 20080715 +packetLen(0x03cf, 4) +#elif PACKETVER >= 20080701 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03cf, 67) +#elif PACKETVER >= 20080617 +packetLen(0x03cf, 27) +#elif PACKETVER >= 20080528 +packetLen(0x03cf, -1) +#endif + +// Packet: 0x03d0 +#if PACKETVER >= 20081217 +packetLen(0x03d0, 2) +#elif PACKETVER >= 20081112 +packetLen(0x03d0, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03d0, 3) +#elif PACKETVER >= 20081029 +packetLen(0x03d0, 10) +#elif PACKETVER >= 20081022 +packetLen(0x03d0, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03d0, 10) +#elif PACKETVER >= 20080820 +packetLen(0x03d0, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03d0, 10) +#elif PACKETVER >= 20080806 +packetLen(0x03d0, 9) +#elif PACKETVER >= 20080730 +packetLen(0x03d0, 6) +#elif PACKETVER >= 20080722 +packetLen(0x03d0, 14) +#elif PACKETVER >= 20080715 +packetLen(0x03d0, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03d0, 10) +#elif PACKETVER >= 20080701 +packetLen(0x03d0, 8) +#elif PACKETVER >= 20080624 +packetLen(0x03d0, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03d0, 4) +#elif PACKETVER >= 20080528 +packetLen(0x03d0, -1) +#endif + +// Packet: 0x03d1 +#if PACKETVER >= 20081203 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03d1, 12) +#elif PACKETVER >= 20081119 +packetLen(0x03d1, 28) +#elif PACKETVER >= 20081112 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03d1, 13) +#elif PACKETVER >= 20081029 +packetLen(0x03d1, 4) +#elif PACKETVER >= 20081022 +packetLen(0x03d1, 10) +#elif PACKETVER >= 20081015 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03d1, 86) +#elif PACKETVER >= 20081001 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03d1, 42) +#elif PACKETVER >= 20080917 +packetLen(0x03d1, 26) +#elif PACKETVER >= 20080910 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03d1, 2) +#elif PACKETVER >= 20080827 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03d1, 26) +#elif PACKETVER >= 20080813 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03d1, 22) +#elif PACKETVER >= 20080730 +packetLen(0x03d1, 2) +#elif PACKETVER >= 20080722 +packetLen(0x03d1, 30) +#elif PACKETVER >= 20080715 +packetLen(0x03d1, 17) +#elif PACKETVER >= 20080708 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03d1, 6) +#elif PACKETVER >= 20080624 +packetLen(0x03d1, 81) +#elif PACKETVER >= 20080617 +packetLen(0x03d1, 7) +#elif PACKETVER >= 20080528 +packetLen(0x03d1, -1) +#endif + +// Packet: 0x03d2 +#if PACKETVER >= 20081217 +packetLen(0x03d2, 29) +#elif PACKETVER >= 20081126 +packetLen(0x03d2, 3) +#elif PACKETVER >= 20081119 +packetLen(0x03d2, 29) +#elif PACKETVER >= 20081112 +packetLen(0x03d2, 4) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081015 +packetLen(0x03d2, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03d2, 2) +#elif PACKETVER >= 20080924 +packetLen(0x03d2, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03d2, 6) +#elif PACKETVER >= 20080820 +packetLen(0x03d2, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03d2, 27) +#elif PACKETVER >= 20080806 +packetLen(0x03d2, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03d2, 3) +#elif PACKETVER >= 20080708 +packetLen(0x03d2, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03d2, 90) +#elif PACKETVER >= 20080624 +packetLen(0x03d2, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03d2, 6) +#elif PACKETVER >= 20080528 +packetLen(0x03d2, -1) +#endif + +// Packet: 0x03d3 +#if PACKETVER >= 20081217 +packetLen(0x03d3, 6) +#elif PACKETVER >= 20081203 +packetLen(0x03d3, 12) +#elif PACKETVER >= 20081119 +packetLen(0x03d3, 4) +#elif PACKETVER >= 20081112 +packetLen(0x03d3, 24) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03d3, 26) +#elif PACKETVER >= 20081029 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03d3, 71) +#elif PACKETVER >= 20081015 +packetLen(0x03d3, 8) +#elif PACKETVER >= 20081008 +packetLen(0x03d3, 16) +#elif PACKETVER >= 20081001 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03d3, 16) +#elif PACKETVER >= 20080910 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03d3, 3) +#elif PACKETVER >= 20080827 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03d3, 42) +#elif PACKETVER >= 20080813 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03d3, 30) +#elif PACKETVER >= 20080722 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20080715 +packetLen(0x03d3, 7) +#elif PACKETVER >= 20080701 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03d3, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03d3, -1) +#endif + +// Packet: 0x03d4 +#if PACKETVER >= 20081203 +packetLen(0x03d4, 14) +#elif PACKETVER >= 20081126 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03d4, 114) +#elif PACKETVER >= 20081105 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03d4, 2) +#elif PACKETVER >= 20081022 +packetLen(0x03d4, 30) +#elif PACKETVER >= 20081008 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03d4, 31) +#elif PACKETVER >= 20080924 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03d4, 2) +#elif PACKETVER >= 20080910 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03d4, 32) +#elif PACKETVER >= 20080827 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03d4, 4) +#elif PACKETVER >= 20080806 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20080730 +packetLen(0x03d4, 8) +#elif PACKETVER >= 20080715 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20080708 +packetLen(0x03d4, 54) +#elif PACKETVER >= 20080701 +packetLen(0x03d4, 12) +#elif PACKETVER >= 20080624 +packetLen(0x03d4, 14) +#elif PACKETVER >= 20080617 +packetLen(0x03d4, 27) +#elif PACKETVER >= 20080528 +packetLen(0x03d4, -1) +#endif + +// Packet: 0x03d5 +#if PACKETVER >= 20081217 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03d5, 8) +#elif PACKETVER >= 20081126 +packetLen(0x03d5, 6) +#elif PACKETVER >= 20081119 +packetLen(0x03d5, 102) +#elif PACKETVER >= 20081112 +packetLen(0x03d5, 60) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03d5, 10) +#elif PACKETVER >= 20081008 +packetLen(0x03d5, 30) +#elif PACKETVER >= 20081001 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03d5, 6) +#elif PACKETVER >= 20080917 +packetLen(0x03d5, 4) +#elif PACKETVER >= 20080910 +packetLen(0x03d5, 7) +#elif PACKETVER >= 20080903 +packetLen(0x03d5, 8) +#elif PACKETVER >= 20080827 +packetLen(0x03d5, 3) +#elif PACKETVER >= 20080820 +packetLen(0x03d5, 4) +#elif PACKETVER >= 20080813 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20080806 +packetLen(0x03d5, 21) +#elif PACKETVER >= 20080730 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03d5, 11) +#elif PACKETVER >= 20080624 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03d5, 4) +#elif PACKETVER >= 20080528 +packetLen(0x03d5, -1) +#endif + +// Packet: 0x03d6 +#if PACKETVER >= 20081203 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03d6, 79) +#elif PACKETVER >= 20081029 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03d6, 66) +#elif PACKETVER >= 20081015 +packetLen(0x03d6, 7) +#elif PACKETVER >= 20081008 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03d6, 79) +#elif PACKETVER >= 20080924 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03d6, 186) +#elif PACKETVER >= 20080910 +packetLen(0x03d6, 2) +#elif PACKETVER >= 20080903 +packetLen(0x03d6, 30) +#elif PACKETVER >= 20080827 +packetLen(0x03d6, 2) +#elif PACKETVER >= 20080820 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03d6, 5) +#elif PACKETVER >= 20080730 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03d6, 6) +#elif PACKETVER >= 20080715 +packetLen(0x03d6, 11) +#elif PACKETVER >= 20080708 +packetLen(0x03d6, 14) +#elif PACKETVER >= 20080701 +packetLen(0x03d6, 114) +#elif PACKETVER >= 20080528 +packetLen(0x03d6, -1) +#endif + +// Packet: 0x03d7 +#if PACKETVER >= 20081217 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03d7, 57) +#elif PACKETVER >= 20081126 +packetLen(0x03d7, 10) +#elif PACKETVER >= 20081119 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03d7, 31) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03d7, 11) +#elif PACKETVER >= 20081015 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03d7, 8) +#elif PACKETVER >= 20081001 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03d7, 8) +#elif PACKETVER >= 20080910 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03d7, 3) +#elif PACKETVER >= 20080730 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03d7, 3) +#elif PACKETVER >= 20080715 +packetLen(0x03d7, 5) +#elif PACKETVER >= 20080708 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03d7, 23) +#elif PACKETVER >= 20080528 +packetLen(0x03d7, -1) +#endif + +// Packet: 0x03d8 +#if PACKETVER >= 20081217 +packetLen(0x03d8, 10) +#elif PACKETVER >= 20081203 +packetLen(0x03d8, 2) +#elif PACKETVER >= 20081126 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03d8, 10) +#elif PACKETVER >= 20081029 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03d8, 14) +#elif PACKETVER >= 20081015 +packetLen(0x03d8, 7) +#elif PACKETVER >= 20081008 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03d8, 60) +#elif PACKETVER >= 20080917 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03d8, 29) +#elif PACKETVER >= 20080827 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03d8, 6) +#elif PACKETVER >= 20080813 +packetLen(0x03d8, 3) +#elif PACKETVER >= 20080730 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03d8, 8) +#elif PACKETVER >= 20080715 +packetLen(0x03d8, 18) +#elif PACKETVER >= 20080708 +packetLen(0x03d8, 282) +#elif PACKETVER >= 20080701 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03d8, 3) +#elif PACKETVER >= 20080617 +packetLen(0x03d8, 2) +#elif PACKETVER >= 20080528 +packetLen(0x03d8, -1) +#endif + +// Packet: 0x03d9 +#if PACKETVER >= 20081217 +packetLen(0x03d9, 4) +#elif PACKETVER >= 20081015 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03d9, 30) +#elif PACKETVER >= 20081001 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03d9, 30) +#elif PACKETVER >= 20080917 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03d9, 6) +#elif PACKETVER >= 20080903 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03d9, 7) +#elif PACKETVER >= 20080722 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20080715 +packetLen(0x03d9, 6) +#elif PACKETVER >= 20080708 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03d9, 6) +#elif PACKETVER >= 20080624 +packetLen(0x03d9, 30) +#elif PACKETVER >= 20080528 +packetLen(0x03d9, -1) +#endif + +// Packet: 0x03da +#if PACKETVER >= 20081217 +packetLen(0x03da, 3) +#elif PACKETVER >= 20081119 +packetLen(0x03da, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03da, 5) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x03da, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03da, 10) +#elif PACKETVER >= 20081015 +packetLen(0x03da, 29) +#elif PACKETVER >= 20081008 +packetLen(0x03da, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03da, 22) +#elif PACKETVER >= 20080924 +packetLen(0x03da, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03da, 11) +#elif PACKETVER >= 20080528 +packetLen(0x03da, -1) +#endif + +// Packet: 0x03db +#if PACKETVER >= 20081105 +packetLen(0x03db, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03db, 8) +#elif PACKETVER >= 20081022 +packetLen(0x03db, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03db, 10) +#elif PACKETVER >= 20081008 +packetLen(0x03db, 30) +#elif PACKETVER >= 20081001 +packetLen(0x03db, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03db, 23) +#elif PACKETVER >= 20080917 +packetLen(0x03db, 7) +#elif PACKETVER >= 20080910 +packetLen(0x03db, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03db, 30) +#elif PACKETVER >= 20080827 +packetLen(0x03db, 6) +#elif PACKETVER >= 20080820 +packetLen(0x03db, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03db, 3) +#elif PACKETVER >= 20080730 +packetLen(0x03db, -1) +#elif PACKETVER >= 20080722 +packetLen(0x03db, 3) +#elif PACKETVER >= 20080708 +packetLen(0x03db, -1) +#elif PACKETVER >= 20080701 +packetLen(0x03db, 79) +#elif PACKETVER >= 20080624 +packetLen(0x03db, -1) +#elif PACKETVER >= 20080617 +packetLen(0x03db, 6) +#elif PACKETVER >= 20080528 +packetLen(0x03db, -1) +#endif + +// Packet: 0x03dc +#if PACKETVER >= 20081217 +packetLen(0x03dc, 10) +#elif PACKETVER >= 20081203 +packetLen(0x03dc, 32) +#elif PACKETVER >= 20081126 +packetLen(0x03dc, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03dc, 26) +#elif PACKETVER >= 20081112 +packetLen(0x03dc, 7) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03dc, 68) +#elif PACKETVER >= 20081022 +packetLen(0x03dc, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03dc, 7) +#elif PACKETVER >= 20080924 +packetLen(0x03dc, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03dc, 2) +#elif PACKETVER >= 20080910 +packetLen(0x03dc, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03dc, 6) +#elif PACKETVER >= 20080827 +packetLen(0x03dc, 12) +#elif PACKETVER >= 20080820 +packetLen(0x03dc, 3) +#elif PACKETVER >= 20080806 +packetLen(0x03dc, 6) +#elif PACKETVER >= 20080730 +packetLen(0x03dc, 30) +#elif PACKETVER >= 20080722 +packetLen(0x03dc, -1) +#elif PACKETVER >= 20080715 +packetLen(0x03dc, 6) +#elif PACKETVER >= 20080701 +packetLen(0x03dc, -1) +#elif PACKETVER >= 20080624 +packetLen(0x03dc, 10) +#elif PACKETVER >= 20080617 +packetLen(0x03dc, 54) +#elif PACKETVER >= 20080528 +packetLen(0x03dc, -1) +#endif + +// Packet: 0x03dd +#if PACKETVER >= 20080624 +packetLen(0x03dd, 18) // AHC_GAME_GUARD +#endif + +// Packet: 0x03de +#if PACKETVER >= 20080624 +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD +#endif + +// Packet: 0x03e2 +#if PACKETVER >= 20081217 +packetLen(0x03e2, 10) +#elif PACKETVER >= 20081126 +packetLen(0x03e2, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03e2, 4) +#elif PACKETVER >= 20081112 +packetLen(0x03e2, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03e2, 8) +#elif PACKETVER >= 20081029 +packetLen(0x03e2, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03e2, 22) +#elif PACKETVER >= 20081015 +packetLen(0x03e2, 57) +#elif PACKETVER >= 20081001 +packetLen(0x03e2, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03e2, 28) +#elif PACKETVER >= 20080910 +packetLen(0x03e2, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03e2, 5) +#elif PACKETVER >= 20080827 +packetLen(0x03e2, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03e2, 7) +#elif PACKETVER >= 20080813 +packetLen(0x03e2, -1) +#endif + +// Packet: 0x03e3 +#if PACKETVER >= 20081217 +packetLen(0x03e3, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03e3, 3) +#elif PACKETVER >= 20081001 +packetLen(0x03e3, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03e3, 30) +#elif PACKETVER >= 20080903 +packetLen(0x03e3, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03e3, 6) +#elif PACKETVER >= 20080820 +packetLen(0x03e3, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03e3, 22) +#endif + +// Packet: 0x03e4 +#if PACKETVER >= 20081105 +packetLen(0x03e4, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03e4, 2) +#elif PACKETVER >= 20081022 +packetLen(0x03e4, 3) +#elif PACKETVER >= 20081015 +packetLen(0x03e4, 19) +#elif PACKETVER >= 20081008 +packetLen(0x03e4, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03e4, 28) +#elif PACKETVER >= 20080924 +packetLen(0x03e4, 14) +#elif PACKETVER >= 20080917 +packetLen(0x03e4, 7) +#elif PACKETVER >= 20080903 +packetLen(0x03e4, 6) +#elif PACKETVER >= 20080827 +packetLen(0x03e4, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03e4, 4) +#elif PACKETVER >= 20080813 +packetLen(0x03e4, -1) +#endif + +// Packet: 0x03e5 +#if PACKETVER >= 20081217 +packetLen(0x03e5, 3) +#elif PACKETVER >= 20081203 +packetLen(0x03e5, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03e5, 58) +#elif PACKETVER >= 20081119 +packetLen(0x03e5, 23) +#elif PACKETVER >= 20081112 +packetLen(0x03e5, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03e5, 10) +#elif PACKETVER >= 20081029 +packetLen(0x03e5, 4) +#elif PACKETVER >= 20081022 +packetLen(0x03e5, 6) +#elif PACKETVER >= 20081015 +packetLen(0x03e5, 28) +#elif PACKETVER >= 20081001 +packetLen(0x03e5, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03e5, 44) +#elif PACKETVER >= 20080910 +packetLen(0x03e5, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03e5, 12) +#elif PACKETVER >= 20080813 +packetLen(0x03e5, -1) +#endif + +// Packet: 0x03e6 +#if PACKETVER >= 20081217 +packetLen(0x03e6, 6) +#elif PACKETVER >= 20081203 +packetLen(0x03e6, 8) +#elif PACKETVER >= 20081126 +packetLen(0x03e6, 71) +#elif PACKETVER >= 20081119 +packetLen(0x03e6, 7) +#elif PACKETVER >= 20081112 +packetLen(0x03e6, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03e6, 2) +#elif PACKETVER >= 20081022 +packetLen(0x03e6, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03e6, 6) +#elif PACKETVER >= 20081008 +packetLen(0x03e6, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03e6, 3) +#elif PACKETVER >= 20080924 +packetLen(0x03e6, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03e6, 4) +#elif PACKETVER >= 20080910 +packetLen(0x03e6, 2) +#elif PACKETVER >= 20080903 +packetLen(0x03e6, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03e6, 2) +#elif PACKETVER >= 20080813 +packetLen(0x03e6, 30) +#endif + +// Packet: 0x03e7 +#if PACKETVER >= 20081217 +packetLen(0x03e7, 66) +#elif PACKETVER >= 20081203 +packetLen(0x03e7, 90) +#elif PACKETVER >= 20081119 +packetLen(0x03e7, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03e7, 21) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03e7, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03e7, 3) +#elif PACKETVER >= 20081001 +packetLen(0x03e7, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03e7, 6) +#elif PACKETVER >= 20080903 +packetLen(0x03e7, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03e7, 7) +#elif PACKETVER >= 20080820 +packetLen(0x03e7, 3) +#elif PACKETVER >= 20080813 +packetLen(0x03e7, -1) +#endif + +// Packet: 0x03e8 +#if PACKETVER >= 20081217 +packetLen(0x03e8, 2) +#elif PACKETVER >= 20081105 +packetLen(0x03e8, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03e8, 2) +#elif PACKETVER >= 20081022 +packetLen(0x03e8, 10) +#elif PACKETVER >= 20081015 +packetLen(0x03e8, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03e8, 6) +#elif PACKETVER >= 20081001 +packetLen(0x03e8, 34) +#elif PACKETVER >= 20080827 +packetLen(0x03e8, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03e8, 6) +#elif PACKETVER >= 20080813 +packetLen(0x03e8, -1) +#endif + +// Packet: 0x03e9 +#if PACKETVER >= 20081105 +packetLen(0x03e9, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03e9, 54) +#elif PACKETVER >= 20081022 +packetLen(0x03e9, 6) +#elif PACKETVER >= 20081008 +packetLen(0x03e9, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03e9, 6) +#elif PACKETVER >= 20080924 +packetLen(0x03e9, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03e9, 68) +#elif PACKETVER >= 20080910 +packetLen(0x03e9, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03e9, 39) +#elif PACKETVER >= 20080813 +packetLen(0x03e9, -1) +#endif + +// Packet: 0x03ea +#if PACKETVER >= 20081217 +packetLen(0x03ea, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03ea, 4) +#elif PACKETVER >= 20081126 +packetLen(0x03ea, 5) +#elif PACKETVER >= 20081119 +packetLen(0x03ea, 4) +#elif PACKETVER >= 20081022 +packetLen(0x03ea, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03ea, 10) +#elif PACKETVER >= 20081001 +packetLen(0x03ea, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03ea, 24) +#elif PACKETVER >= 20080827 +packetLen(0x03ea, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03ea, 2) +#elif PACKETVER >= 20080813 +packetLen(0x03ea, -1) +#endif + +// Packet: 0x03eb +#if PACKETVER >= 20081126 +packetLen(0x03eb, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03eb, 3) +#elif PACKETVER >= 20081112 +packetLen(0x03eb, 12) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081001 +packetLen(0x03eb, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03eb, 55) +#elif PACKETVER >= 20080903 +packetLen(0x03eb, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03eb, 20) +#elif PACKETVER >= 20080813 +packetLen(0x03eb, -1) +#endif + +// Packet: 0x03ec +#if PACKETVER >= 20081217 +packetLen(0x03ec, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03ec, 7) +#elif PACKETVER >= 20081126 +packetLen(0x03ec, 5) +#elif PACKETVER >= 20081119 +packetLen(0x03ec, 9) +#elif PACKETVER >= 20081022 +packetLen(0x03ec, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03ec, 6) +#elif PACKETVER >= 20081008 +packetLen(0x03ec, 5) +#elif PACKETVER >= 20081001 +packetLen(0x03ec, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03ec, 14) +#elif PACKETVER >= 20080917 +packetLen(0x03ec, 6) +#elif PACKETVER >= 20080910 +packetLen(0x03ec, 3) +#elif PACKETVER >= 20080903 +packetLen(0x03ec, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03ec, 36) +#elif PACKETVER >= 20080813 +packetLen(0x03ec, -1) +#endif + +// Packet: 0x03ed +#if PACKETVER >= 20081217 +packetLen(0x03ed, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03ed, 282) +#elif PACKETVER >= 20081015 +packetLen(0x03ed, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03ed, 3) +#elif PACKETVER >= 20081001 +packetLen(0x03ed, 11) +#elif PACKETVER >= 20080827 +packetLen(0x03ed, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03ed, 13) +#elif PACKETVER >= 20080813 +packetLen(0x03ed, -1) +#endif + +// Packet: 0x03ee +#if PACKETVER >= 20081217 +packetLen(0x03ee, 10) +#elif PACKETVER >= 20081203 +packetLen(0x03ee, 59) +#elif PACKETVER >= 20081112 +packetLen(0x03ee, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03ee, 6) +#elif PACKETVER >= 20081029 +packetLen(0x03ee, 81) +#elif PACKETVER >= 20081022 +packetLen(0x03ee, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03ee, 3) +#elif PACKETVER >= 20081008 +packetLen(0x03ee, 7) +#elif PACKETVER >= 20081001 +packetLen(0x03ee, 27) +#elif PACKETVER >= 20080813 +packetLen(0x03ee, -1) +#endif + +// Packet: 0x03ef +#if PACKETVER >= 20081217 +packetLen(0x03ef, 6) +#elif PACKETVER >= 20081203 +packetLen(0x03ef, 10) +#elif PACKETVER >= 20081119 +packetLen(0x03ef, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03ef, 6) +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03ef, 6) +#elif PACKETVER >= 20081015 +packetLen(0x03ef, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03ef, 8) +#elif PACKETVER >= 20080917 +packetLen(0x03ef, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03ef, 59) +#elif PACKETVER >= 20080903 +packetLen(0x03ef, 10) +#elif PACKETVER >= 20080827 +packetLen(0x03ef, 8) +#elif PACKETVER >= 20080820 +packetLen(0x03ef, 11) +#elif PACKETVER >= 20080813 +packetLen(0x03ef, 3) +#endif + +// Packet: 0x03f0 +#if PACKETVER >= 20081217 +packetLen(0x03f0, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03f0, 22) +#elif PACKETVER >= 20081126 +packetLen(0x03f0, 3) +#elif PACKETVER >= 20081105 +packetLen(0x03f0, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03f0, 21) +#elif PACKETVER >= 20081022 +packetLen(0x03f0, 26) +#elif PACKETVER >= 20080924 +packetLen(0x03f0, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03f0, 6) +#elif PACKETVER >= 20080903 +packetLen(0x03f0, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03f0, 11) +#elif PACKETVER >= 20080820 +packetLen(0x03f0, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03f0, 42) +#endif + +// Packet: 0x03f1 +#if PACKETVER >= 20081105 +packetLen(0x03f1, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03f1, 4) +#elif PACKETVER >= 20081015 +packetLen(0x03f1, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03f1, 4) +#elif PACKETVER >= 20080910 +packetLen(0x03f1, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03f1, 79) +#elif PACKETVER >= 20080827 +packetLen(0x03f1, 10) +#elif PACKETVER >= 20080813 +packetLen(0x03f1, -1) +#endif + +// Packet: 0x03f2 +#if PACKETVER >= 20081126 +packetLen(0x03f2, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03f2, 26) +#elif PACKETVER >= 20081105 +packetLen(0x03f2, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03f2, 4) +#elif PACKETVER >= 20081022 +packetLen(0x03f2, 8) +#elif PACKETVER >= 20081015 +packetLen(0x03f2, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03f2, 22) +#elif PACKETVER >= 20081001 +packetLen(0x03f2, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03f2, 7) +#elif PACKETVER >= 20080910 +packetLen(0x03f2, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03f2, 14) +#elif PACKETVER >= 20080827 +packetLen(0x03f2, 23) +#elif PACKETVER >= 20080813 +packetLen(0x03f2, -1) +#endif + +// Packet: 0x03f3 +#if PACKETVER >= 20081203 +packetLen(0x03f3, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03f3, 6) +#elif PACKETVER >= 20081119 +packetLen(0x03f3, 9) +#elif PACKETVER >= 20081112 +packetLen(0x03f3, 34) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081001 +packetLen(0x03f3, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03f3, 3) +#elif PACKETVER >= 20080917 +packetLen(0x03f3, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03f3, 30) +#elif PACKETVER >= 20080903 +packetLen(0x03f3, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03f3, 3) +#elif PACKETVER >= 20080813 +packetLen(0x03f3, -1) +#endif + +// Packet: 0x03f4 +#if PACKETVER >= 20081217 +packetLen(0x03f4, 5) +#elif PACKETVER >= 20081203 +packetLen(0x03f4, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03f4, 7) +#elif PACKETVER >= 20080924 +packetLen(0x03f4, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03f4, 14) +#elif PACKETVER >= 20080910 +packetLen(0x03f4, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03f4, 6) +#elif PACKETVER >= 20080820 +packetLen(0x03f4, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03f4, 6) +#endif + +// Packet: 0x03f5 +#if PACKETVER >= 20081217 +packetLen(0x03f5, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03f5, 19) +#elif PACKETVER >= 20081126 +packetLen(0x03f5, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03f5, 7) +#elif PACKETVER >= 20081112 +packetLen(0x03f5, 11) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03f5, 54) +#elif PACKETVER >= 20081029 +packetLen(0x03f5, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03f5, 2) +#elif PACKETVER >= 20081015 +packetLen(0x03f5, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03f5, 30) +#elif PACKETVER >= 20081001 +packetLen(0x03f5, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03f5, 33) +#elif PACKETVER >= 20080917 +packetLen(0x03f5, 30) +#elif PACKETVER >= 20080910 +packetLen(0x03f5, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03f5, 282) +#elif PACKETVER >= 20080827 +packetLen(0x03f5, -1) +#elif PACKETVER >= 20080820 +packetLen(0x03f5, 3) +#elif PACKETVER >= 20080813 +packetLen(0x03f5, 8) +#endif + +// Packet: 0x03f6 +#if PACKETVER >= 20081217 +packetLen(0x03f6, 4) +#elif PACKETVER >= 20081203 +packetLen(0x03f6, 22) +#elif PACKETVER >= 20081119 +packetLen(0x03f6, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03f6, 4) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03f6, 6) +#elif PACKETVER >= 20081022 +packetLen(0x03f6, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03f6, 6) +#elif PACKETVER >= 20081008 +packetLen(0x03f6, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03f6, 44) +#elif PACKETVER >= 20080910 +packetLen(0x03f6, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03f6, 10) +#elif PACKETVER >= 20080813 +packetLen(0x03f6, -1) +#endif + +// Packet: 0x03f7 +#if PACKETVER >= 20081217 +packetLen(0x03f7, -1) +#elif PACKETVER >= 20081203 +packetLen(0x03f7, 27) +#elif PACKETVER >= 20081126 +packetLen(0x03f7, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03f7, 66) +#elif PACKETVER >= 20081112 +packetLen(0x03f7, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03f7, 19) +#elif PACKETVER >= 20081029 +packetLen(0x03f7, 7) +#elif PACKETVER >= 20081022 +packetLen(0x03f7, 3) +#elif PACKETVER >= 20081015 +packetLen(0x03f7, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03f7, 10) +#elif PACKETVER >= 20081001 +packetLen(0x03f7, 7) +#elif PACKETVER >= 20080924 +packetLen(0x03f7, 39) +#elif PACKETVER >= 20080917 +packetLen(0x03f7, 15) +#elif PACKETVER >= 20080910 +packetLen(0x03f7, 9) +#elif PACKETVER >= 20080903 +packetLen(0x03f7, 2) +#elif PACKETVER >= 20080827 +packetLen(0x03f7, 30) +#elif PACKETVER >= 20080820 +packetLen(0x03f7, 8) +#elif PACKETVER >= 20080813 +packetLen(0x03f7, 6) +#endif + +// Packet: 0x03f8 +#if PACKETVER >= 20081126 +packetLen(0x03f8, -1) +#elif PACKETVER >= 20081119 +packetLen(0x03f8, 39) +#elif PACKETVER >= 20081112 +packetLen(0x03f8, 7) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03f8, 32) +#elif PACKETVER >= 20081029 +packetLen(0x03f8, 27) +#elif PACKETVER >= 20081022 +packetLen(0x03f8, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03f8, 6) +#elif PACKETVER >= 20081001 +packetLen(0x03f8, -1) +#elif PACKETVER >= 20080924 +packetLen(0x03f8, 14) +#elif PACKETVER >= 20080917 +packetLen(0x03f8, 3) +#elif PACKETVER >= 20080910 +packetLen(0x03f8, 6) +#elif PACKETVER >= 20080820 +packetLen(0x03f8, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03f8, 4) +#endif + +// Packet: 0x03f9 +#if PACKETVER >= 20081203 +packetLen(0x03f9, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03f9, 21) +#elif PACKETVER >= 20081119 +packetLen(0x03f9, 22) +#elif PACKETVER >= 20081112 +packetLen(0x03f9, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03f9, 6) +#elif PACKETVER >= 20081029 +packetLen(0x03f9, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03f9, 10) +#elif PACKETVER >= 20080820 +packetLen(0x03f9, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03f9, 3) +#endif + +// Packet: 0x03fa +#if PACKETVER >= 20081217 +packetLen(0x03fa, 33) +#elif PACKETVER >= 20081126 +packetLen(0x03fa, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03fa, 2) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x03fa, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03fa, 5) +#elif PACKETVER >= 20081008 +packetLen(0x03fa, -1) +#elif PACKETVER >= 20081001 +packetLen(0x03fa, 21) +#elif PACKETVER >= 20080924 +packetLen(0x03fa, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03fa, 6) +#elif PACKETVER >= 20080820 +packetLen(0x03fa, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03fa, 81) +#endif + +// Packet: 0x03fb +#if PACKETVER >= 20081217 +packetLen(0x03fb, 2) +#elif PACKETVER >= 20081112 +packetLen(0x03fb, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03fb, 17) +#elif PACKETVER >= 20081029 +packetLen(0x03fb, -1) +#elif PACKETVER >= 20081022 +packetLen(0x03fb, 5) +#elif PACKETVER >= 20081015 +packetLen(0x03fb, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03fb, 12) +#elif PACKETVER >= 20081001 +packetLen(0x03fb, 30) +#elif PACKETVER >= 20080917 +packetLen(0x03fb, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03fb, 67) +#elif PACKETVER >= 20080903 +packetLen(0x03fb, 4) +#elif PACKETVER >= 20080827 +packetLen(0x03fb, 11) +#elif PACKETVER >= 20080820 +packetLen(0x03fb, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03fb, 33) +#endif + +// Packet: 0x03fc +#if PACKETVER >= 20081217 +packetLen(0x03fc, 54) +#elif PACKETVER >= 20081119 +packetLen(0x03fc, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03fc, 8) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081015 +packetLen(0x03fc, -1) +#elif PACKETVER >= 20081008 +packetLen(0x03fc, 10) +#elif PACKETVER >= 20081001 +packetLen(0x03fc, 5) +#elif PACKETVER >= 20080924 +packetLen(0x03fc, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03fc, 67) +#elif PACKETVER >= 20080820 +packetLen(0x03fc, -1) +#elif PACKETVER >= 20080813 +packetLen(0x03fc, 11) +#endif + +// Packet: 0x03fd +#if PACKETVER >= 20081203 +packetLen(0x03fd, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03fd, 2) +#elif PACKETVER >= 20081112 +packetLen(0x03fd, -1) +#elif PACKETVER >= 20081105 +packetLen(0x03fd, 114) +#elif PACKETVER >= 20081029 +packetLen(0x03fd, 6) +#elif PACKETVER >= 20081022 +packetLen(0x03fd, 32) +#elif PACKETVER >= 20081015 +packetLen(0x03fd, 4) +#elif PACKETVER >= 20081008 +packetLen(0x03fd, 27) +#elif PACKETVER >= 20081001 +packetLen(0x03fd, 282) +#elif PACKETVER >= 20080924 +packetLen(0x03fd, 182) +#elif PACKETVER >= 20080917 +packetLen(0x03fd, 2) +#elif PACKETVER >= 20080910 +packetLen(0x03fd, -1) +#elif PACKETVER >= 20080903 +packetLen(0x03fd, 68) +#elif PACKETVER >= 20080827 +packetLen(0x03fd, 7) +#elif PACKETVER >= 20080820 +packetLen(0x03fd, 2) +#elif PACKETVER >= 20080813 +packetLen(0x03fd, 182) +#endif + +// Packet: 0x03fe +#if PACKETVER >= 20081119 +packetLen(0x03fe, -1) +#elif PACKETVER >= 20081112 +packetLen(0x03fe, 67) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x03fe, -1) +#elif PACKETVER >= 20081029 +packetLen(0x03fe, 4) +#elif PACKETVER >= 20081022 +packetLen(0x03fe, -1) +#elif PACKETVER >= 20081015 +packetLen(0x03fe, 2) +#elif PACKETVER >= 20081008 +packetLen(0x03fe, 11) +#elif PACKETVER >= 20080924 +packetLen(0x03fe, -1) +#elif PACKETVER >= 20080917 +packetLen(0x03fe, 6) +#elif PACKETVER >= 20080910 +packetLen(0x03fe, 57) +#elif PACKETVER >= 20080903 +packetLen(0x03fe, 10) +#elif PACKETVER >= 20080827 +packetLen(0x03fe, 23) +#elif PACKETVER >= 20080813 +packetLen(0x03fe, -1) +#endif + +// Packet: 0x03ff +#if PACKETVER >= 20081217 +packetLen(0x03ff, 4) +#elif PACKETVER >= 20081203 +packetLen(0x03ff, -1) +#elif PACKETVER >= 20081126 +packetLen(0x03ff, 6) +#elif PACKETVER >= 20080917 +packetLen(0x03ff, -1) +#elif PACKETVER >= 20080910 +packetLen(0x03ff, 2) +#elif PACKETVER >= 20080903 +packetLen(0x03ff, -1) +#elif PACKETVER >= 20080827 +packetLen(0x03ff, 14) +#elif PACKETVER >= 20080813 +packetLen(0x03ff, -1) +#endif + +// Packet: 0x0400 +#if PACKETVER >= 20081217 +packetLen(0x0400, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0400, 12) +#elif PACKETVER >= 20081029 +packetLen(0x0400, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0400, 4) +#elif PACKETVER >= 20081008 +packetLen(0x0400, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0400, 2) +#elif PACKETVER >= 20080813 +packetLen(0x0400, -1) +#endif + +// Packet: 0x0401 +#if PACKETVER >= 20081217 +packetLen(0x0401, 2) +#elif PACKETVER >= 20081203 +packetLen(0x0401, 26) +#elif PACKETVER >= 20081126 +packetLen(0x0401, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0401, 11) +#elif PACKETVER >= 20081112 +packetLen(0x0401, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0401, 34) +#elif PACKETVER >= 20081029 +packetLen(0x0401, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0401, 2) +#elif PACKETVER >= 20081015 +packetLen(0x0401, 9) +#elif PACKETVER >= 20081008 +packetLen(0x0401, 4) +#elif PACKETVER >= 20081001 +packetLen(0x0401, 65) +#elif PACKETVER >= 20080917 +packetLen(0x0401, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0401, 10) +#elif PACKETVER >= 20080903 +packetLen(0x0401, 6) +#elif PACKETVER >= 20080813 +packetLen(0x0401, -1) +#endif + +// Packet: 0x0402 +#if PACKETVER >= 20081217 +packetLen(0x0402, 14) +#elif PACKETVER >= 20081203 +packetLen(0x0402, 2) +#elif PACKETVER >= 20081119 +packetLen(0x0402, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0402, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0402, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0402, 4) +#elif PACKETVER >= 20081008 +packetLen(0x0402, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0402, 114) +#elif PACKETVER >= 20080924 +packetLen(0x0402, 4) +#elif PACKETVER >= 20080917 +packetLen(0x0402, 10) +#elif PACKETVER >= 20080910 +packetLen(0x0402, 43) +#elif PACKETVER >= 20080827 +packetLen(0x0402, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0402, 16) +#elif PACKETVER >= 20080813 +packetLen(0x0402, 6) +#endif + +// Packet: 0x0403 +#if PACKETVER >= 20081119 +packetLen(0x0403, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0403, 19) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0403, 6) +#elif PACKETVER >= 20080910 +packetLen(0x0403, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0403, 4) +#elif PACKETVER >= 20080813 +packetLen(0x0403, -1) +#endif + +// Packet: 0x0404 +#if PACKETVER >= 20081217 +packetLen(0x0404, 4) +#elif PACKETVER >= 20081203 +packetLen(0x0404, 11) +#elif PACKETVER >= 20081022 +packetLen(0x0404, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0404, 27) +#elif PACKETVER >= 20081008 +packetLen(0x0404, 13) +#elif PACKETVER >= 20080924 +packetLen(0x0404, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0404, 26) +#elif PACKETVER >= 20080910 +packetLen(0x0404, 3) +#elif PACKETVER >= 20080827 +packetLen(0x0404, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0404, 3) +#elif PACKETVER >= 20080813 +packetLen(0x0404, -1) +#endif + +// Packet: 0x0405 +#if PACKETVER >= 20081217 +packetLen(0x0405, 4) +#elif PACKETVER >= 20081119 +packetLen(0x0405, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0405, 57) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0405, 6) +#elif PACKETVER >= 20081022 +packetLen(0x0405, 9) +#elif PACKETVER >= 20081015 +packetLen(0x0405, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0405, 6) +#elif PACKETVER >= 20080924 +packetLen(0x0405, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0405, 14) +#elif PACKETVER >= 20080903 +packetLen(0x0405, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0405, 4) +#elif PACKETVER >= 20080820 +packetLen(0x0405, 3) +#elif PACKETVER >= 20080813 +packetLen(0x0405, 10) +#endif + +// Packet: 0x0406 +#if PACKETVER >= 20081217 +packetLen(0x0406, 16) +#elif PACKETVER >= 20081203 +packetLen(0x0406, 26) +#elif PACKETVER >= 20081112 +packetLen(0x0406, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0406, 10) +#elif PACKETVER >= 20081022 +packetLen(0x0406, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0406, 43) +#elif PACKETVER >= 20081001 +packetLen(0x0406, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0406, 3) +#elif PACKETVER >= 20080910 +packetLen(0x0406, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0406, 2) +#elif PACKETVER >= 20080820 +packetLen(0x0406, -1) +#elif PACKETVER >= 20080813 +packetLen(0x0406, 8) +#endif + +// Packet: 0x0407 +#if PACKETVER >= 20081203 +packetLen(0x0407, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0407, 28) +#elif PACKETVER >= 20081119 +packetLen(0x0407, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0407, 12) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0407, 2) +#elif PACKETVER >= 20081029 +packetLen(0x0407, 6) +#elif PACKETVER >= 20081015 +packetLen(0x0407, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0407, 102) +#elif PACKETVER >= 20081001 +packetLen(0x0407, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0407, 7) +#elif PACKETVER >= 20080903 +packetLen(0x0407, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0407, 10) +#elif PACKETVER >= 20080820 +packetLen(0x0407, 6) +#elif PACKETVER >= 20080813 +packetLen(0x0407, -1) +#endif + +// Packet: 0x0408 +#if PACKETVER >= 20081022 +packetLen(0x0408, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0408, 59) +#elif PACKETVER >= 20081008 +packetLen(0x0408, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0408, 26) +#elif PACKETVER >= 20080924 +packetLen(0x0408, 12) +#elif PACKETVER >= 20080917 +packetLen(0x0408, 22) +#elif PACKETVER >= 20080910 +packetLen(0x0408, 5) +#elif PACKETVER >= 20080903 +packetLen(0x0408, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0408, 28) +#elif PACKETVER >= 20080820 +packetLen(0x0408, 29) +#elif PACKETVER >= 20080813 +packetLen(0x0408, 2) +#endif + +// Packet: 0x0409 +#if PACKETVER >= 20081217 +packetLen(0x0409, 7) +#elif PACKETVER >= 20081203 +packetLen(0x0409, 10) +#elif PACKETVER >= 20081126 +packetLen(0x0409, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0409, 6) +#elif PACKETVER >= 20081112 +packetLen(0x0409, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0409, 9) +#elif PACKETVER >= 20081029 +packetLen(0x0409, 2) +#elif PACKETVER >= 20081022 +packetLen(0x0409, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0409, 86) +#elif PACKETVER >= 20081008 +packetLen(0x0409, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0409, 26) +#elif PACKETVER >= 20080813 +packetLen(0x0409, -1) +#endif + +// Packet: 0x040a +#if PACKETVER >= 20081217 +packetLen(0x040a, -1) +#elif PACKETVER >= 20081203 +packetLen(0x040a, 3) +#elif PACKETVER >= 20081119 +packetLen(0x040a, -1) +#elif PACKETVER >= 20081112 +packetLen(0x040a, 10) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x040a, 19) +#elif PACKETVER >= 20081029 +packetLen(0x040a, -1) +#elif PACKETVER >= 20081022 +packetLen(0x040a, 6) +#elif PACKETVER >= 20081015 +packetLen(0x040a, 186) +#elif PACKETVER >= 20081008 +packetLen(0x040a, -1) +#elif PACKETVER >= 20081001 +packetLen(0x040a, 3) +#elif PACKETVER >= 20080917 +packetLen(0x040a, -1) +#elif PACKETVER >= 20080910 +packetLen(0x040a, 11) +#elif PACKETVER >= 20080903 +packetLen(0x040a, 4) +#elif PACKETVER >= 20080813 +packetLen(0x040a, -1) +#endif + +// Packet: 0x040b +#if PACKETVER >= 20081217 +packetLen(0x040b, -1) +#elif PACKETVER >= 20081203 +packetLen(0x040b, 67) +#elif PACKETVER >= 20081126 +packetLen(0x040b, -1) +#elif PACKETVER >= 20081119 +packetLen(0x040b, 5) +#elif PACKETVER >= 20081112 +packetLen(0x040b, 97) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x040b, 27) +#elif PACKETVER >= 20081008 +packetLen(0x040b, -1) +#elif PACKETVER >= 20081001 +packetLen(0x040b, 26) +#elif PACKETVER >= 20080924 +packetLen(0x040b, 9) +#elif PACKETVER >= 20080917 +packetLen(0x040b, 10) +#elif PACKETVER >= 20080903 +packetLen(0x040b, -1) +#elif PACKETVER >= 20080827 +packetLen(0x040b, 4) +#elif PACKETVER >= 20080820 +packetLen(0x040b, 57) +#elif PACKETVER >= 20080813 +packetLen(0x040b, -1) +#endif + +// Packet: 0x040c +#if PACKETVER >= 20081203 +packetLen(0x040c, -1) +#elif PACKETVER >= 20081126 +packetLen(0x040c, 39) +#elif PACKETVER >= 20081119 +packetLen(0x040c, 21) +#elif PACKETVER >= 20081112 +packetLen(0x040c, 31) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x040c, 65) +#elif PACKETVER >= 20081029 +packetLen(0x040c, -1) +#elif PACKETVER >= 20081022 +packetLen(0x040c, 4) +#elif PACKETVER >= 20081008 +packetLen(0x040c, -1) +#elif PACKETVER >= 20081001 +packetLen(0x040c, 4) +#elif PACKETVER >= 20080924 +packetLen(0x040c, 28) +#elif PACKETVER >= 20080917 +packetLen(0x040c, -1) +#elif PACKETVER >= 20080910 +packetLen(0x040c, 11) +#elif PACKETVER >= 20080903 +packetLen(0x040c, 26) +#elif PACKETVER >= 20080827 +packetLen(0x040c, 20) +#elif PACKETVER >= 20080820 +packetLen(0x040c, -1) +#endif + +// Packet: 0x040d +#if PACKETVER >= 20081217 +packetLen(0x040d, -1) +#elif PACKETVER >= 20081203 +packetLen(0x040d, 8) +#elif PACKETVER >= 20081126 +packetLen(0x040d, -1) +#elif PACKETVER >= 20081119 +packetLen(0x040d, 57) +#elif PACKETVER >= 20081105 +packetLen(0x040d, -1) +#elif PACKETVER >= 20081029 +packetLen(0x040d, 7) +#elif PACKETVER >= 20081008 +packetLen(0x040d, -1) +#elif PACKETVER >= 20081001 +packetLen(0x040d, 3) +#elif PACKETVER >= 20080924 +packetLen(0x040d, 8) +#elif PACKETVER >= 20080917 +packetLen(0x040d, 7) +#elif PACKETVER >= 20080910 +packetLen(0x040d, 4) +#elif PACKETVER >= 20080903 +packetLen(0x040d, 28) +#elif PACKETVER >= 20080827 +packetLen(0x040d, 6) +#elif PACKETVER >= 20080820 +packetLen(0x040d, 5) +#endif + +// Packet: 0x040e +#if PACKETVER >= 20081203 +packetLen(0x040e, -1) +#elif PACKETVER >= 20081126 +packetLen(0x040e, 7) +#elif PACKETVER >= 20081119 +packetLen(0x040e, 6) +#elif PACKETVER >= 20081112 +packetLen(0x040e, -1) +#elif PACKETVER >= 20081105 +packetLen(0x040e, 58) +#elif PACKETVER >= 20081029 +packetLen(0x040e, 6) +#elif PACKETVER >= 20081015 +packetLen(0x040e, -1) +#elif PACKETVER >= 20081008 +packetLen(0x040e, 6) +#elif PACKETVER >= 20080917 +packetLen(0x040e, -1) +#elif PACKETVER >= 20080910 +packetLen(0x040e, 86) +#elif PACKETVER >= 20080827 +packetLen(0x040e, -1) +#elif PACKETVER >= 20080820 +packetLen(0x040e, 6) +#endif + +// Packet: 0x040f +#if PACKETVER >= 20081217 +packetLen(0x040f, 6) +#elif PACKETVER >= 20081203 +packetLen(0x040f, -1) +#elif PACKETVER >= 20081126 +packetLen(0x040f, 6) +#elif PACKETVER >= 20081119 +packetLen(0x040f, 8) +#elif PACKETVER >= 20081105 +packetLen(0x040f, -1) +#elif PACKETVER >= 20081029 +packetLen(0x040f, 2) +#elif PACKETVER >= 20081022 +packetLen(0x040f, 68) +#elif PACKETVER >= 20081015 +packetLen(0x040f, -1) +#elif PACKETVER >= 20081001 +packetLen(0x040f, 6) +#elif PACKETVER >= 20080917 +packetLen(0x040f, -1) +#elif PACKETVER >= 20080903 +packetLen(0x040f, 4) +#elif PACKETVER >= 20080827 +packetLen(0x040f, -1) +#elif PACKETVER >= 20080820 +packetLen(0x040f, 8) +#endif + +// Packet: 0x0410 +#if PACKETVER >= 20081203 +packetLen(0x0410, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0410, 10) +#elif PACKETVER >= 20081105 +packetLen(0x0410, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0410, 6) +#elif PACKETVER >= 20081022 +packetLen(0x0410, 9) +#elif PACKETVER >= 20081015 +packetLen(0x0410, 33) +#elif PACKETVER >= 20081008 +packetLen(0x0410, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0410, 3) +#elif PACKETVER >= 20080917 +packetLen(0x0410, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0410, 186) +#elif PACKETVER >= 20080903 +packetLen(0x0410, 12) +#elif PACKETVER >= 20080827 +packetLen(0x0410, 81) +#elif PACKETVER >= 20080820 +packetLen(0x0410, -1) +#endif + +// Packet: 0x0411 +#if PACKETVER >= 20081217 +packetLen(0x0411, 11) +#elif PACKETVER >= 20081119 +packetLen(0x0411, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0411, 90) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0411, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0411, 30) +#elif PACKETVER >= 20081008 +packetLen(0x0411, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0411, 28) +#elif PACKETVER >= 20080924 +packetLen(0x0411, 7) +#elif PACKETVER >= 20080917 +packetLen(0x0411, 11) +#elif PACKETVER >= 20080820 +packetLen(0x0411, -1) +#endif + +// Packet: 0x0412 +#if PACKETVER >= 20081217 +packetLen(0x0412, 2) +#elif PACKETVER >= 20081203 +packetLen(0x0412, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0412, 8) +#elif PACKETVER >= 20081119 +packetLen(0x0412, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0412, 10) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0412, 9) +#elif PACKETVER >= 20081029 +packetLen(0x0412, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0412, 7) +#elif PACKETVER >= 20081008 +packetLen(0x0412, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0412, 15) +#elif PACKETVER >= 20080924 +packetLen(0x0412, 6) +#elif PACKETVER >= 20080917 +packetLen(0x0412, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0412, 7) +#elif PACKETVER >= 20080827 +packetLen(0x0412, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0412, 282) +#endif + +// Packet: 0x0413 +#if PACKETVER >= 20081112 +packetLen(0x0413, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0413, 4) +#elif PACKETVER >= 20081022 +packetLen(0x0413, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0413, 4) +#elif PACKETVER >= 20081008 +packetLen(0x0413, 65) +#elif PACKETVER >= 20081001 +packetLen(0x0413, 54) +#elif PACKETVER >= 20080903 +packetLen(0x0413, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0413, 3) +#elif PACKETVER >= 20080820 +packetLen(0x0413, -1) +#endif + +// Packet: 0x0414 +#if PACKETVER >= 20081203 +packetLen(0x0414, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0414, 16) +#elif PACKETVER >= 20081105 +packetLen(0x0414, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0414, 4) +#elif PACKETVER >= 20081022 +packetLen(0x0414, 97) +#elif PACKETVER >= 20081015 +packetLen(0x0414, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0414, 15) +#elif PACKETVER >= 20081001 +packetLen(0x0414, 8) +#elif PACKETVER >= 20080924 +packetLen(0x0414, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0414, -1) +#endif + +// Packet: 0x0415 +#if PACKETVER >= 20081217 +packetLen(0x0415, 8) +#elif PACKETVER >= 20081029 +packetLen(0x0415, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0415, 2) +#elif PACKETVER >= 20081015 +packetLen(0x0415, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0415, 5) +#elif PACKETVER >= 20081001 +packetLen(0x0415, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0415, 26) +#elif PACKETVER >= 20080917 +packetLen(0x0415, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0415, 19) +#elif PACKETVER >= 20080820 +packetLen(0x0415, -1) +#endif + +// Packet: 0x0416 +#if PACKETVER >= 20081217 +packetLen(0x0416, 5) +#elif PACKETVER >= 20081105 +packetLen(0x0416, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0416, 3) +#elif PACKETVER >= 20081022 +packetLen(0x0416, 26) +#elif PACKETVER >= 20080917 +packetLen(0x0416, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0416, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0416, -1) +#endif + +// Packet: 0x0417 +#if PACKETVER >= 20081217 +packetLen(0x0417, 10) +#elif PACKETVER >= 20081203 +packetLen(0x0417, 4) +#elif PACKETVER >= 20081119 +packetLen(0x0417, 30) +#elif PACKETVER >= 20081112 +packetLen(0x0417, 9) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0417, 26) +#elif PACKETVER >= 20081022 +packetLen(0x0417, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0417, 6) +#elif PACKETVER >= 20081008 +packetLen(0x0417, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0417, 57) +#elif PACKETVER >= 20080924 +packetLen(0x0417, 81) +#elif PACKETVER >= 20080917 +packetLen(0x0417, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0417, 6) +#elif PACKETVER >= 20080827 +packetLen(0x0417, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0417, 4) +#endif + +// Packet: 0x0418 +#if PACKETVER >= 20081203 +packetLen(0x0418, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0418, 10) +#elif PACKETVER >= 20081029 +packetLen(0x0418, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0418, 182) +#elif PACKETVER >= 20080924 +packetLen(0x0418, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0418, 36) +#elif PACKETVER >= 20080910 +packetLen(0x0418, 8) +#elif PACKETVER >= 20080827 +packetLen(0x0418, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0418, 7) +#endif + +// Packet: 0x0419 +#if PACKETVER >= 20081217 +packetLen(0x0419, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0419, 10) +#elif PACKETVER >= 20081126 +packetLen(0x0419, 6) +#elif PACKETVER >= 20081119 +packetLen(0x0419, 14) +#elif PACKETVER >= 20081112 +packetLen(0x0419, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0419, 55) +#elif PACKETVER >= 20081022 +packetLen(0x0419, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0419, 14) +#elif PACKETVER >= 20081008 +packetLen(0x0419, 10) +#elif PACKETVER >= 20081001 +packetLen(0x0419, 42) +#elif PACKETVER >= 20080924 +packetLen(0x0419, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0419, 24) +#elif PACKETVER >= 20080903 +packetLen(0x0419, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0419, 2) +#elif PACKETVER >= 20080820 +packetLen(0x0419, 4) +#endif + +// Packet: 0x041a +#if PACKETVER >= 20081217 +packetLen(0x041a, -1) +#elif PACKETVER >= 20081203 +packetLen(0x041a, 7) +#elif PACKETVER >= 20081119 +packetLen(0x041a, 3) +#elif PACKETVER >= 20081112 +packetLen(0x041a, 26) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x041a, 182) +#elif PACKETVER >= 20081029 +packetLen(0x041a, -1) +#elif PACKETVER >= 20081022 +packetLen(0x041a, 6) +#elif PACKETVER >= 20081008 +packetLen(0x041a, 11) +#elif PACKETVER >= 20080924 +packetLen(0x041a, -1) +#elif PACKETVER >= 20080910 +packetLen(0x041a, 9) +#elif PACKETVER >= 20080827 +packetLen(0x041a, -1) +#elif PACKETVER >= 20080820 +packetLen(0x041a, 8) +#endif + +// Packet: 0x041b +#if PACKETVER >= 20081217 +packetLen(0x041b, 54) +#elif PACKETVER >= 20081203 +packetLen(0x041b, -1) +#elif PACKETVER >= 20081126 +packetLen(0x041b, 6) +#elif PACKETVER >= 20081119 +packetLen(0x041b, 27) +#elif PACKETVER >= 20081112 +packetLen(0x041b, 3) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x041b, -1) +#elif PACKETVER >= 20081001 +packetLen(0x041b, 2) +#elif PACKETVER >= 20080924 +packetLen(0x041b, -1) +#elif PACKETVER >= 20080917 +packetLen(0x041b, 8) +#elif PACKETVER >= 20080903 +packetLen(0x041b, -1) +#elif PACKETVER >= 20080827 +packetLen(0x041b, 44) +#elif PACKETVER >= 20080820 +packetLen(0x041b, 6) +#endif + +// Packet: 0x041c +#if PACKETVER >= 20081217 +packetLen(0x041c, 34) +#elif PACKETVER >= 20081203 +packetLen(0x041c, 3) +#elif PACKETVER >= 20081126 +packetLen(0x041c, 6) +#elif PACKETVER >= 20081029 +packetLen(0x041c, -1) +#elif PACKETVER >= 20081022 +packetLen(0x041c, 3) +#elif PACKETVER >= 20081015 +packetLen(0x041c, 6) +#elif PACKETVER >= 20081008 +packetLen(0x041c, 3) +#elif PACKETVER >= 20080924 +packetLen(0x041c, -1) +#elif PACKETVER >= 20080917 +packetLen(0x041c, 6) +#elif PACKETVER >= 20080903 +packetLen(0x041c, -1) +#elif PACKETVER >= 20080827 +packetLen(0x041c, 3) +#elif PACKETVER >= 20080820 +packetLen(0x041c, 54) +#endif + +// Packet: 0x041d +#if PACKETVER >= 20081217 +packetLen(0x041d, 67) +#elif PACKETVER >= 20081203 +packetLen(0x041d, 2) +#elif PACKETVER >= 20081126 +packetLen(0x041d, 4) +#elif PACKETVER >= 20081112 +packetLen(0x041d, 7) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x041d, -1) +#elif PACKETVER >= 20081015 +packetLen(0x041d, 39) +#elif PACKETVER >= 20081008 +packetLen(0x041d, 71) +#elif PACKETVER >= 20081001 +packetLen(0x041d, 90) +#elif PACKETVER >= 20080924 +packetLen(0x041d, 2) +#elif PACKETVER >= 20080917 +packetLen(0x041d, -1) +#elif PACKETVER >= 20080910 +packetLen(0x041d, 10) +#elif PACKETVER >= 20080903 +packetLen(0x041d, 26) +#elif PACKETVER >= 20080820 +packetLen(0x041d, -1) +#endif + +// Packet: 0x041e +#if PACKETVER >= 20081112 +packetLen(0x041e, -1) +#elif PACKETVER >= 20081105 +packetLen(0x041e, 4) +#elif PACKETVER >= 20081029 +packetLen(0x041e, -1) +#elif PACKETVER >= 20081022 +packetLen(0x041e, 12) +#elif PACKETVER >= 20081015 +packetLen(0x041e, -1) +#elif PACKETVER >= 20081008 +packetLen(0x041e, 6) +#elif PACKETVER >= 20081001 +packetLen(0x041e, 66) +#elif PACKETVER >= 20080924 +packetLen(0x041e, 6) +#elif PACKETVER >= 20080910 +packetLen(0x041e, -1) +#elif PACKETVER >= 20080903 +packetLen(0x041e, 90) +#elif PACKETVER >= 20080827 +packetLen(0x041e, -1) +#elif PACKETVER >= 20080820 +packetLen(0x041e, 15) +#endif + +// Packet: 0x041f +#if PACKETVER >= 20081203 +packetLen(0x041f, -1) +#elif PACKETVER >= 20081126 +packetLen(0x041f, 57) +#elif PACKETVER >= 20081119 +packetLen(0x041f, 6) +#elif PACKETVER >= 20081029 +packetLen(0x041f, -1) +#elif PACKETVER >= 20081022 +packetLen(0x041f, 282) +#elif PACKETVER >= 20081015 +packetLen(0x041f, -1) +#elif PACKETVER >= 20081008 +packetLen(0x041f, 54) +#elif PACKETVER >= 20081001 +packetLen(0x041f, 3) +#elif PACKETVER >= 20080924 +packetLen(0x041f, -1) +#elif PACKETVER >= 20080917 +packetLen(0x041f, 20) +#elif PACKETVER >= 20080910 +packetLen(0x041f, -1) +#elif PACKETVER >= 20080903 +packetLen(0x041f, 9) +#elif PACKETVER >= 20080827 +packetLen(0x041f, 8) +#elif PACKETVER >= 20080820 +packetLen(0x041f, -1) +#endif + +// Packet: 0x0420 +#if PACKETVER >= 20081217 +packetLen(0x0420, 14) +#elif PACKETVER >= 20081203 +packetLen(0x0420, 282) +#elif PACKETVER >= 20081126 +packetLen(0x0420, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0420, 10) +#elif PACKETVER >= 20081105 +packetLen(0x0420, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0420, 79) +#elif PACKETVER >= 20081022 +packetLen(0x0420, 3) +#elif PACKETVER >= 20080924 +packetLen(0x0420, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0420, 2) +#elif PACKETVER >= 20080910 +packetLen(0x0420, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0420, -1) +#endif + +// Packet: 0x0421 +#if PACKETVER >= 20081217 +packetLen(0x0421, 4) +#elif PACKETVER >= 20081203 +packetLen(0x0421, 3) +#elif PACKETVER >= 20081126 +packetLen(0x0421, 22) +#elif PACKETVER >= 20081112 +packetLen(0x0421, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0421, 12) +#elif PACKETVER >= 20080917 +packetLen(0x0421, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0421, 3) +#elif PACKETVER >= 20080903 +packetLen(0x0421, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0421, 2) +#elif PACKETVER >= 20080820 +packetLen(0x0421, -1) +#endif + +// Packet: 0x0422 +#if PACKETVER >= 20081203 +packetLen(0x0422, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0422, 54) +#elif PACKETVER >= 20081119 +packetLen(0x0422, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0422, 10) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0422, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0422, 182) +#elif PACKETVER >= 20081022 +packetLen(0x0422, 54) +#elif PACKETVER >= 20080917 +packetLen(0x0422, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0422, 26) +#elif PACKETVER >= 20080820 +packetLen(0x0422, -1) +#endif + +// Packet: 0x0423 +#if PACKETVER >= 20081217 +packetLen(0x0423, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0423, 11) +#elif PACKETVER >= 20081126 +packetLen(0x0423, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0423, 6) +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0423, 6) +#elif PACKETVER >= 20081029 +packetLen(0x0423, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0423, 3) +#elif PACKETVER >= 20081015 +packetLen(0x0423, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0423, 15) +#elif PACKETVER >= 20080917 +packetLen(0x0423, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0423, 282) +#elif PACKETVER >= 20080903 +packetLen(0x0423, 31) +#elif PACKETVER >= 20080820 +packetLen(0x0423, -1) +#endif + +// Packet: 0x0424 +#if PACKETVER >= 20081217 +packetLen(0x0424, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0424, 2) +#elif PACKETVER >= 20081126 +packetLen(0x0424, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0424, 11) +#elif PACKETVER >= 20081105 +packetLen(0x0424, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0424, 6) +#elif PACKETVER >= 20081022 +packetLen(0x0424, 28) +#elif PACKETVER >= 20081015 +packetLen(0x0424, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0424, 6) +#elif PACKETVER >= 20081001 +packetLen(0x0424, 4) +#elif PACKETVER >= 20080924 +packetLen(0x0424, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0424, 10) +#elif PACKETVER >= 20080910 +packetLen(0x0424, 34) +#elif PACKETVER >= 20080903 +packetLen(0x0424, 44) +#elif PACKETVER >= 20080820 +packetLen(0x0424, -1) +#endif + +// Packet: 0x0425 +#if PACKETVER >= 20081217 +packetLen(0x0425, 57) +#elif PACKETVER >= 20081203 +packetLen(0x0425, 9) +#elif PACKETVER >= 20081126 +packetLen(0x0425, 11) +#elif PACKETVER >= 20081119 +packetLen(0x0425, 6) +#elif PACKETVER >= 20081112 +packetLen(0x0425, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0425, 3) +#elif PACKETVER >= 20081022 +packetLen(0x0425, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0425, 68) +#elif PACKETVER >= 20081008 +packetLen(0x0425, 12) +#elif PACKETVER >= 20081001 +packetLen(0x0425, 6) +#elif PACKETVER >= 20080827 +packetLen(0x0425, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0425, 10) +#endif + +// Packet: 0x0426 +#if PACKETVER >= 20081203 +packetLen(0x0426, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0426, 8) +#elif PACKETVER >= 20081119 +packetLen(0x0426, 16) +#elif PACKETVER >= 20081112 +packetLen(0x0426, 5) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0426, 23) +#elif PACKETVER >= 20081029 +packetLen(0x0426, 6) +#elif PACKETVER >= 20081022 +packetLen(0x0426, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0426, 6) +#elif PACKETVER >= 20081008 +packetLen(0x0426, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0426, 2) +#elif PACKETVER >= 20080924 +packetLen(0x0426, 22) +#elif PACKETVER >= 20080917 +packetLen(0x0426, 9) +#elif PACKETVER >= 20080910 +packetLen(0x0426, 36) +#elif PACKETVER >= 20080903 +packetLen(0x0426, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0426, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0426, 102) +#endif + +// Packet: 0x0427 +#if PACKETVER >= 20081217 +packetLen(0x0427, 5) +#elif PACKETVER >= 20081126 +packetLen(0x0427, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0427, 15) +#elif PACKETVER >= 20081112 +packetLen(0x0427, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0427, 6) +#elif PACKETVER >= 20081015 +packetLen(0x0427, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0427, 8) +#elif PACKETVER >= 20080924 +packetLen(0x0427, -1) +#elif PACKETVER >= 20080917 +packetLen(0x0427, 282) +#elif PACKETVER >= 20080820 +packetLen(0x0427, -1) +#endif + +// Packet: 0x0428 +#if PACKETVER >= 20081217 +packetLen(0x0428, 19) +#elif PACKETVER >= 20081203 +packetLen(0x0428, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0428, 17) +#elif PACKETVER >= 20081119 +packetLen(0x0428, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0428, 6) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081008 +packetLen(0x0428, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0428, 24) +#elif PACKETVER >= 20080910 +packetLen(0x0428, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0428, 7) +#elif PACKETVER >= 20080827 +packetLen(0x0428, 60) +#elif PACKETVER >= 20080820 +packetLen(0x0428, 21) +#endif + +// Packet: 0x0429 +#if PACKETVER >= 20081217 +packetLen(0x0429, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0429, 10) +#elif PACKETVER >= 20081119 +packetLen(0x0429, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0429, 4) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0429, 30) +#elif PACKETVER >= 20081029 +packetLen(0x0429, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0429, 8) +#elif PACKETVER >= 20081008 +packetLen(0x0429, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0429, 2) +#elif PACKETVER >= 20080924 +packetLen(0x0429, 6) +#elif PACKETVER >= 20080903 +packetLen(0x0429, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0429, 53) +#elif PACKETVER >= 20080820 +packetLen(0x0429, -1) +#endif + +// Packet: 0x042a +#if PACKETVER >= 20081203 +packetLen(0x042a, -1) +#elif PACKETVER >= 20081126 +packetLen(0x042a, 7) +#elif PACKETVER >= 20081119 +packetLen(0x042a, 67) +#elif PACKETVER >= 20081112 +packetLen(0x042a, -1) +#elif PACKETVER >= 20081105 +packetLen(0x042a, 31) +#elif PACKETVER >= 20081029 +packetLen(0x042a, 13) +#elif PACKETVER >= 20081022 +packetLen(0x042a, -1) +#elif PACKETVER >= 20081015 +packetLen(0x042a, 26) +#elif PACKETVER >= 20081008 +packetLen(0x042a, 68) +#elif PACKETVER >= 20080910 +packetLen(0x042a, -1) +#elif PACKETVER >= 20080903 +packetLen(0x042a, 8) +#elif PACKETVER >= 20080827 +packetLen(0x042a, 6) +#elif PACKETVER >= 20080820 +packetLen(0x042a, -1) +#endif + +// Packet: 0x042b +#if PACKETVER >= 20081217 +packetLen(0x042b, -1) +#elif PACKETVER >= 20081203 +packetLen(0x042b, 58) +#elif PACKETVER >= 20081126 +packetLen(0x042b, 13) +#elif PACKETVER >= 20081022 +packetLen(0x042b, -1) +#elif PACKETVER >= 20081015 +packetLen(0x042b, 9) +#elif PACKETVER >= 20081008 +packetLen(0x042b, 282) +#elif PACKETVER >= 20081001 +packetLen(0x042b, 6) +#elif PACKETVER >= 20080903 +packetLen(0x042b, -1) +#elif PACKETVER >= 20080827 +packetLen(0x042b, 3) +#elif PACKETVER >= 20080820 +packetLen(0x042b, -1) +#endif + +// Packet: 0x042c +#if PACKETVER >= 20081217 +packetLen(0x042c, 31) +#elif PACKETVER >= 20081203 +packetLen(0x042c, 6) +#elif PACKETVER >= 20081126 +packetLen(0x042c, -1) +#elif PACKETVER >= 20081119 +packetLen(0x042c, 36) +#elif PACKETVER >= 20081105 +packetLen(0x042c, -1) +#elif PACKETVER >= 20081029 +packetLen(0x042c, 10) +#elif PACKETVER >= 20081022 +packetLen(0x042c, -1) +#elif PACKETVER >= 20081015 +packetLen(0x042c, 4) +#elif PACKETVER >= 20081008 +packetLen(0x042c, -1) +#elif PACKETVER >= 20081001 +packetLen(0x042c, 4) +#elif PACKETVER >= 20080924 +packetLen(0x042c, 2) +#elif PACKETVER >= 20080917 +packetLen(0x042c, 16) +#elif PACKETVER >= 20080910 +packetLen(0x042c, -1) +#elif PACKETVER >= 20080903 +packetLen(0x042c, 29) +#elif PACKETVER >= 20080820 +packetLen(0x042c, -1) +#endif + +// Packet: 0x042d +#if PACKETVER >= 20081203 +packetLen(0x042d, -1) +#elif PACKETVER >= 20081126 +packetLen(0x042d, 8) +#elif PACKETVER >= 20081119 +packetLen(0x042d, -1) +#elif PACKETVER >= 20081112 +packetLen(0x042d, 2) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x042d, 7) +#elif PACKETVER >= 20081029 +packetLen(0x042d, 6) +#elif PACKETVER >= 20080924 +packetLen(0x042d, -1) +#elif PACKETVER >= 20080917 +packetLen(0x042d, 5) +#elif PACKETVER >= 20080910 +packetLen(0x042d, 10) +#elif PACKETVER >= 20080827 +packetLen(0x042d, -1) +#elif PACKETVER >= 20080820 +packetLen(0x042d, 186) +#endif + +// Packet: 0x042e +#if PACKETVER >= 20081203 +packetLen(0x042e, -1) +#elif PACKETVER >= 20081126 +packetLen(0x042e, 6) +#elif PACKETVER >= 20081119 +packetLen(0x042e, 12) +#elif PACKETVER >= 20081112 +packetLen(0x042e, -1) +#elif PACKETVER >= 20081105 +packetLen(0x042e, 14) +#elif PACKETVER >= 20081029 +packetLen(0x042e, 7) +#elif PACKETVER >= 20081001 +packetLen(0x042e, -1) +#elif PACKETVER >= 20080924 +packetLen(0x042e, 57) +#elif PACKETVER >= 20080903 +packetLen(0x042e, -1) +#elif PACKETVER >= 20080827 +packetLen(0x042e, 6) +#elif PACKETVER >= 20080820 +packetLen(0x042e, -1) +#endif + +// Packet: 0x042f +#if PACKETVER >= 20081217 +packetLen(0x042f, 11) +#elif PACKETVER >= 20081119 +packetLen(0x042f, -1) +#elif PACKETVER >= 20081112 +packetLen(0x042f, 10) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081029 +packetLen(0x042f, -1) +#elif PACKETVER >= 20081022 +packetLen(0x042f, 30) +#elif PACKETVER >= 20081015 +packetLen(0x042f, 6) +#elif PACKETVER >= 20081008 +packetLen(0x042f, 4) +#elif PACKETVER >= 20081001 +packetLen(0x042f, 6) +#elif PACKETVER >= 20080924 +packetLen(0x042f, -1) +#elif PACKETVER >= 20080917 +packetLen(0x042f, 2) +#elif PACKETVER >= 20080903 +packetLen(0x042f, -1) +#elif PACKETVER >= 20080827 +packetLen(0x042f, 5) +#elif PACKETVER >= 20080820 +packetLen(0x042f, -1) +#endif + +// Packet: 0x0430 +#if PACKETVER >= 20081217 +packetLen(0x0430, -1) +#elif PACKETVER >= 20081203 +packetLen(0x0430, 2) +#elif PACKETVER >= 20081126 +packetLen(0x0430, 22) +#elif PACKETVER >= 20081112 +packetLen(0x0430, -1) +#elif PACKETVER >= 20081105 +packetLen(0x0430, 26) +#elif PACKETVER >= 20081029 +packetLen(0x0430, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0430, 86) +#elif PACKETVER >= 20081008 +packetLen(0x0430, -1) +#elif PACKETVER >= 20081001 +packetLen(0x0430, 43) +#elif PACKETVER >= 20080924 +packetLen(0x0430, 13) +#elif PACKETVER >= 20080917 +packetLen(0x0430, -1) +#elif PACKETVER >= 20080910 +packetLen(0x0430, 4) +#elif PACKETVER >= 20080903 +packetLen(0x0430, 31) +#elif PACKETVER >= 20080827 +packetLen(0x0430, -1) +#elif PACKETVER >= 20080820 +packetLen(0x0430, 10) +#endif + +// Packet: 0x0431 +#if PACKETVER >= 20081105 +packetLen(0x0431, -1) +#elif PACKETVER >= 20081029 +packetLen(0x0431, 2) +#elif PACKETVER >= 20081022 +packetLen(0x0431, 9) +#elif PACKETVER >= 20081015 +packetLen(0x0431, 6) +#elif PACKETVER >= 20081008 +packetLen(0x0431, 8) +#elif PACKETVER >= 20080910 +packetLen(0x0431, -1) +#elif PACKETVER >= 20080903 +packetLen(0x0431, 2) +#elif PACKETVER >= 20080827 +packetLen(0x0431, 32) +#elif PACKETVER >= 20080820 +packetLen(0x0431, -1) +#endif + +// Packet: 0x0432 +#if PACKETVER >= 20081119 +packetLen(0x0432, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0432, 26) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081022 +packetLen(0x0432, -1) +#elif PACKETVER >= 20081015 +packetLen(0x0432, 10) +#elif PACKETVER >= 20081001 +packetLen(0x0432, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0432, 30) +#elif PACKETVER >= 20080917 +packetLen(0x0432, 26) +#elif PACKETVER >= 20080910 +packetLen(0x0432, 2) +#elif PACKETVER >= 20080903 +packetLen(0x0432, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0432, 27) +#elif PACKETVER >= 20080820 +packetLen(0x0432, 18) +#endif + +// Packet: 0x0433 +#if PACKETVER >= 20081217 +packetLen(0x0433, 7) +#elif PACKETVER >= 20081203 +packetLen(0x0433, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0433, 8) +#elif PACKETVER >= 20081119 +packetLen(0x0433, -1) +#elif PACKETVER >= 20081112 +packetLen(0x0433, 4) +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0433, 39) +#elif PACKETVER >= 20081029 +packetLen(0x0433, -1) +#elif PACKETVER >= 20081022 +packetLen(0x0433, 2) +#elif PACKETVER >= 20081015 +packetLen(0x0433, 14) +#elif PACKETVER >= 20081008 +packetLen(0x0433, 3) +#elif PACKETVER >= 20081001 +packetLen(0x0433, -1) +#elif PACKETVER >= 20080924 +packetLen(0x0433, 54) +#elif PACKETVER >= 20080917 +packetLen(0x0433, 17) +#elif PACKETVER >= 20080910 +packetLen(0x0433, 26) +#elif PACKETVER >= 20080820 +packetLen(0x0433, -1) +#endif + +// Packet: 0x0434 +#if PACKETVER >= 20081217 +packetLen(0x0434, 6) +#elif PACKETVER >= 20081203 +packetLen(0x0434, -1) +#elif PACKETVER >= 20081126 +packetLen(0x0434, 15) +#elif PACKETVER >= 20080903 +packetLen(0x0434, -1) +#elif PACKETVER >= 20080827 +packetLen(0x0434, 8) +#elif PACKETVER >= 20080820 +packetLen(0x0434, -1) +#endif + +// Packet: 0x0435 +#if PACKETVER >= 20081217 +packetLen(0x0435, 3) +#elif PACKETVER >= 20081126 +packetLen(0x0435, -1) +#elif PACKETVER >= 20081119 +packetLen(0x0435, 24) +#elif PACKETVER >= 20081015 +packetLen(0x0435, -1) +#elif PACKETVER >= 20081008 +packetLen(0x0435, 11) +#elif PACKETVER >= 20081001 +packetLen(0x0435, 10) +#elif PACKETVER >= 20080924 +packetLen(0x0435, 7) +#elif PACKETVER >= 20080917 +packetLen(0x0435, 6) +#elif PACKETVER >= 20080820 +packetLen(0x0435, -1) +#endif + +// Packet: 0x0436 +#if PACKETVER >= 20081217 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20081203 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20081126 +packetLen(0x0436, 9) // CZ_ENTER2 +#elif PACKETVER >= 20081112 +packetLen(0x0436, 19) // CZ_ENTER2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0436, 60) // CZ_ENTER2 +#elif PACKETVER >= 20081029 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20081022 +packetLen(0x0436, 13) // CZ_ENTER2 +#elif PACKETVER >= 20081015 +packetLen(0x0436, 7) // CZ_ENTER2 +#elif PACKETVER >= 20080924 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20080917 +packetLen(0x0436, 7) // CZ_ENTER2 +#elif PACKETVER >= 20080910 +packetLen(0x0436, 3) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20081112 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0437, 282) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20081029 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20081022 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20081015 +packetLen(0x0437, 55) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20081008 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20081001 +packetLen(0x0437, 33) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20080924 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20080917 +packetLen(0x0437, 10) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20080910 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20081217 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20081203 +packetLen(0x0438, 65) // CZ_USE_SKILL2 +#elif PACKETVER >= 20081119 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20081112 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +// ignored packet from 2008-11-12dRagexe +// ignored packet from 2008-11-12aRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0438, 4) // CZ_USE_SKILL2 +#elif PACKETVER >= 20081029 +packetLen(0x0438, 12) // CZ_USE_SKILL2 +#elif PACKETVER >= 20081022 +packetLen(0x0438, 30) // CZ_USE_SKILL2 +#elif PACKETVER >= 20081001 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20080924 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20080917 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20080910 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +#if PACKETVER >= 20081217 +packetLen(0x0439, 3) // CZ_USE_ITEM2 +#elif PACKETVER >= 20081119 +packetLen(0x0439, -1) // CZ_USE_ITEM2 +#elif PACKETVER >= 20081112 +packetLen(0x0439, 22) // CZ_USE_ITEM2 +// ignored packet from 2008-11-12aRagexe +// ignored packet from 2008-11-12cRagexe +#elif PACKETVER >= 20081105 +packetLen(0x0439, 4) // CZ_USE_ITEM2 +#elif PACKETVER >= 20081022 +packetLen(0x0439, -1) // CZ_USE_ITEM2 +#elif PACKETVER >= 20081015 +packetLen(0x0439, 11) // CZ_USE_ITEM2 +#elif PACKETVER >= 20081008 +packetLen(0x0439, 114) // CZ_USE_ITEM2 +#elif PACKETVER >= 20081001 +packetLen(0x0439, 12) // CZ_USE_ITEM2 +#elif PACKETVER >= 20080924 +packetLen(0x0439, 30) // CZ_USE_ITEM2 +#elif PACKETVER >= 20080917 +packetLen(0x0439, -1) // CZ_USE_ITEM2 +#elif PACKETVER >= 20080910 +packetLen(0x0439, 30) // CZ_USE_ITEM2 +#endif + +// Packet: 0x043d +#if PACKETVER >= 20081112 +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY +#endif + +// Packet: 0x043e +#if PACKETVER >= 20081112 +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST +#endif + +// Packet: 0x043f +#if PACKETVER >= 20081112 +packetLen(0x043f, 8) // ZC_MSG_STATE_CHANGE2 +#endif + +// Packet: 0x0440 +#if PACKETVER >= 20081126 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD +#endif + +// Packet: 0x0441 +#if PACKETVER >= 20081126 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE +#endif + +// Packet: 0x0442 +#if PACKETVER >= 20081210 +packetLen(0x0442, 8) // ZC_SKILL_SELECT_REQUEST +#endif + +// Packet: 0x0443 +#if PACKETVER >= 20081210 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE +#endif + + +#endif /* COMMON_PACKETS2008_LEN_MAIN_H */ diff --git a/src/common/packets/packets2008_len_re.h b/src/common/packets/packets2008_len_re.h new file mode 100644 index 000000000..1068cd5f7 --- /dev/null +++ b/src/common/packets/packets2008_len_re.h @@ -0,0 +1,2944 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2008_LEN_RE_H +#define COMMON_PACKETS2008_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20081217 +packetLen(0x006d, 114) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20080827 +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +#if PACKETVER >= 20081126 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080827 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET +#endif + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST + +// Packet: 0x02f7 +packetLen(0x02f7, -1) + +// Packet: 0x02f8 +packetLen(0x02f8, -1) + +// Packet: 0x02f9 +packetLen(0x02f9, -1) + +// Packet: 0x02fa +packetLen(0x02fa, -1) + +// Packet: 0x02fb +packetLen(0x02fb, -1) + +// Packet: 0x02fc +packetLen(0x02fc, -1) + +// Packet: 0x02fd +packetLen(0x02fd, -1) + +// Packet: 0x02fe +packetLen(0x02fe, -1) + +// Packet: 0x02ff +packetLen(0x02ff, -1) + +// Packet: 0x0300 +packetLen(0x0300, -1) + +// Packet: 0x0301 +packetLen(0x0301, -1) + +// Packet: 0x0302 +packetLen(0x0302, -1) + +// Packet: 0x0303 +packetLen(0x0303, -1) + +// Packet: 0x0304 +packetLen(0x0304, -1) + +// Packet: 0x0305 +packetLen(0x0305, -1) + +// Packet: 0x0306 +packetLen(0x0306, -1) + +// Packet: 0x0307 +packetLen(0x0307, -1) + +// Packet: 0x0308 +packetLen(0x0308, -1) + +// Packet: 0x0309 +packetLen(0x0309, -1) + +// Packet: 0x030a +packetLen(0x030a, -1) + +// Packet: 0x030b +packetLen(0x030b, -1) + +// Packet: 0x030c +packetLen(0x030c, -1) + +// Packet: 0x030d +packetLen(0x030d, -1) + +// Packet: 0x030e +packetLen(0x030e, -1) + +// Packet: 0x030f +packetLen(0x030f, -1) + +// Packet: 0x0310 +packetLen(0x0310, -1) + +// Packet: 0x0311 +packetLen(0x0311, -1) + +// Packet: 0x0312 +packetLen(0x0312, -1) + +// Packet: 0x0313 +packetLen(0x0313, -1) + +// Packet: 0x0314 +packetLen(0x0314, -1) + +// Packet: 0x0315 +packetLen(0x0315, -1) + +// Packet: 0x0316 +packetLen(0x0316, -1) + +// Packet: 0x0317 +packetLen(0x0317, -1) + +// Packet: 0x0318 +packetLen(0x0318, -1) + +// Packet: 0x0319 +packetLen(0x0319, -1) + +// Packet: 0x031a +packetLen(0x031a, -1) + +// Packet: 0x031b +packetLen(0x031b, -1) + +// Packet: 0x031c +packetLen(0x031c, -1) + +// Packet: 0x031d +packetLen(0x031d, -1) + +// Packet: 0x031e +packetLen(0x031e, -1) + +// Packet: 0x031f +packetLen(0x031f, -1) + +// Packet: 0x0320 +packetLen(0x0320, -1) + +// Packet: 0x0321 +packetLen(0x0321, -1) + +// Packet: 0x0322 +packetLen(0x0322, -1) + +// Packet: 0x0323 +packetLen(0x0323, -1) + +// Packet: 0x0324 +packetLen(0x0324, -1) + +// Packet: 0x0325 +packetLen(0x0325, -1) + +// Packet: 0x0326 +packetLen(0x0326, -1) + +// Packet: 0x0327 +packetLen(0x0327, -1) + +// Packet: 0x0328 +packetLen(0x0328, -1) + +// Packet: 0x0329 +packetLen(0x0329, -1) + +// Packet: 0x032a +packetLen(0x032a, -1) + +// Packet: 0x032b +packetLen(0x032b, -1) + +// Packet: 0x032c +packetLen(0x032c, -1) + +// Packet: 0x032d +packetLen(0x032d, -1) + +// Packet: 0x032e +packetLen(0x032e, -1) + +// Packet: 0x032f +packetLen(0x032f, -1) + +// Packet: 0x0330 +packetLen(0x0330, -1) + +// Packet: 0x0331 +packetLen(0x0331, -1) + +// Packet: 0x0332 +packetLen(0x0332, -1) + +// Packet: 0x0333 +packetLen(0x0333, -1) + +// Packet: 0x0334 +packetLen(0x0334, -1) + +// Packet: 0x0335 +packetLen(0x0335, -1) + +// Packet: 0x0336 +packetLen(0x0336, -1) + +// Packet: 0x0337 +packetLen(0x0337, -1) + +// Packet: 0x0338 +packetLen(0x0338, -1) + +// Packet: 0x0339 +packetLen(0x0339, -1) + +// Packet: 0x033a +packetLen(0x033a, -1) + +// Packet: 0x033b +packetLen(0x033b, -1) + +// Packet: 0x033c +packetLen(0x033c, -1) + +// Packet: 0x033d +packetLen(0x033d, -1) + +// Packet: 0x033e +packetLen(0x033e, -1) + +// Packet: 0x033f +packetLen(0x033f, -1) + +// Packet: 0x0340 +packetLen(0x0340, -1) + +// Packet: 0x0341 +packetLen(0x0341, -1) + +// Packet: 0x0342 +packetLen(0x0342, -1) + +// Packet: 0x0343 +packetLen(0x0343, -1) + +// Packet: 0x0344 +packetLen(0x0344, -1) + +// Packet: 0x0345 +packetLen(0x0345, -1) + +// Packet: 0x0346 +packetLen(0x0346, -1) + +// Packet: 0x0347 +packetLen(0x0347, -1) + +// Packet: 0x0348 +packetLen(0x0348, -1) + +// Packet: 0x0349 +packetLen(0x0349, -1) + +// Packet: 0x034a +packetLen(0x034a, -1) + +// Packet: 0x034b +packetLen(0x034b, -1) + +// Packet: 0x034c +packetLen(0x034c, -1) + +// Packet: 0x034d +packetLen(0x034d, -1) + +// Packet: 0x034e +packetLen(0x034e, -1) + +// Packet: 0x034f +packetLen(0x034f, -1) + +// Packet: 0x0350 +packetLen(0x0350, -1) + +// Packet: 0x0351 +packetLen(0x0351, -1) + +// Packet: 0x0352 +packetLen(0x0352, -1) + +// Packet: 0x0353 +packetLen(0x0353, -1) + +// Packet: 0x0354 +packetLen(0x0354, -1) + +// Packet: 0x0355 +packetLen(0x0355, -1) + +// Packet: 0x0356 +packetLen(0x0356, -1) + +// Packet: 0x0357 +packetLen(0x0357, -1) + +// Packet: 0x0358 +packetLen(0x0358, -1) + +// Packet: 0x0359 +packetLen(0x0359, -1) + +// Packet: 0x035a +packetLen(0x035a, -1) + +// Packet: 0x035b +packetLen(0x035b, -1) + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 + +// Packet: 0x0360 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 + +// Packet: 0x0361 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 + +// Packet: 0x0362 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 + +// Packet: 0x0363 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 + +// Packet: 0x0364 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 + +// Packet: 0x0365 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 + +// Packet: 0x0366 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 + +// Packet: 0x0367 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 + +// Packet: 0x0368 +packetLen(0x0368, -1) // CZ_REQNAME2 + +// Packet: 0x0369 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 + +// Packet: 0x036a +packetLen(0x036a, -1) + +// Packet: 0x036b +packetLen(0x036b, -1) + +// Packet: 0x036c +packetLen(0x036c, -1) + +// Packet: 0x036d +packetLen(0x036d, -1) + +// Packet: 0x036e +packetLen(0x036e, -1) + +// Packet: 0x036f +packetLen(0x036f, -1) + +// Packet: 0x0370 +packetLen(0x0370, -1) + +// Packet: 0x0371 +packetLen(0x0371, -1) + +// Packet: 0x0372 +packetLen(0x0372, -1) + +// Packet: 0x0373 +packetLen(0x0373, -1) + +// Packet: 0x0374 +packetLen(0x0374, -1) + +// Packet: 0x0375 +packetLen(0x0375, -1) + +// Packet: 0x0376 +packetLen(0x0376, -1) + +// Packet: 0x0377 +packetLen(0x0377, -1) + +// Packet: 0x0378 +packetLen(0x0378, -1) + +// Packet: 0x0379 +packetLen(0x0379, -1) + +// Packet: 0x037a +packetLen(0x037a, -1) + +// Packet: 0x037b +packetLen(0x037b, -1) + +// Packet: 0x037c +packetLen(0x037c, -1) + +// Packet: 0x037d +packetLen(0x037d, -1) + +// Packet: 0x037e +packetLen(0x037e, -1) + +// Packet: 0x037f +packetLen(0x037f, -1) + +// Packet: 0x0380 +packetLen(0x0380, -1) + +// Packet: 0x0381 +packetLen(0x0381, -1) + +// Packet: 0x0382 +packetLen(0x0382, -1) + +// Packet: 0x0383 +packetLen(0x0383, -1) + +// Packet: 0x0384 +packetLen(0x0384, -1) + +// Packet: 0x0385 +packetLen(0x0385, -1) + +// Packet: 0x0386 +packetLen(0x0386, -1) + +// Packet: 0x0387 +packetLen(0x0387, -1) + +// Packet: 0x0388 +packetLen(0x0388, -1) + +// Packet: 0x0389 +packetLen(0x0389, -1) + +// Packet: 0x038a +packetLen(0x038a, -1) + +// Packet: 0x038b +packetLen(0x038b, -1) + +// Packet: 0x038c +packetLen(0x038c, -1) + +// Packet: 0x038d +packetLen(0x038d, -1) + +// Packet: 0x038e +packetLen(0x038e, -1) + +// Packet: 0x038f +packetLen(0x038f, -1) + +// Packet: 0x0390 +packetLen(0x0390, -1) + +// Packet: 0x0391 +packetLen(0x0391, -1) + +// Packet: 0x0392 +packetLen(0x0392, -1) + +// Packet: 0x0393 +packetLen(0x0393, -1) + +// Packet: 0x0394 +packetLen(0x0394, -1) + +// Packet: 0x0395 +packetLen(0x0395, -1) + +// Packet: 0x0396 +packetLen(0x0396, -1) + +// Packet: 0x0397 +packetLen(0x0397, -1) + +// Packet: 0x0398 +packetLen(0x0398, -1) + +// Packet: 0x0399 +packetLen(0x0399, -1) + +// Packet: 0x039a +packetLen(0x039a, -1) + +// Packet: 0x039b +packetLen(0x039b, -1) + +// Packet: 0x039c +packetLen(0x039c, -1) + +// Packet: 0x039d +packetLen(0x039d, -1) + +// Packet: 0x039e +packetLen(0x039e, -1) + +// Packet: 0x039f +packetLen(0x039f, -1) + +// Packet: 0x03a0 +packetLen(0x03a0, -1) + +// Packet: 0x03a1 +packetLen(0x03a1, -1) + +// Packet: 0x03a2 +packetLen(0x03a2, -1) + +// Packet: 0x03a3 +packetLen(0x03a3, -1) + +// Packet: 0x03a4 +packetLen(0x03a4, -1) + +// Packet: 0x03a5 +packetLen(0x03a5, -1) + +// Packet: 0x03a6 +packetLen(0x03a6, -1) + +// Packet: 0x03a7 +packetLen(0x03a7, -1) + +// Packet: 0x03a8 +packetLen(0x03a8, -1) + +// Packet: 0x03a9 +packetLen(0x03a9, -1) + +// Packet: 0x03aa +packetLen(0x03aa, -1) + +// Packet: 0x03ab +packetLen(0x03ab, -1) + +// Packet: 0x03ac +packetLen(0x03ac, -1) + +// Packet: 0x03ad +packetLen(0x03ad, -1) + +// Packet: 0x03ae +packetLen(0x03ae, -1) + +// Packet: 0x03af +packetLen(0x03af, -1) + +// Packet: 0x03b0 +packetLen(0x03b0, -1) + +// Packet: 0x03b1 +packetLen(0x03b1, -1) + +// Packet: 0x03b2 +packetLen(0x03b2, -1) + +// Packet: 0x03b3 +packetLen(0x03b3, -1) + +// Packet: 0x03b4 +packetLen(0x03b4, -1) + +// Packet: 0x03b5 +packetLen(0x03b5, -1) + +// Packet: 0x03b6 +packetLen(0x03b6, -1) + +// Packet: 0x03b7 +packetLen(0x03b7, -1) + +// Packet: 0x03b8 +packetLen(0x03b8, -1) + +// Packet: 0x03b9 +packetLen(0x03b9, -1) + +// Packet: 0x03ba +packetLen(0x03ba, -1) + +// Packet: 0x03bb +packetLen(0x03bb, -1) + +// Packet: 0x03bc +packetLen(0x03bc, -1) + +// Packet: 0x03bd +packetLen(0x03bd, -1) + +// Packet: 0x03be +packetLen(0x03be, -1) + +// Packet: 0x03bf +packetLen(0x03bf, -1) + +// Packet: 0x03c0 +packetLen(0x03c0, -1) + +// Packet: 0x03c1 +packetLen(0x03c1, -1) + +// Packet: 0x03c2 +packetLen(0x03c2, -1) + +// Packet: 0x03c3 +packetLen(0x03c3, -1) + +// Packet: 0x03c4 +packetLen(0x03c4, -1) + +// Packet: 0x03c5 +packetLen(0x03c5, -1) + +// Packet: 0x03c6 +packetLen(0x03c6, -1) + +// Packet: 0x03c7 +packetLen(0x03c7, -1) + +// Packet: 0x03c8 +packetLen(0x03c8, -1) + +// Packet: 0x03c9 +packetLen(0x03c9, -1) + +// Packet: 0x03ca +packetLen(0x03ca, -1) + +// Packet: 0x03cb +packetLen(0x03cb, -1) + +// Packet: 0x03cc +packetLen(0x03cc, -1) + +// Packet: 0x03cd +packetLen(0x03cd, -1) + +// Packet: 0x03ce +packetLen(0x03ce, -1) + +// Packet: 0x03cf +packetLen(0x03cf, -1) + +// Packet: 0x03d0 +packetLen(0x03d0, -1) + +// Packet: 0x03d1 +packetLen(0x03d1, -1) + +// Packet: 0x03d2 +packetLen(0x03d2, -1) + +// Packet: 0x03d3 +packetLen(0x03d3, -1) + +// Packet: 0x03d4 +packetLen(0x03d4, -1) + +// Packet: 0x03d5 +packetLen(0x03d5, -1) + +// Packet: 0x03d6 +packetLen(0x03d6, -1) + +// Packet: 0x03d7 +packetLen(0x03d7, -1) + +// Packet: 0x03d8 +packetLen(0x03d8, -1) + +// Packet: 0x03d9 +packetLen(0x03d9, -1) + +// Packet: 0x03da +packetLen(0x03da, -1) + +// Packet: 0x03db +packetLen(0x03db, -1) + +// Packet: 0x03dc +packetLen(0x03dc, -1) + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x03e2 +packetLen(0x03e2, -1) + +// Packet: 0x03e3 +packetLen(0x03e3, -1) + +// Packet: 0x03e4 +packetLen(0x03e4, -1) + +// Packet: 0x03e5 +packetLen(0x03e5, -1) + +// Packet: 0x03e6 +packetLen(0x03e6, -1) + +// Packet: 0x03e7 +packetLen(0x03e7, -1) + +// Packet: 0x03e8 +packetLen(0x03e8, -1) + +// Packet: 0x03e9 +packetLen(0x03e9, -1) + +// Packet: 0x03ea +packetLen(0x03ea, -1) + +// Packet: 0x03eb +packetLen(0x03eb, -1) + +// Packet: 0x03ec +packetLen(0x03ec, -1) + +// Packet: 0x03ed +packetLen(0x03ed, -1) + +// Packet: 0x03ee +packetLen(0x03ee, -1) + +// Packet: 0x03ef +packetLen(0x03ef, -1) + +// Packet: 0x03f0 +packetLen(0x03f0, -1) + +// Packet: 0x03f1 +packetLen(0x03f1, -1) + +// Packet: 0x03f2 +packetLen(0x03f2, -1) + +// Packet: 0x03f3 +packetLen(0x03f3, -1) + +// Packet: 0x03f4 +packetLen(0x03f4, -1) + +// Packet: 0x03f5 +packetLen(0x03f5, -1) + +// Packet: 0x03f6 +packetLen(0x03f6, -1) + +// Packet: 0x03f7 +packetLen(0x03f7, -1) + +// Packet: 0x03f8 +packetLen(0x03f8, -1) + +// Packet: 0x03f9 +packetLen(0x03f9, -1) + +// Packet: 0x03fa +packetLen(0x03fa, -1) + +// Packet: 0x03fb +packetLen(0x03fb, -1) + +// Packet: 0x03fc +packetLen(0x03fc, -1) + +// Packet: 0x03fd +packetLen(0x03fd, -1) + +// Packet: 0x03fe +packetLen(0x03fe, -1) + +// Packet: 0x03ff +packetLen(0x03ff, -1) + +// Packet: 0x0400 +packetLen(0x0400, -1) + +// Packet: 0x0401 +packetLen(0x0401, -1) + +// Packet: 0x0402 +packetLen(0x0402, -1) + +// Packet: 0x0403 +packetLen(0x0403, -1) + +// Packet: 0x0404 +packetLen(0x0404, -1) + +// Packet: 0x0405 +packetLen(0x0405, -1) + +// Packet: 0x0406 +packetLen(0x0406, -1) + +// Packet: 0x0407 +packetLen(0x0407, -1) + +// Packet: 0x0408 +packetLen(0x0408, -1) + +// Packet: 0x0409 +packetLen(0x0409, -1) + +// Packet: 0x040a +packetLen(0x040a, -1) + +// Packet: 0x040b +packetLen(0x040b, -1) + +// Packet: 0x040c +packetLen(0x040c, -1) + +// Packet: 0x040d +packetLen(0x040d, -1) + +// Packet: 0x040e +packetLen(0x040e, -1) + +// Packet: 0x040f +packetLen(0x040f, -1) + +// Packet: 0x0410 +packetLen(0x0410, -1) + +// Packet: 0x0411 +packetLen(0x0411, -1) + +// Packet: 0x0412 +packetLen(0x0412, -1) + +// Packet: 0x0413 +packetLen(0x0413, -1) + +// Packet: 0x0414 +packetLen(0x0414, -1) + +// Packet: 0x0415 +packetLen(0x0415, -1) + +// Packet: 0x0416 +packetLen(0x0416, -1) + +// Packet: 0x0417 +packetLen(0x0417, -1) + +// Packet: 0x0418 +packetLen(0x0418, -1) + +// Packet: 0x0419 +packetLen(0x0419, -1) + +// Packet: 0x041a +packetLen(0x041a, -1) + +// Packet: 0x041b +packetLen(0x041b, -1) + +// Packet: 0x041c +packetLen(0x041c, -1) + +// Packet: 0x041d +packetLen(0x041d, -1) + +// Packet: 0x041e +packetLen(0x041e, -1) + +// Packet: 0x041f +packetLen(0x041f, -1) + +// Packet: 0x0420 +packetLen(0x0420, -1) + +// Packet: 0x0421 +packetLen(0x0421, -1) + +// Packet: 0x0422 +packetLen(0x0422, -1) + +// Packet: 0x0423 +packetLen(0x0423, -1) + +// Packet: 0x0424 +packetLen(0x0424, -1) + +// Packet: 0x0425 +packetLen(0x0425, -1) + +// Packet: 0x0426 +packetLen(0x0426, -1) + +// Packet: 0x0427 +packetLen(0x0427, -1) + +// Packet: 0x0428 +packetLen(0x0428, -1) + +// Packet: 0x0429 +packetLen(0x0429, -1) + +// Packet: 0x042a +packetLen(0x042a, -1) + +// Packet: 0x042b +packetLen(0x042b, -1) + +// Packet: 0x042c +packetLen(0x042c, -1) + +// Packet: 0x042d +packetLen(0x042d, -1) + +// Packet: 0x042e +packetLen(0x042e, -1) + +// Packet: 0x042f +packetLen(0x042f, -1) + +// Packet: 0x0430 +packetLen(0x0430, -1) + +// Packet: 0x0431 +packetLen(0x0431, -1) + +// Packet: 0x0432 +packetLen(0x0432, -1) + +// Packet: 0x0433 +packetLen(0x0433, -1) + +// Packet: 0x0434 +packetLen(0x0434, -1) + +// Packet: 0x0435 +packetLen(0x0435, -1) + +// Packet: 0x0436 +#if PACKETVER >= 20080910 +packetLen(0x0436, 19) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20080910 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20080910 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +#if PACKETVER >= 20080910 +packetLen(0x0439, 8) // CZ_USE_ITEM2 +#endif + +// Packet: 0x043d +#if PACKETVER >= 20081111 +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY +#endif + +// Packet: 0x043e +#if PACKETVER >= 20081111 +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST +#endif + +// Packet: 0x043f +#if PACKETVER >= 20081111 +packetLen(0x043f, 8) // ZC_MSG_STATE_CHANGE2 +#endif + +// Packet: 0x0440 +#if PACKETVER >= 20081126 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD +#endif + +// Packet: 0x0441 +#if PACKETVER >= 20081126 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE +#endif + +// Packet: 0x0442 +#if PACKETVER >= 20081217 +packetLen(0x0442, 8) // ZC_SKILL_SELECT_REQUEST +#endif + +// Packet: 0x0443 +#if PACKETVER >= 20081217 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE +#endif + + +#endif /* COMMON_PACKETS2008_LEN_RE_H */ diff --git a/src/common/packets/packets2008_len_sak.h b/src/common/packets/packets2008_len_sak.h new file mode 100644 index 000000000..431f68506 --- /dev/null +++ b/src/common/packets/packets2008_len_sak.h @@ -0,0 +1,8968 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2008_LEN_SAK_H +#define COMMON_PACKETS2008_LEN_SAK_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 25) // CZ_ENTER + +// Packet: 0x0073 +#if PACKETVER >= 20080618 +packetLen(0x0073, 32) // ZC_ACCEPT_ENTER +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0073, 6) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080311 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080304 +packetLen(0x0073, 26) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080226 +packetLen(0x0073, 53) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080219 +packetLen(0x0073, 22) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20080102 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER +#endif + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +#if PACKETVER >= 20080618 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080610 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080311 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080304 +packetLen(0x0075, 11) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080226 +packetLen(0x0075, 8) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080219 +packetLen(0x0075, 28) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20080102 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#endif + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +#if PACKETVER >= 20080618 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0077, 10) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080311 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080304 +packetLen(0x0077, 54) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080226 +packetLen(0x0077, 14) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080219 +packetLen(0x0077, 2) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20080102 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER +#endif + +// Packet: 0x0078 +#if PACKETVER >= 20080618 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0078, 6) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0078, 3) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080226 +packetLen(0x0078, 6) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +#endif + +// Packet: 0x0079 +#if PACKETVER >= 20080618 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080610 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0079, 6) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080226 +packetLen(0x0079, 2) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0079, 27) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY +#endif + +// Packet: 0x007a +#if PACKETVER >= 20080618 +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080311 +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080304 +packetLen(0x007a, 4) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080226 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080219 +packetLen(0x007a, 29) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20080102 +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY +#endif + +// Packet: 0x007b +#if PACKETVER >= 20080618 +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x007b, 7) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080311 +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080304 +packetLen(0x007b, 56) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080226 +packetLen(0x007b, 5) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080219 +packetLen(0x007b, 2) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20080102 +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY +#endif + +// Packet: 0x007c +#if PACKETVER >= 20080618 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080610 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080311 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080304 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080226 +packetLen(0x007c, 8) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080219 +packetLen(0x007c, 186) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20080102 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +#endif + +// Packet: 0x007d +#if PACKETVER >= 20080618 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x007d, 54) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080311 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080304 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080226 +packetLen(0x007d, 26) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080219 +packetLen(0x007d, 3) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20080102 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#endif + +// Packet: 0x007e +packetLen(0x007e, 102) // CZ_REQUEST_TIME + +// Packet: 0x007f +#if PACKETVER >= 20080618 +packetLen(0x007f, 6) // ZC_NOTIFY_TIME +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080311 +packetLen(0x007f, 6) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080304 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080226 +packetLen(0x007f, 54) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080219 +packetLen(0x007f, 4) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20080102 +packetLen(0x007f, 6) // ZC_NOTIFY_TIME +#endif + +// Packet: 0x0080 +#if PACKETVER >= 20080618 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080311 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080304 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080226 +packetLen(0x0080, 4) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080219 +packetLen(0x0080, 10) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20080102 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH +#endif + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +#if PACKETVER >= 20080618 +packetLen(0x0083, 34) // ZC_ACCEPT_QUIT +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080311 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080304 +packetLen(0x0083, 32) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080226 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080219 +packetLen(0x0083, 10) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20080102 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT +#endif + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +#if PACKETVER >= 20080618 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0086, 3) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080311 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080304 +packetLen(0x0086, 4) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080226 +packetLen(0x0086, 14) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080219 +packetLen(0x0086, 10) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20080102 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE +#endif + +// Packet: 0x0087 +#if PACKETVER >= 20080618 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0087, 8) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0087, 4) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080226 +packetLen(0x0087, 6) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0087, 14) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE +#endif + +// Packet: 0x0088 +#if PACKETVER >= 20080618 +packetLen(0x0088, 10) // ZC_STOPMOVE +#elif PACKETVER >= 20080610 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0088, 10) // ZC_STOPMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0088, 6) // ZC_STOPMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0088, 30) // ZC_STOPMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0088, 10) // ZC_STOPMOVE +#endif + +// Packet: 0x0089 +packetLen(0x0089, 8) // CZ_REQUEST_ACT + +// Packet: 0x008a +#if PACKETVER >= 20080618 +packetLen(0x008a, 29) // ZC_NOTIFY_ACT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080311 +packetLen(0x008a, 29) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080304 +packetLen(0x008a, 5) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080226 +packetLen(0x008a, 10) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080219 +packetLen(0x008a, 6) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20080102 +packetLen(0x008a, 29) // ZC_NOTIFY_ACT +#endif + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 11) + +// Packet: 0x008d +#if PACKETVER >= 20080618 +packetLen(0x008d, 282) // ZC_NOTIFY_CHAT +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080304 +packetLen(0x008d, 3) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080226 +packetLen(0x008d, 6) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080219 +packetLen(0x008d, 79) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20080102 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#endif + +// Packet: 0x008e +#if PACKETVER >= 20080618 +packetLen(0x008e, 6) // ZC_NOTIFY_PLAYERCHAT +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080304 +packetLen(0x008e, 12) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080226 +packetLen(0x008e, 7) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080219 +packetLen(0x008e, 33) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20080102 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#endif + +// Packet: 0x0090 +#if PACKETVER >= 20080618 +packetLen(0x0090, 7) // CZ_CONTACTNPC +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0090, 12) // CZ_CONTACTNPC +#elif PACKETVER >= 20080311 +packetLen(0x0090, 7) // CZ_CONTACTNPC +#elif PACKETVER >= 20080304 +packetLen(0x0090, 6) // CZ_CONTACTNPC +#elif PACKETVER >= 20080226 +packetLen(0x0090, 4) // CZ_CONTACTNPC +#elif PACKETVER >= 20080219 +packetLen(0x0090, 2) // CZ_CONTACTNPC +#elif PACKETVER >= 20080102 +packetLen(0x0090, 7) // CZ_CONTACTNPC +#endif + +// Packet: 0x0091 +#if PACKETVER >= 20080618 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0091, 26) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080226 +packetLen(0x0091, 4) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE +#endif + +// Packet: 0x0092 +#if PACKETVER >= 20080618 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080311 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080304 +packetLen(0x0092, 10) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080226 +packetLen(0x0092, 3) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080219 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20080102 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE +#endif + +// Packet: 0x0093 +#if PACKETVER >= 20080618 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080610 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080304 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080226 +packetLen(0x0093, 5) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080219 +packetLen(0x0093, 67) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20080102 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE +#endif + +// Packet: 0x0094 +packetLen(0x0094, 14) // CZ_REQNAME + +// Packet: 0x0095 +#if PACKETVER >= 20080618 +packetLen(0x0095, 30) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080610 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080311 +packetLen(0x0095, 30) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080304 +packetLen(0x0095, 10) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080226 +packetLen(0x0095, 39) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080219 +packetLen(0x0095, 2) // ZC_ACK_REQNAME +#elif PACKETVER >= 20080102 +packetLen(0x0095, 30) // ZC_ACK_REQNAME +#endif + +// Packet: 0x0096 +#if PACKETVER >= 20080311 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080304 +packetLen(0x0096, 4) // CZ_WHISPER +#elif PACKETVER >= 20080226 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20080219 +packetLen(0x0096, 3) // CZ_WHISPER +#elif PACKETVER >= 20080102 +packetLen(0x0096, -1) // CZ_WHISPER +#endif + +// Packet: 0x0097 +#if PACKETVER >= 20080618 +packetLen(0x0097, 10) // ZC_WHISPER +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080304 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20080219 +packetLen(0x0097, 23) // ZC_WHISPER +#elif PACKETVER >= 20080102 +packetLen(0x0097, -1) // ZC_WHISPER +#endif + +// Packet: 0x0098 +#if PACKETVER >= 20080618 +packetLen(0x0098, 24) // ZC_ACK_WHISPER +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080311 +packetLen(0x0098, 3) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080304 +packetLen(0x0098, 6) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080226 +packetLen(0x0098, 2) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080219 +packetLen(0x0098, 8) // ZC_ACK_WHISPER +#elif PACKETVER >= 20080102 +packetLen(0x0098, 3) // ZC_ACK_WHISPER +#endif + +// Packet: 0x0099 +#if PACKETVER >= 20080311 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20080304 +packetLen(0x0099, 4) // CZ_BROADCAST +#elif PACKETVER >= 20080226 +packetLen(0x0099, 34) // CZ_BROADCAST +#elif PACKETVER >= 20080219 +packetLen(0x0099, 2) // CZ_BROADCAST +#elif PACKETVER >= 20080102 +packetLen(0x0099, -1) // CZ_BROADCAST +#endif + +// Packet: 0x009a +#if PACKETVER >= 20080304 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20080226 +packetLen(0x009a, 4) // ZC_BROADCAST +#elif PACKETVER >= 20080219 +packetLen(0x009a, 10) // ZC_BROADCAST +#elif PACKETVER >= 20080102 +packetLen(0x009a, -1) // ZC_BROADCAST +#endif + +// Packet: 0x009b +packetLen(0x009b, 26) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +#if PACKETVER >= 20080618 +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080610 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080311 +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080304 +packetLen(0x009c, 6) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080226 +packetLen(0x009c, 4) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080219 +packetLen(0x009c, 7) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20080102 +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION +#endif + +// Packet: 0x009d +#if PACKETVER >= 20080618 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x009d, 6) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x009d, 57) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x009d, 10) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +#endif + +// Packet: 0x009e +#if PACKETVER >= 20080618 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x009e, 8) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x009e, 36) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x009e, 11) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x009f +packetLen(0x009f, 14) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +#if PACKETVER >= 20080618 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00a0, 3) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00a0, 27) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00a0, 39) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#endif + +// Packet: 0x00a1 +#if PACKETVER >= 20080618 +packetLen(0x00a1, 60) // ZC_ITEM_DISAPPEAR +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080304 +packetLen(0x00a1, 7) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080226 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080219 +packetLen(0x00a1, 60) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20080102 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#endif + +// Packet: 0x00a2 +packetLen(0x00a2, 15) // CZ_ITEM_THROW + +// Packet: 0x00a3 +#if PACKETVER >= 20080618 +packetLen(0x00a3, 3) // ZC_NORMAL_ITEMLIST +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00a3, 2) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a3, 30) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a3, 44) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#endif + +// Packet: 0x00a4 +#if PACKETVER >= 20080618 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a4, 12) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00a4, 27) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a4, 15) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a4, 30) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#endif + +// Packet: 0x00a5 +#if PACKETVER >= 20080618 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a5, 28) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00a5, 3) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#endif + +// Packet: 0x00a6 +#if PACKETVER >= 20080304 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00a6, 16) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#endif + +// Packet: 0x00a7 +packetLen(0x00a7, 8) + +// Packet: 0x00a8 +#if PACKETVER >= 20080618 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00a8, 11) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00a8, 2) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00a8, 10) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +#endif + +// Packet: 0x00a9 +#if PACKETVER >= 20080618 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080610 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080311 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080304 +packetLen(0x00a9, 35) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080226 +packetLen(0x00a9, 26) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20080102 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#endif + +// Packet: 0x00aa +#if PACKETVER >= 20080618 +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00aa, 3) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00aa, 14) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00aa, 2) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK +#endif + +// Packet: 0x00ab +#if PACKETVER >= 20080618 +packetLen(0x00ab, 6) // CZ_REQ_TAKEOFF_EQUIP +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080311 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080226 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080219 +packetLen(0x00ab, 57) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20080102 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#endif + +// Packet: 0x00ac +#if PACKETVER >= 20080618 +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00ac, 14) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00ac, 3) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK +#endif + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +#if PACKETVER >= 20080618 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00af, 7) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00af, 4) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#endif + +// Packet: 0x00b0 +#if PACKETVER >= 20080618 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00b0, 7) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00b0, 11) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00b0, 7) // ZC_PAR_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +#endif + +// Packet: 0x00b1 +#if PACKETVER >= 20080618 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00b1, 21) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00b1, 30) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00b1, 14) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE +#endif + +// Packet: 0x00b2 +#if PACKETVER >= 20080618 +packetLen(0x00b2, 10) // CZ_RESTART +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00b2, 60) // CZ_RESTART +#elif PACKETVER >= 20080311 +packetLen(0x00b2, 3) // CZ_RESTART +#elif PACKETVER >= 20080304 +packetLen(0x00b2, 2) // CZ_RESTART +#elif PACKETVER >= 20080226 +packetLen(0x00b2, 9) // CZ_RESTART +#elif PACKETVER >= 20080219 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20080102 +packetLen(0x00b2, 3) // CZ_RESTART +#endif + +// Packet: 0x00b3 +#if PACKETVER >= 20080618 +packetLen(0x00b3, 3) // ZC_RESTART_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00b3, 3) // ZC_RESTART_ACK +#elif PACKETVER >= 20080304 +packetLen(0x00b3, 16) // ZC_RESTART_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00b3, 10) // ZC_RESTART_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00b3, 55) // ZC_RESTART_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00b3, 3) // ZC_RESTART_ACK +#endif + +// Packet: 0x00b4 +#if PACKETVER >= 20080618 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080610 +packetLen(0x00b4, 67) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x00b4, 43) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x00b4, 4) // ZC_SAY_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#endif + +// Packet: 0x00b5 +#if PACKETVER >= 20080618 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00b5, 10) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x00b5, 182) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x00b5, 4) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x00b5, 30) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#endif + +// Packet: 0x00b6 +#if PACKETVER >= 20080618 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00b6, 8) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x00b6, 3) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#endif + +// Packet: 0x00b7 +#if PACKETVER >= 20080618 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080610 +packetLen(0x00b7, 12) // ZC_MENU_LIST +#elif PACKETVER >= 20080311 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20080304 +packetLen(0x00b7, 2) // ZC_MENU_LIST +#elif PACKETVER >= 20080226 +packetLen(0x00b7, 32) // ZC_MENU_LIST +#elif PACKETVER >= 20080219 +packetLen(0x00b7, 3) // ZC_MENU_LIST +#elif PACKETVER >= 20080102 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#endif + +// Packet: 0x00b8 +#if PACKETVER >= 20080618 +packetLen(0x00b8, 9) // CZ_CHOOSE_MENU +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00b8, 6) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080311 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080304 +packetLen(0x00b8, 6) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080226 +packetLen(0x00b8, 5) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080219 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20080102 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU +#endif + +// Packet: 0x00b9 +#if PACKETVER >= 20080618 +packetLen(0x00b9, 9) // CZ_REQ_NEXT_SCRIPT +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080311 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080304 +packetLen(0x00b9, 44) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080226 +packetLen(0x00b9, 58) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20080102 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#endif + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +#if PACKETVER >= 20080618 +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00bb, 3) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00bb, 182) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE +#endif + +// Packet: 0x00bc +#if PACKETVER >= 20080618 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080610 +packetLen(0x00bc, 58) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080311 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080226 +packetLen(0x00bc, 3) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080219 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20080102 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#endif + +// Packet: 0x00bd +#if PACKETVER >= 20080618 +packetLen(0x00bd, 79) // ZC_STATUS +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080311 +packetLen(0x00bd, 44) // ZC_STATUS +#elif PACKETVER >= 20080304 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20080226 +packetLen(0x00bd, 58) // ZC_STATUS +#elif PACKETVER >= 20080219 +packetLen(0x00bd, 6) // ZC_STATUS +#elif PACKETVER >= 20080102 +packetLen(0x00bd, 44) // ZC_STATUS +#endif + +// Packet: 0x00be +#if PACKETVER >= 20080618 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00be, 186) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +#endif + +// Packet: 0x00bf +#if PACKETVER >= 20080618 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080610 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080304 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080226 +packetLen(0x00bf, 29) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080219 +packetLen(0x00bf, 12) // CZ_REQ_EMOTION +#elif PACKETVER >= 20080102 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#endif + +// Packet: 0x00c0 +#if PACKETVER >= 20080618 +packetLen(0x00c0, 60) // ZC_EMOTION +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00c0, 4) // ZC_EMOTION +#elif PACKETVER >= 20080311 +packetLen(0x00c0, 7) // ZC_EMOTION +#elif PACKETVER >= 20080304 +packetLen(0x00c0, 2) // ZC_EMOTION +#elif PACKETVER >= 20080226 +packetLen(0x00c0, 21) // ZC_EMOTION +#elif PACKETVER >= 20080219 +packetLen(0x00c0, 6) // ZC_EMOTION +#elif PACKETVER >= 20080102 +packetLen(0x00c0, 7) // ZC_EMOTION +#endif + +// Packet: 0x00c1 +#if PACKETVER >= 20080618 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080311 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080304 +packetLen(0x00c1, 28) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080226 +packetLen(0x00c1, 6) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080219 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20080102 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#endif + +// Packet: 0x00c2 +#if PACKETVER >= 20080618 +packetLen(0x00c2, 6) // ZC_USER_COUNT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00c2, 2) // ZC_USER_COUNT +#elif PACKETVER >= 20080311 +packetLen(0x00c2, 6) // ZC_USER_COUNT +#elif PACKETVER >= 20080304 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20080226 +packetLen(0x00c2, 282) // ZC_USER_COUNT +#elif PACKETVER >= 20080219 +packetLen(0x00c2, 4) // ZC_USER_COUNT +#elif PACKETVER >= 20080102 +packetLen(0x00c2, 6) // ZC_USER_COUNT +#endif + +// Packet: 0x00c3 +#if PACKETVER >= 20080618 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00c3, 30) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00c3, 28) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +#endif + +// Packet: 0x00c4 +#if PACKETVER >= 20080618 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00c4, 7) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080311 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080304 +packetLen(0x00c4, 3) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080226 +packetLen(0x00c4, 114) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080219 +packetLen(0x00c4, 2) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20080102 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#endif + +// Packet: 0x00c5 +#if PACKETVER >= 20080618 +packetLen(0x00c5, 9) // CZ_ACK_SELECT_DEALTYPE +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00c5, 14) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080311 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080304 +packetLen(0x00c5, 67) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080219 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20080102 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE +#endif + +// Packet: 0x00c6 +#if PACKETVER >= 20080618 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080610 +packetLen(0x00c6, 11) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c6, 53) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c6, 13) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c6, 3) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#endif + +// Packet: 0x00c7 +#if PACKETVER >= 20080304 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c7, 5) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c7, 90) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#endif + +// Packet: 0x00c8 +#if PACKETVER >= 20080618 +packetLen(0x00c8, 15) // CZ_PC_PURCHASE_ITEMLIST +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c8, 86) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c8, 10) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#endif + +// Packet: 0x00c9 +#if PACKETVER >= 20080618 +packetLen(0x00c9, 36) // CZ_PC_SELL_ITEMLIST +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x00c9, 27) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x00c9, 6) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x00c9, 10) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#endif + +// Packet: 0x00ca +#if PACKETVER >= 20080618 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080610 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080311 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080304 +packetLen(0x00ca, 20) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080226 +packetLen(0x00ca, 23) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080219 +packetLen(0x00ca, 86) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20080102 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#endif + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +#if PACKETVER >= 20080618 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00cc, 4) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080304 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080226 +packetLen(0x00cc, 7) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080219 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20080102 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#endif + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +#if PACKETVER >= 20080618 +packetLen(0x00ce, 11) // CZ_DISCONNECT_ALL_CHARACTER +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080304 +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080226 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080219 +packetLen(0x00ce, 6) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20080102 +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER +#endif + +// Packet: 0x00cf +#if PACKETVER >= 20080618 +packetLen(0x00cf, 30) // CZ_SETTING_WHISPER_PC +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00cf, 9) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080311 +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080304 +packetLen(0x00cf, 60) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080226 +packetLen(0x00cf, 16) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080219 +packetLen(0x00cf, 9) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20080102 +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC +#endif + +// Packet: 0x00d0 +#if PACKETVER >= 20080618 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00d0, 14) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080311 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080304 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080226 +packetLen(0x00d0, 2) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080219 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080102 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#endif + +// Packet: 0x00d1 +#if PACKETVER >= 20080618 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080311 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080304 +packetLen(0x00d1, 3) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080226 +packetLen(0x00d1, 10) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080219 +packetLen(0x00d1, 13) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20080102 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC +#endif + +// Packet: 0x00d2 +#if PACKETVER >= 20080618 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080610 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080311 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080304 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080226 +packetLen(0x00d2, 14) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080219 +packetLen(0x00d2, 20) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20080102 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE +#endif + +// Packet: 0x00d3 +#if PACKETVER >= 20080618 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080610 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080311 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080304 +packetLen(0x00d3, 23) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080226 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080219 +packetLen(0x00d3, 26) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20080102 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#endif + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +#if PACKETVER >= 20080618 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080610 +packetLen(0x00d5, 3) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d5, 10) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d5, 10) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#endif + +// Packet: 0x00d6 +#if PACKETVER >= 20080618 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080610 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d6, 30) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#endif + +// Packet: 0x00d7 +#if PACKETVER >= 20080311 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080304 +packetLen(0x00d7, 14) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080226 +packetLen(0x00d7, 28) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080219 +packetLen(0x00d7, 3) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20080102 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#endif + +// Packet: 0x00d8 +#if PACKETVER >= 20080618 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d8, 10) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d8, 16) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d8, 2) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM +#endif + +// Packet: 0x00d9 +#if PACKETVER >= 20080618 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00d9, -1) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00d9, 66) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00d9, 6) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00d9, 3) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#endif + +// Packet: 0x00da +#if PACKETVER >= 20080618 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00da, 2) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00da, 14) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00da, 54) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +#endif + +// Packet: 0x00db +#if PACKETVER >= 20080618 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080610 +packetLen(0x00db, 2) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080226 +packetLen(0x00db, 26) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00db, 4) // ZC_ENTER_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#endif + +// Packet: 0x00dc +#if PACKETVER >= 20080618 +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080610 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080311 +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080304 +packetLen(0x00dc, 11) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080226 +packetLen(0x00dc, 3) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080219 +packetLen(0x00dc, 29) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20080102 +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY +#endif + +// Packet: 0x00dd +#if PACKETVER >= 20080618 +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00dd, 10) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080311 +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080304 +packetLen(0x00dd, 14) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080226 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080219 +packetLen(0x00dd, 3) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20080102 +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT +#endif + +// Packet: 0x00de +#if PACKETVER >= 20080311 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00de, 24) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00de, 6) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00de, 34) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#endif + +// Packet: 0x00df +#if PACKETVER >= 20080618 +packetLen(0x00df, 30) // ZC_CHANGE_CHATROOM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080304 +packetLen(0x00df, 53) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080226 +packetLen(0x00df, 9) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080219 +packetLen(0x00df, 7) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20080102 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#endif + +// Packet: 0x00e0 +#if PACKETVER >= 20080618 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x00e0, 8) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00e0, 2) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00e0, 31) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE +#endif + +// Packet: 0x00e1 +#if PACKETVER >= 20080618 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x00e1, 81) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE +#endif + +// Packet: 0x00e2 +#if PACKETVER >= 20080618 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080311 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080304 +packetLen(0x00e2, 13) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080226 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080219 +packetLen(0x00e2, 30) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20080102 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#endif + +// Packet: 0x00e3 +#if PACKETVER >= 20080618 +packetLen(0x00e3, 58) // CZ_EXIT_ROOM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00e3, 3) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080311 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080304 +packetLen(0x00e3, 8) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080219 +packetLen(0x00e3, 12) // CZ_EXIT_ROOM +#elif PACKETVER >= 20080102 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +#endif + +// Packet: 0x00e4 +#if PACKETVER >= 20080618 +packetLen(0x00e4, 86) // CZ_REQ_EXCHANGE_ITEM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00e4, 79) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e4, 2) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e4, 14) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#endif + +// Packet: 0x00e5 +#if PACKETVER >= 20080618 +packetLen(0x00e5, 28) // ZC_REQ_EXCHANGE_ITEM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e5, 14) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e5, 11) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM +#endif + +// Packet: 0x00e6 +#if PACKETVER >= 20080618 +packetLen(0x00e6, 9) // CZ_ACK_EXCHANGE_ITEM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e6, 53) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e6, 10) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM +#endif + +// Packet: 0x00e7 +#if PACKETVER >= 20080618 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00e7, 6) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e7, 4) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e7, 68) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#endif + +// Packet: 0x00e8 +#if PACKETVER >= 20080618 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e8, 9) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e8, 6) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e8, 2) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00e9 +#if PACKETVER >= 20080618 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00e9, 28) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00e9, 30) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00e9, 2) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00ea +#if PACKETVER >= 20080618 +packetLen(0x00ea, 90) // ZC_ACK_ADD_EXCHANGE_ITEM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00ea, 54) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00eb +#if PACKETVER >= 20080618 +packetLen(0x00eb, 5) // CZ_CONCLUDE_EXCHANGE_ITEM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00eb, 19) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00eb, 17) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM +#endif + +// Packet: 0x00ec +#if PACKETVER >= 20080618 +packetLen(0x00ec, 6) // ZC_CONCLUDE_EXCHANGE_ITEM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ec, 28) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ec, 11) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM +#endif + +// Packet: 0x00ed +#if PACKETVER >= 20080618 +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ed, 26) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ed, 30) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM +#endif + +// Packet: 0x00ee +#if PACKETVER >= 20080618 +packetLen(0x00ee, 81) // ZC_CANCEL_EXCHANGE_ITEM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00ee, 6) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ee, 4) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ee, 90) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM +#endif + +// Packet: 0x00ef +#if PACKETVER >= 20080618 +packetLen(0x00ef, 30) // CZ_EXEC_EXCHANGE_ITEM +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00ef, 6) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00ef, 7) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#endif + +// Packet: 0x00f0 +#if PACKETVER >= 20080618 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00f0, 6) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x00f0, 27) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#endif + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +#if PACKETVER >= 20080618 +packetLen(0x00f2, 10) // ZC_NOTIFY_STOREITEM_COUNTINFO +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080311 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080304 +packetLen(0x00f2, 5) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080226 +packetLen(0x00f2, 14) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20080102 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#endif + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +#if PACKETVER >= 20080618 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080311 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080304 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080226 +packetLen(0x00f4, 6) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080219 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20080102 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE +#endif + +// Packet: 0x00f5 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +#if PACKETVER >= 20080618 +packetLen(0x00f6, 26) // ZC_DELETE_ITEM_FROM_STORE +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00f6, 4) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080311 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080226 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080219 +packetLen(0x00f6, 23) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20080102 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE +#endif + +// Packet: 0x00f7 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +#if PACKETVER >= 20080618 +packetLen(0x00f8, 17) // ZC_CLOSE_STORE +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00f8, 6) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080311 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080304 +packetLen(0x00f8, 5) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080226 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080219 +packetLen(0x00f8, 12) // ZC_CLOSE_STORE +#elif PACKETVER >= 20080102 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#endif + +// Packet: 0x00f9 +#if PACKETVER >= 20080618 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00f9, 19) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00f9, 4) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00f9, 8) // CZ_MAKE_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#endif + +// Packet: 0x00fa +#if PACKETVER >= 20080618 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fa, 10) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fa, 10) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#endif + +// Packet: 0x00fb +#if PACKETVER >= 20080618 +packetLen(0x00fb, 3) // ZC_GROUP_LIST +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00fb, 26) // ZC_GROUP_LIST +#elif PACKETVER >= 20080311 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20080304 +packetLen(0x00fb, 54) // ZC_GROUP_LIST +#elif PACKETVER >= 20080226 +packetLen(0x00fb, 5) // ZC_GROUP_LIST +#elif PACKETVER >= 20080219 +packetLen(0x00fb, 10) // ZC_GROUP_LIST +#elif PACKETVER >= 20080102 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#endif + +// Packet: 0x00fc +#if PACKETVER >= 20080618 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00fc, 8) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fc, 19) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#endif + +// Packet: 0x00fd +#if PACKETVER >= 20080618 +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x00fd, 2) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fd, 7) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fd, 20) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fd, 11) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP +#endif + +// Packet: 0x00fe +#if PACKETVER >= 20080618 +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00fe, 7) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00fe, 6) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP +#endif + +// Packet: 0x00ff +#if PACKETVER >= 20080618 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x00ff, 6) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x00ff, 282) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x00ff, 6) // CZ_JOIN_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#endif + +// Packet: 0x0100 +#if PACKETVER >= 20080618 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x0100, 3) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#endif + +// Packet: 0x0101 +#if PACKETVER >= 20080618 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x0101, 11) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x0101, 10) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#endif + +// Packet: 0x0102 +#if PACKETVER >= 20080618 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080610 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080311 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080304 +packetLen(0x0102, 3) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080226 +packetLen(0x0102, 26) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080219 +packetLen(0x0102, 68) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20080102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#endif + +// Packet: 0x0103 +#if PACKETVER >= 20080618 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080610 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080311 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080304 +packetLen(0x0103, 6) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080226 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080219 +packetLen(0x0103, 5) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20080102 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#endif + +// Packet: 0x0104 +#if PACKETVER >= 20080618 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x0104, 2) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x0104, 6) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x0104, 21) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0105 +#if PACKETVER >= 20080618 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080610 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080311 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080304 +packetLen(0x0105, 102) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080226 +packetLen(0x0105, 26) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080219 +packetLen(0x0105, 6) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20080102 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP +#endif + +// Packet: 0x0106 +#if PACKETVER >= 20080618 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080610 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080311 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080304 +packetLen(0x0106, 6) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080226 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080219 +packetLen(0x0106, 21) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20080102 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#endif + +// Packet: 0x0107 +#if PACKETVER >= 20080618 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0107, 11) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080311 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080304 +packetLen(0x0107, 21) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080226 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080219 +packetLen(0x0107, 5) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20080102 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM +#endif + +// Packet: 0x0108 +#if PACKETVER >= 20080618 +packetLen(0x0108, 54) // CZ_REQUEST_CHAT_PARTY +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0108, 15) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080311 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080304 +packetLen(0x0108, 4) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080226 +packetLen(0x0108, 3) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080219 +packetLen(0x0108, 97) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20080102 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#endif + +// Packet: 0x0109 +#if PACKETVER >= 20080618 +packetLen(0x0109, 7) // ZC_NOTIFY_CHAT_PARTY +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080304 +packetLen(0x0109, 33) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080226 +packetLen(0x0109, 2) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080219 +packetLen(0x0109, 14) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20080102 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#endif + +// Packet: 0x010a +#if PACKETVER >= 20080618 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080610 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080311 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080304 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080226 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080219 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20080102 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#endif + +// Packet: 0x010b +#if PACKETVER >= 20080618 +packetLen(0x010b, 8) // ZC_MVP_GETTING_SPECIAL_EXP +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x010b, 55) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080311 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080304 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080226 +packetLen(0x010b, 9) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080219 +packetLen(0x010b, 24) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20080102 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#endif + +// Packet: 0x010c +#if PACKETVER >= 20080618 +packetLen(0x010c, 6) // ZC_MVP +#elif PACKETVER >= 20080610 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080311 +packetLen(0x010c, 6) // ZC_MVP +#elif PACKETVER >= 20080304 +packetLen(0x010c, 4) // ZC_MVP +#elif PACKETVER >= 20080226 +packetLen(0x010c, 14) // ZC_MVP +#elif PACKETVER >= 20080219 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20080102 +packetLen(0x010c, 6) // ZC_MVP +#endif + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +#if PACKETVER >= 20080618 +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080610 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080311 +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080304 +packetLen(0x010e, 282) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080226 +packetLen(0x010e, 7) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080219 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20080102 +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE +#endif + +// Packet: 0x010f +#if PACKETVER >= 20080311 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080304 +packetLen(0x010f, 30) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080226 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080219 +packetLen(0x010f, 30) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20080102 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#endif + +// Packet: 0x0110 +#if PACKETVER >= 20080618 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080610 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080311 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080304 +packetLen(0x0110, 29) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080226 +packetLen(0x0110, 8) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080219 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20080102 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#endif + +// Packet: 0x0111 +#if PACKETVER >= 20080618 +packetLen(0x0111, 39) // ZC_ADD_SKILL +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0111, 6) // ZC_ADD_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x0111, 39) // ZC_ADD_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x0111, 3) // ZC_ADD_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x0111, 60) // ZC_ADD_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x0111, 32) // ZC_ADD_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x0111, 39) // ZC_ADD_SKILL +#endif + +// Packet: 0x0112 +#if PACKETVER >= 20080618 +packetLen(0x0112, 59) // CZ_UPGRADE_SKILLLEVEL +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080311 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080226 +packetLen(0x0112, 13) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080219 +packetLen(0x0112, 7) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20080102 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL +#endif + +// Packet: 0x0113 +packetLen(0x0113, 22) // CZ_USE_SKILL + +// Packet: 0x0114 +#if PACKETVER >= 20080618 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0114, 7) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x0114, 8) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x0114, 10) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL +#endif + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +#if PACKETVER >= 20080618 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0117, 31) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080311 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080304 +packetLen(0x0117, 282) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080226 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080219 +packetLen(0x0117, 10) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20080102 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL +#endif + +// Packet: 0x0118 +#if PACKETVER >= 20080618 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080610 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080311 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080304 +packetLen(0x0118, 34) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080226 +packetLen(0x0118, 54) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080219 +packetLen(0x0118, 7) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20080102 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#endif + +// Packet: 0x0119 +#if PACKETVER >= 20080618 +packetLen(0x0119, 13) // ZC_STATE_CHANGE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0119, 10) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x0119, 13) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x0119, 10) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x0119, 2) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x0119, 58) // ZC_STATE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x0119, 13) // ZC_STATE_CHANGE +#endif + +// Packet: 0x011a +#if PACKETVER >= 20080618 +packetLen(0x011a, 15) // ZC_USE_SKILL +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x011a, 15) // ZC_USE_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x011a, 2) // ZC_USE_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x011a, 10) // ZC_USE_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x011a, 11) // ZC_USE_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x011a, 15) // ZC_USE_SKILL +#endif + +// Packet: 0x011b +#if PACKETVER >= 20080618 +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x011b, 15) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080311 +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080304 +packetLen(0x011b, 8) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080226 +packetLen(0x011b, 2) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080219 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20080102 +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT +#endif + +// Packet: 0x011c +#if PACKETVER >= 20080618 +packetLen(0x011c, 68) // ZC_WARPLIST +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x011c, 2) // ZC_WARPLIST +#elif PACKETVER >= 20080311 +packetLen(0x011c, 68) // ZC_WARPLIST +#elif PACKETVER >= 20080304 +packetLen(0x011c, 11) // ZC_WARPLIST +#elif PACKETVER >= 20080226 +packetLen(0x011c, 6) // ZC_WARPLIST +#elif PACKETVER >= 20080219 +packetLen(0x011c, 4) // ZC_WARPLIST +#elif PACKETVER >= 20080102 +packetLen(0x011c, 68) // ZC_WARPLIST +#endif + +// Packet: 0x011d +#if PACKETVER >= 20080618 +packetLen(0x011d, 10) // CZ_REMEMBER_WARPPOINT +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080311 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080304 +packetLen(0x011d, 8) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080219 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080102 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +#endif + +// Packet: 0x011e +#if PACKETVER >= 20080618 +packetLen(0x011e, 33) // ZC_ACK_REMEMBER_WARPPOINT +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080311 +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080304 +packetLen(0x011e, 16) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080219 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20080102 +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT +#endif + +// Packet: 0x011f +#if PACKETVER >= 20080618 +packetLen(0x011f, 30) // ZC_SKILL_ENTRY +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x011f, 9) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x011f, 16) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x011f, 8) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x011f, 5) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x011f, 16) // ZC_SKILL_ENTRY +#endif + +// Packet: 0x0120 +#if PACKETVER >= 20080618 +packetLen(0x0120, 14) // ZC_SKILL_DISAPPEAR +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080311 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080304 +packetLen(0x0120, 5) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080226 +packetLen(0x0120, 7) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080219 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20080102 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +#endif + +// Packet: 0x0121 +#if PACKETVER >= 20080618 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080311 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080304 +packetLen(0x0121, 6) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080226 +packetLen(0x0121, 282) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080219 +packetLen(0x0121, 6) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20080102 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO +#endif + +// Packet: 0x0122 +#if PACKETVER >= 20080618 +packetLen(0x0122, 12) // ZC_CART_EQUIPMENT_ITEMLIST +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0122, 6) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0122, 30) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0122, 8) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#endif + +// Packet: 0x0123 +#if PACKETVER >= 20080618 +packetLen(0x0123, 6) // ZC_CART_NORMAL_ITEMLIST +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0123, 33) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080311 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0123, 8) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0123, 6) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0123, 16) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#endif + +// Packet: 0x0124 +#if PACKETVER >= 20080618 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x0124, 8) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x0124, 36) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x0124, 6) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +#endif + +// Packet: 0x0125 +#if PACKETVER >= 20080618 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0125, 2) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080311 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080304 +packetLen(0x0125, 17) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080219 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20080102 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART +#endif + +// Packet: 0x0126 +#if PACKETVER >= 20080618 +packetLen(0x0126, 43) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x0126, 4) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x0126, 11) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#endif + +// Packet: 0x0127 +#if PACKETVER >= 20080618 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0127, 2) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080311 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080304 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080226 +packetLen(0x0127, 12) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080219 +packetLen(0x0127, 4) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20080102 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#endif + +// Packet: 0x0128 +#if PACKETVER >= 20080618 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0128, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x0128, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x0128, 17) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#endif + +// Packet: 0x0129 +#if PACKETVER >= 20080618 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080610 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080311 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080226 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080219 +packetLen(0x0129, 10) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20080102 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#endif + +// Packet: 0x012a +#if PACKETVER >= 20080618 +packetLen(0x012a, 6) // CZ_REQ_CARTOFF +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080311 +packetLen(0x012a, 2) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080304 +packetLen(0x012a, 6) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080226 +packetLen(0x012a, 3) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080219 +packetLen(0x012a, 5) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20080102 +packetLen(0x012a, 2) // CZ_REQ_CARTOFF +#endif + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +#if PACKETVER >= 20080618 +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x012c, 34) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080311 +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080304 +packetLen(0x012c, 39) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080226 +packetLen(0x012c, 20) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080219 +packetLen(0x012c, 9) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20080102 +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART +#endif + +// Packet: 0x012d +#if PACKETVER >= 20080618 +packetLen(0x012d, 4) // ZC_OPENSTORE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20080311 +packetLen(0x012d, 4) // ZC_OPENSTORE +#elif PACKETVER >= 20080304 +packetLen(0x012d, 16) // ZC_OPENSTORE +#elif PACKETVER >= 20080219 +packetLen(0x012d, 14) // ZC_OPENSTORE +#elif PACKETVER >= 20080102 +packetLen(0x012d, 4) // ZC_OPENSTORE +#endif + +// Packet: 0x012e +#if PACKETVER >= 20080618 +packetLen(0x012e, 31) // CZ_REQ_CLOSESTORE +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080311 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080304 +packetLen(0x012e, 10) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080219 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20080102 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#endif + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +#if PACKETVER >= 20080618 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0130, 86) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080304 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0130, 28) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0130, 5) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#endif + +// Packet: 0x0131 +#if PACKETVER >= 20080618 +packetLen(0x0131, 86) // ZC_STORE_ENTRY +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0131, 2) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0131, 86) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0131, 4) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080226 +packetLen(0x0131, 29) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080219 +packetLen(0x0131, 26) // ZC_STORE_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0131, 86) // ZC_STORE_ENTRY +#endif + +// Packet: 0x0132 +#if PACKETVER >= 20080618 +packetLen(0x0132, 10) // ZC_DISAPPEAR_ENTRY +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0132, 8) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080311 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080304 +packetLen(0x0132, 14) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20080102 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +#endif + +// Packet: 0x0133 +#if PACKETVER >= 20080304 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0133, 10) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0133, 8) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#endif + +// Packet: 0x0134 +#if PACKETVER >= 20080618 +packetLen(0x0134, 8) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0134, 16) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080304 +packetLen(0x0134, 4) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0134, 3) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0134, 4) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#endif + +// Packet: 0x0135 +#if PACKETVER >= 20080618 +packetLen(0x0135, 13) // ZC_PC_PURCHASE_RESULT_FROMMC +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080311 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080304 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080226 +packetLen(0x0135, 6) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080219 +packetLen(0x0135, 65) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20080102 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC +#endif + +// Packet: 0x0136 +#if PACKETVER >= 20080618 +packetLen(0x0136, 8) // ZC_PC_PURCHASE_MYITEMLIST +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0136, 26) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0136, 10) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0136, 2) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#endif + +// Packet: 0x0137 +#if PACKETVER >= 20080618 +packetLen(0x0137, 71) // ZC_DELETEITEM_FROM_MCSTORE +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080311 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080304 +packetLen(0x0137, 2) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080226 +packetLen(0x0137, 5) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080219 +packetLen(0x0137, 10) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20080102 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#endif + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +#if PACKETVER >= 20080618 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0139, 59) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080311 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080304 +packetLen(0x0139, 3) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080226 +packetLen(0x0139, 81) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080219 +packetLen(0x0139, 6) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20080102 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#endif + +// Packet: 0x013a +#if PACKETVER >= 20080618 +packetLen(0x013a, 4) // ZC_ATTACK_RANGE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x013a, 8) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080311 +packetLen(0x013a, 4) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080304 +packetLen(0x013a, 5) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080226 +packetLen(0x013a, 58) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080219 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20080102 +packetLen(0x013a, 4) // ZC_ATTACK_RANGE +#endif + +// Packet: 0x013b +#if PACKETVER >= 20080618 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080311 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080304 +packetLen(0x013b, 26) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080226 +packetLen(0x013b, 6) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080219 +packetLen(0x013b, 16) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20080102 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#endif + +// Packet: 0x013c +#if PACKETVER >= 20080618 +packetLen(0x013c, 12) // ZC_EQUIP_ARROW +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080311 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080304 +packetLen(0x013c, 12) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080226 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20080102 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +#endif + +// Packet: 0x013d +#if PACKETVER >= 20080618 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080610 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20080311 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20080304 +packetLen(0x013d, 43) // ZC_RECOVERY +#elif PACKETVER >= 20080226 +packetLen(0x013d, 2) // ZC_RECOVERY +#elif PACKETVER >= 20080102 +packetLen(0x013d, 6) // ZC_RECOVERY +#endif + +// Packet: 0x013e +#if PACKETVER >= 20080618 +packetLen(0x013e, 24) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080610 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080311 +packetLen(0x013e, 24) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080304 +packetLen(0x013e, 5) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080226 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080219 +packetLen(0x013e, 30) // ZC_USESKILL_ACK +#elif PACKETVER >= 20080102 +packetLen(0x013e, 24) // ZC_USESKILL_ACK +#endif + +// Packet: 0x013f +#if PACKETVER >= 20080618 +packetLen(0x013f, 26) // CZ_ITEM_CREATE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080311 +packetLen(0x013f, 26) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080304 +packetLen(0x013f, 11) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080226 +packetLen(0x013f, 5) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080219 +packetLen(0x013f, 58) // CZ_ITEM_CREATE +#elif PACKETVER >= 20080102 +packetLen(0x013f, 26) // CZ_ITEM_CREATE +#endif + +// Packet: 0x0140 +#if PACKETVER >= 20080618 +packetLen(0x0140, 22) // CZ_MOVETO_MAP +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0140, 30) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080311 +packetLen(0x0140, 22) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080304 +packetLen(0x0140, 8) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080226 +packetLen(0x0140, 11) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080219 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20080102 +packetLen(0x0140, 22) // CZ_MOVETO_MAP +#endif + +// Packet: 0x0141 +#if PACKETVER >= 20080618 +packetLen(0x0141, 14) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080610 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080311 +packetLen(0x0141, 14) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080304 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080226 +packetLen(0x0141, 22) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080219 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20080102 +packetLen(0x0141, 14) // ZC_COUPLESTATUS +#endif + +// Packet: 0x0142 +#if PACKETVER >= 20080618 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0142, 8) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080311 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080304 +packetLen(0x0142, 31) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080226 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080219 +packetLen(0x0142, 2) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20080102 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG +#endif + +// Packet: 0x0143 +#if PACKETVER >= 20080618 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0143, 11) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080311 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080304 +packetLen(0x0143, 282) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080226 +packetLen(0x0143, 8) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080219 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20080102 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +#endif + +// Packet: 0x0144 +#if PACKETVER >= 20080618 +packetLen(0x0144, 23) // ZC_COMPASS +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0144, 30) // ZC_COMPASS +#elif PACKETVER >= 20080311 +packetLen(0x0144, 23) // ZC_COMPASS +#elif PACKETVER >= 20080304 +packetLen(0x0144, 79) // ZC_COMPASS +#elif PACKETVER >= 20080226 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20080219 +packetLen(0x0144, 10) // ZC_COMPASS +#elif PACKETVER >= 20080102 +packetLen(0x0144, 23) // ZC_COMPASS +#endif + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +#if PACKETVER >= 20080618 +packetLen(0x0146, 23) // CZ_CLOSE_DIALOG +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080311 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080304 +packetLen(0x0146, 5) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080226 +packetLen(0x0146, 7) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080219 +packetLen(0x0146, 10) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20080102 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#endif + +// Packet: 0x0147 +#if PACKETVER >= 20080618 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080311 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080304 +packetLen(0x0147, 22) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080226 +packetLen(0x0147, 11) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080219 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20080102 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL +#endif + +// Packet: 0x0148 +#if PACKETVER >= 20080618 +packetLen(0x0148, 8) // ZC_RESURRECTION +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0148, 6) // ZC_RESURRECTION +#elif PACKETVER >= 20080311 +packetLen(0x0148, 8) // ZC_RESURRECTION +#elif PACKETVER >= 20080304 +packetLen(0x0148, 10) // ZC_RESURRECTION +#elif PACKETVER >= 20080226 +packetLen(0x0148, 6) // ZC_RESURRECTION +#elif PACKETVER >= 20080219 +packetLen(0x0148, 4) // ZC_RESURRECTION +#elif PACKETVER >= 20080102 +packetLen(0x0148, 8) // ZC_RESURRECTION +#endif + +// Packet: 0x0149 +#if PACKETVER >= 20080618 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080311 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080304 +packetLen(0x0149, 15) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080226 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080219 +packetLen(0x0149, 53) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20080102 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT +#endif + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +#if PACKETVER >= 20080618 +packetLen(0x014c, 17) // ZC_MYGUILD_BASIC_INFO +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x014c, 53) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080226 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080219 +packetLen(0x014c, 4) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20080102 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#endif + +// Packet: 0x014d +#if PACKETVER >= 20080618 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080610 +packetLen(0x014d, 26) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080311 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080304 +packetLen(0x014d, 6) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080226 +packetLen(0x014d, 8) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080219 +packetLen(0x014d, 10) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20080102 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#endif + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +#if PACKETVER >= 20080618 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080610 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080311 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080304 +packetLen(0x014f, 10) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080226 +packetLen(0x014f, 97) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080219 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20080102 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#endif + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +#if PACKETVER >= 20080618 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080610 +packetLen(0x0154, 27) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080311 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080226 +packetLen(0x0154, 6) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080219 +packetLen(0x0154, 8) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20080102 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#endif + +// Packet: 0x0155 +#if PACKETVER >= 20080618 +packetLen(0x0155, 12) // CZ_REQ_CHANGE_MEMBERPOS +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080304 +packetLen(0x0155, 54) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080226 +packetLen(0x0155, 66) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080219 +packetLen(0x0155, 15) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20080102 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#endif + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +#if PACKETVER >= 20080618 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0159, 186) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +#endif + +// Packet: 0x015a +#if PACKETVER >= 20080618 +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x015a, 6) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x015a, 14) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x015a, 6) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x015a, 8) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD +#endif + +// Packet: 0x015b +#if PACKETVER >= 20080618 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x015b, 42) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x015b, 2) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x015b, 22) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x015b, 6) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#endif + +// Packet: 0x015c +#if PACKETVER >= 20080618 +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x015c, 18) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x015c, 30) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x015c, 3) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x015c, 5) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD +#endif + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +#if PACKETVER >= 20080618 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080311 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080304 +packetLen(0x015e, 3) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080226 +packetLen(0x015e, 54) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080219 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20080102 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#endif + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +#if PACKETVER >= 20080618 +packetLen(0x0160, 11) // ZC_POSITION_INFO +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20080304 +packetLen(0x0160, 29) // ZC_POSITION_INFO +#elif PACKETVER >= 20080226 +packetLen(0x0160, 2) // ZC_POSITION_INFO +#elif PACKETVER >= 20080219 +packetLen(0x0160, 102) // ZC_POSITION_INFO +#elif PACKETVER >= 20080102 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#endif + +// Packet: 0x0161 +#if PACKETVER >= 20080618 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0161, 10) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080311 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080304 +packetLen(0x0161, 58) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080226 +packetLen(0x0161, 21) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080219 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20080102 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#endif + +// Packet: 0x0162 +#if PACKETVER >= 20080618 +packetLen(0x0162, 22) // ZC_GUILD_SKILLINFO +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0162, 4) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080311 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080304 +packetLen(0x0162, 27) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080226 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080219 +packetLen(0x0162, 26) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20080102 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#endif + +// Packet: 0x0163 +#if PACKETVER >= 20080618 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0163, 8) // ZC_BAN_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0163, 21) // ZC_BAN_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0163, 4) // ZC_BAN_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0163, 6) // ZC_BAN_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0163, -1) // ZC_BAN_LIST +#endif + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +#if PACKETVER >= 20080618 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0165, 114) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0165, 4) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0165, 29) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD +#endif + +// Packet: 0x0166 +#if PACKETVER >= 20080618 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080610 +packetLen(0x0166, 28) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080304 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080226 +packetLen(0x0166, 18) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20080102 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#endif + +// Packet: 0x0167 +#if PACKETVER >= 20080618 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0167, 71) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0167, 2) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD +#endif + +// Packet: 0x0168 +#if PACKETVER >= 20080618 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0168, 9) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0168, 3) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0168, 6) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +#endif + +// Packet: 0x0169 +#if PACKETVER >= 20080618 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0169, 81) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0169, 4) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0169, 6) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#endif + +// Packet: 0x016a +#if PACKETVER >= 20080618 +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x016a, 6) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x016a, 2) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x016a, 4) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD +#endif + +// Packet: 0x016b +#if PACKETVER >= 20080618 +packetLen(0x016b, 10) // CZ_JOIN_GUILD +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x016b, 35) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x016b, 10) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x016b, 6) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x016b, 10) // CZ_JOIN_GUILD +#endif + +// Packet: 0x016c +#if PACKETVER >= 20080618 +packetLen(0x016c, 43) // ZC_UPDATE_GDID +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080311 +packetLen(0x016c, 43) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080304 +packetLen(0x016c, 10) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080226 +packetLen(0x016c, 8) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080219 +packetLen(0x016c, 6) // ZC_UPDATE_GDID +#elif PACKETVER >= 20080102 +packetLen(0x016c, 43) // ZC_UPDATE_GDID +#endif + +// Packet: 0x016d +#if PACKETVER >= 20080618 +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080610 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080311 +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080304 +packetLen(0x016d, 11) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080226 +packetLen(0x016d, 3) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080219 +packetLen(0x016d, 30) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20080102 +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT +#endif + +// Packet: 0x016e +#if PACKETVER >= 20080618 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x016e, 6) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080311 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080304 +packetLen(0x016e, 26) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080226 +packetLen(0x016e, 4) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080219 +packetLen(0x016e, 3) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20080102 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +#endif + +// Packet: 0x016f +#if PACKETVER >= 20080618 +packetLen(0x016f, 182) // ZC_GUILD_NOTICE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x016f, 9) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080311 +packetLen(0x016f, 182) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080304 +packetLen(0x016f, 17) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080226 +packetLen(0x016f, 6) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080219 +packetLen(0x016f, 4) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20080102 +packetLen(0x016f, 182) // ZC_GUILD_NOTICE +#endif + +// Packet: 0x0170 +#if PACKETVER >= 20080618 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080610 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0170, 30) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0170, 60) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#endif + +// Packet: 0x0171 +#if PACKETVER >= 20080618 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0171, 67) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0171, 10) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0171, 67) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0171, 6) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD +#endif + +// Packet: 0x0172 +#if PACKETVER >= 20080618 +packetLen(0x0172, 102) // CZ_ALLY_GUILD +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080311 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080304 +packetLen(0x0172, 30) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080226 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080219 +packetLen(0x0172, 22) // CZ_ALLY_GUILD +#elif PACKETVER >= 20080102 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +#endif + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +#if PACKETVER >= 20080618 +packetLen(0x0177, 4) // ZC_ITEMIDENTIFY_LIST +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0177, 282) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0177, 3) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0177, 2) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#endif + +// Packet: 0x0178 +#if PACKETVER >= 20080618 +packetLen(0x0178, 10) // CZ_REQ_ITEMIDENTIFY +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080311 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080304 +packetLen(0x0178, 7) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080226 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080219 +packetLen(0x0178, 30) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20080102 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +#endif + +// Packet: 0x0179 +#if PACKETVER >= 20080618 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080311 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080304 +packetLen(0x0179, 12) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080219 +packetLen(0x0179, 3) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20080102 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY +#endif + +// Packet: 0x017a +#if PACKETVER >= 20080618 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x017a, 6) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080311 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080304 +packetLen(0x017a, 10) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080219 +packetLen(0x017a, 30) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080102 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#endif + +// Packet: 0x017b +#if PACKETVER >= 20080311 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080304 +packetLen(0x017b, 3) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080226 +packetLen(0x017b, 9) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080219 +packetLen(0x017b, 18) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20080102 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#endif + +// Packet: 0x017c +#if PACKETVER >= 20080618 +packetLen(0x017c, 26) // CZ_REQ_ITEMCOMPOSITION +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080311 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080226 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20080102 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#endif + +// Packet: 0x017d +#if PACKETVER >= 20080618 +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x017d, 27) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080311 +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080304 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080219 +packetLen(0x017d, 8) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20080102 +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION +#endif + +// Packet: 0x017e +#if PACKETVER >= 20080618 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080610 +packetLen(0x017e, 90) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080304 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080226 +packetLen(0x017e, 7) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080219 +packetLen(0x017e, 28) // CZ_GUILD_CHAT +#elif PACKETVER >= 20080102 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#endif + +// Packet: 0x017f +#if PACKETVER >= 20080618 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080610 +packetLen(0x017f, 13) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080311 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080304 +packetLen(0x017f, 4) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080226 +packetLen(0x017f, 30) // ZC_GUILD_CHAT +#elif PACKETVER >= 20080102 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#endif + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +#if PACKETVER >= 20080618 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080610 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080311 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080304 +packetLen(0x0188, 26) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080226 +packetLen(0x0188, 30) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080219 +packetLen(0x0188, 27) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20080102 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING +#endif + +// Packet: 0x0189 +#if PACKETVER >= 20080618 +packetLen(0x0189, 55) // ZC_NOTIFY_MAPINFO +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080304 +packetLen(0x0189, 60) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080226 +packetLen(0x0189, 17) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080219 +packetLen(0x0189, 8) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20080102 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO +#endif + +// Packet: 0x018a +#if PACKETVER >= 20080618 +packetLen(0x018a, 18) // CZ_REQ_DISCONNECT +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x018a, 22) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080311 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080304 +packetLen(0x018a, 11) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080226 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080219 +packetLen(0x018a, 7) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20080102 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#endif + +// Packet: 0x018b +#if PACKETVER >= 20080618 +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080610 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080311 +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080304 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080226 +packetLen(0x018b, 10) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080219 +packetLen(0x018b, 6) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20080102 +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT +#endif + +// Packet: 0x018c +#if PACKETVER >= 20080618 +packetLen(0x018c, 31) // ZC_MONSTER_INFO +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080311 +packetLen(0x018c, 29) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080304 +packetLen(0x018c, 8) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080226 +packetLen(0x018c, 2) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080219 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20080102 +packetLen(0x018c, 29) // ZC_MONSTER_INFO +#endif + +// Packet: 0x018d +#if PACKETVER >= 20080311 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x018d, 32) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x018d, 22) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x018d, 4) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#endif + +// Packet: 0x018e +#if PACKETVER >= 20080618 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x018e, 6) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080311 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080304 +packetLen(0x018e, 7) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080226 +packetLen(0x018e, 4) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080219 +packetLen(0x018e, 39) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20080102 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#endif + +// Packet: 0x018f +#if PACKETVER >= 20080618 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080610 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080311 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080304 +packetLen(0x018f, 65) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080226 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20080102 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#endif + +// Packet: 0x0190 +packetLen(0x0190, 19) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +#if PACKETVER >= 20080618 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080610 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080311 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080304 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080226 +packetLen(0x0194, 4) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080219 +packetLen(0x0194, 14) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20080102 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID +#endif + +// Packet: 0x0195 +#if PACKETVER >= 20080618 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0195, 44) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080311 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080304 +packetLen(0x0195, 6) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080226 +packetLen(0x0195, 3) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080219 +packetLen(0x0195, 43) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20080102 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL +#endif + +// Packet: 0x0196 +#if PACKETVER >= 20080618 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x0196, 2) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x0196, 4) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE +#endif + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +#if PACKETVER >= 20080618 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080610 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080304 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080226 +packetLen(0x0199, 6) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080219 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20080102 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY +#endif + +// Packet: 0x019a +#if PACKETVER >= 20080618 +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x019a, 5) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080311 +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080304 +packetLen(0x019a, 8) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080226 +packetLen(0x019a, 42) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080219 +packetLen(0x019a, 10) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20080102 +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING +#endif + +// Packet: 0x019b +#if PACKETVER >= 20080618 +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080610 +packetLen(0x019b, 4) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080311 +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080304 +packetLen(0x019b, 39) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080226 +packetLen(0x019b, 65) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080219 +packetLen(0x019b, 2) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20080102 +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT +#endif + +// Packet: 0x019c +#if PACKETVER >= 20080618 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080610 +packetLen(0x019c, 5) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080311 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080304 +packetLen(0x019c, 9) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080226 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080219 +packetLen(0x019c, 2) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20080102 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#endif + +// Packet: 0x019d +#if PACKETVER >= 20080618 +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x019d, 32) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080311 +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080304 +packetLen(0x019d, 2) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080226 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080219 +packetLen(0x019d, 18) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20080102 +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE +#endif + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +#if PACKETVER >= 20080618 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x019f, 19) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080311 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080304 +packetLen(0x019f, 11) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080226 +packetLen(0x019f, 79) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080219 +packetLen(0x019f, 2) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080102 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#endif + +// Packet: 0x01a0 +#if PACKETVER >= 20080618 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080610 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080311 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080304 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080226 +packetLen(0x01a0, 8) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20080102 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER +#endif + +// Packet: 0x01a1 +#if PACKETVER >= 20080618 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01a1, 6) // CZ_COMMAND_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a1, 42) // CZ_COMMAND_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a1, 6) // CZ_COMMAND_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#endif + +// Packet: 0x01a2 +#if PACKETVER >= 20081126 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080618 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080610 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a2, 6) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a2, 7) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a2, 8) // ZC_PROPERTY_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a2, 35) // ZC_PROPERTY_PET +#endif + +// Packet: 0x01a3 +#if PACKETVER >= 20080618 +packetLen(0x01a3, 5) // ZC_FEED_PET +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01a3, 11) // ZC_FEED_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a3, 5) // ZC_FEED_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a3, 10) // ZC_FEED_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a3, 4) // ZC_FEED_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a3, 11) // ZC_FEED_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a3, 5) // ZC_FEED_PET +#endif + +// Packet: 0x01a4 +#if PACKETVER >= 20080618 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01a4, 10) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080311 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080304 +packetLen(0x01a4, 6) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080226 +packetLen(0x01a4, 10) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080219 +packetLen(0x01a4, 8) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20080102 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET +#endif + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +#if PACKETVER >= 20080618 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080610 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080311 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080304 +packetLen(0x01a6, 9) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080226 +packetLen(0x01a6, 10) // ZC_PETEGG_LIST +#elif PACKETVER >= 20080102 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#endif + +// Packet: 0x01a7 +#if PACKETVER >= 20080618 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080311 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080304 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080226 +packetLen(0x01a7, 2) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080219 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20080102 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#endif + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +#if PACKETVER >= 20080618 +packetLen(0x01aa, 10) // ZC_PET_ACT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20080311 +packetLen(0x01aa, 10) // ZC_PET_ACT +#elif PACKETVER >= 20080304 +packetLen(0x01aa, 18) // ZC_PET_ACT +#elif PACKETVER >= 20080219 +packetLen(0x01aa, 6) // ZC_PET_ACT +#elif PACKETVER >= 20080102 +packetLen(0x01aa, 10) // ZC_PET_ACT +#endif + +// Packet: 0x01ab +#if PACKETVER >= 20080618 +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080610 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080311 +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080304 +packetLen(0x01ab, 68) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080226 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080219 +packetLen(0x01ab, 3) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20080102 +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER +#endif + +// Packet: 0x01ac +#if PACKETVER >= 20080618 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01ac, 10) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080311 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080304 +packetLen(0x01ac, 90) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080226 +packetLen(0x01ac, 4) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080219 +packetLen(0x01ac, 26) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20080102 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#endif + +// Packet: 0x01ad +#if PACKETVER >= 20080618 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080610 +packetLen(0x01ad, 14) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080311 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080304 +packetLen(0x01ad, 2) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080226 +packetLen(0x01ad, 4) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080219 +packetLen(0x01ad, 54) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20080102 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#endif + +// Packet: 0x01ae +#if PACKETVER >= 20080618 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01ae, 6) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080311 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080304 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080226 +packetLen(0x01ae, 2) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20080102 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#endif + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +#if PACKETVER >= 20080618 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080610 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080311 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080304 +packetLen(0x01b0, 7) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080226 +packetLen(0x01b0, 6) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080219 +packetLen(0x01b0, 2) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20080102 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE +#endif + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +#if PACKETVER >= 20080618 +packetLen(0x01b2, 3) // CZ_REQ_OPENSTORE2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080304 +packetLen(0x01b2, 6) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080226 +packetLen(0x01b2, 282) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080219 +packetLen(0x01b2, 26) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20080102 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#endif + +// Packet: 0x01b3 +#if PACKETVER >= 20080618 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080610 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080311 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080304 +packetLen(0x01b3, 32) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080226 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080219 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20080102 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 +#endif + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +#if PACKETVER >= 20080618 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01b6, 3) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080311 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080304 +packetLen(0x01b6, 6) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080226 +packetLen(0x01b6, 18) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080219 +packetLen(0x01b6, 22) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20080102 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 +#endif + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +#if PACKETVER >= 20080618 +packetLen(0x01b9, 6) // ZC_DISPEL +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01b9, 14) // ZC_DISPEL +#elif PACKETVER >= 20080311 +packetLen(0x01b9, 6) // ZC_DISPEL +#elif PACKETVER >= 20080304 +packetLen(0x01b9, 26) // ZC_DISPEL +#elif PACKETVER >= 20080226 +packetLen(0x01b9, 60) // ZC_DISPEL +#elif PACKETVER >= 20080219 +packetLen(0x01b9, 2) // ZC_DISPEL +#elif PACKETVER >= 20080102 +packetLen(0x01b9, 6) // ZC_DISPEL +#endif + +// Packet: 0x01ba +#if PACKETVER >= 20080618 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080311 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +#elif PACKETVER >= 20080304 +packetLen(0x01ba, 3) // CZ_REMOVE_AID +#elif PACKETVER >= 20080226 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20080219 +packetLen(0x01ba, 14) // CZ_REMOVE_AID +#elif PACKETVER >= 20080102 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +#endif + +// Packet: 0x01bb +#if PACKETVER >= 20080618 +packetLen(0x01bb, 26) // CZ_SHIFT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01bb, 22) // CZ_SHIFT +#elif PACKETVER >= 20080311 +packetLen(0x01bb, 26) // CZ_SHIFT +#elif PACKETVER >= 20080304 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20080226 +packetLen(0x01bb, 6) // CZ_SHIFT +#elif PACKETVER >= 20080219 +packetLen(0x01bb, 3) // CZ_SHIFT +#elif PACKETVER >= 20080102 +packetLen(0x01bb, 26) // CZ_SHIFT +#endif + +// Packet: 0x01bc +#if PACKETVER >= 20080618 +packetLen(0x01bc, 26) // CZ_RECALL +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01bc, 4) // CZ_RECALL +#elif PACKETVER >= 20080311 +packetLen(0x01bc, 26) // CZ_RECALL +#elif PACKETVER >= 20080304 +packetLen(0x01bc, 3) // CZ_RECALL +#elif PACKETVER >= 20080226 +packetLen(0x01bc, 86) // CZ_RECALL +#elif PACKETVER >= 20080219 +packetLen(0x01bc, 9) // CZ_RECALL +#elif PACKETVER >= 20080102 +packetLen(0x01bc, 26) // CZ_RECALL +#endif + +// Packet: 0x01bd +#if PACKETVER >= 20080618 +packetLen(0x01bd, 44) // CZ_RECALL_GID +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080311 +packetLen(0x01bd, 26) // CZ_RECALL_GID +#elif PACKETVER >= 20080304 +packetLen(0x01bd, 3) // CZ_RECALL_GID +#elif PACKETVER >= 20080226 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20080219 +packetLen(0x01bd, 6) // CZ_RECALL_GID +#elif PACKETVER >= 20080102 +packetLen(0x01bd, 26) // CZ_RECALL_GID +#endif + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +#if PACKETVER >= 20080618 +packetLen(0x01c3, 6) // ZC_BROADCAST2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01c3, 3) // ZC_BROADCAST2 +#elif PACKETVER >= 20080311 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080304 +packetLen(0x01c3, 26) // ZC_BROADCAST2 +#elif PACKETVER >= 20080226 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20080219 +packetLen(0x01c3, 14) // ZC_BROADCAST2 +#elif PACKETVER >= 20080102 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#endif + +// Packet: 0x01c4 +#if PACKETVER >= 20080618 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080610 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080311 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080304 +packetLen(0x01c4, 2) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080219 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20080102 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#endif + +// Packet: 0x01c5 +#if PACKETVER >= 20080618 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080311 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080304 +packetLen(0x01c5, 6) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080226 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080219 +packetLen(0x01c5, 28) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20080102 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +#endif + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +#if PACKETVER >= 20080618 +packetLen(0x01c8, 65) // ZC_USE_ITEM_ACK2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080311 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080304 +packetLen(0x01c8, 2) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080226 +packetLen(0x01c8, 8) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080219 +packetLen(0x01c8, 6) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20080102 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 +#endif + +// Packet: 0x01c9 +#if PACKETVER >= 20080618 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01c9, 27) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01c9, 8) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01c9, 22) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01c9, 26) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 +#endif + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +#if PACKETVER >= 20080618 +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080610 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080311 +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080304 +packetLen(0x01cd, 3) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080226 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080219 +packetLen(0x01cd, 8) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20080102 +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST +#endif + +// Packet: 0x01ce +#if PACKETVER >= 20080618 +packetLen(0x01ce, 27) // CZ_SELECTAUTOSPELL +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01ce, 282) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080311 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080304 +packetLen(0x01ce, 3) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080226 +packetLen(0x01ce, 2) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080219 +packetLen(0x01ce, 28) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20080102 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#endif + +// Packet: 0x01cf +#if PACKETVER >= 20080618 +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01cf, 3) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080311 +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080304 +packetLen(0x01cf, 8) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080226 +packetLen(0x01cf, 102) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080219 +packetLen(0x01cf, 5) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20080102 +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST +#endif + +// Packet: 0x01d0 +#if PACKETVER >= 20080618 +packetLen(0x01d0, 53) // ZC_SPIRITS +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20080311 +packetLen(0x01d0, 8) // ZC_SPIRITS +#elif PACKETVER >= 20080304 +packetLen(0x01d0, 18) // ZC_SPIRITS +#elif PACKETVER >= 20080226 +packetLen(0x01d0, 26) // ZC_SPIRITS +#elif PACKETVER >= 20080219 +packetLen(0x01d0, 2) // ZC_SPIRITS +#elif PACKETVER >= 20080102 +packetLen(0x01d0, 8) // ZC_SPIRITS +#endif + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +#if PACKETVER >= 20080618 +packetLen(0x01d2, 10) // ZC_COMBODELAY +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080311 +packetLen(0x01d2, 10) // ZC_COMBODELAY +#elif PACKETVER >= 20080304 +packetLen(0x01d2, 4) // ZC_COMBODELAY +#elif PACKETVER >= 20080226 +packetLen(0x01d2, 8) // ZC_COMBODELAY +#elif PACKETVER >= 20080219 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20080102 +packetLen(0x01d2, 10) // ZC_COMBODELAY +#endif + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +#if PACKETVER >= 20080618 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01d4, 2) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080304 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080226 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20080102 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#endif + +// Packet: 0x01d5 +#if PACKETVER >= 20080304 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080226 +packetLen(0x01d5, 6) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080219 +packetLen(0x01d5, 16) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20080102 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#endif + +// Packet: 0x01d6 +#if PACKETVER >= 20080618 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080610 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080311 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080304 +packetLen(0x01d6, 2) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080226 +packetLen(0x01d6, 10) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080219 +packetLen(0x01d6, 6) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20080102 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 +#endif + +// Packet: 0x01d7 +#if PACKETVER >= 20080618 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01d7, 10) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080311 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080304 +packetLen(0x01d7, 15) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080226 +packetLen(0x01d7, 2) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080219 +packetLen(0x01d7, 35) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20080102 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +#endif + +// Packet: 0x01d8 +#if PACKETVER >= 20080618 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01d8, 7) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01d8, 15) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +#endif + +// Packet: 0x01d9 +#if PACKETVER >= 20080618 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01d9, 10) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01d9, 8) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01d9, 282) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +#endif + +// Packet: 0x01da +#if PACKETVER >= 20080618 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080311 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080304 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080226 +packetLen(0x01da, 6) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080219 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20080102 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#endif + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +#if PACKETVER >= 20080618 +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01de, 28) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080311 +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080304 +packetLen(0x01de, 8) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080226 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080219 +packetLen(0x01de, 3) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20080102 +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 +#endif + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +#if PACKETVER >= 20080618 +packetLen(0x01e1, 8) // ZC_SPIRITS2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01e1, 102) // ZC_SPIRITS2 +#elif PACKETVER >= 20080311 +packetLen(0x01e1, 8) // ZC_SPIRITS2 +#elif PACKETVER >= 20080304 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080226 +packetLen(0x01e1, 32) // ZC_SPIRITS2 +#elif PACKETVER >= 20080219 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20080102 +packetLen(0x01e1, 8) // ZC_SPIRITS2 +#endif + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +#if PACKETVER >= 20080618 +packetLen(0x01e7, 6) // CZ_DORIDORI +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20080311 +packetLen(0x01e7, 2) // CZ_DORIDORI +#elif PACKETVER >= 20080304 +packetLen(0x01e7, 6) // CZ_DORIDORI +#elif PACKETVER >= 20080102 +packetLen(0x01e7, 2) // CZ_DORIDORI +#endif + +// Packet: 0x01e8 +#if PACKETVER >= 20080618 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01e8, 39) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080311 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080304 +packetLen(0x01e8, 26) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080226 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080219 +packetLen(0x01e8, 6) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20080102 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#endif + +// Packet: 0x01e9 +#if PACKETVER >= 20080618 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080610 +packetLen(0x01e9, 6) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080311 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080304 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080226 +packetLen(0x01e9, 12) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080219 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20080102 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 +#endif + +// Packet: 0x01ea +#if PACKETVER >= 20080618 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20080610 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20080311 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20080304 +packetLen(0x01ea, 8) // ZC_CONGRATULATION +#elif PACKETVER >= 20080102 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#endif + +// Packet: 0x01eb +#if PACKETVER >= 20080618 +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01eb, 21) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080311 +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080304 +packetLen(0x01eb, 7) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080226 +packetLen(0x01eb, 11) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080219 +packetLen(0x01eb, 26) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20080102 +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM +#endif + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +#if PACKETVER >= 20080618 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01ed, 53) // CZ_CHOPOKGI +#elif PACKETVER >= 20080311 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#elif PACKETVER >= 20080304 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20080226 +packetLen(0x01ed, 10) // CZ_CHOPOKGI +#elif PACKETVER >= 20080219 +packetLen(0x01ed, 22) // CZ_CHOPOKGI +#elif PACKETVER >= 20080102 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#endif + +// Packet: 0x01ee +#if PACKETVER >= 20080618 +packetLen(0x01ee, 23) // ZC_NORMAL_ITEMLIST2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x01ee, 57) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x01ee, 11) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x01ee, 8) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01ef +#if PACKETVER >= 20080618 +packetLen(0x01ef, 10) // ZC_CART_NORMAL_ITEMLIST2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01ef, 66) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x01ef, 6) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x01ef, 35) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x01ef, 6) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f0 +#if PACKETVER >= 20080618 +packetLen(0x01f0, 16) // ZC_STORE_NORMAL_ITEMLIST2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x01f0, 10) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +#if PACKETVER >= 20080618 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080610 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080311 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080304 +packetLen(0x01f2, 28) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080226 +packetLen(0x01f2, 27) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080219 +packetLen(0x01f2, 31) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20080102 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#endif + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +#if PACKETVER >= 20080618 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01f4, 24) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080311 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080304 +packetLen(0x01f4, 3) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080226 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080219 +packetLen(0x01f4, 6) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080102 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f5 +#if PACKETVER >= 20080618 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080311 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080304 +packetLen(0x01f5, 2) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080226 +packetLen(0x01f5, 10) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080219 +packetLen(0x01f5, 114) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20080102 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 +#endif + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +#if PACKETVER >= 20080618 +packetLen(0x01fc, 186) // ZC_REPAIRITEMLIST +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080304 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x01fc, 4) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x01fc, 282) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#endif + +// Packet: 0x01fd +#if PACKETVER >= 20080618 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080610 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080311 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080304 +packetLen(0x01fd, 2) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080226 +packetLen(0x01fd, 8) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080219 +packetLen(0x01fd, 26) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20080102 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +#if PACKETVER >= 20080618 +packetLen(0x01fe, 11) // ZC_ACK_ITEMREPAIR +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x01fe, 6) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080311 +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080304 +packetLen(0x01fe, 114) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080226 +packetLen(0x01fe, 2) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080219 +packetLen(0x01fe, 13) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20080102 +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR +#endif + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +#if PACKETVER >= 20080311 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0201, 6) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0201, 7) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#endif + +// Packet: 0x0202 +#if PACKETVER >= 20080618 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0202, 44) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +#if PACKETVER >= 20080618 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0203, 7) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0203, 4) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#endif + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +#if PACKETVER >= 20080618 +packetLen(0x0206, 30) // ZC_FRIENDS_STATE +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080311 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080304 +packetLen(0x0206, 6) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080226 +packetLen(0x0206, 8) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080219 +packetLen(0x0206, 7) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20080102 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#endif + +// Packet: 0x0207 +#if PACKETVER >= 20080618 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0207, 26) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0207, 66) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0208 +#if PACKETVER >= 20080618 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x0208, 71) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0209 +#if PACKETVER >= 20080618 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0209, 30) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0209, 22) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0209, 30) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST +#endif + +// Packet: 0x020a +#if PACKETVER >= 20080618 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080610 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080311 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080304 +packetLen(0x020a, 7) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080226 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080219 +packetLen(0x020a, 20) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20080102 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +#endif + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +#if PACKETVER >= 20080618 +packetLen(0x020e, 32) // ZC_STARSKILL +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x020e, 7) // ZC_STARSKILL +#elif PACKETVER >= 20080311 +packetLen(0x020e, 32) // ZC_STARSKILL +#elif PACKETVER >= 20080304 +packetLen(0x020e, 4) // ZC_STARSKILL +#elif PACKETVER >= 20080226 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20080219 +packetLen(0x020e, 8) // ZC_STARSKILL +#elif PACKETVER >= 20080102 +packetLen(0x020e, 32) // ZC_STARSKILL +#endif + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +#if PACKETVER >= 20080618 +packetLen(0x0217, 4) // CZ_BLACKSMITH_RANK +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0217, 39) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0217, 9) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0217, 5) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#endif + +// Packet: 0x0218 +#if PACKETVER >= 20080618 +packetLen(0x0218, 68) // CZ_ALCHEMIST_RANK +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0218, 16) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0218, 15) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0218, 8) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0218, 26) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#endif + +// Packet: 0x0219 +#if PACKETVER >= 20080618 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0219, 17) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +#endif + +// Packet: 0x021a +#if PACKETVER >= 20080618 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080311 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080304 +packetLen(0x021a, 6) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080226 +packetLen(0x021a, 30) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080219 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20080102 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +#endif + +// Packet: 0x021b +#if PACKETVER >= 20080618 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080610 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080311 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080304 +packetLen(0x021b, 30) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080226 +packetLen(0x021b, 6) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080219 +packetLen(0x021b, 15) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20080102 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#endif + +// Packet: 0x021c +#if PACKETVER >= 20080618 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x021c, 26) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080311 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080304 +packetLen(0x021c, 5) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080226 +packetLen(0x021c, 4) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080219 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20080102 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#endif + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +#if PACKETVER >= 20080618 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080311 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080304 +packetLen(0x0224, 22) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080226 +packetLen(0x0224, 2) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080219 +packetLen(0x0224, 12) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20080102 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#endif + +// Packet: 0x0225 +#if PACKETVER >= 20080618 +packetLen(0x0225, 7) // CZ_TAEKWON_RANK +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0225, 3) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0225, 6) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#endif + +// Packet: 0x0226 +#if PACKETVER >= 20080618 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0226, 28) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0226, 31) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0226, 3) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0226, 42) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +#endif + +// Packet: 0x0227 +#if PACKETVER >= 20080618 +packetLen(0x0227, 18) // ZC_GAME_GUARD +#elif PACKETVER >= 20080610 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080311 +packetLen(0x0227, 18) // ZC_GAME_GUARD +#elif PACKETVER >= 20080304 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20080226 +packetLen(0x0227, 31) // ZC_GAME_GUARD +#elif PACKETVER >= 20080219 +packetLen(0x0227, 4) // ZC_GAME_GUARD +#elif PACKETVER >= 20080102 +packetLen(0x0227, 18) // ZC_GAME_GUARD +#endif + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +#if PACKETVER >= 20080618 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0229, 2) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080311 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080304 +packetLen(0x0229, 10) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080226 +packetLen(0x0229, 182) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080219 +packetLen(0x0229, 6) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20080102 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +#endif + +// Packet: 0x022a +#if PACKETVER >= 20080618 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080311 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080304 +packetLen(0x022a, 14) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080226 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080219 +packetLen(0x022a, 2) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20080102 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#endif + +// Packet: 0x022b +#if PACKETVER >= 20080618 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080610 +packetLen(0x022b, 6) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080311 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080219 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20080102 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20080618 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080610 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080311 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080304 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080226 +packetLen(0x022c, 31) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080219 +packetLen(0x022c, 53) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20080102 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +#if PACKETVER >= 20080618 +packetLen(0x022d, 5) // CZ_COMMAND_MER +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x022d, 26) // CZ_COMMAND_MER +#elif PACKETVER >= 20080311 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20080304 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20080226 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20080219 +packetLen(0x022d, 9) // CZ_COMMAND_MER +#elif PACKETVER >= 20080102 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +#if PACKETVER >= 20080618 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x022e, 6) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080311 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080304 +packetLen(0x022e, 22) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080226 +packetLen(0x022e, 9) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080219 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20080102 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#endif + +// Packet: 0x022f +#if PACKETVER >= 20080618 +packetLen(0x022f, 5) // ZC_FEED_MER +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x022f, 10) // ZC_FEED_MER +#elif PACKETVER >= 20080311 +packetLen(0x022f, 5) // ZC_FEED_MER +#elif PACKETVER >= 20080304 +packetLen(0x022f, 4) // ZC_FEED_MER +#elif PACKETVER >= 20080226 +packetLen(0x022f, 26) // ZC_FEED_MER +#elif PACKETVER >= 20080219 +packetLen(0x022f, 282) // ZC_FEED_MER +#elif PACKETVER >= 20080102 +packetLen(0x022f, 5) // ZC_FEED_MER +#endif + +// Packet: 0x0230 +#if PACKETVER >= 20080618 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0230, 10) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080311 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080304 +packetLen(0x0230, 282) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080226 +packetLen(0x0230, 28) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080219 +packetLen(0x0230, 54) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20080102 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +#endif + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +#if PACKETVER >= 20080618 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080311 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080304 +packetLen(0x0232, 3) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080226 +packetLen(0x0232, 2) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080219 +packetLen(0x0232, 36) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20080102 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#endif + +// Packet: 0x0233 +#if PACKETVER >= 20080618 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080311 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080304 +packetLen(0x0233, 2) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080226 +packetLen(0x0233, 4) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080219 +packetLen(0x0233, 8) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20080102 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#endif + +// Packet: 0x0234 +#if PACKETVER >= 20080618 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080610 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080304 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080226 +packetLen(0x0234, 15) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080219 +packetLen(0x0234, 282) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20080102 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#endif + +// Packet: 0x0235 +#if PACKETVER >= 20080618 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080610 +packetLen(0x0235, 7) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080311 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080304 +packetLen(0x0235, 6) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080226 +packetLen(0x0235, 33) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080219 +packetLen(0x0235, 15) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20080102 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#endif + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +#if PACKETVER >= 20080618 +packetLen(0x0237, 5) // CZ_KILLER_RANK +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0237, 23) // CZ_KILLER_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0237, 10) // CZ_KILLER_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0237, 3) // CZ_KILLER_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#endif + +// Packet: 0x0238 +#if PACKETVER >= 20080618 +packetLen(0x0238, 282) // ZC_KILLER_RANK +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080311 +packetLen(0x0238, 282) // ZC_KILLER_RANK +#elif PACKETVER >= 20080304 +packetLen(0x0238, 20) // ZC_KILLER_RANK +#elif PACKETVER >= 20080226 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20080219 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20080102 +packetLen(0x0238, 282) // ZC_KILLER_RANK +#endif + +// Packet: 0x0239 +#if PACKETVER >= 20080618 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0239, 14) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080311 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080304 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080226 +packetLen(0x0239, 39) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080219 +packetLen(0x0239, 8) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20080102 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +#endif + +// Packet: 0x023a +#if PACKETVER >= 20080618 +packetLen(0x023a, 10) // ZC_REQ_STORE_PASSWORD +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080311 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080304 +packetLen(0x023a, 8) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080226 +packetLen(0x023a, 6) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080219 +packetLen(0x023a, 11) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20080102 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#endif + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +#if PACKETVER >= 20080618 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080610 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080311 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080304 +packetLen(0x023c, 30) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080226 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080219 +packetLen(0x023c, 5) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20080102 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#endif + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +#if PACKETVER >= 20080618 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0274, 4) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080311 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080304 +packetLen(0x0274, 2) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080226 +packetLen(0x0274, 24) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080219 +packetLen(0x0274, 32) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20080102 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#endif + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +#if PACKETVER >= 20080722 +packetLen(0x027c, 60) // CA_LOGIN4 +#elif PACKETVER >= 20080715 +packetLen(0x027c, 96) // CA_LOGIN4 +#elif PACKETVER >= 20080102 +packetLen(0x027c, 60) // CA_LOGIN4 +#endif + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +#if PACKETVER >= 20080311 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080304 +packetLen(0x0287, 4) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080226 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080219 +packetLen(0x0287, 11) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20080102 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#endif + +// Packet: 0x0288 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +#if PACKETVER >= 20080618 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080610 +packetLen(0x0295, 2) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x0295, 30) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x0295, 3) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x0295, 6) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0296 +#if PACKETVER >= 20080618 +packetLen(0x0296, 19) // ZC_STORE_EQUIPMENT_ITEMLIST2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080311 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x0296, 58) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x0296, 6) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080219 +packetLen(0x0296, 5) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0297 +#if PACKETVER >= 20080618 +packetLen(0x0297, 6) // ZC_CART_EQUIPMENT_ITEMLIST2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0297, 4) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080311 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080304 +packetLen(0x0297, 97) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080226 +packetLen(0x0297, 5) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20080102 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +#if PACKETVER >= 20080618 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080610 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080311 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080304 +packetLen(0x029a, 30) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080226 +packetLen(0x029a, 3) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080219 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20080102 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#endif + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +#if PACKETVER >= 20080122 +// removed +#elif PACKETVER >= 20080108 +packetLen(0x02a6, 204) // ZC_HACKSH_CPX_MSG +#elif PACKETVER >= 20080102 +packetLen(0x02a6, 22) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20080122 +// removed +#elif PACKETVER >= 20080108 +packetLen(0x02a7, 204) // CZ_HACKSH_CPX_MSG +#elif PACKETVER >= 20080102 +packetLen(0x02a7, 22) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a8 +#if PACKETVER >= 20080108 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02a8, 162) // ZC_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02a9 +#if PACKETVER >= 20080108 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02a9, 58) // CZ_HACKSHIELD_CRC_MSG +#endif + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02bf +#if PACKETVER >= 20080318 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02bf, 10) // ZC_SRPACKETR2_INIT +#endif + +// Packet: 0x02c0 +#if PACKETVER >= 20080318 +// removed +#elif PACKETVER >= 20080102 +packetLen(0x02c0, 2) // CZ_SRPACKETR2_START +#endif + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +#if PACKETVER >= 20080304 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080226 +packetLen(0x02d4, 30) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20080102 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#endif + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +#if PACKETVER >= 20080618 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x02e1, 32) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20080102 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 +#endif + +// Packet: 0x02e2 +packetLen(0x02e2, 14) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 25) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 8) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 8) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +#if PACKETVER >= 20080618 +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x02ec, 2) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20080102 +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 +#endif + +// Packet: 0x02ed +#if PACKETVER >= 20080618 +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080610 +packetLen(0x02ed, 60) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20080102 +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 +#endif + +// Packet: 0x02ee +#if PACKETVER >= 20080618 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +// ignored packet from 2008-06-18aSakexe +#elif PACKETVER >= 20080610 +packetLen(0x02ee, 3) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20080102 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#endif + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +#if PACKETVER >= 20080318 +packetLen(0x02f0, 10) // ZC_PROGRESS +#endif + +// Packet: 0x02f1 +#if PACKETVER >= 20080318 +packetLen(0x02f1, 2) // CZ_PROGRESS +#endif + +// Packet: 0x02f2 +#if PACKETVER >= 20080318 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL +#endif + +// Packet: 0x02f3 +#if PACKETVER >= 20080325 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#endif + +// Packet: 0x02f4 +#if PACKETVER >= 20080618 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080610 +packetLen(0x02f4, 282) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20080325 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#endif + +// Packet: 0x02f5 +#if PACKETVER >= 20080618 +packetLen(0x02f5, 26) // ZC_IRMAIL_NOTIFY +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080325 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#endif + +// Packet: 0x02f6 +#if PACKETVER >= 20080618 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080610 +packetLen(0x02f6, 3) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20080325 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#endif + +// Packet: 0x02f7 +#if PACKETVER >= 20080618 +packetLen(0x02f7, 26) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080325 +packetLen(0x02f7, -1) +#endif + +// Packet: 0x02f8 +#if PACKETVER >= 20080618 +packetLen(0x02f8, 3) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080325 +packetLen(0x02f8, -1) +#endif + +// Packet: 0x02f9 +#if PACKETVER >= 20080618 +packetLen(0x02f9, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080325 +packetLen(0x02f9, -1) +#endif + +// Packet: 0x02fa +#if PACKETVER >= 20080325 +packetLen(0x02fa, -1) +#endif + +// Packet: 0x02fb +#if PACKETVER >= 20080618 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02fb, 2) +#elif PACKETVER >= 20080325 +packetLen(0x02fb, -1) +#endif + +// Packet: 0x02fc +#if PACKETVER >= 20080618 +packetLen(0x02fc, 5) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x02fc, 4) +#elif PACKETVER >= 20080325 +packetLen(0x02fc, -1) +#endif + +// Packet: 0x02fd +#if PACKETVER >= 20080325 +packetLen(0x02fd, -1) +#endif + +// Packet: 0x02fe +#if PACKETVER >= 20080325 +packetLen(0x02fe, -1) +#endif + +// Packet: 0x02ff +#if PACKETVER >= 20080618 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20080610 +packetLen(0x02ff, 30) +#elif PACKETVER >= 20080325 +packetLen(0x02ff, -1) +#endif + +// Packet: 0x0300 +#if PACKETVER >= 20080618 +packetLen(0x0300, 16) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080325 +packetLen(0x0300, -1) +#endif + +// Packet: 0x0301 +#if PACKETVER >= 20080401 +packetLen(0x0301, -1) +#endif + +// Packet: 0x0302 +#if PACKETVER >= 20080618 +packetLen(0x0302, 3) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0302, 30) +#elif PACKETVER >= 20080401 +packetLen(0x0302, -1) +#endif + +// Packet: 0x0303 +#if PACKETVER >= 20080618 +packetLen(0x0303, 30) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0303, 8) +#elif PACKETVER >= 20080401 +packetLen(0x0303, -1) +#endif + +// Packet: 0x0304 +#if PACKETVER >= 20080618 +packetLen(0x0304, 20) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x0304, -1) +#endif + +// Packet: 0x0305 +#if PACKETVER >= 20080618 +packetLen(0x0305, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x0305, -1) +#endif + +// Packet: 0x0306 +#if PACKETVER >= 20080618 +packetLen(0x0306, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0306, 8) +#elif PACKETVER >= 20080401 +packetLen(0x0306, -1) +#endif + +// Packet: 0x0307 +#if PACKETVER >= 20080618 +packetLen(0x0307, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0307, 30) +#elif PACKETVER >= 20080401 +packetLen(0x0307, -1) +#endif + +// Packet: 0x0308 +#if PACKETVER >= 20080618 +packetLen(0x0308, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0308, 17) +#elif PACKETVER >= 20080401 +packetLen(0x0308, -1) +#endif + +// Packet: 0x0309 +#if PACKETVER >= 20080401 +packetLen(0x0309, -1) +#endif + +// Packet: 0x030a +#if PACKETVER >= 20080618 +packetLen(0x030a, 35) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x030a, -1) +#endif + +// Packet: 0x030b +#if PACKETVER >= 20080618 +packetLen(0x030b, -1) +#elif PACKETVER >= 20080610 +packetLen(0x030b, 7) +#elif PACKETVER >= 20080401 +packetLen(0x030b, -1) +#endif + +// Packet: 0x030c +#if PACKETVER >= 20080618 +packetLen(0x030c, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x030c, 7) +#elif PACKETVER >= 20080401 +packetLen(0x030c, -1) +#endif + +// Packet: 0x030d +#if PACKETVER >= 20080618 +packetLen(0x030d, 282) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x030d, -1) +#endif + +// Packet: 0x030e +#if PACKETVER >= 20080401 +packetLen(0x030e, -1) +#endif + +// Packet: 0x030f +#if PACKETVER >= 20080618 +packetLen(0x030f, 10) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x030f, -1) +#endif + +// Packet: 0x0310 +#if PACKETVER >= 20080618 +packetLen(0x0310, 16) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0310, 6) +#elif PACKETVER >= 20080401 +packetLen(0x0310, -1) +#endif + +// Packet: 0x0311 +#if PACKETVER >= 20080618 +packetLen(0x0311, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0311, 17) +#elif PACKETVER >= 20080401 +packetLen(0x0311, -1) +#endif + +// Packet: 0x0312 +#if PACKETVER >= 20080618 +packetLen(0x0312, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0312, 11) +#elif PACKETVER >= 20080401 +packetLen(0x0312, -1) +#endif + +// Packet: 0x0313 +#if PACKETVER >= 20080618 +packetLen(0x0313, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0313, 16) +#elif PACKETVER >= 20080401 +packetLen(0x0313, -1) +#endif + +// Packet: 0x0314 +#if PACKETVER >= 20080618 +packetLen(0x0314, 3) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0314, 29) +#elif PACKETVER >= 20080401 +packetLen(0x0314, -1) +#endif + +// Packet: 0x0315 +#if PACKETVER >= 20080618 +packetLen(0x0315, 8) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0315, 9) +#elif PACKETVER >= 20080401 +packetLen(0x0315, -1) +#endif + +// Packet: 0x0316 +#if PACKETVER >= 20080401 +packetLen(0x0316, -1) +#endif + +// Packet: 0x0317 +#if PACKETVER >= 20080618 +packetLen(0x0317, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0317, 8) +#elif PACKETVER >= 20080401 +packetLen(0x0317, -1) +#endif + +// Packet: 0x0318 +#if PACKETVER >= 20080618 +packetLen(0x0318, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0318, 54) +#elif PACKETVER >= 20080401 +packetLen(0x0318, -1) +#endif + +// Packet: 0x0319 +#if PACKETVER >= 20080401 +packetLen(0x0319, -1) +#endif + +// Packet: 0x031a +#if PACKETVER >= 20080618 +packetLen(0x031a, 5) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x031a, -1) +#endif + +// Packet: 0x031b +#if PACKETVER >= 20080618 +packetLen(0x031b, -1) +#elif PACKETVER >= 20080610 +packetLen(0x031b, 23) +#elif PACKETVER >= 20080401 +packetLen(0x031b, -1) +#endif + +// Packet: 0x031c +#if PACKETVER >= 20080618 +packetLen(0x031c, 54) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x031c, 29) +#elif PACKETVER >= 20080401 +packetLen(0x031c, -1) +#endif + +// Packet: 0x031d +#if PACKETVER >= 20080401 +packetLen(0x031d, -1) +#endif + +// Packet: 0x031e +#if PACKETVER >= 20080401 +packetLen(0x031e, -1) +#endif + +// Packet: 0x031f +#if PACKETVER >= 20080401 +packetLen(0x031f, -1) +#endif + +// Packet: 0x0320 +#if PACKETVER >= 20080618 +packetLen(0x0320, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0320, 6) +#elif PACKETVER >= 20080401 +packetLen(0x0320, -1) +#endif + +// Packet: 0x0321 +#if PACKETVER >= 20080618 +packetLen(0x0321, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0321, 5) +#elif PACKETVER >= 20080401 +packetLen(0x0321, -1) +#endif + +// Packet: 0x0322 +#if PACKETVER >= 20080618 +packetLen(0x0322, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0322, 3) +#elif PACKETVER >= 20080401 +packetLen(0x0322, -1) +#endif + +// Packet: 0x0323 +#if PACKETVER >= 20080618 +packetLen(0x0323, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0323, 10) +#elif PACKETVER >= 20080401 +packetLen(0x0323, -1) +#endif + +// Packet: 0x0324 +#if PACKETVER >= 20080618 +packetLen(0x0324, 66) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0324, 10) +#elif PACKETVER >= 20080401 +packetLen(0x0324, -1) +#endif + +// Packet: 0x0325 +#if PACKETVER >= 20080618 +packetLen(0x0325, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0325, 10) +#elif PACKETVER >= 20080401 +packetLen(0x0325, -1) +#endif + +// Packet: 0x0326 +#if PACKETVER >= 20080401 +packetLen(0x0326, -1) +#endif + +// Packet: 0x0327 +#if PACKETVER >= 20080618 +packetLen(0x0327, 3) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0327, 22) +#elif PACKETVER >= 20080401 +packetLen(0x0327, -1) +#endif + +// Packet: 0x0328 +#if PACKETVER >= 20080618 +packetLen(0x0328, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0328, 2) +#elif PACKETVER >= 20080401 +packetLen(0x0328, -1) +#endif + +// Packet: 0x0329 +#if PACKETVER >= 20080401 +packetLen(0x0329, -1) +#endif + +// Packet: 0x032a +#if PACKETVER >= 20080618 +packetLen(0x032a, 9) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x032a, 3) +#elif PACKETVER >= 20080401 +packetLen(0x032a, -1) +#endif + +// Packet: 0x032b +#if PACKETVER >= 20080618 +packetLen(0x032b, -1) +#elif PACKETVER >= 20080610 +packetLen(0x032b, 10) +#elif PACKETVER >= 20080401 +packetLen(0x032b, -1) +#endif + +// Packet: 0x032c +#if PACKETVER >= 20080618 +packetLen(0x032c, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x032c, -1) +#endif + +// Packet: 0x032d +#if PACKETVER >= 20080618 +packetLen(0x032d, -1) +#elif PACKETVER >= 20080610 +packetLen(0x032d, 10) +#elif PACKETVER >= 20080401 +packetLen(0x032d, -1) +#endif + +// Packet: 0x032e +#if PACKETVER >= 20080618 +packetLen(0x032e, 10) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x032e, 3) +#elif PACKETVER >= 20080401 +packetLen(0x032e, -1) +#endif + +// Packet: 0x032f +#if PACKETVER >= 20080618 +packetLen(0x032f, -1) +#elif PACKETVER >= 20080610 +packetLen(0x032f, 3) +#elif PACKETVER >= 20080401 +packetLen(0x032f, -1) +#endif + +// Packet: 0x0330 +#if PACKETVER >= 20080618 +packetLen(0x0330, 8) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x0330, -1) +#endif + +// Packet: 0x0331 +#if PACKETVER >= 20080401 +packetLen(0x0331, -1) +#endif + +// Packet: 0x0332 +#if PACKETVER >= 20080618 +packetLen(0x0332, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0332, 6) +#elif PACKETVER >= 20080401 +packetLen(0x0332, -1) +#endif + +// Packet: 0x0333 +#if PACKETVER >= 20080401 +packetLen(0x0333, -1) +#endif + +// Packet: 0x0334 +#if PACKETVER >= 20080618 +packetLen(0x0334, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0334, 3) +#elif PACKETVER >= 20080401 +packetLen(0x0334, -1) +#endif + +// Packet: 0x0335 +#if PACKETVER >= 20080618 +packetLen(0x0335, 22) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x0335, -1) +#endif + +// Packet: 0x0336 +#if PACKETVER >= 20080618 +packetLen(0x0336, 30) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0336, 10) +#elif PACKETVER >= 20080401 +packetLen(0x0336, -1) +#endif + +// Packet: 0x0337 +#if PACKETVER >= 20080618 +packetLen(0x0337, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x0337, -1) +#endif + +// Packet: 0x0338 +#if PACKETVER >= 20080618 +packetLen(0x0338, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0338, 5) +#elif PACKETVER >= 20080401 +packetLen(0x0338, -1) +#endif + +// Packet: 0x0339 +#if PACKETVER >= 20080401 +packetLen(0x0339, -1) +#endif + +// Packet: 0x033a +#if PACKETVER >= 20080401 +packetLen(0x033a, -1) +#endif + +// Packet: 0x033b +#if PACKETVER >= 20080618 +packetLen(0x033b, -1) +#elif PACKETVER >= 20080610 +packetLen(0x033b, 6) +#elif PACKETVER >= 20080401 +packetLen(0x033b, -1) +#endif + +// Packet: 0x033c +#if PACKETVER >= 20080618 +packetLen(0x033c, -1) +#elif PACKETVER >= 20080610 +packetLen(0x033c, 30) +#elif PACKETVER >= 20080401 +packetLen(0x033c, -1) +#endif + +// Packet: 0x033d +#if PACKETVER >= 20080618 +packetLen(0x033d, 28) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x033d, -1) +#endif + +// Packet: 0x033e +#if PACKETVER >= 20080401 +packetLen(0x033e, -1) +#endif + +// Packet: 0x033f +#if PACKETVER >= 20080618 +packetLen(0x033f, 3) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x033f, 2) +#elif PACKETVER >= 20080401 +packetLen(0x033f, -1) +#endif + +// Packet: 0x0340 +#if PACKETVER >= 20080618 +packetLen(0x0340, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0340, 29) +#elif PACKETVER >= 20080401 +packetLen(0x0340, -1) +#endif + +// Packet: 0x0341 +#if PACKETVER >= 20080618 +packetLen(0x0341, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0341, 186) +#elif PACKETVER >= 20080401 +packetLen(0x0341, -1) +#endif + +// Packet: 0x0342 +#if PACKETVER >= 20080401 +packetLen(0x0342, -1) +#endif + +// Packet: 0x0343 +#if PACKETVER >= 20080401 +packetLen(0x0343, -1) +#endif + +// Packet: 0x0344 +#if PACKETVER >= 20080401 +packetLen(0x0344, -1) +#endif + +// Packet: 0x0345 +#if PACKETVER >= 20080401 +packetLen(0x0345, -1) +#endif + +// Packet: 0x0346 +#if PACKETVER >= 20080618 +packetLen(0x0346, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0346, 23) +#elif PACKETVER >= 20080401 +packetLen(0x0346, -1) +#endif + +// Packet: 0x0347 +#if PACKETVER >= 20080618 +packetLen(0x0347, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0347, 4) +#elif PACKETVER >= 20080401 +packetLen(0x0347, -1) +#endif + +// Packet: 0x0348 +#if PACKETVER >= 20080618 +packetLen(0x0348, 3) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x0348, -1) +#endif + +// Packet: 0x0349 +#if PACKETVER >= 20080618 +packetLen(0x0349, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0349, 6) +#elif PACKETVER >= 20080401 +packetLen(0x0349, -1) +#endif + +// Packet: 0x034a +#if PACKETVER >= 20080618 +packetLen(0x034a, 10) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x034a, 4) +#elif PACKETVER >= 20080401 +packetLen(0x034a, -1) +#endif + +// Packet: 0x034b +#if PACKETVER >= 20080618 +packetLen(0x034b, 26) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x034b, 36) +#elif PACKETVER >= 20080401 +packetLen(0x034b, -1) +#endif + +// Packet: 0x034c +#if PACKETVER >= 20080618 +packetLen(0x034c, -1) +#elif PACKETVER >= 20080610 +packetLen(0x034c, 5) +#elif PACKETVER >= 20080401 +packetLen(0x034c, -1) +#endif + +// Packet: 0x034d +#if PACKETVER >= 20080618 +packetLen(0x034d, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x034d, 4) +#elif PACKETVER >= 20080401 +packetLen(0x034d, -1) +#endif + +// Packet: 0x034e +#if PACKETVER >= 20080618 +packetLen(0x034e, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x034e, -1) +#endif + +// Packet: 0x034f +#if PACKETVER >= 20080401 +packetLen(0x034f, -1) +#endif + +// Packet: 0x0350 +#if PACKETVER >= 20080618 +packetLen(0x0350, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0350, 10) +#elif PACKETVER >= 20080401 +packetLen(0x0350, -1) +#endif + +// Packet: 0x0351 +#if PACKETVER >= 20080618 +packetLen(0x0351, 30) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x0351, -1) +#endif + +// Packet: 0x0352 +#if PACKETVER >= 20080618 +packetLen(0x0352, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0352, 4) +#elif PACKETVER >= 20080401 +packetLen(0x0352, -1) +#endif + +// Packet: 0x0353 +#if PACKETVER >= 20080401 +packetLen(0x0353, -1) +#endif + +// Packet: 0x0354 +#if PACKETVER >= 20080618 +packetLen(0x0354, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0354, 68) +#elif PACKETVER >= 20080401 +packetLen(0x0354, -1) +#endif + +// Packet: 0x0355 +#if PACKETVER >= 20080618 +packetLen(0x0355, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0355, 26) +#elif PACKETVER >= 20080401 +packetLen(0x0355, -1) +#endif + +// Packet: 0x0356 +#if PACKETVER >= 20080618 +packetLen(0x0356, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0356, 20) +#elif PACKETVER >= 20080401 +packetLen(0x0356, -1) +#endif + +// Packet: 0x0357 +#if PACKETVER >= 20080401 +packetLen(0x0357, -1) +#endif + +// Packet: 0x0358 +#if PACKETVER >= 20080618 +packetLen(0x0358, 14) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0358, 7) +#elif PACKETVER >= 20080401 +packetLen(0x0358, -1) +#endif + +// Packet: 0x0359 +#if PACKETVER >= 20080618 +packetLen(0x0359, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0359, 43) +#elif PACKETVER >= 20080401 +packetLen(0x0359, -1) +#endif + +// Packet: 0x035a +#if PACKETVER >= 20080618 +packetLen(0x035a, 28) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x035a, -1) +#endif + +// Packet: 0x035b +#if PACKETVER >= 20080618 +packetLen(0x035b, 29) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080401 +packetLen(0x035b, -1) +#endif + +// Packet: 0x035c +#if PACKETVER >= 20080527 +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST +#endif + +// Packet: 0x035d +#if PACKETVER >= 20080527 +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST +#endif + +// Packet: 0x035e +#if PACKETVER >= 20080527 +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW +#endif + +// Packet: 0x035f +#if PACKETVER >= 20080618 +packetLen(0x035f, 4) // CZ_REQUEST_MOVE2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x035f, 7) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20080527 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20080618 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080610 +packetLen(0x0360, 57) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20080527 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20080618 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0361, 65) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20080527 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20080527 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20080618 +packetLen(0x0363, 58) // CZ_ITEM_THROW2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20080618 +packetLen(0x0364, 15) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20080527 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20080618 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080610 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20080527 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20080527 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20080618 +packetLen(0x0367, 29) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20080618 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20080610 +packetLen(0x0368, 7) // CZ_REQNAME2 +#elif PACKETVER >= 20080527 +packetLen(0x0368, -1) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20080618 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080610 +packetLen(0x0369, 14) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20080527 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x036a +#if PACKETVER >= 20080527 +packetLen(0x036a, -1) +#endif + +// Packet: 0x036b +#if PACKETVER >= 20080618 +packetLen(0x036b, 28) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x036b, -1) +#endif + +// Packet: 0x036c +#if PACKETVER >= 20080618 +packetLen(0x036c, -1) +#elif PACKETVER >= 20080610 +packetLen(0x036c, 4) +#elif PACKETVER >= 20080527 +packetLen(0x036c, -1) +#endif + +// Packet: 0x036d +#if PACKETVER >= 20080618 +packetLen(0x036d, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x036d, 2) +#elif PACKETVER >= 20080527 +packetLen(0x036d, -1) +#endif + +// Packet: 0x036e +#if PACKETVER >= 20080618 +packetLen(0x036e, 3) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x036e, -1) +#endif + +// Packet: 0x036f +#if PACKETVER >= 20080527 +packetLen(0x036f, -1) +#endif + +// Packet: 0x0370 +#if PACKETVER >= 20080618 +packetLen(0x0370, 10) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0370, -1) +#endif + +// Packet: 0x0371 +#if PACKETVER >= 20080527 +packetLen(0x0371, -1) +#endif + +// Packet: 0x0372 +#if PACKETVER >= 20080618 +packetLen(0x0372, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0372, 5) +#elif PACKETVER >= 20080527 +packetLen(0x0372, -1) +#endif + +// Packet: 0x0373 +#if PACKETVER >= 20080527 +packetLen(0x0373, -1) +#endif + +// Packet: 0x0374 +#if PACKETVER >= 20080527 +packetLen(0x0374, -1) +#endif + +// Packet: 0x0375 +#if PACKETVER >= 20080618 +packetLen(0x0375, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0375, -1) +#endif + +// Packet: 0x0376 +#if PACKETVER >= 20080618 +packetLen(0x0376, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0376, 20) +#elif PACKETVER >= 20080527 +packetLen(0x0376, -1) +#endif + +// Packet: 0x0377 +#if PACKETVER >= 20080527 +packetLen(0x0377, -1) +#endif + +// Packet: 0x0378 +#if PACKETVER >= 20080618 +packetLen(0x0378, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0378, 3) +#elif PACKETVER >= 20080527 +packetLen(0x0378, -1) +#endif + +// Packet: 0x0379 +#if PACKETVER >= 20080618 +packetLen(0x0379, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0379, 60) +#elif PACKETVER >= 20080527 +packetLen(0x0379, -1) +#endif + +// Packet: 0x037a +#if PACKETVER >= 20080618 +packetLen(0x037a, -1) +#elif PACKETVER >= 20080610 +packetLen(0x037a, 6) +#elif PACKETVER >= 20080527 +packetLen(0x037a, -1) +#endif + +// Packet: 0x037b +#if PACKETVER >= 20080618 +packetLen(0x037b, 11) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x037b, 6) +#elif PACKETVER >= 20080527 +packetLen(0x037b, -1) +#endif + +// Packet: 0x037c +#if PACKETVER >= 20080618 +packetLen(0x037c, 53) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x037c, -1) +#endif + +// Packet: 0x037d +#if PACKETVER >= 20080527 +packetLen(0x037d, -1) +#endif + +// Packet: 0x037e +#if PACKETVER >= 20080618 +packetLen(0x037e, -1) +#elif PACKETVER >= 20080610 +packetLen(0x037e, 2) +#elif PACKETVER >= 20080527 +packetLen(0x037e, -1) +#endif + +// Packet: 0x037f +#if PACKETVER >= 20080618 +packetLen(0x037f, -1) +#elif PACKETVER >= 20080610 +packetLen(0x037f, 282) +#elif PACKETVER >= 20080527 +packetLen(0x037f, -1) +#endif + +// Packet: 0x0380 +#if PACKETVER >= 20080618 +packetLen(0x0380, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0380, 4) +#elif PACKETVER >= 20080527 +packetLen(0x0380, -1) +#endif + +// Packet: 0x0381 +#if PACKETVER >= 20080618 +packetLen(0x0381, 14) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0381, -1) +#endif + +// Packet: 0x0382 +#if PACKETVER >= 20080618 +packetLen(0x0382, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0382, 15) +#elif PACKETVER >= 20080527 +packetLen(0x0382, -1) +#endif + +// Packet: 0x0383 +#if PACKETVER >= 20080618 +packetLen(0x0383, 5) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0383, -1) +#endif + +// Packet: 0x0384 +#if PACKETVER >= 20080527 +packetLen(0x0384, -1) +#endif + +// Packet: 0x0385 +#if PACKETVER >= 20080618 +packetLen(0x0385, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0385, 30) +#elif PACKETVER >= 20080527 +packetLen(0x0385, -1) +#endif + +// Packet: 0x0386 +#if PACKETVER >= 20080618 +packetLen(0x0386, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0386, 26) +#elif PACKETVER >= 20080527 +packetLen(0x0386, -1) +#endif + +// Packet: 0x0387 +#if PACKETVER >= 20080618 +packetLen(0x0387, 21) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0387, 4) +#elif PACKETVER >= 20080527 +packetLen(0x0387, -1) +#endif + +// Packet: 0x0388 +#if PACKETVER >= 20080618 +packetLen(0x0388, 22) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0388, -1) +#endif + +// Packet: 0x0389 +#if PACKETVER >= 20080618 +packetLen(0x0389, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0389, -1) +#endif + +// Packet: 0x038a +#if PACKETVER >= 20080618 +packetLen(0x038a, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x038a, 14) +#elif PACKETVER >= 20080527 +packetLen(0x038a, -1) +#endif + +// Packet: 0x038b +#if PACKETVER >= 20080618 +packetLen(0x038b, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x038b, -1) +#endif + +// Packet: 0x038c +#if PACKETVER >= 20080618 +packetLen(0x038c, 8) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x038c, -1) +#endif + +// Packet: 0x038d +#if PACKETVER >= 20080618 +packetLen(0x038d, 8) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x038d, -1) +#endif + +// Packet: 0x038e +#if PACKETVER >= 20080527 +packetLen(0x038e, -1) +#endif + +// Packet: 0x038f +#if PACKETVER >= 20080618 +packetLen(0x038f, -1) +#elif PACKETVER >= 20080610 +packetLen(0x038f, 71) +#elif PACKETVER >= 20080527 +packetLen(0x038f, -1) +#endif + +// Packet: 0x0390 +#if PACKETVER >= 20080527 +packetLen(0x0390, -1) +#endif + +// Packet: 0x0391 +#if PACKETVER >= 20080618 +packetLen(0x0391, -1) +#elif PACKETVER >= 20080610 +packetLen(0x0391, 5) +#elif PACKETVER >= 20080527 +packetLen(0x0391, -1) +#endif + +// Packet: 0x0392 +#if PACKETVER >= 20080618 +packetLen(0x0392, 26) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0392, 2) +#elif PACKETVER >= 20080527 +packetLen(0x0392, -1) +#endif + +// Packet: 0x0393 +#if PACKETVER >= 20080618 +packetLen(0x0393, 14) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0393, -1) +#endif + +// Packet: 0x0394 +#if PACKETVER >= 20080527 +packetLen(0x0394, -1) +#endif + +// Packet: 0x0395 +#if PACKETVER >= 20080618 +packetLen(0x0395, 3) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0395, 11) +#elif PACKETVER >= 20080527 +packetLen(0x0395, -1) +#endif + +// Packet: 0x0396 +#if PACKETVER >= 20080618 +packetLen(0x0396, 33) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x0396, -1) +#endif + +// Packet: 0x0397 +#if PACKETVER >= 20080527 +packetLen(0x0397, -1) +#endif + +// Packet: 0x0398 +#if PACKETVER >= 20080618 +packetLen(0x0398, 282) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x0398, 4) +#elif PACKETVER >= 20080527 +packetLen(0x0398, -1) +#endif + +// Packet: 0x0399 +#if PACKETVER >= 20080527 +packetLen(0x0399, -1) +#endif + +// Packet: 0x039a +#if PACKETVER >= 20080618 +packetLen(0x039a, -1) +#elif PACKETVER >= 20080610 +packetLen(0x039a, 3) +#elif PACKETVER >= 20080527 +packetLen(0x039a, -1) +#endif + +// Packet: 0x039b +#if PACKETVER >= 20080618 +packetLen(0x039b, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x039b, -1) +#endif + +// Packet: 0x039c +#if PACKETVER >= 20080618 +packetLen(0x039c, 26) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x039c, -1) +#endif + +// Packet: 0x039d +#if PACKETVER >= 20080618 +packetLen(0x039d, 7) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x039d, 8) +#elif PACKETVER >= 20080527 +packetLen(0x039d, -1) +#endif + +// Packet: 0x039e +#if PACKETVER >= 20080618 +packetLen(0x039e, 10) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x039e, 5) +#elif PACKETVER >= 20080527 +packetLen(0x039e, -1) +#endif + +// Packet: 0x039f +#if PACKETVER >= 20080618 +packetLen(0x039f, -1) +#elif PACKETVER >= 20080610 +packetLen(0x039f, 14) +#elif PACKETVER >= 20080527 +packetLen(0x039f, -1) +#endif + +// Packet: 0x03a0 +#if PACKETVER >= 20080618 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03a0, 2) +#elif PACKETVER >= 20080527 +packetLen(0x03a0, -1) +#endif + +// Packet: 0x03a1 +#if PACKETVER >= 20080527 +packetLen(0x03a1, -1) +#endif + +// Packet: 0x03a2 +#if PACKETVER >= 20080618 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03a2, 5) +#elif PACKETVER >= 20080527 +packetLen(0x03a2, -1) +#endif + +// Packet: 0x03a3 +#if PACKETVER >= 20080618 +packetLen(0x03a3, 8) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03a3, 58) +#elif PACKETVER >= 20080527 +packetLen(0x03a3, -1) +#endif + +// Packet: 0x03a4 +#if PACKETVER >= 20080618 +packetLen(0x03a4, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03a4, 6) +#elif PACKETVER >= 20080527 +packetLen(0x03a4, -1) +#endif + +// Packet: 0x03a5 +#if PACKETVER >= 20080618 +packetLen(0x03a5, 5) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03a5, -1) +#endif + +// Packet: 0x03a6 +#if PACKETVER >= 20080618 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03a6, 22) +#elif PACKETVER >= 20080527 +packetLen(0x03a6, -1) +#endif + +// Packet: 0x03a7 +#if PACKETVER >= 20080527 +packetLen(0x03a7, -1) +#endif + +// Packet: 0x03a8 +#if PACKETVER >= 20080618 +packetLen(0x03a8, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03a8, 28) +#elif PACKETVER >= 20080527 +packetLen(0x03a8, -1) +#endif + +// Packet: 0x03a9 +#if PACKETVER >= 20080618 +packetLen(0x03a9, 67) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03a9, 2) +#elif PACKETVER >= 20080527 +packetLen(0x03a9, -1) +#endif + +// Packet: 0x03aa +#if PACKETVER >= 20080527 +packetLen(0x03aa, -1) +#endif + +// Packet: 0x03ab +#if PACKETVER >= 20080618 +packetLen(0x03ab, 14) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03ab, -1) +#endif + +// Packet: 0x03ac +#if PACKETVER >= 20080618 +packetLen(0x03ac, 282) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03ac, -1) +#endif + +// Packet: 0x03ad +#if PACKETVER >= 20080618 +packetLen(0x03ad, 21) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03ad, -1) +#endif + +// Packet: 0x03ae +#if PACKETVER >= 20080618 +packetLen(0x03ae, 57) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03ae, -1) +#endif + +// Packet: 0x03af +#if PACKETVER >= 20080618 +packetLen(0x03af, 14) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03af, 3) +#elif PACKETVER >= 20080527 +packetLen(0x03af, -1) +#endif + +// Packet: 0x03b0 +#if PACKETVER >= 20080618 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03b0, 6) +#elif PACKETVER >= 20080527 +packetLen(0x03b0, -1) +#endif + +// Packet: 0x03b1 +#if PACKETVER >= 20080618 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03b1, 30) +#elif PACKETVER >= 20080527 +packetLen(0x03b1, -1) +#endif + +// Packet: 0x03b2 +#if PACKETVER >= 20080618 +packetLen(0x03b2, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03b2, 81) +#elif PACKETVER >= 20080527 +packetLen(0x03b2, -1) +#endif + +// Packet: 0x03b3 +#if PACKETVER >= 20080618 +packetLen(0x03b3, 32) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03b3, 3) +#elif PACKETVER >= 20080527 +packetLen(0x03b3, -1) +#endif + +// Packet: 0x03b4 +#if PACKETVER >= 20080618 +packetLen(0x03b4, 29) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03b4, -1) +#endif + +// Packet: 0x03b5 +#if PACKETVER >= 20080618 +packetLen(0x03b5, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03b5, 11) +#elif PACKETVER >= 20080527 +packetLen(0x03b5, -1) +#endif + +// Packet: 0x03b6 +#if PACKETVER >= 20080618 +packetLen(0x03b6, 114) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03b6, 9) +#elif PACKETVER >= 20080527 +packetLen(0x03b6, -1) +#endif + +// Packet: 0x03b7 +#if PACKETVER >= 20080618 +packetLen(0x03b7, 8) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03b7, 2) +#elif PACKETVER >= 20080527 +packetLen(0x03b7, -1) +#endif + +// Packet: 0x03b8 +#if PACKETVER >= 20080618 +packetLen(0x03b8, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03b8, 31) +#elif PACKETVER >= 20080527 +packetLen(0x03b8, -1) +#endif + +// Packet: 0x03b9 +#if PACKETVER >= 20080527 +packetLen(0x03b9, -1) +#endif + +// Packet: 0x03ba +#if PACKETVER >= 20080618 +packetLen(0x03ba, 26) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03ba, 33) +#elif PACKETVER >= 20080527 +packetLen(0x03ba, -1) +#endif + +// Packet: 0x03bb +#if PACKETVER >= 20080527 +packetLen(0x03bb, -1) +#endif + +// Packet: 0x03bc +#if PACKETVER >= 20080618 +packetLen(0x03bc, 182) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03bc, 2) +#elif PACKETVER >= 20080527 +packetLen(0x03bc, -1) +#endif + +// Packet: 0x03bd +#if PACKETVER >= 20080527 +packetLen(0x03bd, -1) +#endif + +// Packet: 0x03be +#if PACKETVER >= 20080527 +packetLen(0x03be, -1) +#endif + +// Packet: 0x03bf +#if PACKETVER >= 20080527 +packetLen(0x03bf, -1) +#endif + +// Packet: 0x03c0 +#if PACKETVER >= 20080618 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03c0, 6) +#elif PACKETVER >= 20080527 +packetLen(0x03c0, -1) +#endif + +// Packet: 0x03c1 +#if PACKETVER >= 20080618 +packetLen(0x03c1, 7) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03c1, 2) +#elif PACKETVER >= 20080527 +packetLen(0x03c1, -1) +#endif + +// Packet: 0x03c2 +#if PACKETVER >= 20080618 +packetLen(0x03c2, 67) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03c2, -1) +#endif + +// Packet: 0x03c3 +#if PACKETVER >= 20080618 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03c3, 97) +#elif PACKETVER >= 20080527 +packetLen(0x03c3, -1) +#endif + +// Packet: 0x03c4 +#if PACKETVER >= 20080618 +packetLen(0x03c4, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03c4, 26) +#elif PACKETVER >= 20080527 +packetLen(0x03c4, -1) +#endif + +// Packet: 0x03c5 +#if PACKETVER >= 20080618 +packetLen(0x03c5, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03c5, -1) +#endif + +// Packet: 0x03c6 +#if PACKETVER >= 20080618 +packetLen(0x03c6, 7) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03c6, 26) +#elif PACKETVER >= 20080527 +packetLen(0x03c6, -1) +#endif + +// Packet: 0x03c7 +#if PACKETVER >= 20080618 +packetLen(0x03c7, 5) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03c7, -1) +#endif + +// Packet: 0x03c8 +#if PACKETVER >= 20080527 +packetLen(0x03c8, -1) +#endif + +// Packet: 0x03c9 +#if PACKETVER >= 20080618 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03c9, 6) +#elif PACKETVER >= 20080527 +packetLen(0x03c9, -1) +#endif + +// Packet: 0x03ca +#if PACKETVER >= 20080618 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03ca, 10) +#elif PACKETVER >= 20080527 +packetLen(0x03ca, -1) +#endif + +// Packet: 0x03cb +#if PACKETVER >= 20080618 +packetLen(0x03cb, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03cb, 8) +#elif PACKETVER >= 20080527 +packetLen(0x03cb, -1) +#endif + +// Packet: 0x03cc +#if PACKETVER >= 20080618 +packetLen(0x03cc, 7) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03cc, -1) +#endif + +// Packet: 0x03cd +#if PACKETVER >= 20080527 +packetLen(0x03cd, -1) +#endif + +// Packet: 0x03ce +#if PACKETVER >= 20080618 +packetLen(0x03ce, 39) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03ce, -1) +#endif + +// Packet: 0x03cf +#if PACKETVER >= 20080618 +packetLen(0x03cf, 27) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03cf, -1) +#endif + +// Packet: 0x03d0 +#if PACKETVER >= 20080618 +packetLen(0x03d0, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03d0, -1) +#endif + +// Packet: 0x03d1 +#if PACKETVER >= 20080618 +packetLen(0x03d1, 7) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03d1, 8) +#elif PACKETVER >= 20080527 +packetLen(0x03d1, -1) +#endif + +// Packet: 0x03d2 +#if PACKETVER >= 20080618 +packetLen(0x03d2, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03d2, -1) +#endif + +// Packet: 0x03d3 +#if PACKETVER >= 20080527 +packetLen(0x03d3, -1) +#endif + +// Packet: 0x03d4 +#if PACKETVER >= 20080618 +packetLen(0x03d4, 27) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03d4, 182) +#elif PACKETVER >= 20080527 +packetLen(0x03d4, -1) +#endif + +// Packet: 0x03d5 +#if PACKETVER >= 20080618 +packetLen(0x03d5, 4) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03d5, 18) +#elif PACKETVER >= 20080527 +packetLen(0x03d5, -1) +#endif + +// Packet: 0x03d6 +#if PACKETVER >= 20080618 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03d6, 30) +#elif PACKETVER >= 20080527 +packetLen(0x03d6, -1) +#endif + +// Packet: 0x03d7 +#if PACKETVER >= 20080527 +packetLen(0x03d7, -1) +#endif + +// Packet: 0x03d8 +#if PACKETVER >= 20080618 +packetLen(0x03d8, 2) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03d8, -1) +#endif + +// Packet: 0x03d9 +#if PACKETVER >= 20080618 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20080610 +packetLen(0x03d9, 13) +#elif PACKETVER >= 20080527 +packetLen(0x03d9, -1) +#endif + +// Packet: 0x03da +#if PACKETVER >= 20080527 +packetLen(0x03da, -1) +#endif + +// Packet: 0x03db +#if PACKETVER >= 20080618 +packetLen(0x03db, 6) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080527 +packetLen(0x03db, -1) +#endif + +// Packet: 0x03dc +#if PACKETVER >= 20080618 +packetLen(0x03dc, 54) +// ignored packet from 2008-06-18bSakexe +#elif PACKETVER >= 20080610 +packetLen(0x03dc, 6) +#elif PACKETVER >= 20080527 +packetLen(0x03dc, -1) +#endif + +// Packet: 0x03dd +#if PACKETVER >= 20080624 +packetLen(0x03dd, 18) // AHC_GAME_GUARD +#endif + +// Packet: 0x03de +#if PACKETVER >= 20080624 +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD +#endif + +// Packet: 0x03e2 +#if PACKETVER >= 20080813 +packetLen(0x03e2, -1) +#endif + +// Packet: 0x03e3 +#if PACKETVER >= 20080813 +packetLen(0x03e3, -1) +#endif + +// Packet: 0x03e4 +#if PACKETVER >= 20080813 +packetLen(0x03e4, -1) +#endif + +// Packet: 0x03e5 +#if PACKETVER >= 20080813 +packetLen(0x03e5, -1) +#endif + +// Packet: 0x03e6 +#if PACKETVER >= 20080813 +packetLen(0x03e6, -1) +#endif + +// Packet: 0x03e7 +#if PACKETVER >= 20080813 +packetLen(0x03e7, -1) +#endif + +// Packet: 0x03e8 +#if PACKETVER >= 20080813 +packetLen(0x03e8, -1) +#endif + +// Packet: 0x03e9 +#if PACKETVER >= 20080813 +packetLen(0x03e9, -1) +#endif + +// Packet: 0x03ea +#if PACKETVER >= 20080813 +packetLen(0x03ea, -1) +#endif + +// Packet: 0x03eb +#if PACKETVER >= 20080813 +packetLen(0x03eb, -1) +#endif + +// Packet: 0x03ec +#if PACKETVER >= 20080813 +packetLen(0x03ec, -1) +#endif + +// Packet: 0x03ed +#if PACKETVER >= 20080813 +packetLen(0x03ed, -1) +#endif + +// Packet: 0x03ee +#if PACKETVER >= 20080813 +packetLen(0x03ee, -1) +#endif + +// Packet: 0x03ef +#if PACKETVER >= 20080813 +packetLen(0x03ef, -1) +#endif + +// Packet: 0x03f0 +#if PACKETVER >= 20080813 +packetLen(0x03f0, -1) +#endif + +// Packet: 0x03f1 +#if PACKETVER >= 20080813 +packetLen(0x03f1, -1) +#endif + +// Packet: 0x03f2 +#if PACKETVER >= 20080813 +packetLen(0x03f2, -1) +#endif + +// Packet: 0x03f3 +#if PACKETVER >= 20080813 +packetLen(0x03f3, -1) +#endif + +// Packet: 0x03f4 +#if PACKETVER >= 20080813 +packetLen(0x03f4, -1) +#endif + +// Packet: 0x03f5 +#if PACKETVER >= 20080813 +packetLen(0x03f5, -1) +#endif + +// Packet: 0x03f6 +#if PACKETVER >= 20080813 +packetLen(0x03f6, -1) +#endif + +// Packet: 0x03f7 +#if PACKETVER >= 20080813 +packetLen(0x03f7, -1) +#endif + +// Packet: 0x03f8 +#if PACKETVER >= 20080813 +packetLen(0x03f8, -1) +#endif + +// Packet: 0x03f9 +#if PACKETVER >= 20080813 +packetLen(0x03f9, -1) +#endif + +// Packet: 0x03fa +#if PACKETVER >= 20080813 +packetLen(0x03fa, -1) +#endif + +// Packet: 0x03fb +#if PACKETVER >= 20080813 +packetLen(0x03fb, -1) +#endif + +// Packet: 0x03fc +#if PACKETVER >= 20080813 +packetLen(0x03fc, -1) +#endif + +// Packet: 0x03fd +#if PACKETVER >= 20080813 +packetLen(0x03fd, -1) +#endif + +// Packet: 0x03fe +#if PACKETVER >= 20080813 +packetLen(0x03fe, -1) +#endif + +// Packet: 0x03ff +#if PACKETVER >= 20080813 +packetLen(0x03ff, -1) +#endif + +// Packet: 0x0400 +#if PACKETVER >= 20080813 +packetLen(0x0400, -1) +#endif + +// Packet: 0x0401 +#if PACKETVER >= 20080813 +packetLen(0x0401, -1) +#endif + +// Packet: 0x0402 +#if PACKETVER >= 20080813 +packetLen(0x0402, -1) +#endif + +// Packet: 0x0403 +#if PACKETVER >= 20080813 +packetLen(0x0403, -1) +#endif + +// Packet: 0x0404 +#if PACKETVER >= 20080813 +packetLen(0x0404, -1) +#endif + +// Packet: 0x0405 +#if PACKETVER >= 20080813 +packetLen(0x0405, -1) +#endif + +// Packet: 0x0406 +#if PACKETVER >= 20080813 +packetLen(0x0406, -1) +#endif + +// Packet: 0x0407 +#if PACKETVER >= 20080813 +packetLen(0x0407, -1) +#endif + +// Packet: 0x0408 +#if PACKETVER >= 20080813 +packetLen(0x0408, -1) +#endif + +// Packet: 0x0409 +#if PACKETVER >= 20080813 +packetLen(0x0409, -1) +#endif + +// Packet: 0x040a +#if PACKETVER >= 20080813 +packetLen(0x040a, -1) +#endif + +// Packet: 0x040b +#if PACKETVER >= 20080813 +packetLen(0x040b, -1) +#endif + +// Packet: 0x040c +#if PACKETVER >= 20080820 +packetLen(0x040c, -1) +#endif + +// Packet: 0x040d +#if PACKETVER >= 20080820 +packetLen(0x040d, -1) +#endif + +// Packet: 0x040e +#if PACKETVER >= 20080820 +packetLen(0x040e, -1) +#endif + +// Packet: 0x040f +#if PACKETVER >= 20080820 +packetLen(0x040f, -1) +#endif + +// Packet: 0x0410 +#if PACKETVER >= 20080820 +packetLen(0x0410, -1) +#endif + +// Packet: 0x0411 +#if PACKETVER >= 20080820 +packetLen(0x0411, -1) +#endif + +// Packet: 0x0412 +#if PACKETVER >= 20080820 +packetLen(0x0412, -1) +#endif + +// Packet: 0x0413 +#if PACKETVER >= 20080820 +packetLen(0x0413, -1) +#endif + +// Packet: 0x0414 +#if PACKETVER >= 20080820 +packetLen(0x0414, -1) +#endif + +// Packet: 0x0415 +#if PACKETVER >= 20080820 +packetLen(0x0415, -1) +#endif + +// Packet: 0x0416 +#if PACKETVER >= 20080820 +packetLen(0x0416, -1) +#endif + +// Packet: 0x0417 +#if PACKETVER >= 20080820 +packetLen(0x0417, -1) +#endif + +// Packet: 0x0418 +#if PACKETVER >= 20080820 +packetLen(0x0418, -1) +#endif + +// Packet: 0x0419 +#if PACKETVER >= 20080820 +packetLen(0x0419, -1) +#endif + +// Packet: 0x041a +#if PACKETVER >= 20080820 +packetLen(0x041a, -1) +#endif + +// Packet: 0x041b +#if PACKETVER >= 20080820 +packetLen(0x041b, -1) +#endif + +// Packet: 0x041c +#if PACKETVER >= 20080820 +packetLen(0x041c, -1) +#endif + +// Packet: 0x041d +#if PACKETVER >= 20080820 +packetLen(0x041d, -1) +#endif + +// Packet: 0x041e +#if PACKETVER >= 20080820 +packetLen(0x041e, -1) +#endif + +// Packet: 0x041f +#if PACKETVER >= 20080820 +packetLen(0x041f, -1) +#endif + +// Packet: 0x0420 +#if PACKETVER >= 20080820 +packetLen(0x0420, -1) +#endif + +// Packet: 0x0421 +#if PACKETVER >= 20080820 +packetLen(0x0421, -1) +#endif + +// Packet: 0x0422 +#if PACKETVER >= 20080820 +packetLen(0x0422, -1) +#endif + +// Packet: 0x0423 +#if PACKETVER >= 20080820 +packetLen(0x0423, -1) +#endif + +// Packet: 0x0424 +#if PACKETVER >= 20080820 +packetLen(0x0424, -1) +#endif + +// Packet: 0x0425 +#if PACKETVER >= 20080820 +packetLen(0x0425, -1) +#endif + +// Packet: 0x0426 +#if PACKETVER >= 20080820 +packetLen(0x0426, -1) +#endif + +// Packet: 0x0427 +#if PACKETVER >= 20080820 +packetLen(0x0427, -1) +#endif + +// Packet: 0x0428 +#if PACKETVER >= 20080820 +packetLen(0x0428, -1) +#endif + +// Packet: 0x0429 +#if PACKETVER >= 20080820 +packetLen(0x0429, -1) +#endif + +// Packet: 0x042a +#if PACKETVER >= 20080820 +packetLen(0x042a, -1) +#endif + +// Packet: 0x042b +#if PACKETVER >= 20080820 +packetLen(0x042b, -1) +#endif + +// Packet: 0x042c +#if PACKETVER >= 20080820 +packetLen(0x042c, -1) +#endif + +// Packet: 0x042d +#if PACKETVER >= 20080820 +packetLen(0x042d, -1) +#endif + +// Packet: 0x042e +#if PACKETVER >= 20080820 +packetLen(0x042e, -1) +#endif + +// Packet: 0x042f +#if PACKETVER >= 20080820 +packetLen(0x042f, -1) +#endif + +// Packet: 0x0430 +#if PACKETVER >= 20080820 +packetLen(0x0430, -1) +#endif + +// Packet: 0x0431 +#if PACKETVER >= 20080820 +packetLen(0x0431, -1) +#endif + +// Packet: 0x0432 +#if PACKETVER >= 20080820 +packetLen(0x0432, -1) +#endif + +// Packet: 0x0433 +#if PACKETVER >= 20080820 +packetLen(0x0433, -1) +#endif + +// Packet: 0x0434 +#if PACKETVER >= 20080820 +packetLen(0x0434, -1) +#endif + +// Packet: 0x0435 +#if PACKETVER >= 20080820 +packetLen(0x0435, -1) +#endif + +// Packet: 0x0436 +#if PACKETVER >= 20080910 +packetLen(0x0436, 19) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20080910 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20080910 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +#if PACKETVER >= 20080910 +packetLen(0x0439, 8) // CZ_USE_ITEM2 +#endif + +// Packet: 0x043d +#if PACKETVER >= 20081112 +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY +#endif + +// Packet: 0x043e +#if PACKETVER >= 20081112 +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST +#endif + +// Packet: 0x043f +#if PACKETVER >= 20081112 +packetLen(0x043f, 8) // ZC_MSG_STATE_CHANGE2 +#endif + +// Packet: 0x0440 +#if PACKETVER >= 20081126 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD +#endif + +// Packet: 0x0441 +#if PACKETVER >= 20081126 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE +#endif + +// Packet: 0x0442 +#if PACKETVER >= 20081210 +packetLen(0x0442, 8) // ZC_SKILL_SELECT_REQUEST +#endif + +// Packet: 0x0443 +#if PACKETVER >= 20081210 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE +#endif + + +#endif /* COMMON_PACKETS2008_LEN_SAK_H */ diff --git a/src/common/packets/packets2009_len_main.h b/src/common/packets/packets2009_len_main.h new file mode 100644 index 000000000..82909b874 --- /dev/null +++ b/src/common/packets/packets2009_len_main.h @@ -0,0 +1,15405 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2009_LEN_MAIN_H +#define COMMON_PACKETS2009_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20090617 +packetLen(0x006d, 114) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20090107 +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +#if PACKETVER >= 20090406 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20090401 +packetLen(0x0073, 6) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20090311 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20090225 +packetLen(0x0073, 282) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20090218 +packetLen(0x0073, 2) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20090211 +packetLen(0x0073, 8) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20090120 +packetLen(0x0073, -1) // ZC_ACCEPT_ENTER +#elif PACKETVER >= 20090107 +packetLen(0x0073, 8) // ZC_ACCEPT_ENTER +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +#if PACKETVER >= 20090401 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20090325 +packetLen(0x0075, 22) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20090225 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20090218 +packetLen(0x0075, 2) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20090114 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR +#elif PACKETVER >= 20090107 +packetLen(0x0075, 6) // ZC_NOTIFY_INITCHAR +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +#if PACKETVER >= 20090406 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090401 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090325 +packetLen(0x0077, 4) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090311 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090225 +packetLen(0x0077, 7) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090211 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090204 +packetLen(0x0077, 7) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090129 +packetLen(0x0077, 3) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090120 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090114 +packetLen(0x0077, 7) // ZC_NOTIFY_UPDATEPLAYER +#elif PACKETVER >= 20090107 +packetLen(0x0077, -1) // ZC_NOTIFY_UPDATEPLAYER +#endif + +// Packet: 0x0078 +#if PACKETVER >= 20090406 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20090318 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20090311 +packetLen(0x0078, 2) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20090114 +packetLen(0x0078, -1) // ZC_NOTIFY_STANDENTRY +#elif PACKETVER >= 20090107 +packetLen(0x0078, 22) // ZC_NOTIFY_STANDENTRY +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0079 +#if PACKETVER >= 20090406 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20090318 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20090311 +packetLen(0x0079, 15) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20090225 +packetLen(0x0079, 20) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20090218 +packetLen(0x0079, 2) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20090129 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20090120 +packetLen(0x0079, 3) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20090114 +packetLen(0x0079, 21) // ZC_NOTIFY_NEWENTRY +#elif PACKETVER >= 20090107 +packetLen(0x0079, -1) // ZC_NOTIFY_NEWENTRY +#endif + +// Packet: 0x007a +#if PACKETVER >= 20090406 +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20090325 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20090318 +packetLen(0x007a, 3) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20090225 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20090218 +packetLen(0x007a, 6) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20090120 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20090114 +packetLen(0x007a, 6) // ZC_NOTIFY_ACTENTRY +#elif PACKETVER >= 20090107 +packetLen(0x007a, -1) // ZC_NOTIFY_ACTENTRY +#endif + +// Packet: 0x007b +#if PACKETVER >= 20090406 +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20090401 +packetLen(0x007b, 8) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20090325 +packetLen(0x007b, 3) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20090218 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20090211 +packetLen(0x007b, 2) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20090204 +packetLen(0x007b, 5) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20090129 +packetLen(0x007b, 14) // ZC_NOTIFY_MOVEENTRY +#elif PACKETVER >= 20090107 +packetLen(0x007b, -1) // ZC_NOTIFY_MOVEENTRY +#endif + +// Packet: 0x007c +#if PACKETVER >= 20090617 +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090406 +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090401 +packetLen(0x007c, 14) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090325 +packetLen(0x007c, 182) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090311 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090225 +packetLen(0x007c, 19) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090218 +packetLen(0x007c, 10) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090211 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090204 +packetLen(0x007c, 5) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090120 +packetLen(0x007c, -1) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090114 +packetLen(0x007c, 2) // ZC_NOTIFY_STANDENTRY_NPC +#elif PACKETVER >= 20090107 +packetLen(0x007c, 2) // ZC_NOTIFY_STANDENTRY_NPC +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x007d +#if PACKETVER >= 20090406 +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20090401 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20090325 +packetLen(0x007d, 10) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20090114 +packetLen(0x007d, -1) // CZ_NOTIFY_ACTORINIT +#elif PACKETVER >= 20090107 +packetLen(0x007d, 282) // CZ_NOTIFY_ACTORINIT +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +#if PACKETVER >= 20090406 +packetLen(0x007f, 6) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20090401 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20090325 +packetLen(0x007f, 2) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20090318 +packetLen(0x007f, 10) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20090204 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20090129 +packetLen(0x007f, 8) // ZC_NOTIFY_TIME +#elif PACKETVER >= 20090107 +packetLen(0x007f, -1) // ZC_NOTIFY_TIME +#endif + +// Packet: 0x0080 +#if PACKETVER >= 20090406 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20090318 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20090311 +packetLen(0x0080, 6) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20090225 +packetLen(0x0080, 36) // ZC_NOTIFY_VANISH +#elif PACKETVER >= 20090107 +packetLen(0x0080, -1) // ZC_NOTIFY_VANISH +#endif + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +#if PACKETVER >= 20090406 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090325 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090318 +packetLen(0x0083, 65) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090311 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090225 +packetLen(0x0083, 8) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090211 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090204 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090129 +packetLen(0x0083, -1) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090120 +packetLen(0x0083, 6) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090114 +packetLen(0x0083, 10) // ZC_ACCEPT_QUIT +#elif PACKETVER >= 20090107 +packetLen(0x0083, 5) // ZC_ACCEPT_QUIT +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +#if PACKETVER >= 20090406 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20090325 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20090318 +packetLen(0x0086, 4) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20090225 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20090218 +packetLen(0x0086, 7) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20090129 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20090120 +packetLen(0x0086, 10) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20090114 +packetLen(0x0086, -1) // ZC_NOTIFY_MOVE +#elif PACKETVER >= 20090107 +packetLen(0x0086, 17) // ZC_NOTIFY_MOVE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0087 +#if PACKETVER >= 20090406 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090401 +packetLen(0x0087, 39) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090325 +packetLen(0x0087, 15) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090318 +packetLen(0x0087, 3) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090311 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090225 +packetLen(0x0087, 6) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090218 +packetLen(0x0087, 21) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090211 +packetLen(0x0087, 8) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090204 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090129 +packetLen(0x0087, 8) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090114 +packetLen(0x0087, -1) // ZC_NOTIFY_PLAYERMOVE +#elif PACKETVER >= 20090107 +packetLen(0x0087, 8) // ZC_NOTIFY_PLAYERMOVE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0088 +#if PACKETVER >= 20090406 +packetLen(0x0088, 10) // ZC_STOPMOVE +#elif PACKETVER >= 20090318 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20090311 +packetLen(0x0088, 4) // ZC_STOPMOVE +#elif PACKETVER >= 20090225 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20090218 +packetLen(0x0088, 4) // ZC_STOPMOVE +#elif PACKETVER >= 20090211 +packetLen(0x0088, 37) // ZC_STOPMOVE +#elif PACKETVER >= 20090204 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20090129 +packetLen(0x0088, 6) // ZC_STOPMOVE +#elif PACKETVER >= 20090120 +packetLen(0x0088, -1) // ZC_STOPMOVE +#elif PACKETVER >= 20090114 +packetLen(0x0088, 60) // ZC_STOPMOVE +#elif PACKETVER >= 20090107 +packetLen(0x0088, 26) // ZC_STOPMOVE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +#if PACKETVER >= 20090406 +packetLen(0x008a, 29) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20090401 +packetLen(0x008a, 15) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20090325 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20090318 +packetLen(0x008a, 7) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20090311 +packetLen(0x008a, 21) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20090218 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20090211 +packetLen(0x008a, 282) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20090204 +packetLen(0x008a, 2) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20090114 +packetLen(0x008a, -1) // ZC_NOTIFY_ACT +#elif PACKETVER >= 20090107 +packetLen(0x008a, 10) // ZC_NOTIFY_ACT +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +#if PACKETVER >= 20090311 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20090225 +packetLen(0x008d, 34) // ZC_NOTIFY_CHAT +#elif PACKETVER >= 20090107 +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT +#endif + +// Packet: 0x008e +#if PACKETVER >= 20090401 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20090325 +packetLen(0x008e, 3) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20090204 +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20090129 +packetLen(0x008e, 6) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20090120 +packetLen(0x008e, 8) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20090114 +packetLen(0x008e, 12) // ZC_NOTIFY_PLAYERCHAT +#elif PACKETVER >= 20090107 +packetLen(0x008e, 60) // ZC_NOTIFY_PLAYERCHAT +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0090 +#if PACKETVER >= 20090406 +packetLen(0x0090, 7) // CZ_CONTACTNPC +#elif PACKETVER >= 20090318 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20090311 +packetLen(0x0090, 26) // CZ_CONTACTNPC +#elif PACKETVER >= 20090225 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20090218 +packetLen(0x0090, 2) // CZ_CONTACTNPC +#elif PACKETVER >= 20090211 +packetLen(0x0090, 4) // CZ_CONTACTNPC +#elif PACKETVER >= 20090204 +packetLen(0x0090, 44) // CZ_CONTACTNPC +#elif PACKETVER >= 20090129 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20090120 +packetLen(0x0090, 3) // CZ_CONTACTNPC +#elif PACKETVER >= 20090114 +packetLen(0x0090, -1) // CZ_CONTACTNPC +#elif PACKETVER >= 20090107 +packetLen(0x0090, 36) // CZ_CONTACTNPC +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0091 +#if PACKETVER >= 20090406 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20090401 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20090325 +packetLen(0x0091, 21) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20090114 +packetLen(0x0091, -1) // ZC_NPCACK_MAPMOVE +#elif PACKETVER >= 20090107 +packetLen(0x0091, 8) // ZC_NPCACK_MAPMOVE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0092 +#if PACKETVER >= 20090406 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090401 +packetLen(0x0092, 26) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090325 +packetLen(0x0092, 6) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090318 +packetLen(0x0092, 30) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090218 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090211 +packetLen(0x0092, 6) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090204 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090129 +packetLen(0x0092, 2) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090120 +packetLen(0x0092, -1) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090114 +packetLen(0x0092, 3) // ZC_NPCACK_SERVERMOVE +#elif PACKETVER >= 20090107 +packetLen(0x0092, 6) // ZC_NPCACK_SERVERMOVE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0093 +#if PACKETVER >= 20090401 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20090225 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20090218 +packetLen(0x0093, 14) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20090211 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20090204 +packetLen(0x0093, 3) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20090129 +packetLen(0x0093, 8) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20090120 +packetLen(0x0093, 4) // ZC_NPCACK_ENABLE +#elif PACKETVER >= 20090107 +packetLen(0x0093, -1) // ZC_NPCACK_ENABLE +#endif + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +#if PACKETVER >= 20090406 +packetLen(0x0095, 30) // ZC_ACK_REQNAME +#elif PACKETVER >= 20090401 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20090325 +packetLen(0x0095, 4) // ZC_ACK_REQNAME +#elif PACKETVER >= 20090311 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20090225 +packetLen(0x0095, 33) // ZC_ACK_REQNAME +#elif PACKETVER >= 20090218 +packetLen(0x0095, 60) // ZC_ACK_REQNAME +#elif PACKETVER >= 20090211 +packetLen(0x0095, 11) // ZC_ACK_REQNAME +#elif PACKETVER >= 20090129 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#elif PACKETVER >= 20090120 +packetLen(0x0095, 53) // ZC_ACK_REQNAME +#elif PACKETVER >= 20090107 +packetLen(0x0095, -1) // ZC_ACK_REQNAME +#endif + +// Packet: 0x0096 +#if PACKETVER >= 20090406 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20090401 +packetLen(0x0096, 6) // CZ_WHISPER +#elif PACKETVER >= 20090325 +packetLen(0x0096, 71) // CZ_WHISPER +#elif PACKETVER >= 20090318 +packetLen(0x0096, 11) // CZ_WHISPER +#elif PACKETVER >= 20090311 +packetLen(0x0096, 9) // CZ_WHISPER +#elif PACKETVER >= 20090225 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20090218 +packetLen(0x0096, 39) // CZ_WHISPER +#elif PACKETVER >= 20090211 +packetLen(0x0096, -1) // CZ_WHISPER +#elif PACKETVER >= 20090204 +packetLen(0x0096, 2) // CZ_WHISPER +#elif PACKETVER >= 20090129 +packetLen(0x0096, 3) // CZ_WHISPER +#elif PACKETVER >= 20090120 +packetLen(0x0096, 30) // CZ_WHISPER +#elif PACKETVER >= 20090107 +packetLen(0x0096, -1) // CZ_WHISPER +#endif + +// Packet: 0x0097 +#if PACKETVER >= 20090406 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20090401 +packetLen(0x0097, 30) // ZC_WHISPER +#elif PACKETVER >= 20090325 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20090318 +packetLen(0x0097, 6) // ZC_WHISPER +#elif PACKETVER >= 20090311 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20090225 +packetLen(0x0097, 4) // ZC_WHISPER +#elif PACKETVER >= 20090211 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20090204 +packetLen(0x0097, 4) // ZC_WHISPER +#elif PACKETVER >= 20090120 +packetLen(0x0097, -1) // ZC_WHISPER +#elif PACKETVER >= 20090114 +packetLen(0x0097, 10) // ZC_WHISPER +#elif PACKETVER >= 20090107 +packetLen(0x0097, 37) // ZC_WHISPER +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0098 +#if PACKETVER >= 20090406 +packetLen(0x0098, 3) // ZC_ACK_WHISPER +#elif PACKETVER >= 20090401 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20090325 +packetLen(0x0098, 26) // ZC_ACK_WHISPER +#elif PACKETVER >= 20090318 +packetLen(0x0098, 10) // ZC_ACK_WHISPER +#elif PACKETVER >= 20090225 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20090218 +packetLen(0x0098, 26) // ZC_ACK_WHISPER +#elif PACKETVER >= 20090129 +packetLen(0x0098, -1) // ZC_ACK_WHISPER +#elif PACKETVER >= 20090120 +packetLen(0x0098, 20) // ZC_ACK_WHISPER +#elif PACKETVER >= 20090114 +packetLen(0x0098, 8) // ZC_ACK_WHISPER +#elif PACKETVER >= 20090107 +packetLen(0x0098, 9) // ZC_ACK_WHISPER +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0099 +#if PACKETVER >= 20090318 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20090311 +packetLen(0x0099, 6) // CZ_BROADCAST +#elif PACKETVER >= 20090225 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20090218 +packetLen(0x0099, 8) // CZ_BROADCAST +#elif PACKETVER >= 20090211 +packetLen(0x0099, 6) // CZ_BROADCAST +#elif PACKETVER >= 20090204 +packetLen(0x0099, 2) // CZ_BROADCAST +#elif PACKETVER >= 20090129 +packetLen(0x0099, -1) // CZ_BROADCAST +#elif PACKETVER >= 20090120 +packetLen(0x0099, 4) // CZ_BROADCAST +#elif PACKETVER >= 20090107 +packetLen(0x0099, 31) // CZ_BROADCAST +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x009a +#if PACKETVER >= 20090311 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20090225 +packetLen(0x009a, 2) // ZC_BROADCAST +#elif PACKETVER >= 20090218 +packetLen(0x009a, 10) // ZC_BROADCAST +#elif PACKETVER >= 20090211 +packetLen(0x009a, 4) // ZC_BROADCAST +#elif PACKETVER >= 20090129 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20090120 +packetLen(0x009a, 6) // ZC_BROADCAST +#elif PACKETVER >= 20090114 +packetLen(0x009a, -1) // ZC_BROADCAST +#elif PACKETVER >= 20090107 +packetLen(0x009a, 65) // ZC_BROADCAST +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +#if PACKETVER >= 20090406 +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20090401 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20090325 +packetLen(0x009c, 79) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20090318 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20090311 +packetLen(0x009c, 29) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20090225 +packetLen(0x009c, 65) // ZC_CHANGE_DIRECTION +#elif PACKETVER >= 20090107 +packetLen(0x009c, -1) // ZC_CHANGE_DIRECTION +#endif + +// Packet: 0x009d +#if PACKETVER >= 20090406 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090401 +packetLen(0x009d, 2) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090318 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090311 +packetLen(0x009d, 54) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090225 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090218 +packetLen(0x009d, 68) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090211 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090204 +packetLen(0x009d, 3) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090120 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090114 +packetLen(0x009d, 3) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20090107 +packetLen(0x009d, -1) // ZC_ITEM_ENTRY +#endif + +// Packet: 0x009e +#if PACKETVER >= 20090406 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090401 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090325 +packetLen(0x009e, 8) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090318 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090311 +packetLen(0x009e, 114) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090225 +packetLen(0x009e, 6) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090218 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090211 +packetLen(0x009e, 10) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090204 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090129 +packetLen(0x009e, 7) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090120 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090114 +packetLen(0x009e, 3) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20090107 +packetLen(0x009e, -1) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +#if PACKETVER >= 20090406 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20090325 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20090318 +packetLen(0x00a0, 10) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20090211 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20090204 +packetLen(0x00a0, 2) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20090107 +packetLen(0x00a0, -1) // ZC_ITEM_PICKUP_ACK +#endif + +// Packet: 0x00a1 +#if PACKETVER >= 20090406 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20090401 +packetLen(0x00a1, 8) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20090325 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20090318 +packetLen(0x00a1, 4) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20090311 +packetLen(0x00a1, 27) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20090225 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20090218 +packetLen(0x00a1, 4) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20090211 +packetLen(0x00a1, 30) // ZC_ITEM_DISAPPEAR +#elif PACKETVER >= 20090107 +packetLen(0x00a1, -1) // ZC_ITEM_DISAPPEAR +#endif + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +#if PACKETVER >= 20090406 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20090401 +packetLen(0x00a3, 4) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x00a3, 5) // ZC_NORMAL_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST +#endif + +// Packet: 0x00a4 +#if PACKETVER >= 20090401 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090325 +packetLen(0x00a4, 10) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090318 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x00a4, 3) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090225 +packetLen(0x00a4, 31) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x00a4, 54) // ZC_EQUIPMENT_ITEMLIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00a5 +#if PACKETVER >= 20090406 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20090401 +packetLen(0x00a5, 6) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20090225 +packetLen(0x00a5, 12) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x00a5, 54) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x00a5, 24) // ZC_STORE_NORMAL_ITEMLIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00a6 +#if PACKETVER >= 20090406 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090401 +packetLen(0x00a6, 59) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090325 +packetLen(0x00a6, 4) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090225 +packetLen(0x00a6, 10) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090218 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090211 +packetLen(0x00a6, 6) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090204 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x00a6, 2) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x00a6, 18) // ZC_STORE_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x00a6, 20) // ZC_STORE_EQUIPMENT_ITEMLIST +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +#if PACKETVER >= 20090406 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090401 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090325 +packetLen(0x00a8, 6) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090318 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090311 +packetLen(0x00a8, 30) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090218 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090211 +packetLen(0x00a8, 20) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090204 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090129 +packetLen(0x00a8, 54) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090120 +packetLen(0x00a8, -1) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090114 +packetLen(0x00a8, 27) // ZC_USE_ITEM_ACK +#elif PACKETVER >= 20090107 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00a9 +#if PACKETVER >= 20090406 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20090401 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20090325 +packetLen(0x00a9, 8) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20090318 +packetLen(0x00a9, -1) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20090311 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP +#elif PACKETVER >= 20090107 +packetLen(0x00a9, 30) // CZ_REQ_WEAR_EQUIP +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00aa +#if PACKETVER >= 20090406 +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090325 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090318 +packetLen(0x00aa, 8) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090311 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090225 +packetLen(0x00aa, 2) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090218 +packetLen(0x00aa, 5) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090211 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090204 +packetLen(0x00aa, 4) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090129 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090120 +packetLen(0x00aa, 53) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090114 +packetLen(0x00aa, 26) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20090107 +packetLen(0x00aa, -1) // ZC_REQ_WEAR_EQUIP_ACK +#endif + +// Packet: 0x00ab +#if PACKETVER >= 20090406 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20090325 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20090318 +packetLen(0x00ab, 14) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20090204 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20090129 +packetLen(0x00ab, 6) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20090120 +packetLen(0x00ab, -1) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20090114 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +#elif PACKETVER >= 20090107 +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00ac +#if PACKETVER >= 20090325 +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20090311 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20090225 +packetLen(0x00ac, 14) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20090211 +packetLen(0x00ac, 6) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20090114 +packetLen(0x00ac, -1) // ZC_REQ_TAKEOFF_EQUIP_ACK +#elif PACKETVER >= 20090107 +packetLen(0x00ac, 3) // ZC_REQ_TAKEOFF_EQUIP_ACK +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +#if PACKETVER >= 20090406 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20090401 +packetLen(0x00af, 54) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20090325 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20090318 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20090225 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20090218 +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20090211 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20090204 +packetLen(0x00af, 14) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20090129 +packetLen(0x00af, 4) // ZC_ITEM_THROW_ACK +#elif PACKETVER >= 20090107 +packetLen(0x00af, -1) // ZC_ITEM_THROW_ACK +#endif + +// Packet: 0x00b0 +#if PACKETVER >= 20090406 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE +#elif PACKETVER >= 20090401 +packetLen(0x00b0, 10) // ZC_PAR_CHANGE +#elif PACKETVER >= 20090318 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20090311 +packetLen(0x00b0, 57) // ZC_PAR_CHANGE +#elif PACKETVER >= 20090114 +packetLen(0x00b0, -1) // ZC_PAR_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x00b0, 30) // ZC_PAR_CHANGE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00b1 +#if PACKETVER >= 20090406 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20090401 +packetLen(0x00b1, 3) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20090325 +packetLen(0x00b1, 27) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20090311 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20090225 +packetLen(0x00b1, 30) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20090204 +packetLen(0x00b1, -1) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20090129 +packetLen(0x00b1, 29) // ZC_LONGPAR_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x00b1, 11) // ZC_LONGPAR_CHANGE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00b2 +#if PACKETVER >= 20090406 +packetLen(0x00b2, 3) // CZ_RESTART +#elif PACKETVER >= 20090401 +packetLen(0x00b2, 42) // CZ_RESTART +#elif PACKETVER >= 20090325 +packetLen(0x00b2, 32) // CZ_RESTART +#elif PACKETVER >= 20090318 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20090311 +packetLen(0x00b2, 186) // CZ_RESTART +#elif PACKETVER >= 20090225 +packetLen(0x00b2, 6) // CZ_RESTART +#elif PACKETVER >= 20090218 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20090211 +packetLen(0x00b2, 2) // CZ_RESTART +#elif PACKETVER >= 20090129 +packetLen(0x00b2, -1) // CZ_RESTART +#elif PACKETVER >= 20090120 +packetLen(0x00b2, 97) // CZ_RESTART +#elif PACKETVER >= 20090107 +packetLen(0x00b2, 23) // CZ_RESTART +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00b3 +#if PACKETVER >= 20090406 +packetLen(0x00b3, 3) // ZC_RESTART_ACK +#elif PACKETVER >= 20090401 +packetLen(0x00b3, 4) // ZC_RESTART_ACK +#elif PACKETVER >= 20090318 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20090311 +packetLen(0x00b3, 6) // ZC_RESTART_ACK +#elif PACKETVER >= 20090204 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20090129 +packetLen(0x00b3, 2) // ZC_RESTART_ACK +#elif PACKETVER >= 20090114 +packetLen(0x00b3, -1) // ZC_RESTART_ACK +#elif PACKETVER >= 20090107 +packetLen(0x00b3, 2) // ZC_RESTART_ACK +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00b4 +#if PACKETVER >= 20090325 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20090318 +packetLen(0x00b4, 6) // ZC_SAY_DIALOG +#elif PACKETVER >= 20090311 +packetLen(0x00b4, 37) // ZC_SAY_DIALOG +#elif PACKETVER >= 20090225 +packetLen(0x00b4, 30) // ZC_SAY_DIALOG +#elif PACKETVER >= 20090211 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#elif PACKETVER >= 20090204 +packetLen(0x00b4, 7) // ZC_SAY_DIALOG +#elif PACKETVER >= 20090129 +packetLen(0x00b4, 2) // ZC_SAY_DIALOG +#elif PACKETVER >= 20090107 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG +#endif + +// Packet: 0x00b5 +#if PACKETVER >= 20090406 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20090318 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20090311 +packetLen(0x00b5, 3) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20090225 +packetLen(0x00b5, 32) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20090211 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20090204 +packetLen(0x00b5, 2) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20090120 +packetLen(0x00b5, -1) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20090114 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +#elif PACKETVER >= 20090107 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00b6 +#if PACKETVER >= 20090406 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20090311 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20090225 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20090218 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20090211 +packetLen(0x00b6, 2) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20090204 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20090129 +packetLen(0x00b6, 2) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20090120 +packetLen(0x00b6, -1) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20090114 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG +#elif PACKETVER >= 20090107 +packetLen(0x00b6, 26) // ZC_CLOSE_DIALOG +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00b7 +#if PACKETVER >= 20090406 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20090401 +packetLen(0x00b7, 3) // ZC_MENU_LIST +#elif PACKETVER >= 20090325 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20090318 +packetLen(0x00b7, 29) // ZC_MENU_LIST +#elif PACKETVER >= 20090311 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20090225 +packetLen(0x00b7, 2) // ZC_MENU_LIST +#elif PACKETVER >= 20090218 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20090211 +packetLen(0x00b7, 54) // ZC_MENU_LIST +#elif PACKETVER >= 20090204 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#elif PACKETVER >= 20090129 +packetLen(0x00b7, 2) // ZC_MENU_LIST +#elif PACKETVER >= 20090107 +packetLen(0x00b7, -1) // ZC_MENU_LIST +#endif + +// Packet: 0x00b8 +#if PACKETVER >= 20090406 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20090311 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20090225 +packetLen(0x00b8, 2) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20090218 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20090211 +packetLen(0x00b8, 33) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20090129 +packetLen(0x00b8, -1) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20090120 +packetLen(0x00b8, 10) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20090114 +packetLen(0x00b8, 2) // CZ_CHOOSE_MENU +#elif PACKETVER >= 20090107 +packetLen(0x00b8, 3) // CZ_CHOOSE_MENU +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00b9 +#if PACKETVER >= 20090406 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20090401 +packetLen(0x00b9, 9) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20090311 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20090225 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20090204 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20090129 +packetLen(0x00b9, 31) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20090114 +packetLen(0x00b9, -1) // CZ_REQ_NEXT_SCRIPT +#elif PACKETVER >= 20090107 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +#if PACKETVER >= 20090406 +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20090401 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20090318 +packetLen(0x00bb, 7) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20090311 +packetLen(0x00bb, 43) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20090211 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20090204 +packetLen(0x00bb, 4) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20090129 +packetLen(0x00bb, 9) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20090120 +packetLen(0x00bb, -1) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20090114 +packetLen(0x00bb, 10) // CZ_STATUS_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x00bb, 2) // CZ_STATUS_CHANGE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00bc +#if PACKETVER >= 20090406 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090401 +packetLen(0x00bc, 65) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090325 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090318 +packetLen(0x00bc, 2) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090311 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090225 +packetLen(0x00bc, 27) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090218 +packetLen(0x00bc, -1) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090211 +packetLen(0x00bc, 81) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090204 +packetLen(0x00bc, 15) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090129 +packetLen(0x00bc, 8) // ZC_STATUS_CHANGE_ACK +#elif PACKETVER >= 20090107 +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00bd +#if PACKETVER >= 20090406 +packetLen(0x00bd, 44) // ZC_STATUS +#elif PACKETVER >= 20090225 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20090218 +packetLen(0x00bd, 2) // ZC_STATUS +#elif PACKETVER >= 20090211 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20090204 +packetLen(0x00bd, 60) // ZC_STATUS +#elif PACKETVER >= 20090120 +packetLen(0x00bd, -1) // ZC_STATUS +#elif PACKETVER >= 20090114 +packetLen(0x00bd, 10) // ZC_STATUS +#elif PACKETVER >= 20090107 +packetLen(0x00bd, 14) // ZC_STATUS +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00be +#if PACKETVER >= 20090406 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20090401 +packetLen(0x00be, 30) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20090325 +packetLen(0x00be, 6) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20090318 +packetLen(0x00be, 10) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20090311 +packetLen(0x00be, 2) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20090218 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20090211 +packetLen(0x00be, 6) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20090120 +packetLen(0x00be, -1) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20090114 +packetLen(0x00be, 14) // ZC_STATUS_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x00be, 5) // ZC_STATUS_CHANGE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00bf +#if PACKETVER >= 20090406 +packetLen(0x00bf, 3) // CZ_REQ_EMOTION +#elif PACKETVER >= 20090325 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20090318 +packetLen(0x00bf, 18) // CZ_REQ_EMOTION +#elif PACKETVER >= 20090311 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20090225 +packetLen(0x00bf, 4) // CZ_REQ_EMOTION +#elif PACKETVER >= 20090211 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20090204 +packetLen(0x00bf, 28) // CZ_REQ_EMOTION +#elif PACKETVER >= 20090129 +packetLen(0x00bf, -1) // CZ_REQ_EMOTION +#elif PACKETVER >= 20090114 +packetLen(0x00bf, 6) // CZ_REQ_EMOTION +#elif PACKETVER >= 20090107 +packetLen(0x00bf, 86) // CZ_REQ_EMOTION +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00c0 +#if PACKETVER >= 20090406 +packetLen(0x00c0, 7) // ZC_EMOTION +#elif PACKETVER >= 20090401 +packetLen(0x00c0, 10) // ZC_EMOTION +#elif PACKETVER >= 20090325 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20090318 +packetLen(0x00c0, 4) // ZC_EMOTION +#elif PACKETVER >= 20090129 +packetLen(0x00c0, -1) // ZC_EMOTION +#elif PACKETVER >= 20090120 +packetLen(0x00c0, 6) // ZC_EMOTION +#elif PACKETVER >= 20090114 +packetLen(0x00c0, 31) // ZC_EMOTION +#elif PACKETVER >= 20090107 +packetLen(0x00c0, 54) // ZC_EMOTION +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00c1 +#if PACKETVER >= 20090406 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090401 +packetLen(0x00c1, 67) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090318 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090311 +packetLen(0x00c1, 10) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090225 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090218 +packetLen(0x00c1, 54) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090211 +packetLen(0x00c1, 30) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090204 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090129 +packetLen(0x00c1, 8) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090120 +packetLen(0x00c1, 6) // CZ_REQ_USER_COUNT +#elif PACKETVER >= 20090107 +packetLen(0x00c1, -1) // CZ_REQ_USER_COUNT +#endif + +// Packet: 0x00c2 +#if PACKETVER >= 20090406 +packetLen(0x00c2, 6) // ZC_USER_COUNT +#elif PACKETVER >= 20090401 +packetLen(0x00c2, 30) // ZC_USER_COUNT +#elif PACKETVER >= 20090318 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20090311 +packetLen(0x00c2, 12) // ZC_USER_COUNT +#elif PACKETVER >= 20090225 +packetLen(0x00c2, 9) // ZC_USER_COUNT +#elif PACKETVER >= 20090218 +packetLen(0x00c2, 14) // ZC_USER_COUNT +#elif PACKETVER >= 20090204 +packetLen(0x00c2, -1) // ZC_USER_COUNT +#elif PACKETVER >= 20090129 +packetLen(0x00c2, 60) // ZC_USER_COUNT +#elif PACKETVER >= 20090120 +packetLen(0x00c2, 5) // ZC_USER_COUNT +#elif PACKETVER >= 20090114 +packetLen(0x00c2, 4) // ZC_USER_COUNT +#elif PACKETVER >= 20090107 +packetLen(0x00c2, 2) // ZC_USER_COUNT +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00c3 +#if PACKETVER >= 20090406 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20090401 +packetLen(0x00c3, 10) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20090325 +packetLen(0x00c3, -1) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20090318 +packetLen(0x00c3, 6) // ZC_SPRITE_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x00c3, 5) // ZC_SPRITE_CHANGE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00c4 +#if PACKETVER >= 20090406 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20090401 +packetLen(0x00c4, 9) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20090218 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20090211 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20090114 +packetLen(0x00c4, -1) // ZC_SELECT_DEALTYPE +#elif PACKETVER >= 20090107 +packetLen(0x00c4, 3) // ZC_SELECT_DEALTYPE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00c5 +#if PACKETVER >= 20090406 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20090318 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20090311 +packetLen(0x00c5, 8) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20090218 +packetLen(0x00c5, 2) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20090211 +packetLen(0x00c5, 32) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20090129 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20090120 +packetLen(0x00c5, 2) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20090114 +packetLen(0x00c5, 6) // CZ_ACK_SELECT_DEALTYPE +#elif PACKETVER >= 20090107 +packetLen(0x00c5, -1) // CZ_ACK_SELECT_DEALTYPE +#endif + +// Packet: 0x00c6 +#if PACKETVER >= 20090325 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090318 +packetLen(0x00c6, 6) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090225 +packetLen(0x00c6, 14) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090218 +packetLen(0x00c6, 8) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090204 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x00c6, 57) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x00c6, 6) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x00c6, 6) // ZC_PC_PURCHASE_ITEMLIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00c7 +#if PACKETVER >= 20090406 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090401 +packetLen(0x00c7, 5) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090325 +packetLen(0x00c7, 53) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090318 +packetLen(0x00c7, 54) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x00c7, 27) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090225 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090218 +packetLen(0x00c7, 23) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090211 +packetLen(0x00c7, 57) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x00c7, 2) // ZC_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST +#endif + +// Packet: 0x00c8 +#if PACKETVER >= 20090401 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090325 +packetLen(0x00c8, 58) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090318 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x00c8, 8) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090218 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090211 +packetLen(0x00c8, 9) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090204 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x00c8, 26) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x00c8, 8) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x00c8, 42) // CZ_PC_PURCHASE_ITEMLIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00c9 +#if PACKETVER >= 20090401 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090325 +packetLen(0x00c9, 2) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090318 +packetLen(0x00c9, 8) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x00c9, 29) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090218 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090211 +packetLen(0x00c9, 30) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090204 +packetLen(0x00c9, 22) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x00c9, 15) // CZ_PC_SELL_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST +#endif + +// Packet: 0x00ca +#if PACKETVER >= 20090406 +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090401 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090325 +packetLen(0x00ca, 282) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090318 +packetLen(0x00ca, 4) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090311 +packetLen(0x00ca, 7) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090225 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090218 +packetLen(0x00ca, 22) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090211 +packetLen(0x00ca, 21) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090204 +packetLen(0x00ca, 6) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090114 +packetLen(0x00ca, -1) // ZC_PC_PURCHASE_RESULT +#elif PACKETVER >= 20090107 +packetLen(0x00ca, 10) // ZC_PC_PURCHASE_RESULT +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +#if PACKETVER >= 20090406 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20090401 +packetLen(0x00cc, 7) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20090325 +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20090318 +packetLen(0x00cc, 9) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20090204 +packetLen(0x00cc, -1) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20090129 +packetLen(0x00cc, 12) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20090120 +packetLen(0x00cc, 39) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20090114 +packetLen(0x00cc, 8) // CZ_DISCONNECT_CHARACTER +#elif PACKETVER >= 20090107 +packetLen(0x00cc, 5) // CZ_DISCONNECT_CHARACTER +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +#if PACKETVER >= 20090406 +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20090401 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20090325 +packetLen(0x00ce, 4) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20090318 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20090311 +packetLen(0x00ce, 3) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20090204 +packetLen(0x00ce, -1) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20090129 +packetLen(0x00ce, 14) // CZ_DISCONNECT_ALL_CHARACTER +#elif PACKETVER >= 20090107 +packetLen(0x00ce, 8) // CZ_DISCONNECT_ALL_CHARACTER +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00cf +#if PACKETVER >= 20090406 +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090401 +packetLen(0x00cf, 16) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090325 +packetLen(0x00cf, 282) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090318 +packetLen(0x00cf, 44) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090311 +packetLen(0x00cf, 14) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090225 +packetLen(0x00cf, 79) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090211 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090204 +packetLen(0x00cf, 2) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090129 +packetLen(0x00cf, 10) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090120 +packetLen(0x00cf, -1) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090114 +packetLen(0x00cf, 2) // CZ_SETTING_WHISPER_PC +#elif PACKETVER >= 20090107 +packetLen(0x00cf, 14) // CZ_SETTING_WHISPER_PC +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00d0 +#if PACKETVER >= 20090406 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090401 +packetLen(0x00d0, 8) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090325 +packetLen(0x00d0, 37) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090318 +packetLen(0x00d0, 30) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090225 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090218 +packetLen(0x00d0, 2) // CZ_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090107 +packetLen(0x00d0, -1) // CZ_SETTING_WHISPER_STATE +#endif + +// Packet: 0x00d1 +#if PACKETVER >= 20090406 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20090325 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20090318 +packetLen(0x00d1, 2) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20090311 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20090218 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20090211 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20090129 +packetLen(0x00d1, -1) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20090120 +packetLen(0x00d1, 6) // ZC_SETTING_WHISPER_PC +#elif PACKETVER >= 20090107 +packetLen(0x00d1, 16) // ZC_SETTING_WHISPER_PC +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00d2 +#if PACKETVER >= 20090406 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090401 +packetLen(0x00d2, 30) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090325 +packetLen(0x00d2, 5) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090311 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090225 +packetLen(0x00d2, 2) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090120 +packetLen(0x00d2, -1) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090114 +packetLen(0x00d2, 6) // ZC_SETTING_WHISPER_STATE +#elif PACKETVER >= 20090107 +packetLen(0x00d2, 8) // ZC_SETTING_WHISPER_STATE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00d3 +#if PACKETVER >= 20090401 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20090325 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20090318 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20090311 +packetLen(0x00d3, 12) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20090225 +packetLen(0x00d3, 10) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20090218 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20090204 +packetLen(0x00d3, -1) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20090129 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20090120 +packetLen(0x00d3, 7) // CZ_REQ_WHISPER_LIST +#elif PACKETVER >= 20090107 +packetLen(0x00d3, 6) // CZ_REQ_WHISPER_LIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +#if PACKETVER >= 20090401 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20090325 +packetLen(0x00d5, 12) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20090318 +packetLen(0x00d5, 26) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20090311 +packetLen(0x00d5, 30) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20090114 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM +#elif PACKETVER >= 20090107 +packetLen(0x00d5, 58) // CZ_CREATE_CHATROOM +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00d6 +#if PACKETVER >= 20090406 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20090401 +packetLen(0x00d6, 11) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20090318 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20090311 +packetLen(0x00d6, 2) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20090225 +packetLen(0x00d6, 4) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20090218 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20090211 +packetLen(0x00d6, 59) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20090204 +packetLen(0x00d6, 8) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20090114 +packetLen(0x00d6, -1) // ZC_ACK_CREATE_CHATROOM +#elif PACKETVER >= 20090107 +packetLen(0x00d6, 18) // ZC_ACK_CREATE_CHATROOM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00d7 +#if PACKETVER >= 20090406 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090401 +packetLen(0x00d7, 6) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090325 +packetLen(0x00d7, 10) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090318 +packetLen(0x00d7, 11) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090225 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090218 +packetLen(0x00d7, 26) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090211 +packetLen(0x00d7, 10) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090204 +packetLen(0x00d7, 23) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090129 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090120 +packetLen(0x00d7, 2) // ZC_ROOM_NEWENTRY +#elif PACKETVER >= 20090107 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY +#endif + +// Packet: 0x00d8 +#if PACKETVER >= 20090406 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090401 +packetLen(0x00d8, 14) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090325 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090311 +packetLen(0x00d8, 2) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090225 +packetLen(0x00d8, 97) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090218 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090211 +packetLen(0x00d8, 3) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090204 +packetLen(0x00d8, 42) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090129 +packetLen(0x00d8, 15) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090120 +packetLen(0x00d8, 4) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090114 +packetLen(0x00d8, -1) // ZC_DESTROY_ROOM +#elif PACKETVER >= 20090107 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00d9 +#if PACKETVER >= 20090406 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20090401 +packetLen(0x00d9, 3) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20090325 +packetLen(0x00d9, 26) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20090318 +packetLen(0x00d9, 4) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20090311 +packetLen(0x00d9, 2) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20090225 +packetLen(0x00d9, 58) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20090218 +packetLen(0x00d9, 7) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20090211 +packetLen(0x00d9, 5) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20090204 +packetLen(0x00d9, 3) // CZ_REQ_ENTER_ROOM +#elif PACKETVER >= 20090107 +packetLen(0x00d9, 55) // CZ_REQ_ENTER_ROOM +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00da +#if PACKETVER >= 20090406 +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20090311 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20090225 +packetLen(0x00da, 6) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20090218 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20090211 +packetLen(0x00da, 19) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20090204 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20090129 +packetLen(0x00da, 2) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20090114 +packetLen(0x00da, -1) // ZC_REFUSE_ENTER_ROOM +#elif PACKETVER >= 20090107 +packetLen(0x00da, 31) // ZC_REFUSE_ENTER_ROOM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00db +#if PACKETVER >= 20090401 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20090325 +packetLen(0x00db, 9) // ZC_ENTER_ROOM +#elif PACKETVER >= 20090311 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20090225 +packetLen(0x00db, 10) // ZC_ENTER_ROOM +#elif PACKETVER >= 20090218 +packetLen(0x00db, 8) // ZC_ENTER_ROOM +#elif PACKETVER >= 20090120 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#elif PACKETVER >= 20090114 +packetLen(0x00db, 8) // ZC_ENTER_ROOM +#elif PACKETVER >= 20090107 +packetLen(0x00db, -1) // ZC_ENTER_ROOM +#endif + +// Packet: 0x00dc +#if PACKETVER >= 20090406 +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090401 +packetLen(0x00dc, 282) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090318 +packetLen(0x00dc, 3) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090311 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090225 +packetLen(0x00dc, 26) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090218 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090211 +packetLen(0x00dc, 67) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090129 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090120 +packetLen(0x00dc, 26) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090114 +packetLen(0x00dc, 4) // ZC_MEMBER_NEWENTRY +#elif PACKETVER >= 20090107 +packetLen(0x00dc, -1) // ZC_MEMBER_NEWENTRY +#endif + +// Packet: 0x00dd +#if PACKETVER >= 20090406 +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20090401 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20090325 +packetLen(0x00dd, 30) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20090225 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20090218 +packetLen(0x00dd, 8) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20090129 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20090120 +packetLen(0x00dd, 11) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20090114 +packetLen(0x00dd, -1) // ZC_MEMBER_EXIT +#elif PACKETVER >= 20090107 +packetLen(0x00dd, 30) // ZC_MEMBER_EXIT +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00de +#if PACKETVER >= 20090406 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090401 +packetLen(0x00de, 10) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090325 +packetLen(0x00de, 6) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090311 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090225 +packetLen(0x00de, 5) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090218 +packetLen(0x00de, 4) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090211 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090204 +packetLen(0x00de, 32) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090129 +packetLen(0x00de, 5) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090120 +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090114 +packetLen(0x00de, 282) // CZ_CHANGE_CHATROOM +#elif PACKETVER >= 20090107 +packetLen(0x00de, 26) // CZ_CHANGE_CHATROOM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00df +#if PACKETVER >= 20090406 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090401 +packetLen(0x00df, 33) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090325 +packetLen(0x00df, 6) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090311 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090225 +packetLen(0x00df, 2) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090218 +packetLen(0x00df, 27) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090211 +packetLen(0x00df, 3) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090204 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090129 +packetLen(0x00df, 2) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090120 +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090114 +packetLen(0x00df, 3) // ZC_CHANGE_CHATROOM +#elif PACKETVER >= 20090107 +packetLen(0x00df, 22) // ZC_CHANGE_CHATROOM +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00e0 +#if PACKETVER >= 20090406 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20090401 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20090311 +packetLen(0x00e0, 5) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20090218 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20090211 +packetLen(0x00e0, 11) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20090204 +packetLen(0x00e0, 33) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20090114 +packetLen(0x00e0, -1) // CZ_REQ_ROLE_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x00e0, 10) // CZ_REQ_ROLE_CHANGE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00e1 +#if PACKETVER >= 20090406 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20090401 +packetLen(0x00e1, 6) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20090325 +packetLen(0x00e1, 7) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20090318 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20090311 +packetLen(0x00e1, 14) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20090218 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20090211 +packetLen(0x00e1, 23) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20090120 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20090114 +packetLen(0x00e1, 28) // ZC_ROLE_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x00e1, -1) // ZC_ROLE_CHANGE +#endif + +// Packet: 0x00e2 +#if PACKETVER >= 20090406 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20090401 +packetLen(0x00e2, 3) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20090225 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20090218 +packetLen(0x00e2, 3) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20090120 +packetLen(0x00e2, -1) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20090114 +packetLen(0x00e2, 7) // CZ_REQ_EXPEL_MEMBER +#elif PACKETVER >= 20090107 +packetLen(0x00e2, 8) // CZ_REQ_EXPEL_MEMBER +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00e3 +#if PACKETVER >= 20090406 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090401 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090325 +packetLen(0x00e3, 7) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090318 +packetLen(0x00e3, 55) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090311 +packetLen(0x00e3, 15) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090225 +packetLen(0x00e3, 7) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090218 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090211 +packetLen(0x00e3, 21) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090129 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090120 +packetLen(0x00e3, 6) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090114 +packetLen(0x00e3, -1) // CZ_EXIT_ROOM +#elif PACKETVER >= 20090107 +packetLen(0x00e3, 26) // CZ_EXIT_ROOM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00e4 +#if PACKETVER >= 20090401 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00e4, 8) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090218 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00e4, 10) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00e4, -1) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00e4, 20) // CZ_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00e4, 7) // CZ_REQ_EXCHANGE_ITEM +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00e5 +#if PACKETVER >= 20090406 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090318 +packetLen(0x00e5, 68) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090311 +packetLen(0x00e5, 11) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090225 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090218 +packetLen(0x00e5, 37) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00e5, 6) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00e5, -1) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090120 +packetLen(0x00e5, 5) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090114 +packetLen(0x00e5, 2) // ZC_REQ_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00e5, 2) // ZC_REQ_EXCHANGE_ITEM +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00e6 +#if PACKETVER >= 20090406 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090401 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00e6, 86) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090120 +packetLen(0x00e6, 58) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090114 +packetLen(0x00e6, 57) // CZ_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00e6, -1) // CZ_ACK_EXCHANGE_ITEM +#endif + +// Packet: 0x00e7 +#if PACKETVER >= 20090406 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090401 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00e7, 55) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090218 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00e7, 2) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00e7, -1) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090120 +packetLen(0x00e7, 68) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090114 +packetLen(0x00e7, 6) // ZC_ACK_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00e7, 42) // ZC_ACK_EXCHANGE_ITEM +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00e8 +#if PACKETVER >= 20090406 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090311 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090225 +packetLen(0x00e8, 7) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00e8, 58) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00e8, 14) // CZ_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00e8, -1) // CZ_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00e9 +#if PACKETVER >= 20090406 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090318 +packetLen(0x00e9, 2) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090311 +packetLen(0x00e9, 22) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090225 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090218 +packetLen(0x00e9, 5) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00e9, 10) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00e9, 33) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00e9, 32) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090120 +packetLen(0x00e9, 54) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00e9, -1) // ZC_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00ea +#if PACKETVER >= 20090406 +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090401 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00ea, 4) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090318 +packetLen(0x00ea, 6) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090311 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090225 +packetLen(0x00ea, 12) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090218 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00ea, 282) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090120 +packetLen(0x00ea, 3) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090114 +packetLen(0x00ea, 6) // ZC_ACK_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00ea, -1) // ZC_ACK_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00eb +#if PACKETVER >= 20090406 +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090401 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00eb, 10) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090318 +packetLen(0x00eb, 15) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090311 +packetLen(0x00eb, 11) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090225 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090218 +packetLen(0x00eb, 10) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00eb, 6) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00eb, 71) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090114 +packetLen(0x00eb, -1) // CZ_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00eb, 14) // CZ_CONCLUDE_EXCHANGE_ITEM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00ec +#if PACKETVER >= 20090406 +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090401 +packetLen(0x00ec, 60) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090318 +packetLen(0x00ec, 27) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090311 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090225 +packetLen(0x00ec, 5) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090218 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00ec, 15) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00ec, -1) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00ec, 4) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090120 +packetLen(0x00ec, 2) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090114 +packetLen(0x00ec, 6) // ZC_CONCLUDE_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00ec, 18) // ZC_CONCLUDE_EXCHANGE_ITEM +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00ed +#if PACKETVER >= 20090406 +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090225 +packetLen(0x00ed, -1) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090218 +packetLen(0x00ed, 3) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00ed, 22) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00ed, 6) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00ed, 282) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090114 +packetLen(0x00ed, 8) // CZ_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00ed, 7) // CZ_CANCEL_EXCHANGE_ITEM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00ee +#if PACKETVER >= 20090401 +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00ee, 8) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090318 +packetLen(0x00ee, 282) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090311 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090225 +packetLen(0x00ee, 4) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00ee, 24) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090120 +packetLen(0x00ee, 8) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090114 +packetLen(0x00ee, -1) // ZC_CANCEL_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00ee, 16) // ZC_CANCEL_EXCHANGE_ITEM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00ef +#if PACKETVER >= 20090406 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090401 +packetLen(0x00ef, 8) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x00ef, 30) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090311 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090225 +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090218 +packetLen(0x00ef, 16) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00ef, 43) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00ef, 30) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090120 +packetLen(0x00ef, 81) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090114 +packetLen(0x00ef, -1) // CZ_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00ef, 39) // CZ_EXEC_EXCHANGE_ITEM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00f0 +#if PACKETVER >= 20090406 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090401 +packetLen(0x00f0, 7) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090318 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090311 +packetLen(0x00f0, 34) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090211 +packetLen(0x00f0, -1) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x00f0, 31) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x00f0, 26) // ZC_EXEC_EXCHANGE_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x00f0, 26) // ZC_EXEC_EXCHANGE_ITEM +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +#if PACKETVER >= 20090406 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090401 +packetLen(0x00f2, 2) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090325 +packetLen(0x00f2, 32) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090318 +packetLen(0x00f2, 8) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090311 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090225 +packetLen(0x00f2, 8) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090218 +packetLen(0x00f2, 3) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090211 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090204 +packetLen(0x00f2, 10) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090129 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090120 +packetLen(0x00f2, 11) // ZC_NOTIFY_STOREITEM_COUNTINFO +#elif PACKETVER >= 20090107 +packetLen(0x00f2, -1) // ZC_NOTIFY_STOREITEM_COUNTINFO +#endif + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +#if PACKETVER >= 20090406 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20090401 +packetLen(0x00f4, 18) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20090311 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20090225 +packetLen(0x00f4, 2) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20090218 +packetLen(0x00f4, 14) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20090211 +packetLen(0x00f4, 53) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20090129 +packetLen(0x00f4, -1) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20090120 +packetLen(0x00f4, 43) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20090114 +packetLen(0x00f4, 26) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20090107 +packetLen(0x00f4, 14) // ZC_ADD_ITEM_TO_STORE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +#if PACKETVER >= 20090406 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20090401 +packetLen(0x00f6, 4) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20090318 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20090311 +packetLen(0x00f6, 10) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20090225 +packetLen(0x00f6, 2) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20090218 +packetLen(0x00f6, 30) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20090129 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20090120 +packetLen(0x00f6, 21) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20090114 +packetLen(0x00f6, -1) // ZC_DELETE_ITEM_FROM_STORE +#elif PACKETVER >= 20090107 +packetLen(0x00f6, 26) // ZC_DELETE_ITEM_FROM_STORE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +#if PACKETVER >= 20090401 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE +#elif PACKETVER >= 20090318 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20090311 +packetLen(0x00f8, 10) // ZC_CLOSE_STORE +#elif PACKETVER >= 20090225 +packetLen(0x00f8, 3) // ZC_CLOSE_STORE +#elif PACKETVER >= 20090218 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20090211 +packetLen(0x00f8, 65) // ZC_CLOSE_STORE +#elif PACKETVER >= 20090204 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#elif PACKETVER >= 20090129 +packetLen(0x00f8, 60) // ZC_CLOSE_STORE +#elif PACKETVER >= 20090107 +packetLen(0x00f8, -1) // ZC_CLOSE_STORE +#endif + +// Packet: 0x00f9 +#if PACKETVER >= 20090406 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP +#elif PACKETVER >= 20090325 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20090318 +packetLen(0x00f9, 11) // CZ_MAKE_GROUP +#elif PACKETVER >= 20090225 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20090218 +packetLen(0x00f9, 8) // CZ_MAKE_GROUP +#elif PACKETVER >= 20090211 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#elif PACKETVER >= 20090204 +packetLen(0x00f9, 39) // CZ_MAKE_GROUP +#elif PACKETVER >= 20090129 +packetLen(0x00f9, 10) // CZ_MAKE_GROUP +#elif PACKETVER >= 20090120 +packetLen(0x00f9, 12) // CZ_MAKE_GROUP +#elif PACKETVER >= 20090107 +packetLen(0x00f9, -1) // CZ_MAKE_GROUP +#endif + +// Packet: 0x00fa +#if PACKETVER >= 20090406 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20090325 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20090318 +packetLen(0x00fa, 20) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20090311 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20090225 +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20090218 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20090211 +packetLen(0x00fa, 114) // ZC_ACK_MAKE_GROUP +#elif PACKETVER >= 20090107 +packetLen(0x00fa, -1) // ZC_ACK_MAKE_GROUP +#endif + +// Packet: 0x00fb +#if PACKETVER >= 20090406 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20090401 +packetLen(0x00fb, 7) // ZC_GROUP_LIST +#elif PACKETVER >= 20090318 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20090311 +packetLen(0x00fb, 36) // ZC_GROUP_LIST +#elif PACKETVER >= 20090225 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20090218 +packetLen(0x00fb, 8) // ZC_GROUP_LIST +#elif PACKETVER >= 20090211 +packetLen(0x00fb, 7) // ZC_GROUP_LIST +#elif PACKETVER >= 20090204 +packetLen(0x00fb, 6) // ZC_GROUP_LIST +#elif PACKETVER >= 20090129 +packetLen(0x00fb, 3) // ZC_GROUP_LIST +#elif PACKETVER >= 20090120 +packetLen(0x00fb, -1) // ZC_GROUP_LIST +#elif PACKETVER >= 20090114 +packetLen(0x00fb, 16) // ZC_GROUP_LIST +#elif PACKETVER >= 20090107 +packetLen(0x00fb, 282) // ZC_GROUP_LIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00fc +#if PACKETVER >= 20090406 +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20090401 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20090325 +packetLen(0x00fc, 22) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20090120 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20090114 +packetLen(0x00fc, 3) // CZ_REQ_JOIN_GROUP +#elif PACKETVER >= 20090107 +packetLen(0x00fc, -1) // CZ_REQ_JOIN_GROUP +#endif + +// Packet: 0x00fd +#if PACKETVER >= 20090406 +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20090218 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20090211 +packetLen(0x00fd, 2) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20090204 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20090129 +packetLen(0x00fd, 7) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20090114 +packetLen(0x00fd, -1) // ZC_ACK_REQ_JOIN_GROUP +#elif PACKETVER >= 20090107 +packetLen(0x00fd, 10) // ZC_ACK_REQ_JOIN_GROUP +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x00fe +#if PACKETVER >= 20090406 +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20090401 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20090325 +packetLen(0x00fe, 67) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20090211 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20090204 +packetLen(0x00fe, 29) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20090129 +packetLen(0x00fe, 2) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20090114 +packetLen(0x00fe, -1) // ZC_REQ_JOIN_GROUP +#elif PACKETVER >= 20090107 +packetLen(0x00fe, 21) // ZC_REQ_JOIN_GROUP +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x00ff +#if PACKETVER >= 20090406 +packetLen(0x00ff, 10) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090401 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090325 +packetLen(0x00ff, 6) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090318 +packetLen(0x00ff, 4) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090218 +packetLen(0x00ff, 6) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090211 +packetLen(0x00ff, 30) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090204 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090129 +packetLen(0x00ff, 6) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090120 +packetLen(0x00ff, -1) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090114 +packetLen(0x00ff, 3) // CZ_JOIN_GROUP +#elif PACKETVER >= 20090107 +packetLen(0x00ff, 5) // CZ_JOIN_GROUP +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0100 +#if PACKETVER >= 20090406 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20090401 +packetLen(0x0100, 10) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20090311 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20090225 +packetLen(0x0100, 6) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20090218 +packetLen(0x0100, 81) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20090211 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20090204 +packetLen(0x0100, 5) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20090114 +packetLen(0x0100, -1) // CZ_REQ_LEAVE_GROUP +#elif PACKETVER >= 20090107 +packetLen(0x0100, 6) // CZ_REQ_LEAVE_GROUP +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0101 +#if PACKETVER >= 20090406 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20090225 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20090218 +packetLen(0x0101, 20) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20090120 +packetLen(0x0101, -1) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20090114 +packetLen(0x0101, 20) // ZC_GROUPINFO_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0102 +#if PACKETVER >= 20090406 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090401 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090318 +packetLen(0x0102, 10) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090311 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090225 +packetLen(0x0102, 11) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090218 +packetLen(0x0102, 7) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090211 +packetLen(0x0102, 282) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090204 +packetLen(0x0102, 8) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090129 +packetLen(0x0102, -1) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090114 +packetLen(0x0102, 30) // CZ_CHANGE_GROUPEXPOPTION +#elif PACKETVER >= 20090107 +packetLen(0x0102, 9) // CZ_CHANGE_GROUPEXPOPTION +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0103 +#if PACKETVER >= 20090406 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20090318 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20090311 +packetLen(0x0103, 2) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20090218 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20090211 +packetLen(0x0103, 54) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20090204 +packetLen(0x0103, 28) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20090129 +packetLen(0x0103, -1) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20090120 +packetLen(0x0103, 66) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20090114 +packetLen(0x0103, 11) // CZ_REQ_EXPEL_GROUP_MEMBER +#elif PACKETVER >= 20090107 +packetLen(0x0103, 6) // CZ_REQ_EXPEL_GROUP_MEMBER +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0104 +#if PACKETVER >= 20090406 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20090325 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20090318 +packetLen(0x0104, 8) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20090311 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20090225 +packetLen(0x0104, 26) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20090218 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20090211 +packetLen(0x0104, 26) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20090120 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20090114 +packetLen(0x0104, 6) // ZC_ADD_MEMBER_TO_GROUP +#elif PACKETVER >= 20090107 +packetLen(0x0104, -1) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0105 +#if PACKETVER >= 20090406 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20090401 +packetLen(0x0105, 10) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20090325 +packetLen(0x0105, 2) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20090204 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20090129 +packetLen(0x0105, 14) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20090114 +packetLen(0x0105, -1) // ZC_DELETE_MEMBER_FROM_GROUP +#elif PACKETVER >= 20090107 +packetLen(0x0105, 2) // ZC_DELETE_MEMBER_FROM_GROUP +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0106 +#if PACKETVER >= 20090406 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20090401 +packetLen(0x0106, 24) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20090325 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20090318 +packetLen(0x0106, 2) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20090211 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20090204 +packetLen(0x0106, 9) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20090129 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20090120 +packetLen(0x0106, 7) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20090114 +packetLen(0x0106, -1) // ZC_NOTIFY_HP_TO_GROUPM +#elif PACKETVER >= 20090107 +packetLen(0x0106, 6) // ZC_NOTIFY_HP_TO_GROUPM +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0107 +#if PACKETVER >= 20090406 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20090401 +packetLen(0x0107, 16) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20090325 +packetLen(0x0107, 14) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20090225 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20090218 +packetLen(0x0107, 4) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20090204 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20090129 +packetLen(0x0107, 23) // ZC_NOTIFY_POSITION_TO_GROUPM +#elif PACKETVER >= 20090107 +packetLen(0x0107, -1) // ZC_NOTIFY_POSITION_TO_GROUPM +#endif + +// Packet: 0x0108 +#if PACKETVER >= 20090325 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20090318 +packetLen(0x0108, 4) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20090129 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20090120 +packetLen(0x0108, 6) // CZ_REQUEST_CHAT_PARTY +#elif PACKETVER >= 20090107 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY +#endif + +// Packet: 0x0109 +#if PACKETVER >= 20090325 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20090318 +packetLen(0x0109, 81) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20090225 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20090218 +packetLen(0x0109, 8) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20090204 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20090129 +packetLen(0x0109, 6) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20090120 +packetLen(0x0109, 5) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20090114 +packetLen(0x0109, 3) // ZC_NOTIFY_CHAT_PARTY +#elif PACKETVER >= 20090107 +packetLen(0x0109, 11) // ZC_NOTIFY_CHAT_PARTY +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x010a +#if PACKETVER >= 20090406 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20090401 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20090325 +packetLen(0x010a, 26) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20090204 +packetLen(0x010a, -1) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20090129 +packetLen(0x010a, 22) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20090107 +packetLen(0x010a, 8) // ZC_MVP_GETTING_ITEM +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x010b +#if PACKETVER >= 20090401 +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20090325 +packetLen(0x010b, 17) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20090211 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20090204 +packetLen(0x010b, 14) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20090129 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20090120 +packetLen(0x010b, 2) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20090114 +packetLen(0x010b, -1) // ZC_MVP_GETTING_SPECIAL_EXP +#elif PACKETVER >= 20090107 +packetLen(0x010b, 23) // ZC_MVP_GETTING_SPECIAL_EXP +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x010c +#if PACKETVER >= 20090406 +packetLen(0x010c, 6) // ZC_MVP +#elif PACKETVER >= 20090401 +packetLen(0x010c, 2) // ZC_MVP +#elif PACKETVER >= 20090218 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20090211 +packetLen(0x010c, 2) // ZC_MVP +#elif PACKETVER >= 20090204 +packetLen(0x010c, -1) // ZC_MVP +#elif PACKETVER >= 20090129 +packetLen(0x010c, 27) // ZC_MVP +#elif PACKETVER >= 20090120 +packetLen(0x010c, 2) // ZC_MVP +#elif PACKETVER >= 20090114 +packetLen(0x010c, 8) // ZC_MVP +#elif PACKETVER >= 20090107 +packetLen(0x010c, 6) // ZC_MVP +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +#if PACKETVER >= 20090406 +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20090325 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20090318 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20090218 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20090211 +packetLen(0x010e, 86) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20090204 +packetLen(0x010e, -1) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20090129 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +#elif PACKETVER >= 20090107 +packetLen(0x010e, 6) // ZC_SKILLINFO_UPDATE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x010f +#if PACKETVER >= 20090325 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20090318 +packetLen(0x010f, 26) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20090225 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20090218 +packetLen(0x010f, 6) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20090120 +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20090114 +packetLen(0x010f, 43) // ZC_SKILLINFO_LIST +#elif PACKETVER >= 20090107 +packetLen(0x010f, 81) // ZC_SKILLINFO_LIST +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0110 +#if PACKETVER >= 20090406 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20090318 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20090311 +packetLen(0x0110, 9) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20090225 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20090218 +packetLen(0x0110, 29) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20090129 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20090120 +packetLen(0x0110, 30) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20090107 +packetLen(0x0110, -1) // ZC_ACK_TOUSESKILL +#endif + +// Packet: 0x0111 +#if PACKETVER >= 20090406 +packetLen(0x0111, 39) // ZC_ADD_SKILL +#elif PACKETVER >= 20090325 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20090318 +packetLen(0x0111, 20) // ZC_ADD_SKILL +#elif PACKETVER >= 20090218 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#elif PACKETVER >= 20090211 +packetLen(0x0111, 6) // ZC_ADD_SKILL +#elif PACKETVER >= 20090107 +packetLen(0x0111, -1) // ZC_ADD_SKILL +#endif + +// Packet: 0x0112 +#if PACKETVER >= 20090406 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20090401 +packetLen(0x0112, 3) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20090318 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20090311 +packetLen(0x0112, 6) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20090211 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20090204 +packetLen(0x0112, 6) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20090114 +packetLen(0x0112, -1) // CZ_UPGRADE_SKILLLEVEL +#elif PACKETVER >= 20090107 +packetLen(0x0112, 29) // CZ_UPGRADE_SKILLLEVEL +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +#if PACKETVER >= 20090406 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20090401 +packetLen(0x0114, 28) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20090325 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20090318 +packetLen(0x0114, 2) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20090211 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20090204 +packetLen(0x0114, 17) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20090129 +packetLen(0x0114, 182) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20090120 +packetLen(0x0114, -1) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20090114 +packetLen(0x0114, 10) // ZC_NOTIFY_SKILL +#elif PACKETVER >= 20090107 +packetLen(0x0114, 60) // ZC_NOTIFY_SKILL +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +#if PACKETVER >= 20090406 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20090325 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20090318 +packetLen(0x0117, 2) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20090311 +packetLen(0x0117, 282) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20090129 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20090120 +packetLen(0x0117, 30) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20090114 +packetLen(0x0117, 26) // ZC_NOTIFY_GROUNDSKILL +#elif PACKETVER >= 20090107 +packetLen(0x0117, -1) // ZC_NOTIFY_GROUNDSKILL +#endif + +// Packet: 0x0118 +#if PACKETVER >= 20090406 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20090401 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20090325 +packetLen(0x0118, 6) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20090318 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20090311 +packetLen(0x0118, 27) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20090225 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20090218 +packetLen(0x0118, 4) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20090114 +packetLen(0x0118, -1) // CZ_CANCEL_LOCKON +#elif PACKETVER >= 20090107 +packetLen(0x0118, 33) // CZ_CANCEL_LOCKON +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0119 +#if PACKETVER >= 20090406 +packetLen(0x0119, 13) // ZC_STATE_CHANGE +#elif PACKETVER >= 20090325 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20090318 +packetLen(0x0119, 6) // ZC_STATE_CHANGE +#elif PACKETVER >= 20090225 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20090218 +packetLen(0x0119, 97) // ZC_STATE_CHANGE +#elif PACKETVER >= 20090114 +packetLen(0x0119, -1) // ZC_STATE_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x0119, 30) // ZC_STATE_CHANGE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x011a +#if PACKETVER >= 20090406 +packetLen(0x011a, 15) // ZC_USE_SKILL +#elif PACKETVER >= 20090401 +packetLen(0x011a, 6) // ZC_USE_SKILL +#elif PACKETVER >= 20090325 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20090318 +packetLen(0x011a, 8) // ZC_USE_SKILL +#elif PACKETVER >= 20090311 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20090225 +packetLen(0x011a, 9) // ZC_USE_SKILL +#elif PACKETVER >= 20090218 +packetLen(0x011a, 3) // ZC_USE_SKILL +#elif PACKETVER >= 20090204 +packetLen(0x011a, -1) // ZC_USE_SKILL +#elif PACKETVER >= 20090129 +packetLen(0x011a, 282) // ZC_USE_SKILL +#elif PACKETVER >= 20090120 +packetLen(0x011a, 9) // ZC_USE_SKILL +#elif PACKETVER >= 20090114 +packetLen(0x011a, 8) // ZC_USE_SKILL +#elif PACKETVER >= 20090107 +packetLen(0x011a, 3) // ZC_USE_SKILL +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x011b +#if PACKETVER >= 20090406 +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090401 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090325 +packetLen(0x011b, 3) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090318 +packetLen(0x011b, 24) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090311 +packetLen(0x011b, 4) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090225 +packetLen(0x011b, 30) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090211 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090204 +packetLen(0x011b, 4) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090129 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090120 +packetLen(0x011b, 32) // CZ_SELECT_WARPPOINT +#elif PACKETVER >= 20090107 +packetLen(0x011b, -1) // CZ_SELECT_WARPPOINT +#endif + +// Packet: 0x011c +#if PACKETVER >= 20090406 +packetLen(0x011c, 68) // ZC_WARPLIST +#elif PACKETVER >= 20090325 +packetLen(0x011c, -1) // ZC_WARPLIST +#elif PACKETVER >= 20090318 +packetLen(0x011c, 282) // ZC_WARPLIST +#elif PACKETVER >= 20090311 +packetLen(0x011c, 58) // ZC_WARPLIST +#elif PACKETVER >= 20090225 +packetLen(0x011c, 26) // ZC_WARPLIST +#elif PACKETVER >= 20090218 +packetLen(0x011c, 14) // ZC_WARPLIST +#elif PACKETVER >= 20090107 +packetLen(0x011c, -1) // ZC_WARPLIST +#endif + +// Packet: 0x011d +#if PACKETVER >= 20090406 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090401 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090325 +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090318 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090311 +packetLen(0x011d, 30) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090225 +packetLen(0x011d, 10) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090211 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090204 +packetLen(0x011d, 32) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090129 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090120 +packetLen(0x011d, 182) // CZ_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090107 +packetLen(0x011d, -1) // CZ_REMEMBER_WARPPOINT +#endif + +// Packet: 0x011e +#if PACKETVER >= 20090406 +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090318 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090311 +packetLen(0x011e, 2) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090225 +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090218 +packetLen(0x011e, 60) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090211 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090204 +packetLen(0x011e, 22) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090120 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090114 +packetLen(0x011e, 2) // ZC_ACK_REMEMBER_WARPPOINT +#elif PACKETVER >= 20090107 +packetLen(0x011e, -1) // ZC_ACK_REMEMBER_WARPPOINT +#endif + +// Packet: 0x011f +#if PACKETVER >= 20090406 +packetLen(0x011f, 16) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20090401 +packetLen(0x011f, 2) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20090311 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20090225 +packetLen(0x011f, 6) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20090218 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20090211 +packetLen(0x011f, 3) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20090129 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20090120 +packetLen(0x011f, 282) // ZC_SKILL_ENTRY +#elif PACKETVER >= 20090107 +packetLen(0x011f, -1) // ZC_SKILL_ENTRY +#endif + +// Packet: 0x0120 +#if PACKETVER >= 20090406 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090401 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090325 +packetLen(0x0120, 9) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090311 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090225 +packetLen(0x0120, 15) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090218 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090211 +packetLen(0x0120, 8) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090204 +packetLen(0x0120, 10) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090120 +packetLen(0x0120, -1) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090114 +packetLen(0x0120, 12) // ZC_SKILL_DISAPPEAR +#elif PACKETVER >= 20090107 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0121 +#if PACKETVER >= 20090406 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20090318 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20090225 +packetLen(0x0121, 10) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20090218 +packetLen(0x0121, 31) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20090211 +packetLen(0x0121, 12) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20090204 +packetLen(0x0121, 6) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20090129 +packetLen(0x0121, -1) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20090120 +packetLen(0x0121, 2) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20090114 +packetLen(0x0121, 67) // ZC_NOTIFY_CARTITEM_COUNTINFO +#elif PACKETVER >= 20090107 +packetLen(0x0121, 10) // ZC_NOTIFY_CARTITEM_COUNTINFO +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0122 +#if PACKETVER >= 20090204 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x0122, 20) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x0122, 3) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x0122, 4) // ZC_CART_EQUIPMENT_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x0122, 9) // ZC_CART_EQUIPMENT_ITEMLIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0123 +#if PACKETVER >= 20090401 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20090325 +packetLen(0x0123, 10) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20090318 +packetLen(0x0123, 6) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20090225 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20090218 +packetLen(0x0123, 22) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x0123, 26) // ZC_CART_NORMAL_ITEMLIST +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0124 +#if PACKETVER >= 20090406 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20090325 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20090318 +packetLen(0x0124, 8) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20090218 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20090211 +packetLen(0x0124, 4) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20090204 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20090129 +packetLen(0x0124, 28) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20090114 +packetLen(0x0124, -1) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20090107 +packetLen(0x0124, 3) // ZC_ADD_ITEM_TO_CART +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0125 +#if PACKETVER >= 20090406 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20090318 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20090311 +packetLen(0x0125, 282) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20090225 +packetLen(0x0125, 7) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20090218 +packetLen(0x0125, 28) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20090211 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20090204 +packetLen(0x0125, 20) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20090129 +packetLen(0x0125, 6) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20090120 +packetLen(0x0125, 2) // ZC_DELETE_ITEM_FROM_CART +#elif PACKETVER >= 20090107 +packetLen(0x0125, -1) // ZC_DELETE_ITEM_FROM_CART +#endif + +// Packet: 0x0126 +#if PACKETVER >= 20090406 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090401 +packetLen(0x0126, 3) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090325 +packetLen(0x0126, 282) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090318 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090311 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090225 +packetLen(0x0126, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090218 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090211 +packetLen(0x0126, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090204 +packetLen(0x0126, 14) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090129 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090120 +packetLen(0x0126, 14) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090114 +packetLen(0x0126, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +#elif PACKETVER >= 20090107 +packetLen(0x0126, 60) // CZ_MOVE_ITEM_FROM_BODY_TO_CART +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0127 +#if PACKETVER >= 20090406 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090401 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090325 +packetLen(0x0127, 66) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090318 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090311 +packetLen(0x0127, 10) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090225 +packetLen(0x0127, 4) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090218 +packetLen(0x0127, 44) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090211 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090204 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090129 +packetLen(0x0127, 30) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090120 +packetLen(0x0127, 3) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090114 +packetLen(0x0127, -1) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +#elif PACKETVER >= 20090107 +packetLen(0x0127, 18) // CZ_MOVE_ITEM_FROM_CART_TO_BODY +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0128 +#if PACKETVER >= 20090406 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20090401 +packetLen(0x0128, 3) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20090325 +packetLen(0x0128, 7) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20090318 +packetLen(0x0128, 12) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20090311 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20090129 +packetLen(0x0128, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20090120 +packetLen(0x0128, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20090114 +packetLen(0x0128, 29) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +#elif PACKETVER >= 20090107 +packetLen(0x0128, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_CART +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0129 +#if PACKETVER >= 20090406 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20090401 +packetLen(0x0129, 6) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20090218 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20090211 +packetLen(0x0129, 30) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20090204 +packetLen(0x0129, 6) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20090129 +packetLen(0x0129, 10) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20090114 +packetLen(0x0129, -1) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +#elif PACKETVER >= 20090107 +packetLen(0x0129, 22) // CZ_MOVE_ITEM_FROM_CART_TO_STORE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x012a +#if PACKETVER >= 20090406 +packetLen(0x012a, 2) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090325 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090318 +packetLen(0x012a, 13) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090311 +packetLen(0x012a, 33) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090225 +packetLen(0x012a, 7) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090211 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090204 +packetLen(0x012a, 34) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090129 +packetLen(0x012a, 4) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090120 +packetLen(0x012a, 29) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090114 +packetLen(0x012a, -1) // CZ_REQ_CARTOFF +#elif PACKETVER >= 20090107 +packetLen(0x012a, 11) // CZ_REQ_CARTOFF +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +#if PACKETVER >= 20090406 +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20090401 +packetLen(0x012c, 6) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20090211 +packetLen(0x012c, -1) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20090204 +packetLen(0x012c, 13) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20090129 +packetLen(0x012c, 4) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20090120 +packetLen(0x012c, 282) // ZC_ACK_ADDITEM_TO_CART +#elif PACKETVER >= 20090107 +packetLen(0x012c, 79) // ZC_ACK_ADDITEM_TO_CART +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x012d +#if PACKETVER >= 20090406 +packetLen(0x012d, 4) // ZC_OPENSTORE +#elif PACKETVER >= 20090401 +packetLen(0x012d, 43) // ZC_OPENSTORE +#elif PACKETVER >= 20090325 +packetLen(0x012d, 4) // ZC_OPENSTORE +#elif PACKETVER >= 20090311 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20090225 +packetLen(0x012d, 22) // ZC_OPENSTORE +#elif PACKETVER >= 20090204 +packetLen(0x012d, -1) // ZC_OPENSTORE +#elif PACKETVER >= 20090129 +packetLen(0x012d, 79) // ZC_OPENSTORE +#elif PACKETVER >= 20090120 +packetLen(0x012d, 11) // ZC_OPENSTORE +#elif PACKETVER >= 20090114 +packetLen(0x012d, 13) // ZC_OPENSTORE +#elif PACKETVER >= 20090107 +packetLen(0x012d, -1) // ZC_OPENSTORE +#endif + +// Packet: 0x012e +#if PACKETVER >= 20090406 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20090401 +packetLen(0x012e, 14) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20090311 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20090225 +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20090129 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20090120 +packetLen(0x012e, 28) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20090114 +packetLen(0x012e, -1) // CZ_REQ_CLOSESTORE +#elif PACKETVER >= 20090107 +packetLen(0x012e, 65) // CZ_REQ_CLOSESTORE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +#if PACKETVER >= 20090406 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090401 +packetLen(0x0130, 7) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090325 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090318 +packetLen(0x0130, 7) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090311 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090225 +packetLen(0x0130, 8) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090211 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090204 +packetLen(0x0130, 7) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090129 +packetLen(0x0130, 8) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090120 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090114 +packetLen(0x0130, 30) // CZ_REQ_BUY_FROMMC +#elif PACKETVER >= 20090107 +packetLen(0x0130, -1) // CZ_REQ_BUY_FROMMC +#endif + +// Packet: 0x0131 +#if PACKETVER >= 20090406 +packetLen(0x0131, 86) // ZC_STORE_ENTRY +#elif PACKETVER >= 20090401 +packetLen(0x0131, 37) // ZC_STORE_ENTRY +#elif PACKETVER >= 20090325 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20090318 +packetLen(0x0131, 6) // ZC_STORE_ENTRY +#elif PACKETVER >= 20090311 +packetLen(0x0131, 17) // ZC_STORE_ENTRY +#elif PACKETVER >= 20090218 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20090211 +packetLen(0x0131, 7) // ZC_STORE_ENTRY +#elif PACKETVER >= 20090120 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#elif PACKETVER >= 20090114 +packetLen(0x0131, 5) // ZC_STORE_ENTRY +#elif PACKETVER >= 20090107 +packetLen(0x0131, -1) // ZC_STORE_ENTRY +#endif + +// Packet: 0x0132 +#if PACKETVER >= 20090406 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090401 +packetLen(0x0132, 11) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090318 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090311 +packetLen(0x0132, 28) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090225 +packetLen(0x0132, 39) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090218 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090211 +packetLen(0x0132, 27) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090204 +packetLen(0x0132, 7) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090129 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090120 +packetLen(0x0132, 2) // ZC_DISAPPEAR_ENTRY +#elif PACKETVER >= 20090107 +packetLen(0x0132, -1) // ZC_DISAPPEAR_ENTRY +#endif + +// Packet: 0x0133 +#if PACKETVER >= 20090325 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090318 +packetLen(0x0133, 4) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090311 +packetLen(0x0133, 60) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090225 +packetLen(0x0133, 8) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090218 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090211 +packetLen(0x0133, 10) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090204 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090129 +packetLen(0x0133, 68) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090107 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC +#endif + +// Packet: 0x0134 +#if PACKETVER >= 20090406 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090401 +packetLen(0x0134, 29) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090325 +packetLen(0x0134, 2) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090318 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090311 +packetLen(0x0134, 58) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090225 +packetLen(0x0134, 4) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090218 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090211 +packetLen(0x0134, 3) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090204 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090129 +packetLen(0x0134, 6) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090120 +packetLen(0x0134, 10) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090114 +packetLen(0x0134, 6) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#elif PACKETVER >= 20090107 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC +#endif + +// Packet: 0x0135 +#if PACKETVER >= 20090406 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20090401 +packetLen(0x0135, 97) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20090311 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20090225 +packetLen(0x0135, 3) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20090218 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20090211 +packetLen(0x0135, 44) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20090204 +packetLen(0x0135, 282) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20090129 +packetLen(0x0135, 59) // ZC_PC_PURCHASE_RESULT_FROMMC +#elif PACKETVER >= 20090107 +packetLen(0x0135, -1) // ZC_PC_PURCHASE_RESULT_FROMMC +#endif + +// Packet: 0x0136 +#if PACKETVER >= 20090401 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20090325 +packetLen(0x0136, 53) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20090318 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x0136, 2) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20090225 +packetLen(0x0136, 30) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20090218 +packetLen(0x0136, 26) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x0136, 16) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x0136, 26) // ZC_PC_PURCHASE_MYITEMLIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0137 +#if PACKETVER >= 20090406 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20090325 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20090318 +packetLen(0x0137, 16) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20090311 +packetLen(0x0137, 3) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20090225 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20090218 +packetLen(0x0137, 3) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20090211 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20090204 +packetLen(0x0137, 68) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20090129 +packetLen(0x0137, 2) // ZC_DELETEITEM_FROM_MCSTORE +#elif PACKETVER >= 20090107 +packetLen(0x0137, -1) // ZC_DELETEITEM_FROM_MCSTORE +#endif + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +#if PACKETVER >= 20090406 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20090211 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20090204 +packetLen(0x0139, 21) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20090129 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20090120 +packetLen(0x0139, 54) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#elif PACKETVER >= 20090107 +packetLen(0x0139, -1) // ZC_ATTACK_FAILURE_FOR_DISTANCE +#endif + +// Packet: 0x013a +#if PACKETVER >= 20090406 +packetLen(0x013a, 4) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20090401 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20090325 +packetLen(0x013a, 2) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20090318 +packetLen(0x013a, 10) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20090311 +packetLen(0x013a, 8) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20090225 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20090218 +packetLen(0x013a, 8) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20090211 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20090204 +packetLen(0x013a, 4) // ZC_ATTACK_RANGE +#elif PACKETVER >= 20090107 +packetLen(0x013a, -1) // ZC_ATTACK_RANGE +#endif + +// Packet: 0x013b +#if PACKETVER >= 20090406 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090325 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090318 +packetLen(0x013b, 4) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090311 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090225 +packetLen(0x013b, 3) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090218 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090211 +packetLen(0x013b, 18) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090204 +packetLen(0x013b, 5) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090129 +packetLen(0x013b, 32) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090120 +packetLen(0x013b, -1) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090114 +packetLen(0x013b, 8) // ZC_ACTION_FAILURE +#elif PACKETVER >= 20090107 +packetLen(0x013b, 7) // ZC_ACTION_FAILURE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x013c +#if PACKETVER >= 20090406 +packetLen(0x013c, 4) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090401 +packetLen(0x013c, 34) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090325 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090318 +packetLen(0x013c, 30) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090225 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090218 +packetLen(0x013c, 28) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090211 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090204 +packetLen(0x013c, 7) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090129 +packetLen(0x013c, 3) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090114 +packetLen(0x013c, -1) // ZC_EQUIP_ARROW +#elif PACKETVER >= 20090107 +packetLen(0x013c, 5) // ZC_EQUIP_ARROW +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x013d +#if PACKETVER >= 20090406 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20090311 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20090225 +packetLen(0x013d, 6) // ZC_RECOVERY +#elif PACKETVER >= 20090204 +packetLen(0x013d, -1) // ZC_RECOVERY +#elif PACKETVER >= 20090129 +packetLen(0x013d, 53) // ZC_RECOVERY +#elif PACKETVER >= 20090120 +packetLen(0x013d, 36) // ZC_RECOVERY +#elif PACKETVER >= 20090114 +packetLen(0x013d, 3) // ZC_RECOVERY +#elif PACKETVER >= 20090107 +packetLen(0x013d, -1) // ZC_RECOVERY +#endif + +// Packet: 0x013e +#if PACKETVER >= 20090406 +packetLen(0x013e, 24) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090318 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090311 +packetLen(0x013e, 4) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090225 +packetLen(0x013e, 6) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090218 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090211 +packetLen(0x013e, 2) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090204 +packetLen(0x013e, 10) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090129 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090120 +packetLen(0x013e, 23) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090114 +packetLen(0x013e, -1) // ZC_USESKILL_ACK +#elif PACKETVER >= 20090107 +packetLen(0x013e, 182) // ZC_USESKILL_ACK +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x013f +#if PACKETVER >= 20090406 +packetLen(0x013f, 26) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090401 +packetLen(0x013f, 14) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090325 +packetLen(0x013f, 29) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090318 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090311 +packetLen(0x013f, 3) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090225 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090218 +packetLen(0x013f, 4) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090211 +packetLen(0x013f, 14) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090204 +packetLen(0x013f, 53) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090129 +packetLen(0x013f, 6) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090120 +packetLen(0x013f, -1) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090114 +packetLen(0x013f, 6) // CZ_ITEM_CREATE +#elif PACKETVER >= 20090107 +packetLen(0x013f, 10) // CZ_ITEM_CREATE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0140 +#if PACKETVER >= 20090406 +packetLen(0x0140, 22) // CZ_MOVETO_MAP +#elif PACKETVER >= 20090318 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20090311 +packetLen(0x0140, 2) // CZ_MOVETO_MAP +#elif PACKETVER >= 20090204 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20090129 +packetLen(0x0140, 30) // CZ_MOVETO_MAP +#elif PACKETVER >= 20090120 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#elif PACKETVER >= 20090114 +packetLen(0x0140, 4) // CZ_MOVETO_MAP +#elif PACKETVER >= 20090107 +packetLen(0x0140, -1) // CZ_MOVETO_MAP +#endif + +// Packet: 0x0141 +#if PACKETVER >= 20090406 +packetLen(0x0141, 14) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090325 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090318 +packetLen(0x0141, 11) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090311 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090225 +packetLen(0x0141, 17) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090218 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090211 +packetLen(0x0141, 14) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090204 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090129 +packetLen(0x0141, -1) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090120 +packetLen(0x0141, 6) // ZC_COUPLESTATUS +#elif PACKETVER >= 20090107 +packetLen(0x0141, 8) // ZC_COUPLESTATUS +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0142 +#if PACKETVER >= 20090406 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20090401 +packetLen(0x0142, 10) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20090211 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20090204 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20090129 +packetLen(0x0142, 30) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20090120 +packetLen(0x0142, 60) // ZC_OPEN_EDITDLG +#elif PACKETVER >= 20090107 +packetLen(0x0142, -1) // ZC_OPEN_EDITDLG +#endif + +// Packet: 0x0143 +#if PACKETVER >= 20090406 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20090401 +packetLen(0x0143, 30) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20090211 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20090204 +packetLen(0x0143, 26) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20090120 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20090114 +packetLen(0x0143, 22) // CZ_INPUT_EDITDLG +#elif PACKETVER >= 20090107 +packetLen(0x0143, -1) // CZ_INPUT_EDITDLG +#endif + +// Packet: 0x0144 +#if PACKETVER >= 20090406 +packetLen(0x0144, 23) // ZC_COMPASS +#elif PACKETVER >= 20090218 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20090211 +packetLen(0x0144, 4) // ZC_COMPASS +#elif PACKETVER >= 20090129 +packetLen(0x0144, -1) // ZC_COMPASS +#elif PACKETVER >= 20090120 +packetLen(0x0144, 6) // ZC_COMPASS +#elif PACKETVER >= 20090114 +packetLen(0x0144, 2) // ZC_COMPASS +#elif PACKETVER >= 20090107 +packetLen(0x0144, 6) // ZC_COMPASS +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +#if PACKETVER >= 20090406 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20090401 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20090325 +packetLen(0x0146, 3) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20090225 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20090218 +packetLen(0x0146, 3) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20090211 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20090204 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20090114 +packetLen(0x0146, -1) // CZ_CLOSE_DIALOG +#elif PACKETVER >= 20090107 +packetLen(0x0146, 2) // CZ_CLOSE_DIALOG +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0147 +#if PACKETVER >= 20090406 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20090401 +packetLen(0x0147, 3) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20090211 +packetLen(0x0147, -1) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20090204 +packetLen(0x0147, 114) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20090129 +packetLen(0x0147, 4) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20090120 +packetLen(0x0147, 30) // ZC_AUTORUN_SKILL +#elif PACKETVER >= 20090107 +packetLen(0x0147, 2) // ZC_AUTORUN_SKILL +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0148 +#if PACKETVER >= 20090406 +packetLen(0x0148, 8) // ZC_RESURRECTION +#elif PACKETVER >= 20090325 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20090311 +packetLen(0x0148, 26) // ZC_RESURRECTION +#elif PACKETVER >= 20090225 +packetLen(0x0148, 10) // ZC_RESURRECTION +#elif PACKETVER >= 20090218 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20090211 +packetLen(0x0148, 22) // ZC_RESURRECTION +#elif PACKETVER >= 20090204 +packetLen(0x0148, 30) // ZC_RESURRECTION +#elif PACKETVER >= 20090114 +packetLen(0x0148, -1) // ZC_RESURRECTION +#elif PACKETVER >= 20090107 +packetLen(0x0148, 2) // ZC_RESURRECTION +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0149 +#if PACKETVER >= 20090406 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20090401 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20090325 +packetLen(0x0149, 6) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20090318 +packetLen(0x0149, 22) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20090311 +packetLen(0x0149, 29) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20090225 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20090218 +packetLen(0x0149, 10) // CZ_REQ_GIVE_MANNER_POINT +#elif PACKETVER >= 20090107 +packetLen(0x0149, -1) // CZ_REQ_GIVE_MANNER_POINT +#endif + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +#if PACKETVER >= 20090406 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090401 +packetLen(0x014c, 6) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090325 +packetLen(0x014c, 10) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090318 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090311 +packetLen(0x014c, 4) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090225 +packetLen(0x014c, 57) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090204 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090129 +packetLen(0x014c, 5) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090120 +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090114 +packetLen(0x014c, 2) // ZC_MYGUILD_BASIC_INFO +#elif PACKETVER >= 20090107 +packetLen(0x014c, 6) // ZC_MYGUILD_BASIC_INFO +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x014d +#if PACKETVER >= 20090406 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20090401 +packetLen(0x014d, 6) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20090325 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20090318 +packetLen(0x014d, 39) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20090218 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20090211 +packetLen(0x014d, 30) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20090204 +packetLen(0x014d, 13) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20090129 +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20090114 +packetLen(0x014d, -1) // CZ_REQ_GUILD_MENUINTERFACE +#elif PACKETVER >= 20090107 +packetLen(0x014d, 282) // CZ_REQ_GUILD_MENUINTERFACE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +#if PACKETVER >= 20090406 +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090401 +packetLen(0x014f, 2) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090325 +packetLen(0x014f, 16) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090318 +packetLen(0x014f, 58) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090311 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090225 +packetLen(0x014f, 7) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090211 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090204 +packetLen(0x014f, 10) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090129 +packetLen(0x014f, 26) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090120 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090114 +packetLen(0x014f, 182) // CZ_REQ_GUILD_MENU +#elif PACKETVER >= 20090107 +packetLen(0x014f, -1) // CZ_REQ_GUILD_MENU +#endif + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +#if PACKETVER >= 20090318 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20090311 +packetLen(0x0154, 26) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20090225 +packetLen(0x0154, 17) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20090218 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20090211 +packetLen(0x0154, 4) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20090204 +packetLen(0x0154, 10) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20090129 +packetLen(0x0154, 21) // ZC_MEMBERMGR_INFO +#elif PACKETVER >= 20090107 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO +#endif + +// Packet: 0x0155 +#if PACKETVER >= 20090318 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20090311 +packetLen(0x0155, 3) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20090218 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20090211 +packetLen(0x0155, 12) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20090204 +packetLen(0x0155, 26) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20090114 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS +#elif PACKETVER >= 20090107 +packetLen(0x0155, 10) // CZ_REQ_CHANGE_MEMBERPOS +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +#if PACKETVER >= 20090406 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x0159, 34) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20090318 +packetLen(0x0159, 8) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20090311 +packetLen(0x0159, 18) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20090218 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20090211 +packetLen(0x0159, 5) // CZ_REQ_LEAVE_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x0159, -1) // CZ_REQ_LEAVE_GUILD +#endif + +// Packet: 0x015a +#if PACKETVER >= 20090406 +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x015a, 6) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x015a, 3) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090318 +packetLen(0x015a, 2) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090311 +packetLen(0x015a, 8) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090225 +packetLen(0x015a, 6) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090211 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x015a, 14) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090129 +packetLen(0x015a, -1) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090120 +packetLen(0x015a, 4) // ZC_ACK_LEAVE_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x015a, 3) // ZC_ACK_LEAVE_GUILD +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x015b +#if PACKETVER >= 20090406 +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x015b, 6) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x015b, 8) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20090225 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20090218 +packetLen(0x015b, 4) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20090211 +packetLen(0x015b, -1) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x015b, 6) // CZ_REQ_BAN_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x015b, 11) // CZ_REQ_BAN_GUILD +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x015c +#if PACKETVER >= 20090406 +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x015c, 8) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20090225 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20090218 +packetLen(0x015c, 3) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20090114 +packetLen(0x015c, -1) // ZC_ACK_BAN_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x015c, 14) // ZC_ACK_BAN_GUILD +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +#if PACKETVER >= 20090406 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20090401 +packetLen(0x015e, 26) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20090311 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20090225 +packetLen(0x015e, 21) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20090218 +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#elif PACKETVER >= 20090107 +packetLen(0x015e, -1) // ZC_ACK_DISORGANIZE_GUILD_RESULT +#endif + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +#if PACKETVER >= 20090406 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20090401 +packetLen(0x0160, 17) // ZC_POSITION_INFO +#elif PACKETVER >= 20090325 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20090311 +packetLen(0x0160, 6) // ZC_POSITION_INFO +#elif PACKETVER >= 20090225 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20090218 +packetLen(0x0160, 6) // ZC_POSITION_INFO +#elif PACKETVER >= 20090211 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20090204 +packetLen(0x0160, 8) // ZC_POSITION_INFO +#elif PACKETVER >= 20090129 +packetLen(0x0160, -1) // ZC_POSITION_INFO +#elif PACKETVER >= 20090120 +packetLen(0x0160, 6) // ZC_POSITION_INFO +#elif PACKETVER >= 20090107 +packetLen(0x0160, 37) // ZC_POSITION_INFO +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0161 +#if PACKETVER >= 20090406 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090401 +packetLen(0x0161, 10) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090325 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090318 +packetLen(0x0161, 7) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090311 +packetLen(0x0161, 14) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090225 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090218 +packetLen(0x0161, 2) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090204 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090129 +packetLen(0x0161, 54) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090120 +packetLen(0x0161, 6) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090114 +packetLen(0x0161, 30) // CZ_REG_CHANGE_GUILD_POSITIONINFO +#elif PACKETVER >= 20090107 +packetLen(0x0161, 4) // CZ_REG_CHANGE_GUILD_POSITIONINFO +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0162 +#if PACKETVER >= 20090406 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20090401 +packetLen(0x0162, 54) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20090225 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20090218 +packetLen(0x0162, 4) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20090120 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20090114 +packetLen(0x0162, 10) // ZC_GUILD_SKILLINFO +#elif PACKETVER >= 20090107 +packetLen(0x0162, 6) // ZC_GUILD_SKILLINFO +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0163 +#if PACKETVER >= 20090401 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20090325 +packetLen(0x0163, 8) // ZC_BAN_LIST +#elif PACKETVER >= 20090318 +packetLen(0x0163, 3) // ZC_BAN_LIST +#elif PACKETVER >= 20090225 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20090218 +packetLen(0x0163, 27) // ZC_BAN_LIST +#elif PACKETVER >= 20090211 +packetLen(0x0163, 22) // ZC_BAN_LIST +#elif PACKETVER >= 20090204 +packetLen(0x0163, -1) // ZC_BAN_LIST +#elif PACKETVER >= 20090129 +packetLen(0x0163, 9) // ZC_BAN_LIST +#elif PACKETVER >= 20090107 +packetLen(0x0163, -1) // ZC_BAN_LIST +#endif + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +#if PACKETVER >= 20090406 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x0165, 2) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20090218 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20090211 +packetLen(0x0165, 26) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20090129 +packetLen(0x0165, 6) // CZ_REQ_MAKE_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x0165, -1) // CZ_REQ_MAKE_GUILD +#endif + +// Packet: 0x0166 +#if PACKETVER >= 20090401 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20090325 +packetLen(0x0166, 4) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20090318 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20090311 +packetLen(0x0166, 26) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20090225 +packetLen(0x0166, 4) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20090218 +packetLen(0x0166, 2) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20090211 +packetLen(0x0166, 6) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20090204 +packetLen(0x0166, 4) // ZC_POSITION_ID_NAME_INFO +#elif PACKETVER >= 20090107 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO +#endif + +// Packet: 0x0167 +#if PACKETVER >= 20090406 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x0167, 53) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x0167, 8) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20090218 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20090211 +packetLen(0x0167, 14) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x0167, 6) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20090129 +packetLen(0x0167, 11) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20090120 +packetLen(0x0167, -1) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20090114 +packetLen(0x0167, 5) // ZC_RESULT_MAKE_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x0167, 26) // ZC_RESULT_MAKE_GUILD +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0168 +#if PACKETVER >= 20090406 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x0168, 23) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20090129 +packetLen(0x0168, 27) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20090114 +packetLen(0x0168, -1) // CZ_REQ_JOIN_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x0168, 11) // CZ_REQ_JOIN_GUILD +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0169 +#if PACKETVER >= 20090406 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090318 +packetLen(0x0169, 29) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090311 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090225 +packetLen(0x0169, 26) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090218 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090211 +packetLen(0x0169, 17) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x0169, 6) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090129 +packetLen(0x0169, 11) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090114 +packetLen(0x0169, -1) // ZC_ACK_REQ_JOIN_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x0169, 6) // ZC_ACK_REQ_JOIN_GUILD +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x016a +#if PACKETVER >= 20090406 +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20090211 +packetLen(0x016a, -1) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x016a, 3) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20090129 +packetLen(0x016a, 7) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20090120 +packetLen(0x016a, 34) // ZC_REQ_JOIN_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x016a, 5) // ZC_REQ_JOIN_GUILD +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x016b +#if PACKETVER >= 20090406 +packetLen(0x016b, 10) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x016b, 2) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090318 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090311 +packetLen(0x016b, 6) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090225 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090218 +packetLen(0x016b, 4) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090129 +packetLen(0x016b, 8) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090120 +packetLen(0x016b, -1) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090114 +packetLen(0x016b, 30) // CZ_JOIN_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x016b, 6) // CZ_JOIN_GUILD +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x016c +#if PACKETVER >= 20090406 +packetLen(0x016c, 43) // ZC_UPDATE_GDID +#elif PACKETVER >= 20090225 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20090218 +packetLen(0x016c, 11) // ZC_UPDATE_GDID +#elif PACKETVER >= 20090211 +packetLen(0x016c, 16) // ZC_UPDATE_GDID +#elif PACKETVER >= 20090114 +packetLen(0x016c, -1) // ZC_UPDATE_GDID +#elif PACKETVER >= 20090107 +packetLen(0x016c, 53) // ZC_UPDATE_GDID +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x016d +#if PACKETVER >= 20090406 +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20090401 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20090325 +packetLen(0x016d, 9) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20090318 +packetLen(0x016d, 11) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20090225 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20090218 +packetLen(0x016d, 4) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20090129 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20090120 +packetLen(0x016d, 10) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20090114 +packetLen(0x016d, -1) // ZC_UPDATE_CHARSTAT +#elif PACKETVER >= 20090107 +packetLen(0x016d, 11) // ZC_UPDATE_CHARSTAT +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x016e +#if PACKETVER >= 20090406 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20090311 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20090225 +packetLen(0x016e, 186) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20090218 +packetLen(0x016e, 30) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20090204 +packetLen(0x016e, -1) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20090129 +packetLen(0x016e, 6) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20090120 +packetLen(0x016e, 4) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20090114 +packetLen(0x016e, 97) // CZ_GUILD_NOTICE +#elif PACKETVER >= 20090107 +packetLen(0x016e, 2) // CZ_GUILD_NOTICE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x016f +#if PACKETVER >= 20090406 +packetLen(0x016f, 182) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090401 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090325 +packetLen(0x016f, 67) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090318 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090311 +packetLen(0x016f, 7) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090225 +packetLen(0x016f, 10) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090204 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090129 +packetLen(0x016f, 10) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090120 +packetLen(0x016f, 6) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090114 +packetLen(0x016f, 9) // ZC_GUILD_NOTICE +#elif PACKETVER >= 20090107 +packetLen(0x016f, -1) // ZC_GUILD_NOTICE +#endif + +// Packet: 0x0170 +#if PACKETVER >= 20090406 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x0170, 36) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20090318 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20090311 +packetLen(0x0170, 2) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20090211 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x0170, 2) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20090129 +packetLen(0x0170, 30) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20090120 +packetLen(0x0170, 10) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20090114 +packetLen(0x0170, -1) // CZ_REQ_ALLY_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x0170, 79) // CZ_REQ_ALLY_GUILD +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0171 +#if PACKETVER >= 20090406 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20090401 +packetLen(0x0171, 67) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x0171, 10) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20090318 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20090311 +packetLen(0x0171, 7) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20090225 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20090218 +packetLen(0x0171, 4) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20090120 +packetLen(0x0171, -1) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20090114 +packetLen(0x0171, 6) // ZC_REQ_ALLY_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x0171, 43) // ZC_REQ_ALLY_GUILD +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0172 +#if PACKETVER >= 20090406 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +#elif PACKETVER >= 20090325 +packetLen(0x0172, 3) // CZ_ALLY_GUILD +#elif PACKETVER >= 20090318 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +#elif PACKETVER >= 20090225 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20090218 +packetLen(0x0172, 55) // CZ_ALLY_GUILD +#elif PACKETVER >= 20090211 +packetLen(0x0172, 11) // CZ_ALLY_GUILD +#elif PACKETVER >= 20090204 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#elif PACKETVER >= 20090129 +packetLen(0x0172, 6) // CZ_ALLY_GUILD +#elif PACKETVER >= 20090120 +packetLen(0x0172, 10) // CZ_ALLY_GUILD +#elif PACKETVER >= 20090107 +packetLen(0x0172, -1) // CZ_ALLY_GUILD +#endif + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +#if PACKETVER >= 20090406 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090401 +packetLen(0x0177, 26) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090325 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090318 +packetLen(0x0177, 5) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090225 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090218 +packetLen(0x0177, 6) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090204 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090129 +packetLen(0x0177, 22) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090120 +packetLen(0x0177, 2) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090114 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST +#elif PACKETVER >= 20090107 +packetLen(0x0177, 4) // ZC_ITEMIDENTIFY_LIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0178 +#if PACKETVER >= 20090406 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20090401 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20090325 +packetLen(0x0178, 2) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20090318 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20090311 +packetLen(0x0178, 6) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20090225 +packetLen(0x0178, 68) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20090120 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20090114 +packetLen(0x0178, 6) // CZ_REQ_ITEMIDENTIFY +#elif PACKETVER >= 20090107 +packetLen(0x0178, -1) // CZ_REQ_ITEMIDENTIFY +#endif + +// Packet: 0x0179 +#if PACKETVER >= 20090406 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090401 +packetLen(0x0179, 10) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090325 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090318 +packetLen(0x0179, 3) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090311 +packetLen(0x0179, 32) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090225 +packetLen(0x0179, 6) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090218 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090211 +packetLen(0x0179, 10) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090204 +packetLen(0x0179, -1) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090129 +packetLen(0x0179, 33) // ZC_ACK_ITEMIDENTIFY +#elif PACKETVER >= 20090107 +packetLen(0x0179, 53) // ZC_ACK_ITEMIDENTIFY +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x017a +#if PACKETVER >= 20090406 +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090325 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090318 +packetLen(0x017a, 10) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090211 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090204 +packetLen(0x017a, 29) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090129 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090120 +packetLen(0x017a, 11) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090114 +packetLen(0x017a, -1) // CZ_REQ_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090107 +packetLen(0x017a, 30) // CZ_REQ_ITEMCOMPOSITION_LIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x017b +#if PACKETVER >= 20090401 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090325 +packetLen(0x017b, 13) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090225 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090218 +packetLen(0x017b, 30) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090211 +packetLen(0x017b, 14) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090204 +packetLen(0x017b, 8) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090129 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090120 +packetLen(0x017b, 17) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090114 +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST +#elif PACKETVER >= 20090107 +packetLen(0x017b, 11) // ZC_ITEMCOMPOSITION_LIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x017c +#if PACKETVER >= 20090406 +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20090325 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20090318 +packetLen(0x017c, 282) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20090311 +packetLen(0x017c, 8) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20090225 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20090218 +packetLen(0x017c, 3) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20090204 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20090129 +packetLen(0x017c, 4) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20090114 +packetLen(0x017c, -1) // CZ_REQ_ITEMCOMPOSITION +#elif PACKETVER >= 20090107 +packetLen(0x017c, 3) // CZ_REQ_ITEMCOMPOSITION +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x017d +#if PACKETVER >= 20090406 +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20090401 +packetLen(0x017d, 53) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20090325 +packetLen(0x017d, -1) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20090318 +packetLen(0x017d, 28) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20090311 +packetLen(0x017d, 2) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20090225 +packetLen(0x017d, 31) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20090218 +packetLen(0x017d, 9) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20090211 +packetLen(0x017d, 6) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20090204 +packetLen(0x017d, 11) // ZC_ACK_ITEMCOMPOSITION +#elif PACKETVER >= 20090107 +packetLen(0x017d, 2) // ZC_ACK_ITEMCOMPOSITION +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x017e +#if PACKETVER >= 20090325 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20090318 +packetLen(0x017e, 26) // CZ_GUILD_CHAT +#elif PACKETVER >= 20090311 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20090225 +packetLen(0x017e, 30) // CZ_GUILD_CHAT +#elif PACKETVER >= 20090218 +packetLen(0x017e, 6) // CZ_GUILD_CHAT +#elif PACKETVER >= 20090204 +packetLen(0x017e, -1) // CZ_GUILD_CHAT +#elif PACKETVER >= 20090129 +packetLen(0x017e, 14) // CZ_GUILD_CHAT +#elif PACKETVER >= 20090120 +packetLen(0x017e, 186) // CZ_GUILD_CHAT +#elif PACKETVER >= 20090114 +packetLen(0x017e, 6) // CZ_GUILD_CHAT +#elif PACKETVER >= 20090107 +packetLen(0x017e, 2) // CZ_GUILD_CHAT +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x017f +#if PACKETVER >= 20090311 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20090225 +packetLen(0x017f, 3) // ZC_GUILD_CHAT +#elif PACKETVER >= 20090129 +packetLen(0x017f, -1) // ZC_GUILD_CHAT +#elif PACKETVER >= 20090120 +packetLen(0x017f, 33) // ZC_GUILD_CHAT +#elif PACKETVER >= 20090107 +packetLen(0x017f, 30) // ZC_GUILD_CHAT +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +#if PACKETVER >= 20090406 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20090311 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20090225 +packetLen(0x0188, 10) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20090218 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20090211 +packetLen(0x0188, 5) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20090114 +packetLen(0x0188, -1) // ZC_ACK_ITEMREFINING +#elif PACKETVER >= 20090107 +packetLen(0x0188, 3) // ZC_ACK_ITEMREFINING +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0189 +#if PACKETVER >= 20090406 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20090325 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20090318 +packetLen(0x0189, 90) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20090204 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20090129 +packetLen(0x0189, 2) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20090120 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20090114 +packetLen(0x0189, 6) // ZC_NOTIFY_MAPINFO +#elif PACKETVER >= 20090107 +packetLen(0x0189, -1) // ZC_NOTIFY_MAPINFO +#endif + +// Packet: 0x018a +#if PACKETVER >= 20090406 +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20090311 +packetLen(0x018a, -1) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20090225 +packetLen(0x018a, 6) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20090218 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20090211 +packetLen(0x018a, 71) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20090204 +packetLen(0x018a, 10) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20090120 +packetLen(0x018a, 3) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20090114 +packetLen(0x018a, 2) // CZ_REQ_DISCONNECT +#elif PACKETVER >= 20090107 +packetLen(0x018a, 8) // CZ_REQ_DISCONNECT +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x018b +#if PACKETVER >= 20090401 +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20090325 +packetLen(0x018b, 30) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20090311 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20090225 +packetLen(0x018b, 21) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20090129 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20090120 +packetLen(0x018b, 7) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20090114 +packetLen(0x018b, -1) // ZC_ACK_REQ_DISCONNECT +#elif PACKETVER >= 20090107 +packetLen(0x018b, 6) // ZC_ACK_REQ_DISCONNECT +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x018c +#if PACKETVER >= 20090406 +packetLen(0x018c, 29) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090401 +packetLen(0x018c, 11) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090318 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090311 +packetLen(0x018c, 2) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090225 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090218 +packetLen(0x018c, 30) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090211 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090204 +packetLen(0x018c, 3) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090129 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090120 +packetLen(0x018c, 30) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090114 +packetLen(0x018c, -1) // ZC_MONSTER_INFO +#elif PACKETVER >= 20090107 +packetLen(0x018c, 8) // ZC_MONSTER_INFO +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x018d +#if PACKETVER >= 20090401 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090325 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090318 +packetLen(0x018d, 14) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x018d, 4) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090218 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090211 +packetLen(0x018d, 28) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090204 +packetLen(0x018d, 18) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x018d, 7) // ZC_MAKABLEITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x018d, 6) // ZC_MAKABLEITEMLIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x018e +#if PACKETVER >= 20090406 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20090401 +packetLen(0x018e, 7) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20090318 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20090311 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20090225 +packetLen(0x018e, 5) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20090218 +packetLen(0x018e, 8) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20090107 +packetLen(0x018e, -1) // CZ_REQMAKINGITEM +#endif + +// Packet: 0x018f +#if PACKETVER >= 20090406 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20090401 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20090325 +packetLen(0x018f, 2) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20090318 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20090311 +packetLen(0x018f, 4) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20090129 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20090120 +packetLen(0x018f, 10) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20090107 +packetLen(0x018f, -1) // ZC_ACK_REQMAKINGITEM +#endif + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +#if PACKETVER >= 20090406 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20090401 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20090325 +packetLen(0x0194, 28) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20090318 +packetLen(0x0194, 6) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20090311 +packetLen(0x0194, 54) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20090225 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20090218 +packetLen(0x0194, 8) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20090211 +packetLen(0x0194, 3) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20090114 +packetLen(0x0194, -1) // ZC_ACK_REQNAME_BYGID +#elif PACKETVER >= 20090107 +packetLen(0x0194, 12) // ZC_ACK_REQNAME_BYGID +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0195 +#if PACKETVER >= 20090406 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20090401 +packetLen(0x0195, -1) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20090325 +packetLen(0x0195, 7) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20090318 +packetLen(0x0195, 4) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20090311 +packetLen(0x0195, 3) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20090225 +packetLen(0x0195, 8) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20090218 +packetLen(0x0195, 3) // ZC_ACK_REQNAMEALL +#elif PACKETVER >= 20090107 +packetLen(0x0195, 29) // ZC_ACK_REQNAMEALL +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0196 +#if PACKETVER >= 20090406 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20090311 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20090225 +packetLen(0x0196, 4) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20090204 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20090129 +packetLen(0x0196, 10) // ZC_MSG_STATE_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x0196, -1) // ZC_MSG_STATE_CHANGE +#endif + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +#if PACKETVER >= 20090406 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20090401 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20090325 +packetLen(0x0199, 6) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20090318 +packetLen(0x0199, 67) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20090218 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20090204 +packetLen(0x0199, 6) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20090129 +packetLen(0x0199, 26) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20090120 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20090114 +packetLen(0x0199, 282) // ZC_NOTIFY_MAPPROPERTY +#elif PACKETVER >= 20090107 +packetLen(0x0199, -1) // ZC_NOTIFY_MAPPROPERTY +#endif + +// Packet: 0x019a +#if PACKETVER >= 20090406 +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20090401 +packetLen(0x019a, 20) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20090325 +packetLen(0x019a, 6) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20090318 +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20090218 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20090211 +packetLen(0x019a, 33) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20090204 +packetLen(0x019a, -1) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20090129 +packetLen(0x019a, 4) // ZC_NOTIFY_RANKING +#elif PACKETVER >= 20090107 +packetLen(0x019a, 17) // ZC_NOTIFY_RANKING +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x019b +#if PACKETVER >= 20090406 +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20090401 +packetLen(0x019b, 4) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20090325 +packetLen(0x019b, 65) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20090311 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20090225 +packetLen(0x019b, 6) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20090211 +packetLen(0x019b, -1) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20090204 +packetLen(0x019b, 11) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20090129 +packetLen(0x019b, 4) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20090120 +packetLen(0x019b, 26) // ZC_NOTIFY_EFFECT +#elif PACKETVER >= 20090107 +packetLen(0x019b, 8) // ZC_NOTIFY_EFFECT +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x019c +#if PACKETVER >= 20090406 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20090401 +packetLen(0x019c, 2) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20090325 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20090318 +packetLen(0x019c, 8) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20090211 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20090204 +packetLen(0x019c, 8) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20090114 +packetLen(0x019c, -1) // CZ_LOCALBROADCAST +#elif PACKETVER >= 20090107 +packetLen(0x019c, 15) // CZ_LOCALBROADCAST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x019d +#if PACKETVER >= 20090406 +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20090401 +packetLen(0x019d, 282) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20090325 +packetLen(0x019d, 30) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20090318 +packetLen(0x019d, 13) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20090311 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20090225 +packetLen(0x019d, 10) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20090114 +packetLen(0x019d, -1) // CZ_CHANGE_EFFECTSTATE +#elif PACKETVER >= 20090107 +packetLen(0x019d, 60) // CZ_CHANGE_EFFECTSTATE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +#if PACKETVER >= 20090406 +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090401 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090325 +packetLen(0x019f, 4) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090318 +packetLen(0x019f, 53) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090311 +packetLen(0x019f, 8) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090225 +packetLen(0x019f, 5) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090218 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090211 +packetLen(0x019f, 7) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090129 +packetLen(0x019f, -1) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090120 +packetLen(0x019f, 15) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090114 +packetLen(0x019f, 7) // CZ_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090107 +packetLen(0x019f, 26) // CZ_TRYCAPTURE_MONSTER +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01a0 +#if PACKETVER >= 20090406 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090325 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090318 +packetLen(0x01a0, 79) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090114 +packetLen(0x01a0, -1) // ZC_TRYCAPTURE_MONSTER +#elif PACKETVER >= 20090107 +packetLen(0x01a0, 114) // ZC_TRYCAPTURE_MONSTER +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01a1 +#if PACKETVER >= 20090406 +packetLen(0x01a1, 3) // CZ_COMMAND_PET +#elif PACKETVER >= 20090325 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#elif PACKETVER >= 20090318 +packetLen(0x01a1, 30) // CZ_COMMAND_PET +#elif PACKETVER >= 20090311 +packetLen(0x01a1, 26) // CZ_COMMAND_PET +#elif PACKETVER >= 20090107 +packetLen(0x01a1, -1) // CZ_COMMAND_PET +#endif + +// Packet: 0x01a2 +#if PACKETVER >= 20090406 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET +#elif PACKETVER >= 20090401 +packetLen(0x01a2, 21) // ZC_PROPERTY_PET +#elif PACKETVER >= 20090325 +packetLen(0x01a2, 31) // ZC_PROPERTY_PET +#elif PACKETVER >= 20090225 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20090218 +packetLen(0x01a2, 7) // ZC_PROPERTY_PET +#elif PACKETVER >= 20090211 +packetLen(0x01a2, 4) // ZC_PROPERTY_PET +#elif PACKETVER >= 20090129 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#elif PACKETVER >= 20090120 +packetLen(0x01a2, 59) // ZC_PROPERTY_PET +#elif PACKETVER >= 20090107 +packetLen(0x01a2, -1) // ZC_PROPERTY_PET +#endif + +// Packet: 0x01a3 +#if PACKETVER >= 20090406 +packetLen(0x01a3, 5) // ZC_FEED_PET +#elif PACKETVER >= 20090401 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20090325 +packetLen(0x01a3, 8) // ZC_FEED_PET +#elif PACKETVER >= 20090211 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20090204 +packetLen(0x01a3, 6) // ZC_FEED_PET +#elif PACKETVER >= 20090129 +packetLen(0x01a3, -1) // ZC_FEED_PET +#elif PACKETVER >= 20090120 +packetLen(0x01a3, 6) // ZC_FEED_PET +#elif PACKETVER >= 20090114 +packetLen(0x01a3, 3) // ZC_FEED_PET +#elif PACKETVER >= 20090107 +packetLen(0x01a3, 2) // ZC_FEED_PET +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01a4 +#if PACKETVER >= 20090406 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20090325 +packetLen(0x01a4, 6) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20090225 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20090218 +packetLen(0x01a4, 8) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20090211 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20090204 +packetLen(0x01a4, 3) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20090129 +packetLen(0x01a4, 27) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20090114 +packetLen(0x01a4, -1) // ZC_CHANGESTATE_PET +#elif PACKETVER >= 20090107 +packetLen(0x01a4, 20) // ZC_CHANGESTATE_PET +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +#if PACKETVER >= 20090401 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20090325 +packetLen(0x01a6, 23) // ZC_PETEGG_LIST +#elif PACKETVER >= 20090318 +packetLen(0x01a6, 6) // ZC_PETEGG_LIST +#elif PACKETVER >= 20090225 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20090218 +packetLen(0x01a6, 182) // ZC_PETEGG_LIST +#elif PACKETVER >= 20090204 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST +#elif PACKETVER >= 20090129 +packetLen(0x01a6, 26) // ZC_PETEGG_LIST +#elif PACKETVER >= 20090107 +packetLen(0x01a6, 58) // ZC_PETEGG_LIST +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01a7 +#if PACKETVER >= 20090406 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20090401 +packetLen(0x01a7, 27) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20090325 +packetLen(0x01a7, 3) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20090318 +packetLen(0x01a7, 60) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20090311 +packetLen(0x01a7, 6) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20090225 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20090218 +packetLen(0x01a7, 10) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20090204 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20090129 +packetLen(0x01a7, 5) // CZ_SELECT_PETEGG +#elif PACKETVER >= 20090107 +packetLen(0x01a7, -1) // CZ_SELECT_PETEGG +#endif + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +#if PACKETVER >= 20090406 +packetLen(0x01aa, 10) // ZC_PET_ACT +#elif PACKETVER >= 20090401 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20090325 +packetLen(0x01aa, 14) // ZC_PET_ACT +#elif PACKETVER >= 20090225 +packetLen(0x01aa, -1) // ZC_PET_ACT +#elif PACKETVER >= 20090218 +packetLen(0x01aa, 86) // ZC_PET_ACT +#elif PACKETVER >= 20090211 +packetLen(0x01aa, 79) // ZC_PET_ACT +#elif PACKETVER >= 20090107 +packetLen(0x01aa, -1) // ZC_PET_ACT +#endif + +// Packet: 0x01ab +#if PACKETVER >= 20090406 +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090401 +packetLen(0x01ab, 4) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090325 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090318 +packetLen(0x01ab, 23) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090311 +packetLen(0x01ab, 26) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090225 +packetLen(0x01ab, 10) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090211 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090204 +packetLen(0x01ab, 57) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090129 +packetLen(0x01ab, -1) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090120 +packetLen(0x01ab, 6) // ZC_PAR_CHANGE_USER +#elif PACKETVER >= 20090107 +packetLen(0x01ab, 5) // ZC_PAR_CHANGE_USER +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01ac +#if PACKETVER >= 20090406 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090401 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090325 +packetLen(0x01ac, 28) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090318 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090311 +packetLen(0x01ac, 4) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090225 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090218 +packetLen(0x01ac, 13) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090211 +packetLen(0x01ac, 68) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090120 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090114 +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE +#elif PACKETVER >= 20090107 +packetLen(0x01ac, -1) // ZC_SKILL_UPDATE +#endif + +// Packet: 0x01ad +#if PACKETVER >= 20090401 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20090325 +packetLen(0x01ad, 24) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20090225 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20090218 +packetLen(0x01ad, 90) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20090211 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20090204 +packetLen(0x01ad, 27) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20090129 +packetLen(0x01ad, 10) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20090120 +packetLen(0x01ad, 60) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20090114 +packetLen(0x01ad, 14) // ZC_MAKINGARROW_LIST +#elif PACKETVER >= 20090107 +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST +#endif + +// Packet: 0x01ae +#if PACKETVER >= 20090406 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20090401 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20090325 +packetLen(0x01ae, 18) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20090311 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20090225 +packetLen(0x01ae, 6) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20090218 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20090204 +packetLen(0x01ae, 6) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20090120 +packetLen(0x01ae, -1) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20090114 +packetLen(0x01ae, 11) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20090107 +packetLen(0x01ae, 2) // CZ_REQ_MAKINGARROW +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +#if PACKETVER >= 20090406 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20090325 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20090318 +packetLen(0x01b0, 7) // ZC_NPCSPRITE_CHANGE +#elif PACKETVER >= 20090107 +packetLen(0x01b0, -1) // ZC_NPCSPRITE_CHANGE +#endif + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +#if PACKETVER >= 20090406 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090401 +packetLen(0x01b2, 4) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090318 +packetLen(0x01b2, 6) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090311 +packetLen(0x01b2, 44) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090225 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090218 +packetLen(0x01b2, 58) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090204 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090129 +packetLen(0x01b2, 7) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090120 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090114 +packetLen(0x01b2, 60) // CZ_REQ_OPENSTORE2 +#elif PACKETVER >= 20090107 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 +#endif + +// Packet: 0x01b3 +#if PACKETVER >= 20090406 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20090401 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20090325 +packetLen(0x01b3, 3) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20090318 +packetLen(0x01b3, 6) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20090218 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20090211 +packetLen(0x01b3, 8) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20090114 +packetLen(0x01b3, -1) // ZC_SHOW_IMAGE2 +#elif PACKETVER >= 20090107 +packetLen(0x01b3, 2) // ZC_SHOW_IMAGE2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +#if PACKETVER >= 20090406 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090401 +packetLen(0x01b6, 8) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090325 +packetLen(0x01b6, 6) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090318 +packetLen(0x01b6, 33) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090311 +packetLen(0x01b6, 6) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090225 +packetLen(0x01b6, 18) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090218 +packetLen(0x01b6, 27) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090211 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090204 +packetLen(0x01b6, 2) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090120 +packetLen(0x01b6, -1) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090114 +packetLen(0x01b6, 13) // ZC_GUILD_INFO2 +#elif PACKETVER >= 20090107 +packetLen(0x01b6, 16) // ZC_GUILD_INFO2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +#if PACKETVER >= 20090406 +packetLen(0x01b9, 6) // ZC_DISPEL +#elif PACKETVER >= 20090401 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20090325 +packetLen(0x01b9, 6) // ZC_DISPEL +#elif PACKETVER >= 20090311 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20090225 +packetLen(0x01b9, 2) // ZC_DISPEL +#elif PACKETVER >= 20090211 +packetLen(0x01b9, -1) // ZC_DISPEL +#elif PACKETVER >= 20090204 +packetLen(0x01b9, 26) // ZC_DISPEL +#elif PACKETVER >= 20090129 +packetLen(0x01b9, 3) // ZC_DISPEL +#elif PACKETVER >= 20090107 +packetLen(0x01b9, -1) // ZC_DISPEL +#endif + +// Packet: 0x01ba +#if PACKETVER >= 20090406 +packetLen(0x01ba, 26) // CZ_REMOVE_AID +#elif PACKETVER >= 20090325 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20090318 +packetLen(0x01ba, 6) // CZ_REMOVE_AID +#elif PACKETVER >= 20090218 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20090211 +packetLen(0x01ba, 10) // CZ_REMOVE_AID +#elif PACKETVER >= 20090204 +packetLen(0x01ba, 6) // CZ_REMOVE_AID +#elif PACKETVER >= 20090129 +packetLen(0x01ba, 30) // CZ_REMOVE_AID +#elif PACKETVER >= 20090120 +packetLen(0x01ba, -1) // CZ_REMOVE_AID +#elif PACKETVER >= 20090114 +packetLen(0x01ba, 30) // CZ_REMOVE_AID +#elif PACKETVER >= 20090107 +packetLen(0x01ba, 15) // CZ_REMOVE_AID +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01bb +#if PACKETVER >= 20090406 +packetLen(0x01bb, 26) // CZ_SHIFT +#elif PACKETVER >= 20090325 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20090318 +packetLen(0x01bb, 6) // CZ_SHIFT +#elif PACKETVER >= 20090225 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20090218 +packetLen(0x01bb, 6) // CZ_SHIFT +#elif PACKETVER >= 20090211 +packetLen(0x01bb, 26) // CZ_SHIFT +#elif PACKETVER >= 20090204 +packetLen(0x01bb, 12) // CZ_SHIFT +#elif PACKETVER >= 20090129 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20090120 +packetLen(0x01bb, 4) // CZ_SHIFT +#elif PACKETVER >= 20090114 +packetLen(0x01bb, -1) // CZ_SHIFT +#elif PACKETVER >= 20090107 +packetLen(0x01bb, 10) // CZ_SHIFT +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01bc +#if PACKETVER >= 20090406 +packetLen(0x01bc, 26) // CZ_RECALL +#elif PACKETVER >= 20090401 +packetLen(0x01bc, 6) // CZ_RECALL +#elif PACKETVER >= 20090325 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20090318 +packetLen(0x01bc, 6) // CZ_RECALL +#elif PACKETVER >= 20090225 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20090218 +packetLen(0x01bc, 14) // CZ_RECALL +#elif PACKETVER >= 20090129 +packetLen(0x01bc, -1) // CZ_RECALL +#elif PACKETVER >= 20090120 +packetLen(0x01bc, 7) // CZ_RECALL +#elif PACKETVER >= 20090107 +packetLen(0x01bc, 4) // CZ_RECALL +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01bd +#if PACKETVER >= 20090406 +packetLen(0x01bd, 26) // CZ_RECALL_GID +#elif PACKETVER >= 20090401 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20090325 +packetLen(0x01bd, 30) // CZ_RECALL_GID +#elif PACKETVER >= 20090318 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20090311 +packetLen(0x01bd, 22) // CZ_RECALL_GID +#elif PACKETVER >= 20090211 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#elif PACKETVER >= 20090204 +packetLen(0x01bd, 65) // CZ_RECALL_GID +#elif PACKETVER >= 20090129 +packetLen(0x01bd, 10) // CZ_RECALL_GID +#elif PACKETVER >= 20090107 +packetLen(0x01bd, -1) // CZ_RECALL_GID +#endif + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +#if PACKETVER >= 20090318 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20090311 +packetLen(0x01c3, 15) // ZC_BROADCAST2 +#elif PACKETVER >= 20090218 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20090211 +packetLen(0x01c3, 2) // ZC_BROADCAST2 +#elif PACKETVER >= 20090129 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#elif PACKETVER >= 20090120 +packetLen(0x01c3, 2) // ZC_BROADCAST2 +#elif PACKETVER >= 20090114 +packetLen(0x01c3, 15) // ZC_BROADCAST2 +#elif PACKETVER >= 20090107 +packetLen(0x01c3, -1) // ZC_BROADCAST2 +#endif + +// Packet: 0x01c4 +#if PACKETVER >= 20090406 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20090401 +packetLen(0x01c4, 81) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20090325 +packetLen(0x01c4, 8) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20090318 +packetLen(0x01c4, 16) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20090311 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20090225 +packetLen(0x01c4, 7) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20090204 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20090129 +packetLen(0x01c4, 6) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20090114 +packetLen(0x01c4, -1) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20090107 +packetLen(0x01c4, 9) // ZC_ADD_ITEM_TO_STORE2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01c5 +#if PACKETVER >= 20090406 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20090401 +packetLen(0x01c5, 32) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20090325 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20090318 +packetLen(0x01c5, 10) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20090311 +packetLen(0x01c5, 6) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20090120 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20090114 +packetLen(0x01c5, 2) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20090107 +packetLen(0x01c5, -1) // ZC_ADD_ITEM_TO_CART2 +#endif + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +#if PACKETVER >= 20090406 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20090325 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20090318 +packetLen(0x01c8, 43) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20090311 +packetLen(0x01c8, 3) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20090225 +packetLen(0x01c8, 53) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20090211 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20090204 +packetLen(0x01c8, 10) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20090120 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20090114 +packetLen(0x01c8, 4) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20090107 +packetLen(0x01c8, -1) // ZC_USE_ITEM_ACK2 +#endif + +// Packet: 0x01c9 +#if PACKETVER >= 20090406 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090401 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090325 +packetLen(0x01c9, 28) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090318 +packetLen(0x01c9, 54) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090311 +packetLen(0x01c9, -1) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090225 +packetLen(0x01c9, 6) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090218 +packetLen(0x01c9, 282) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090211 +packetLen(0x01c9, 6) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090204 +packetLen(0x01c9, 14) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090129 +packetLen(0x01c9, 102) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090120 +packetLen(0x01c9, 10) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090114 +packetLen(0x01c9, 79) // ZC_SKILL_ENTRY2 +#elif PACKETVER >= 20090107 +packetLen(0x01c9, 32) // ZC_SKILL_ENTRY2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +#if PACKETVER >= 20090406 +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20090318 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20090311 +packetLen(0x01cd, 6) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20090211 +packetLen(0x01cd, -1) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20090204 +packetLen(0x01cd, 26) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20090129 +packetLen(0x01cd, 8) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20090120 +packetLen(0x01cd, 18) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20090114 +packetLen(0x01cd, 33) // ZC_AUTOSPELLLIST +#elif PACKETVER >= 20090107 +packetLen(0x01cd, 20) // ZC_AUTOSPELLLIST +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01ce +#if PACKETVER >= 20090406 +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20090401 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20090325 +packetLen(0x01ce, 26) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20090211 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20090204 +packetLen(0x01ce, 11) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20090129 +packetLen(0x01ce, 14) // CZ_SELECTAUTOSPELL +#elif PACKETVER >= 20090107 +packetLen(0x01ce, -1) // CZ_SELECTAUTOSPELL +#endif + +// Packet: 0x01cf +#if PACKETVER >= 20090406 +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20090225 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20090211 +packetLen(0x01cf, 4) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20090114 +packetLen(0x01cf, -1) // ZC_DEVOTIONLIST +#elif PACKETVER >= 20090107 +packetLen(0x01cf, 2) // ZC_DEVOTIONLIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01d0 +#if PACKETVER >= 20090406 +packetLen(0x01d0, 8) // ZC_SPIRITS +#elif PACKETVER >= 20090401 +packetLen(0x01d0, 23) // ZC_SPIRITS +#elif PACKETVER >= 20090325 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20090318 +packetLen(0x01d0, 26) // ZC_SPIRITS +#elif PACKETVER >= 20090225 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20090218 +packetLen(0x01d0, 30) // ZC_SPIRITS +#elif PACKETVER >= 20090211 +packetLen(0x01d0, 8) // ZC_SPIRITS +#elif PACKETVER >= 20090204 +packetLen(0x01d0, 36) // ZC_SPIRITS +#elif PACKETVER >= 20090129 +packetLen(0x01d0, 10) // ZC_SPIRITS +#elif PACKETVER >= 20090114 +packetLen(0x01d0, -1) // ZC_SPIRITS +#elif PACKETVER >= 20090107 +packetLen(0x01d0, 30) // ZC_SPIRITS +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +#if PACKETVER >= 20090406 +packetLen(0x01d2, 10) // ZC_COMBODELAY +#elif PACKETVER >= 20090401 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20090325 +packetLen(0x01d2, 54) // ZC_COMBODELAY +#elif PACKETVER >= 20090318 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20090311 +packetLen(0x01d2, 2) // ZC_COMBODELAY +#elif PACKETVER >= 20090225 +packetLen(0x01d2, 26) // ZC_COMBODELAY +#elif PACKETVER >= 20090218 +packetLen(0x01d2, 3) // ZC_COMBODELAY +#elif PACKETVER >= 20090129 +packetLen(0x01d2, -1) // ZC_COMBODELAY +#elif PACKETVER >= 20090120 +packetLen(0x01d2, 22) // ZC_COMBODELAY +#elif PACKETVER >= 20090107 +packetLen(0x01d2, 10) // ZC_COMBODELAY +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +#if PACKETVER >= 20090406 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20090401 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20090325 +packetLen(0x01d4, 7) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20090318 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20090311 +packetLen(0x01d4, 53) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20090204 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20090129 +packetLen(0x01d4, 8) // ZC_OPEN_EDITDLGSTR +#elif PACKETVER >= 20090107 +packetLen(0x01d4, -1) // ZC_OPEN_EDITDLGSTR +#endif + +// Packet: 0x01d5 +#if PACKETVER >= 20090401 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20090318 +packetLen(0x01d5, 2) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20090120 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20090114 +packetLen(0x01d5, 14) // CZ_INPUT_EDITDLGSTR +#elif PACKETVER >= 20090107 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR +#endif + +// Packet: 0x01d6 +#if PACKETVER >= 20090406 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20090401 +packetLen(0x01d6, 2) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20090325 +packetLen(0x01d6, 3) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20090318 +packetLen(0x01d6, 8) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20090311 +packetLen(0x01d6, 30) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20090211 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20090204 +packetLen(0x01d6, 2) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20090129 +packetLen(0x01d6, 26) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20090114 +packetLen(0x01d6, -1) // ZC_NOTIFY_MAPPROPERTY2 +#elif PACKETVER >= 20090107 +packetLen(0x01d6, 11) // ZC_NOTIFY_MAPPROPERTY2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01d7 +#if PACKETVER >= 20090406 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20090401 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20090325 +packetLen(0x01d7, 14) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20090311 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20090225 +packetLen(0x01d7, 5) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20090218 +packetLen(0x01d7, 59) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20090204 +packetLen(0x01d7, -1) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20090129 +packetLen(0x01d7, 16) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20090107 +packetLen(0x01d7, 114) // ZC_SPRITE_CHANGE2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01d8 +#if PACKETVER >= 20090406 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20090401 +packetLen(0x01d8, 19) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20090325 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20090318 +packetLen(0x01d8, 57) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20090129 +packetLen(0x01d8, -1) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20090114 +packetLen(0x01d8, 7) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20090107 +packetLen(0x01d8, 39) // ZC_NOTIFY_STANDENTRY2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01d9 +#if PACKETVER >= 20090406 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090325 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090318 +packetLen(0x01d9, 3) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090311 +packetLen(0x01d9, 31) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090218 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090211 +packetLen(0x01d9, 11) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090204 +packetLen(0x01d9, 22) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090129 +packetLen(0x01d9, 37) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090120 +packetLen(0x01d9, -1) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090114 +packetLen(0x01d9, 54) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20090107 +packetLen(0x01d9, 28) // ZC_NOTIFY_NEWENTRY2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01da +#if PACKETVER >= 20090406 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20090401 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20090325 +packetLen(0x01da, 11) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20090204 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20090129 +packetLen(0x01da, 2) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20090120 +packetLen(0x01da, 22) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20090114 +packetLen(0x01da, 4) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20090107 +packetLen(0x01da, -1) // ZC_NOTIFY_MOVEENTRY2 +#endif + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +#if PACKETVER >= 20090406 +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090401 +packetLen(0x01de, 18) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090318 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090311 +packetLen(0x01de, 67) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090225 +packetLen(0x01de, 59) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090218 +packetLen(0x01de, 11) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090204 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090129 +packetLen(0x01de, 3) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090120 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090114 +packetLen(0x01de, 282) // ZC_NOTIFY_SKILL2 +#elif PACKETVER >= 20090107 +packetLen(0x01de, -1) // ZC_NOTIFY_SKILL2 +#endif + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +#if PACKETVER >= 20090406 +packetLen(0x01e1, 8) // ZC_SPIRITS2 +#elif PACKETVER >= 20090325 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20090311 +packetLen(0x01e1, 5) // ZC_SPIRITS2 +#elif PACKETVER >= 20090218 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20090211 +packetLen(0x01e1, 10) // ZC_SPIRITS2 +#elif PACKETVER >= 20090129 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#elif PACKETVER >= 20090120 +packetLen(0x01e1, 26) // ZC_SPIRITS2 +#elif PACKETVER >= 20090114 +packetLen(0x01e1, 7) // ZC_SPIRITS2 +#elif PACKETVER >= 20090107 +packetLen(0x01e1, -1) // ZC_SPIRITS2 +#endif + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +#if PACKETVER >= 20090406 +packetLen(0x01e7, 2) // CZ_DORIDORI +#elif PACKETVER >= 20090401 +packetLen(0x01e7, 8) // CZ_DORIDORI +#elif PACKETVER >= 20090325 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20090318 +packetLen(0x01e7, 86) // CZ_DORIDORI +#elif PACKETVER >= 20090311 +packetLen(0x01e7, 10) // CZ_DORIDORI +#elif PACKETVER >= 20090225 +packetLen(0x01e7, 7) // CZ_DORIDORI +#elif PACKETVER >= 20090218 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20090211 +packetLen(0x01e7, 8) // CZ_DORIDORI +#elif PACKETVER >= 20090129 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20090120 +packetLen(0x01e7, 5) // CZ_DORIDORI +#elif PACKETVER >= 20090114 +packetLen(0x01e7, -1) // CZ_DORIDORI +#elif PACKETVER >= 20090107 +packetLen(0x01e7, 15) // CZ_DORIDORI +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01e8 +#if PACKETVER >= 20090406 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20090401 +packetLen(0x01e8, 6) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20090325 +packetLen(0x01e8, 4) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20090225 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20090218 +packetLen(0x01e8, 10) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20090204 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20090129 +packetLen(0x01e8, 10) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20090120 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20090114 +packetLen(0x01e8, 14) // CZ_MAKE_GROUP2 +#elif PACKETVER >= 20090107 +packetLen(0x01e8, -1) // CZ_MAKE_GROUP2 +#endif + +// Packet: 0x01e9 +#if PACKETVER >= 20090406 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20090325 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20090318 +packetLen(0x01e9, 28) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20090211 +packetLen(0x01e9, -1) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20090204 +packetLen(0x01e9, 79) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20090129 +packetLen(0x01e9, 6) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20090120 +packetLen(0x01e9, 27) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20090114 +packetLen(0x01e9, 55) // ZC_ADD_MEMBER_TO_GROUP2 +#elif PACKETVER >= 20090107 +packetLen(0x01e9, 17) // ZC_ADD_MEMBER_TO_GROUP2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01ea +#if PACKETVER >= 20090406 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20090401 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20090325 +packetLen(0x01ea, 6) // ZC_CONGRATULATION +#elif PACKETVER >= 20090318 +packetLen(0x01ea, 2) // ZC_CONGRATULATION +#elif PACKETVER >= 20090311 +packetLen(0x01ea, 59) // ZC_CONGRATULATION +#elif PACKETVER >= 20090225 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20090218 +packetLen(0x01ea, 66) // ZC_CONGRATULATION +#elif PACKETVER >= 20090211 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20090204 +packetLen(0x01ea, 3) // ZC_CONGRATULATION +#elif PACKETVER >= 20090129 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20090120 +packetLen(0x01ea, 90) // ZC_CONGRATULATION +#elif PACKETVER >= 20090114 +packetLen(0x01ea, -1) // ZC_CONGRATULATION +#elif PACKETVER >= 20090107 +packetLen(0x01ea, 3) // ZC_CONGRATULATION +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01eb +#if PACKETVER >= 20090406 +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090401 +packetLen(0x01eb, 2) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090325 +packetLen(0x01eb, 14) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090225 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090218 +packetLen(0x01eb, 33) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090211 +packetLen(0x01eb, 6) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090204 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090129 +packetLen(0x01eb, 23) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090120 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090114 +packetLen(0x01eb, 59) // ZC_NOTIFY_POSITION_TO_GUILDM +#elif PACKETVER >= 20090107 +packetLen(0x01eb, -1) // ZC_NOTIFY_POSITION_TO_GUILDM +#endif + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +#if PACKETVER >= 20090406 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#elif PACKETVER >= 20090401 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20090325 +packetLen(0x01ed, 5) // CZ_CHOPOKGI +#elif PACKETVER >= 20090311 +packetLen(0x01ed, -1) // CZ_CHOPOKGI +#elif PACKETVER >= 20090211 +packetLen(0x01ed, 2) // CZ_CHOPOKGI +#elif PACKETVER >= 20090107 +packetLen(0x01ed, 67) // CZ_CHOPOKGI +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01ee +#if PACKETVER >= 20090401 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090325 +packetLen(0x01ee, 4) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090318 +packetLen(0x01ee, 7) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090311 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090218 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090211 +packetLen(0x01ee, 6) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090129 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090120 +packetLen(0x01ee, 2) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090114 +packetLen(0x01ee, 11) // ZC_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090107 +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 +#endif + +// Packet: 0x01ef +#if PACKETVER >= 20090325 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090318 +packetLen(0x01ef, 9) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090225 +packetLen(0x01ef, 2) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090218 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090211 +packetLen(0x01ef, 4) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090204 +packetLen(0x01ef, 18) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090129 +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090120 +packetLen(0x01ef, 14) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090114 +packetLen(0x01ef, 30) // ZC_CART_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090107 +packetLen(0x01ef, 14) // ZC_CART_NORMAL_ITEMLIST2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01f0 +#if PACKETVER >= 20090401 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090325 +packetLen(0x01f0, 60) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090318 +packetLen(0x01f0, 6) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090218 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090211 +packetLen(0x01f0, 4) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090204 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090129 +packetLen(0x01f0, 6) // ZC_STORE_NORMAL_ITEMLIST2 +#elif PACKETVER >= 20090107 +packetLen(0x01f0, 10) // ZC_STORE_NORMAL_ITEMLIST2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +#if PACKETVER >= 20090406 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20090325 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20090318 +packetLen(0x01f2, 11) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20090311 +packetLen(0x01f2, 4) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20090225 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20090218 +packetLen(0x01f2, 18) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20090211 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20090204 +packetLen(0x01f2, 5) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20090114 +packetLen(0x01f2, -1) // ZC_UPDATE_CHARSTAT2 +#elif PACKETVER >= 20090107 +packetLen(0x01f2, 12) // ZC_UPDATE_CHARSTAT2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +#if PACKETVER >= 20090406 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090401 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090325 +packetLen(0x01f4, 6) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090318 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090311 +packetLen(0x01f4, 20) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090225 +packetLen(0x01f4, 37) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090120 +packetLen(0x01f4, -1) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090114 +packetLen(0x01f4, 8) // ZC_REQ_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090107 +packetLen(0x01f4, 12) // ZC_REQ_EXCHANGE_ITEM2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01f5 +#if PACKETVER >= 20090406 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090225 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090218 +packetLen(0x01f5, 26) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090211 +packetLen(0x01f5, 6) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090204 +packetLen(0x01f5, 54) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090129 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090120 +packetLen(0x01f5, 11) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090114 +packetLen(0x01f5, -1) // ZC_ACK_EXCHANGE_ITEM2 +#elif PACKETVER >= 20090107 +packetLen(0x01f5, 3) // ZC_ACK_EXCHANGE_ITEM2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +#if PACKETVER >= 20090325 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20090318 +packetLen(0x01fc, 8) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20090225 +packetLen(0x01fc, 4) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20090211 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20090204 +packetLen(0x01fc, 30) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x01fc, 11) // ZC_REPAIRITEMLIST +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01fd +#if PACKETVER >= 20090406 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20090401 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20090325 +packetLen(0x01fd, 10) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20090318 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20090311 +packetLen(0x01fd, 10) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20090225 +packetLen(0x01fd, 29) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20090218 +packetLen(0x01fd, 26) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20090120 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20090114 +packetLen(0x01fd, 53) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20090107 +packetLen(0x01fd, -1) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +#if PACKETVER >= 20090406 +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20090401 +packetLen(0x01fe, 28) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20090325 +packetLen(0x01fe, 44) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20090120 +packetLen(0x01fe, -1) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20090114 +packetLen(0x01fe, 10) // ZC_ACK_ITEMREPAIR +#elif PACKETVER >= 20090107 +packetLen(0x01fe, 15) // ZC_ACK_ITEMREPAIR +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +#if PACKETVER >= 20090406 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20090401 +packetLen(0x0201, 58) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20090225 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20090218 +packetLen(0x0201, 5) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20090120 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20090114 +packetLen(0x0201, 4) // ZC_FRIENDS_LIST +#elif PACKETVER >= 20090107 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST +#endif + +// Packet: 0x0202 +#if PACKETVER >= 20090406 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20090401 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20090218 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20090211 +packetLen(0x0202, 27) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20090204 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20090129 +packetLen(0x0202, 13) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20090114 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20090107 +packetLen(0x0202, 11) // CZ_ADD_FRIENDS +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0203 +#if PACKETVER >= 20090406 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090401 +packetLen(0x0203, 26) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090325 +packetLen(0x0203, 2) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090318 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090311 +packetLen(0x0203, 7) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090225 +packetLen(0x0203, 11) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090218 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090211 +packetLen(0x0203, 29) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090204 +packetLen(0x0203, 67) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090129 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090120 +packetLen(0x0203, 2) // CZ_DELETE_FRIENDS +#elif PACKETVER >= 20090107 +packetLen(0x0203, -1) // CZ_DELETE_FRIENDS +#endif + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +#if PACKETVER >= 20090406 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090401 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090325 +packetLen(0x0206, 18) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090318 +packetLen(0x0206, 71) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090311 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090225 +packetLen(0x0206, 14) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090218 +packetLen(0x0206, 7) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090211 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090204 +packetLen(0x0206, 3) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090129 +packetLen(0x0206, -1) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090120 +packetLen(0x0206, 4) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20090107 +packetLen(0x0206, 6) // ZC_FRIENDS_STATE +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0207 +#if PACKETVER >= 20090406 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090401 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090325 +packetLen(0x0207, 7) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090318 +packetLen(0x0207, 9) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090311 +packetLen(0x0207, 3) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090225 +packetLen(0x0207, 7) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090218 +packetLen(0x0207, 9) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090211 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090204 +packetLen(0x0207, 30) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090129 +packetLen(0x0207, 7) // ZC_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090107 +packetLen(0x0207, -1) // ZC_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0208 +#if PACKETVER >= 20090406 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090401 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090325 +packetLen(0x0208, 2) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090318 +packetLen(0x0208, 31) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090311 +packetLen(0x0208, 8) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090225 +packetLen(0x0208, 6) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090218 +packetLen(0x0208, 30) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090120 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090114 +packetLen(0x0208, 26) // CZ_ACK_REQ_ADD_FRIENDS +#elif PACKETVER >= 20090107 +packetLen(0x0208, -1) // CZ_ACK_REQ_ADD_FRIENDS +#endif + +// Packet: 0x0209 +#if PACKETVER >= 20090406 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20090401 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20090325 +packetLen(0x0209, 4) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20090318 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20090311 +packetLen(0x0209, 4) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20090225 +packetLen(0x0209, 2) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20090204 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20090129 +packetLen(0x0209, 86) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20090120 +packetLen(0x0209, 6) // ZC_ADD_FRIENDS_LIST +#elif PACKETVER >= 20090107 +packetLen(0x0209, -1) // ZC_ADD_FRIENDS_LIST +#endif + +// Packet: 0x020a +#if PACKETVER >= 20090406 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20090401 +packetLen(0x020a, 31) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20090311 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20090225 +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20090218 +packetLen(0x020a, 2) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20090120 +packetLen(0x020a, -1) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20090114 +packetLen(0x020a, 4) // ZC_DELETE_FRIENDS +#elif PACKETVER >= 20090107 +packetLen(0x020a, 4) // ZC_DELETE_FRIENDS +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +#if PACKETVER >= 20090406 +packetLen(0x020e, 32) // ZC_STARSKILL +#elif PACKETVER >= 20090318 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20090311 +packetLen(0x020e, 12) // ZC_STARSKILL +#elif PACKETVER >= 20090225 +packetLen(0x020e, -1) // ZC_STARSKILL +#elif PACKETVER >= 20090218 +packetLen(0x020e, 10) // ZC_STARSKILL +#elif PACKETVER >= 20090211 +packetLen(0x020e, 4) // ZC_STARSKILL +#elif PACKETVER >= 20090204 +packetLen(0x020e, 6) // ZC_STARSKILL +#elif PACKETVER >= 20090129 +packetLen(0x020e, 2) // ZC_STARSKILL +#elif PACKETVER >= 20090120 +packetLen(0x020e, 6) // ZC_STARSKILL +#elif PACKETVER >= 20090107 +packetLen(0x020e, 6) // ZC_STARSKILL +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +#if PACKETVER >= 20090406 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090401 +packetLen(0x0217, 102) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090325 +packetLen(0x0217, 3) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090311 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090225 +packetLen(0x0217, 8) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090218 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090211 +packetLen(0x0217, 26) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090204 +packetLen(0x0217, 24) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090129 +packetLen(0x0217, 10) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090120 +packetLen(0x0217, 14) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090114 +packetLen(0x0217, 44) // CZ_BLACKSMITH_RANK +#elif PACKETVER >= 20090107 +packetLen(0x0217, -1) // CZ_BLACKSMITH_RANK +#endif + +// Packet: 0x0218 +#if PACKETVER >= 20090406 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20090325 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20090318 +packetLen(0x0218, 28) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20090225 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20090218 +packetLen(0x0218, 9) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20090211 +packetLen(0x0218, 66) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20090204 +packetLen(0x0218, 6) // CZ_ALCHEMIST_RANK +#elif PACKETVER >= 20090107 +packetLen(0x0218, -1) // CZ_ALCHEMIST_RANK +#endif + +// Packet: 0x0219 +#if PACKETVER >= 20090406 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20090311 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20090225 +packetLen(0x0219, 28) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20090218 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20090211 +packetLen(0x0219, 6) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20090204 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20090129 +packetLen(0x0219, 58) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20090120 +packetLen(0x0219, -1) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20090114 +packetLen(0x0219, 2) // ZC_BLACKSMITH_RANK +#elif PACKETVER >= 20090107 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x021a +#if PACKETVER >= 20090406 +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20090325 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20090318 +packetLen(0x021a, 23) // ZC_ALCHEMIST_RANK +#elif PACKETVER >= 20090107 +packetLen(0x021a, -1) // ZC_ALCHEMIST_RANK +#endif + +// Packet: 0x021b +#if PACKETVER >= 20090406 +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20090311 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20090225 +packetLen(0x021b, 6) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20090218 +packetLen(0x021b, 15) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20090204 +packetLen(0x021b, -1) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20090129 +packetLen(0x021b, 55) // ZC_BLACKSMITH_POINT +#elif PACKETVER >= 20090107 +packetLen(0x021b, 28) // ZC_BLACKSMITH_POINT +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x021c +#if PACKETVER >= 20090406 +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090401 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090325 +packetLen(0x021c, 11) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090311 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090225 +packetLen(0x021c, 9) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090218 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090211 +packetLen(0x021c, 11) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090204 +packetLen(0x021c, 2) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090129 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090120 +packetLen(0x021c, 79) // ZC_ALCHEMIST_POINT +#elif PACKETVER >= 20090107 +packetLen(0x021c, -1) // ZC_ALCHEMIST_POINT +#endif + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +#if PACKETVER >= 20090406 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090401 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090325 +packetLen(0x0224, 4) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090318 +packetLen(0x0224, 6) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090225 +packetLen(0x0224, -1) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090218 +packetLen(0x0224, 19) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090211 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090204 +packetLen(0x0224, 2) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090129 +packetLen(0x0224, 16) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090120 +packetLen(0x0224, 26) // ZC_TAEKWON_POINT +#elif PACKETVER >= 20090107 +packetLen(0x0224, 60) // ZC_TAEKWON_POINT +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0225 +#if PACKETVER >= 20090406 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090401 +packetLen(0x0225, 66) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090325 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090318 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090311 +packetLen(0x0225, 4) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090225 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090218 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090211 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090204 +packetLen(0x0225, 10) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090129 +packetLen(0x0225, 44) // CZ_TAEKWON_RANK +#elif PACKETVER >= 20090107 +packetLen(0x0225, -1) // CZ_TAEKWON_RANK +#endif + +// Packet: 0x0226 +#if PACKETVER >= 20090406 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20090401 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20090325 +packetLen(0x0226, 2) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20090318 +packetLen(0x0226, 53) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20090311 +packetLen(0x0226, 55) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20090218 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20090211 +packetLen(0x0226, 10) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20090129 +packetLen(0x0226, -1) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20090114 +packetLen(0x0226, 6) // ZC_TAEKWON_RANK +#elif PACKETVER >= 20090107 +packetLen(0x0226, 102) // ZC_TAEKWON_RANK +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0227 +#if PACKETVER >= 20090406 +packetLen(0x0227, 18) // ZC_GAME_GUARD +#elif PACKETVER >= 20090401 +packetLen(0x0227, 22) // ZC_GAME_GUARD +#elif PACKETVER >= 20090311 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20090225 +packetLen(0x0227, 86) // ZC_GAME_GUARD +#elif PACKETVER >= 20090218 +packetLen(0x0227, 17) // ZC_GAME_GUARD +#elif PACKETVER >= 20090211 +packetLen(0x0227, 20) // ZC_GAME_GUARD +#elif PACKETVER >= 20090204 +packetLen(0x0227, -1) // ZC_GAME_GUARD +#elif PACKETVER >= 20090129 +packetLen(0x0227, 4) // ZC_GAME_GUARD +#elif PACKETVER >= 20090120 +packetLen(0x0227, 29) // ZC_GAME_GUARD +#elif PACKETVER >= 20090114 +packetLen(0x0227, 4) // ZC_GAME_GUARD +#elif PACKETVER >= 20090107 +packetLen(0x0227, 9) // ZC_GAME_GUARD +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +#if PACKETVER >= 20090406 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20090401 +packetLen(0x0229, 33) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20090325 +packetLen(0x0229, 39) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20090318 +packetLen(0x0229, 27) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20090129 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20090120 +packetLen(0x0229, 9) // ZC_STATE_CHANGE3 +#elif PACKETVER >= 20090107 +packetLen(0x0229, -1) // ZC_STATE_CHANGE3 +#endif + +// Packet: 0x022a +#if PACKETVER >= 20090406 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090401 +packetLen(0x022a, 10) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090325 +packetLen(0x022a, 6) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090318 +packetLen(0x022a, 26) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090311 +packetLen(0x022a, 3) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090225 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090218 +packetLen(0x022a, 6) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090211 +packetLen(0x022a, 26) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090204 +packetLen(0x022a, 4) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090129 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090120 +packetLen(0x022a, 282) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090114 +packetLen(0x022a, -1) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20090107 +packetLen(0x022a, 30) // ZC_NOTIFY_STANDENTRY3 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x022b +#if PACKETVER >= 20090406 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20090401 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20090325 +packetLen(0x022b, 2) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20090225 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20090218 +packetLen(0x022b, 12) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20090211 +packetLen(0x022b, 16) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20090129 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20090120 +packetLen(0x022b, 3) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20090107 +packetLen(0x022b, -1) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20090406 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20090401 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20090318 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20090311 +packetLen(0x022c, 2) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20090211 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20090204 +packetLen(0x022c, 5) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20090114 +packetLen(0x022c, -1) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20090107 +packetLen(0x022c, 6) // ZC_NOTIFY_MOVEENTRY3 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x022d +#if PACKETVER >= 20090406 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20090401 +packetLen(0x022d, 27) // CZ_COMMAND_MER +#elif PACKETVER >= 20090325 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20090318 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20090311 +packetLen(0x022d, 28) // CZ_COMMAND_MER +#elif PACKETVER >= 20090225 +packetLen(0x022d, 11) // CZ_COMMAND_MER +#elif PACKETVER >= 20090218 +packetLen(0x022d, 67) // CZ_COMMAND_MER +#elif PACKETVER >= 20090211 +packetLen(0x022d, 31) // CZ_COMMAND_MER +#elif PACKETVER >= 20090204 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20090114 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20090107 +packetLen(0x022d, 14) // CZ_COMMAND_MER +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x022e +#if PACKETVER >= 20090406 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20090401 +packetLen(0x022e, 2) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20090325 +packetLen(0x022e, 16) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20090311 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20090225 +packetLen(0x022e, 26) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20090129 +packetLen(0x022e, -1) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20090120 +packetLen(0x022e, 8) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20090107 +packetLen(0x022e, 186) // ZC_PROPERTY_HOMUN +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x022f +#if PACKETVER >= 20090406 +packetLen(0x022f, 5) // ZC_FEED_MER +#elif PACKETVER >= 20090401 +packetLen(0x022f, 17) // ZC_FEED_MER +#elif PACKETVER >= 20090325 +packetLen(0x022f, 39) // ZC_FEED_MER +#elif PACKETVER >= 20090318 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20090311 +packetLen(0x022f, 23) // ZC_FEED_MER +#elif PACKETVER >= 20090225 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20090218 +packetLen(0x022f, 12) // ZC_FEED_MER +#elif PACKETVER >= 20090211 +packetLen(0x022f, 5) // ZC_FEED_MER +#elif PACKETVER >= 20090129 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20090120 +packetLen(0x022f, 31) // ZC_FEED_MER +#elif PACKETVER >= 20090114 +packetLen(0x022f, -1) // ZC_FEED_MER +#elif PACKETVER >= 20090107 +packetLen(0x022f, 2) // ZC_FEED_MER +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0230 +#if PACKETVER >= 20090406 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20090311 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20090225 +packetLen(0x0230, 30) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20090218 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20090211 +packetLen(0x0230, 10) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20090204 +packetLen(0x0230, 15) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20090129 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20090120 +packetLen(0x0230, 15) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20090114 +packetLen(0x0230, 5) // ZC_CHANGESTATE_MER +#elif PACKETVER >= 20090107 +packetLen(0x0230, -1) // ZC_CHANGESTATE_MER +#endif + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +#if PACKETVER >= 20090406 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20090325 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20090318 +packetLen(0x0232, 6) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20090311 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20090225 +packetLen(0x0232, 8) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20090114 +packetLen(0x0232, -1) // CZ_REQUEST_MOVENPC +#elif PACKETVER >= 20090107 +packetLen(0x0232, 3) // CZ_REQUEST_MOVENPC +#endif + +// Packet: 0x0233 +#if PACKETVER >= 20090406 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20090401 +packetLen(0x0233, 10) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20090325 +packetLen(0x0233, 4) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20090311 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20090225 +packetLen(0x0233, 60) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20090218 +packetLen(0x0233, 10) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20090204 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20090129 +packetLen(0x0233, -1) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20090114 +packetLen(0x0233, 6) // CZ_REQUEST_ACTNPC +#elif PACKETVER >= 20090107 +packetLen(0x0233, 7) // CZ_REQUEST_ACTNPC +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0234 +#if PACKETVER >= 20090406 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20090401 +packetLen(0x0234, 7) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20090318 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20090225 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20090218 +packetLen(0x0234, 7) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20090211 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20090204 +packetLen(0x0234, 16) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20090129 +packetLen(0x0234, -1) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20090120 +packetLen(0x0234, 10) // CZ_REQUEST_MOVETOOWNER +#elif PACKETVER >= 20090107 +packetLen(0x0234, 10) // CZ_REQUEST_MOVETOOWNER +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0235 +#if PACKETVER >= 20090311 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20090225 +packetLen(0x0235, 22) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20090218 +packetLen(0x0235, 79) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20090211 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20090204 +packetLen(0x0235, 21) // ZC_HOSKILLINFO_LIST +#elif PACKETVER >= 20090107 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST +#endif + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +#if PACKETVER >= 20090401 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#elif PACKETVER >= 20090325 +packetLen(0x0237, 43) // CZ_KILLER_RANK +#elif PACKETVER >= 20090211 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20090204 +packetLen(0x0237, 19) // CZ_KILLER_RANK +#elif PACKETVER >= 20090129 +packetLen(0x0237, 6) // CZ_KILLER_RANK +#elif PACKETVER >= 20090120 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#elif PACKETVER >= 20090114 +packetLen(0x0237, 2) // CZ_KILLER_RANK +#elif PACKETVER >= 20090107 +packetLen(0x0237, -1) // CZ_KILLER_RANK +#endif + +// Packet: 0x0238 +#if PACKETVER >= 20090406 +packetLen(0x0238, 282) // ZC_KILLER_RANK +#elif PACKETVER >= 20090401 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20090325 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20090318 +packetLen(0x0238, 3) // ZC_KILLER_RANK +#elif PACKETVER >= 20090225 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20090218 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20090211 +packetLen(0x0238, 3) // ZC_KILLER_RANK +#elif PACKETVER >= 20090204 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20090129 +packetLen(0x0238, 6) // ZC_KILLER_RANK +#elif PACKETVER >= 20090120 +packetLen(0x0238, -1) // ZC_KILLER_RANK +#elif PACKETVER >= 20090114 +packetLen(0x0238, 12) // ZC_KILLER_RANK +#elif PACKETVER >= 20090107 +packetLen(0x0238, 22) // ZC_KILLER_RANK +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0239 +#if PACKETVER >= 20090406 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090401 +packetLen(0x0239, 12) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090325 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090318 +packetLen(0x0239, 97) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090218 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090211 +packetLen(0x0239, 3) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090204 +packetLen(0x0239, 10) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090129 +packetLen(0x0239, 66) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090120 +packetLen(0x0239, -1) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090114 +packetLen(0x0239, 71) // ZC_HOSKILLINFO_UPDATE +#elif PACKETVER >= 20090107 +packetLen(0x0239, 7) // ZC_HOSKILLINFO_UPDATE +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x023a +#if PACKETVER >= 20090406 +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20090401 +packetLen(0x023a, 15) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20090318 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20090311 +packetLen(0x023a, 79) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20090225 +packetLen(0x023a, 8) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20090204 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20090129 +packetLen(0x023a, 10) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20090120 +packetLen(0x023a, -1) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20090114 +packetLen(0x023a, 22) // ZC_REQ_STORE_PASSWORD +#elif PACKETVER >= 20090107 +packetLen(0x023a, 90) // ZC_REQ_STORE_PASSWORD +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +#if PACKETVER >= 20090406 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20090318 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20090311 +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20090218 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20090211 +packetLen(0x023c, 4) // ZC_RESULT_STORE_PASSWORD +#elif PACKETVER >= 20090107 +packetLen(0x023c, -1) // ZC_RESULT_STORE_PASSWORD +#endif + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +#if PACKETVER >= 20090406 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20090401 +packetLen(0x0274, 15) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20090311 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20090225 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20090129 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20090120 +packetLen(0x0274, 2) // ZC_ACK_MAIL_RETURN +#elif PACKETVER >= 20090107 +packetLen(0x0274, -1) // ZC_ACK_MAIL_RETURN +#endif + +// Packet: 0x0275 +#if PACKETVER >= 20090701 +packetLen(0x0275, 37) // CH_ENTER2 +#endif + +// Packet: 0x0276 +#if PACKETVER >= 20090701 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 +#endif + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +#if PACKETVER >= 20090406 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090401 +packetLen(0x0287, 10) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090311 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090225 +packetLen(0x0287, 2) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090218 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090211 +packetLen(0x0287, 7) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090204 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090129 +packetLen(0x0287, 8) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090120 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090114 +packetLen(0x0287, 3) // ZC_PC_CASH_POINT_ITEMLIST +#elif PACKETVER >= 20090107 +packetLen(0x0287, 29) // ZC_PC_CASH_POINT_ITEMLIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0288 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +#if PACKETVER >= 20090318 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090311 +packetLen(0x0295, 81) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090225 +packetLen(0x0295, 8) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090218 +packetLen(0x0295, 4) // ZC_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090107 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0296 +#if PACKETVER >= 20090406 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090401 +packetLen(0x0296, 4) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090311 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090218 +packetLen(0x0296, 6) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090211 +packetLen(0x0296, 36) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090204 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090129 +packetLen(0x0296, 6) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090120 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090114 +packetLen(0x0296, 6) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090107 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 +#endif + +// Packet: 0x0297 +#if PACKETVER >= 20090211 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090204 +packetLen(0x0297, 59) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090129 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090120 +packetLen(0x0297, 58) // ZC_CART_EQUIPMENT_ITEMLIST2 +#elif PACKETVER >= 20090107 +packetLen(0x0297, 6) // ZC_CART_EQUIPMENT_ITEMLIST2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +#if PACKETVER >= 20090406 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090401 +packetLen(0x029a, 9) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090325 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090318 +packetLen(0x029a, 15) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090311 +packetLen(0x029a, 32) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090218 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090211 +packetLen(0x029a, 102) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090204 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090129 +packetLen(0x029a, 2) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090120 +packetLen(0x029a, -1) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20090107 +packetLen(0x029a, 6) // ZC_ITEM_PICKUP_ACK2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +#if PACKETVER >= 20090408 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG +#elif PACKETVER >= 20090325 +packetLen(0x02a6, 404) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20090408 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG +#elif PACKETVER >= 20090325 +packetLen(0x02a7, 404) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +#if PACKETVER >= 20090406 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090325 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090318 +packetLen(0x02e1, 114) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090311 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090225 +packetLen(0x02e1, 3) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090218 +packetLen(0x02e1, 2) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090211 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090204 +packetLen(0x02e1, 30) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090129 +packetLen(0x02e1, -1) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090120 +packetLen(0x02e1, 6) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090114 +packetLen(0x02e1, 60) // ZC_NOTIFY_ACT2 +#elif PACKETVER >= 20090107 +packetLen(0x02e1, 7) // ZC_NOTIFY_ACT2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +#if PACKETVER >= 20090406 +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20090318 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20090311 +packetLen(0x02ec, 7) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20090225 +packetLen(0x02ec, 2) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20090218 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20090211 +packetLen(0x02ec, 26) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20090204 +packetLen(0x02ec, 4) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20090120 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20090114 +packetLen(0x02ec, 9) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20090107 +packetLen(0x02ec, -1) // ZC_NOTIFY_MOVEENTRY4 +#endif + +// Packet: 0x02ed +#if PACKETVER >= 20090406 +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090401 +packetLen(0x02ed, 28) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090325 +packetLen(0x02ed, 15) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090318 +packetLen(0x02ed, 2) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090311 +packetLen(0x02ed, 6) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090225 +packetLen(0x02ed, 29) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090211 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090204 +packetLen(0x02ed, 23) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090129 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090120 +packetLen(0x02ed, 2) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20090107 +packetLen(0x02ed, -1) // ZC_NOTIFY_NEWENTRY4 +#endif + +// Packet: 0x02ee +#if PACKETVER >= 20090406 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20090401 +packetLen(0x02ee, 3) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20090325 +packetLen(0x02ee, 6) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20090318 +packetLen(0x02ee, 5) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20090311 +packetLen(0x02ee, 3) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20090211 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20090204 +packetLen(0x02ee, 20) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20090129 +packetLen(0x02ee, 13) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20090120 +packetLen(0x02ee, 21) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20090107 +packetLen(0x02ee, -1) // ZC_NOTIFY_STANDENTRY4 +#endif + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +#if PACKETVER >= 20090406 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20090401 +packetLen(0x02f3, 58) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20090318 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20090311 +packetLen(0x02f3, 2) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20090218 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20090211 +packetLen(0x02f3, 10) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20090204 +packetLen(0x02f3, 27) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20090129 +packetLen(0x02f3, 8) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20090120 +packetLen(0x02f3, 4) // CZ_IRMAIL_SEND +#elif PACKETVER >= 20090107 +packetLen(0x02f3, 3) // CZ_IRMAIL_SEND +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x02f4 +#if PACKETVER >= 20090401 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090325 +packetLen(0x02f4, 6) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090318 +packetLen(0x02f4, 2) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090311 +packetLen(0x02f4, 39) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090225 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090218 +packetLen(0x02f4, 11) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090211 +packetLen(0x02f4, 7) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090204 +packetLen(0x02f4, 6) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090129 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090120 +packetLen(0x02f4, 8) // ZC_IRMAIL_SEND_RES +#elif PACKETVER >= 20090107 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#endif + +// Packet: 0x02f5 +#if PACKETVER >= 20090325 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20090318 +packetLen(0x02f5, 10) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20090311 +packetLen(0x02f5, 60) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20090225 +packetLen(0x02f5, 6) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20090218 +packetLen(0x02f5, 8) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20090120 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20090114 +packetLen(0x02f5, 8) // ZC_IRMAIL_NOTIFY +#elif PACKETVER >= 20090107 +packetLen(0x02f5, 6) // ZC_IRMAIL_NOTIFY +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x02f6 +#if PACKETVER >= 20090401 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090325 +packetLen(0x02f6, 26) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090318 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090311 +packetLen(0x02f6, 65) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090225 +packetLen(0x02f6, 19) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090218 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090211 +packetLen(0x02f6, 5) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090129 +packetLen(0x02f6, 2) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090120 +packetLen(0x02f6, 18) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090114 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#elif PACKETVER >= 20090107 +packetLen(0x02f6, 8) // CZ_IRMAIL_LIST +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x02f7 +#if PACKETVER >= 20090406 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20090401 +packetLen(0x02f7, 4) +#elif PACKETVER >= 20090225 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20090218 +packetLen(0x02f7, 4) +#elif PACKETVER >= 20090211 +packetLen(0x02f7, 24) +#elif PACKETVER >= 20090204 +packetLen(0x02f7, 282) +#elif PACKETVER >= 20090114 +packetLen(0x02f7, -1) +#elif PACKETVER >= 20090107 +packetLen(0x02f7, 22) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x02f8 +#if PACKETVER >= 20090406 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20090401 +packetLen(0x02f8, 5) +#elif PACKETVER >= 20090325 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20090318 +packetLen(0x02f8, 3) +#elif PACKETVER >= 20090311 +packetLen(0x02f8, 26) +#elif PACKETVER >= 20090225 +packetLen(0x02f8, 6) +#elif PACKETVER >= 20090218 +packetLen(0x02f8, 15) +#elif PACKETVER >= 20090129 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20090120 +packetLen(0x02f8, 14) +#elif PACKETVER >= 20090114 +packetLen(0x02f8, -1) +#elif PACKETVER >= 20090107 +packetLen(0x02f8, 5) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x02f9 +#if PACKETVER >= 20090318 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20090225 +packetLen(0x02f9, 11) +#elif PACKETVER >= 20090218 +packetLen(0x02f9, 8) +#elif PACKETVER >= 20090211 +packetLen(0x02f9, 5) +#elif PACKETVER >= 20090204 +packetLen(0x02f9, 4) +#elif PACKETVER >= 20090120 +packetLen(0x02f9, -1) +#elif PACKETVER >= 20090114 +packetLen(0x02f9, 6) +#elif PACKETVER >= 20090107 +packetLen(0x02f9, 4) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x02fa +#if PACKETVER >= 20090225 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20090218 +packetLen(0x02fa, 11) +#elif PACKETVER >= 20090211 +packetLen(0x02fa, 14) +#elif PACKETVER >= 20090129 +packetLen(0x02fa, -1) +#elif PACKETVER >= 20090120 +packetLen(0x02fa, 10) +#elif PACKETVER >= 20090107 +packetLen(0x02fa, 3) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x02fb +#if PACKETVER >= 20090311 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20090225 +packetLen(0x02fb, 58) +#elif PACKETVER >= 20090218 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20090211 +packetLen(0x02fb, 42) +#elif PACKETVER >= 20090204 +packetLen(0x02fb, 30) +#elif PACKETVER >= 20090129 +packetLen(0x02fb, 4) +#elif PACKETVER >= 20090114 +packetLen(0x02fb, -1) +#elif PACKETVER >= 20090107 +packetLen(0x02fb, 10) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x02fc +#if PACKETVER >= 20090325 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20090318 +packetLen(0x02fc, 26) +#elif PACKETVER >= 20090225 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20090218 +packetLen(0x02fc, 6) +#elif PACKETVER >= 20090211 +packetLen(0x02fc, -1) +#elif PACKETVER >= 20090204 +packetLen(0x02fc, 39) +#elif PACKETVER >= 20090129 +packetLen(0x02fc, 54) +#elif PACKETVER >= 20090107 +packetLen(0x02fc, -1) +#endif + +// Packet: 0x02fd +#if PACKETVER >= 20090406 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20090401 +packetLen(0x02fd, 5) +#elif PACKETVER >= 20090325 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20090318 +packetLen(0x02fd, 4) +#elif PACKETVER >= 20090311 +packetLen(0x02fd, 42) +#elif PACKETVER >= 20090218 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20090211 +packetLen(0x02fd, 182) +#elif PACKETVER >= 20090129 +packetLen(0x02fd, -1) +#elif PACKETVER >= 20090120 +packetLen(0x02fd, 8) +#elif PACKETVER >= 20090114 +packetLen(0x02fd, 102) +#elif PACKETVER >= 20090107 +packetLen(0x02fd, 11) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x02fe +#if PACKETVER >= 20090325 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20090318 +packetLen(0x02fe, 5) +#elif PACKETVER >= 20090311 +packetLen(0x02fe, 19) +#elif PACKETVER >= 20090218 +packetLen(0x02fe, -1) +#elif PACKETVER >= 20090211 +packetLen(0x02fe, 9) +#elif PACKETVER >= 20090204 +packetLen(0x02fe, 6) +#elif PACKETVER >= 20090107 +packetLen(0x02fe, 2) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x02ff +#if PACKETVER >= 20090406 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20090401 +packetLen(0x02ff, 27) +#elif PACKETVER >= 20090325 +packetLen(0x02ff, 11) +#elif PACKETVER >= 20090225 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20090218 +packetLen(0x02ff, 54) +#elif PACKETVER >= 20090204 +packetLen(0x02ff, -1) +#elif PACKETVER >= 20090129 +packetLen(0x02ff, 9) +#elif PACKETVER >= 20090120 +packetLen(0x02ff, 3) +#elif PACKETVER >= 20090114 +packetLen(0x02ff, 30) +#elif PACKETVER >= 20090107 +packetLen(0x02ff, -1) +#endif + +// Packet: 0x0300 +#if PACKETVER >= 20090318 +packetLen(0x0300, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0300, 30) +#elif PACKETVER >= 20090225 +packetLen(0x0300, 4) +#elif PACKETVER >= 20090218 +packetLen(0x0300, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0300, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0300, 3) +#elif PACKETVER >= 20090107 +packetLen(0x0300, 10) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0301 +#if PACKETVER >= 20090406 +packetLen(0x0301, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0301, 22) +#elif PACKETVER >= 20090325 +packetLen(0x0301, 36) +#elif PACKETVER >= 20090218 +packetLen(0x0301, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0301, 10) +#elif PACKETVER >= 20090204 +packetLen(0x0301, 4) +#elif PACKETVER >= 20090129 +packetLen(0x0301, 28) +#elif PACKETVER >= 20090120 +packetLen(0x0301, 10) +#elif PACKETVER >= 20090114 +packetLen(0x0301, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0301, 10) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0302 +#if PACKETVER >= 20090325 +packetLen(0x0302, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0302, 3) +#elif PACKETVER >= 20090225 +packetLen(0x0302, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0302, 10) +#elif PACKETVER >= 20090211 +packetLen(0x0302, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0302, 81) +#elif PACKETVER >= 20090114 +packetLen(0x0302, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0302, 55) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0303 +#if PACKETVER >= 20090318 +packetLen(0x0303, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0303, 10) +#elif PACKETVER >= 20090225 +packetLen(0x0303, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0303, 53) +#elif PACKETVER >= 20090211 +packetLen(0x0303, 2) +#elif PACKETVER >= 20090204 +packetLen(0x0303, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0303, 39) +#elif PACKETVER >= 20090120 +packetLen(0x0303, 26) +#elif PACKETVER >= 20090114 +packetLen(0x0303, 10) +#elif PACKETVER >= 20090107 +packetLen(0x0303, -1) +#endif + +// Packet: 0x0304 +#if PACKETVER >= 20090406 +packetLen(0x0304, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0304, 6) +#elif PACKETVER >= 20090325 +packetLen(0x0304, 29) +#elif PACKETVER >= 20090318 +packetLen(0x0304, 19) +#elif PACKETVER >= 20090225 +packetLen(0x0304, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0304, 3) +#elif PACKETVER >= 20090120 +packetLen(0x0304, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0304, 3) +#elif PACKETVER >= 20090107 +packetLen(0x0304, 26) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0305 +#if PACKETVER >= 20090318 +packetLen(0x0305, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0305, 16) +#elif PACKETVER >= 20090120 +packetLen(0x0305, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0305, 4) +#elif PACKETVER >= 20090107 +packetLen(0x0305, 282) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0306 +#if PACKETVER >= 20090406 +packetLen(0x0306, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0306, 12) +#elif PACKETVER >= 20090318 +packetLen(0x0306, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0306, 282) +#elif PACKETVER >= 20090225 +packetLen(0x0306, 24) +#elif PACKETVER >= 20090218 +packetLen(0x0306, 33) +#elif PACKETVER >= 20090120 +packetLen(0x0306, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0306, 42) +#elif PACKETVER >= 20090107 +packetLen(0x0306, 33) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0307 +#if PACKETVER >= 20090225 +packetLen(0x0307, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0307, 6) +#elif PACKETVER >= 20090211 +packetLen(0x0307, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0307, -1) +#endif + +// Packet: 0x0308 +#if PACKETVER >= 20090406 +packetLen(0x0308, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0308, 26) +#elif PACKETVER >= 20090325 +packetLen(0x0308, 16) +#elif PACKETVER >= 20090311 +packetLen(0x0308, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0308, 16) +#elif PACKETVER >= 20090218 +packetLen(0x0308, 53) +#elif PACKETVER >= 20090211 +packetLen(0x0308, 15) +#elif PACKETVER >= 20090204 +packetLen(0x0308, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0308, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0308, 6) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0309 +#if PACKETVER >= 20090406 +packetLen(0x0309, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0309, 8) +#elif PACKETVER >= 20090325 +packetLen(0x0309, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0309, 30) +#elif PACKETVER >= 20090311 +packetLen(0x0309, 2) +#elif PACKETVER >= 20090129 +packetLen(0x0309, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0309, 8) +#elif PACKETVER >= 20090114 +packetLen(0x0309, 32) +#elif PACKETVER >= 20090107 +packetLen(0x0309, 14) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x030a +#if PACKETVER >= 20090325 +packetLen(0x030a, -1) +#elif PACKETVER >= 20090318 +packetLen(0x030a, 9) +#elif PACKETVER >= 20090311 +packetLen(0x030a, -1) +#elif PACKETVER >= 20090225 +packetLen(0x030a, 4) +#elif PACKETVER >= 20090218 +packetLen(0x030a, 3) +#elif PACKETVER >= 20090211 +packetLen(0x030a, -1) +#elif PACKETVER >= 20090204 +packetLen(0x030a, 182) +#elif PACKETVER >= 20090129 +packetLen(0x030a, -1) +#elif PACKETVER >= 20090120 +packetLen(0x030a, 10) +#elif PACKETVER >= 20090107 +packetLen(0x030a, 32) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x030b +#if PACKETVER >= 20090325 +packetLen(0x030b, -1) +#elif PACKETVER >= 20090318 +packetLen(0x030b, 4) +#elif PACKETVER >= 20090311 +packetLen(0x030b, 9) +#elif PACKETVER >= 20090225 +packetLen(0x030b, -1) +#elif PACKETVER >= 20090218 +packetLen(0x030b, 43) +#elif PACKETVER >= 20090211 +packetLen(0x030b, -1) +#elif PACKETVER >= 20090204 +packetLen(0x030b, 282) +#elif PACKETVER >= 20090129 +packetLen(0x030b, -1) +#elif PACKETVER >= 20090120 +packetLen(0x030b, 19) +#elif PACKETVER >= 20090114 +packetLen(0x030b, -1) +#elif PACKETVER >= 20090107 +packetLen(0x030b, 4) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x030c +#if PACKETVER >= 20090325 +packetLen(0x030c, -1) +#elif PACKETVER >= 20090318 +packetLen(0x030c, 5) +#elif PACKETVER >= 20090225 +packetLen(0x030c, -1) +#elif PACKETVER >= 20090218 +packetLen(0x030c, 3) +#elif PACKETVER >= 20090211 +packetLen(0x030c, -1) +#elif PACKETVER >= 20090204 +packetLen(0x030c, 6) +#elif PACKETVER >= 20090107 +packetLen(0x030c, -1) +#endif + +// Packet: 0x030d +#if PACKETVER >= 20090406 +packetLen(0x030d, -1) +#elif PACKETVER >= 20090401 +packetLen(0x030d, 8) +#elif PACKETVER >= 20090311 +packetLen(0x030d, -1) +#elif PACKETVER >= 20090225 +packetLen(0x030d, 67) +#elif PACKETVER >= 20090218 +packetLen(0x030d, 10) +#elif PACKETVER >= 20090211 +packetLen(0x030d, 27) +#elif PACKETVER >= 20090129 +packetLen(0x030d, -1) +#elif PACKETVER >= 20090120 +packetLen(0x030d, 33) +#elif PACKETVER >= 20090114 +packetLen(0x030d, 2) +#elif PACKETVER >= 20090107 +packetLen(0x030d, 2) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x030e +#if PACKETVER >= 20090406 +packetLen(0x030e, -1) +#elif PACKETVER >= 20090325 +packetLen(0x030e, 4) +#elif PACKETVER >= 20090218 +packetLen(0x030e, -1) +#elif PACKETVER >= 20090211 +packetLen(0x030e, 6) +#elif PACKETVER >= 20090129 +packetLen(0x030e, -1) +#elif PACKETVER >= 20090120 +packetLen(0x030e, 2) +#elif PACKETVER >= 20090114 +packetLen(0x030e, 65) +#elif PACKETVER >= 20090107 +packetLen(0x030e, 5) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x030f +#if PACKETVER >= 20090401 +packetLen(0x030f, -1) +#elif PACKETVER >= 20090325 +packetLen(0x030f, 57) +#elif PACKETVER >= 20090225 +packetLen(0x030f, -1) +#elif PACKETVER >= 20090218 +packetLen(0x030f, 2) +#elif PACKETVER >= 20090204 +packetLen(0x030f, -1) +#elif PACKETVER >= 20090129 +packetLen(0x030f, 8) +#elif PACKETVER >= 20090120 +packetLen(0x030f, 26) +#elif PACKETVER >= 20090114 +packetLen(0x030f, -1) +#elif PACKETVER >= 20090107 +packetLen(0x030f, 53) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0310 +#if PACKETVER >= 20090218 +packetLen(0x0310, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0310, 2) +#elif PACKETVER >= 20090204 +packetLen(0x0310, 11) +#elif PACKETVER >= 20090129 +packetLen(0x0310, 3) +#elif PACKETVER >= 20090120 +packetLen(0x0310, 15) +#elif PACKETVER >= 20090114 +packetLen(0x0310, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0310, -1) +#endif + +// Packet: 0x0311 +#if PACKETVER >= 20090406 +packetLen(0x0311, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0311, 6) +#elif PACKETVER >= 20090325 +packetLen(0x0311, 5) +#elif PACKETVER >= 20090204 +packetLen(0x0311, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0311, 6) +#elif PACKETVER >= 20090120 +packetLen(0x0311, 27) +#elif PACKETVER >= 20090114 +packetLen(0x0311, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0311, 2) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0312 +#if PACKETVER >= 20090325 +packetLen(0x0312, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0312, 5) +#elif PACKETVER >= 20090311 +packetLen(0x0312, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0312, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0312, 5) +#elif PACKETVER >= 20090211 +packetLen(0x0312, 4) +#elif PACKETVER >= 20090114 +packetLen(0x0312, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0312, 97) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0313 +#if PACKETVER >= 20090325 +packetLen(0x0313, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0313, 5) +#elif PACKETVER >= 20090311 +packetLen(0x0313, 6) +#elif PACKETVER >= 20090211 +packetLen(0x0313, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0313, 37) +#elif PACKETVER >= 20090129 +packetLen(0x0313, 11) +#elif PACKETVER >= 20090120 +packetLen(0x0313, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0313, 10) +#elif PACKETVER >= 20090107 +packetLen(0x0313, -1) +#endif + +// Packet: 0x0314 +#if PACKETVER >= 20090406 +packetLen(0x0314, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0314, 6) +#elif PACKETVER >= 20090218 +packetLen(0x0314, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0314, 60) +#elif PACKETVER >= 20090129 +packetLen(0x0314, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0314, 102) +#elif PACKETVER >= 20090114 +packetLen(0x0314, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0314, 11) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0315 +#if PACKETVER >= 20090401 +packetLen(0x0315, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0315, 2) +#elif PACKETVER >= 20090318 +packetLen(0x0315, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0315, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0315, 5) +#elif PACKETVER >= 20090204 +packetLen(0x0315, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0315, 6) +#elif PACKETVER >= 20090120 +packetLen(0x0315, 20) +#elif PACKETVER >= 20090114 +packetLen(0x0315, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0315, 30) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0316 +#if PACKETVER >= 20090406 +packetLen(0x0316, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0316, 13) +#elif PACKETVER >= 20090325 +packetLen(0x0316, 8) +#elif PACKETVER >= 20090225 +packetLen(0x0316, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0316, 6) +#elif PACKETVER >= 20090211 +packetLen(0x0316, 4) +#elif PACKETVER >= 20090204 +packetLen(0x0316, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0316, 11) +#elif PACKETVER >= 20090120 +packetLen(0x0316, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0316, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0316, 13) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0317 +#if PACKETVER >= 20090406 +packetLen(0x0317, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0317, 16) +#elif PACKETVER >= 20090318 +packetLen(0x0317, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0317, 6) +#elif PACKETVER >= 20090218 +packetLen(0x0317, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0317, 26) +#elif PACKETVER >= 20090204 +packetLen(0x0317, 8) +#elif PACKETVER >= 20090129 +packetLen(0x0317, 21) +#elif PACKETVER >= 20090120 +packetLen(0x0317, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0317, 5) +#elif PACKETVER >= 20090107 +packetLen(0x0317, -1) +#endif + +// Packet: 0x0318 +#if PACKETVER >= 20090401 +packetLen(0x0318, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0318, 6) +#elif PACKETVER >= 20090311 +packetLen(0x0318, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0318, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0318, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0318, 6) +#elif PACKETVER >= 20090114 +packetLen(0x0318, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0318, 59) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0319 +#if PACKETVER >= 20090401 +packetLen(0x0319, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0319, 33) +#elif PACKETVER >= 20090318 +packetLen(0x0319, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0319, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0319, 60) +#elif PACKETVER >= 20090218 +packetLen(0x0319, 11) +#elif PACKETVER >= 20090107 +packetLen(0x0319, -1) +#endif + +// Packet: 0x031a +#if PACKETVER >= 20090406 +packetLen(0x031a, -1) +#elif PACKETVER >= 20090401 +packetLen(0x031a, 6) +#elif PACKETVER >= 20090318 +packetLen(0x031a, -1) +#elif PACKETVER >= 20090311 +packetLen(0x031a, 33) +#elif PACKETVER >= 20090225 +packetLen(0x031a, 282) +#elif PACKETVER >= 20090218 +packetLen(0x031a, -1) +#elif PACKETVER >= 20090211 +packetLen(0x031a, 2) +#elif PACKETVER >= 20090204 +packetLen(0x031a, 7) +#elif PACKETVER >= 20090120 +packetLen(0x031a, -1) +#elif PACKETVER >= 20090114 +packetLen(0x031a, 23) +#elif PACKETVER >= 20090107 +packetLen(0x031a, 10) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x031b +#if PACKETVER >= 20090218 +packetLen(0x031b, -1) +#elif PACKETVER >= 20090211 +packetLen(0x031b, 19) +#elif PACKETVER >= 20090129 +packetLen(0x031b, -1) +#elif PACKETVER >= 20090120 +packetLen(0x031b, 7) +#elif PACKETVER >= 20090107 +packetLen(0x031b, 282) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x031c +#if PACKETVER >= 20090401 +packetLen(0x031c, -1) +#elif PACKETVER >= 20090325 +packetLen(0x031c, 14) +#elif PACKETVER >= 20090225 +packetLen(0x031c, -1) +#elif PACKETVER >= 20090218 +packetLen(0x031c, 20) +#elif PACKETVER >= 20090211 +packetLen(0x031c, 186) +#elif PACKETVER >= 20090204 +packetLen(0x031c, 6) +#elif PACKETVER >= 20090129 +packetLen(0x031c, 7) +#elif PACKETVER >= 20090114 +packetLen(0x031c, -1) +#elif PACKETVER >= 20090107 +packetLen(0x031c, 30) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x031d +#if PACKETVER >= 20090401 +packetLen(0x031d, -1) +#elif PACKETVER >= 20090325 +packetLen(0x031d, 6) +#elif PACKETVER >= 20090318 +packetLen(0x031d, -1) +#elif PACKETVER >= 20090311 +packetLen(0x031d, 28) +#elif PACKETVER >= 20090204 +packetLen(0x031d, -1) +#elif PACKETVER >= 20090129 +packetLen(0x031d, 5) +#elif PACKETVER >= 20090107 +packetLen(0x031d, -1) +#endif + +// Packet: 0x031e +#if PACKETVER >= 20090311 +packetLen(0x031e, -1) +#elif PACKETVER >= 20090225 +packetLen(0x031e, 10) +#elif PACKETVER >= 20090218 +packetLen(0x031e, -1) +#elif PACKETVER >= 20090211 +packetLen(0x031e, 2) +#elif PACKETVER >= 20090114 +packetLen(0x031e, -1) +#elif PACKETVER >= 20090107 +packetLen(0x031e, 54) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x031f +#if PACKETVER >= 20090401 +packetLen(0x031f, -1) +#elif PACKETVER >= 20090325 +packetLen(0x031f, 114) +#elif PACKETVER >= 20090318 +packetLen(0x031f, 17) +#elif PACKETVER >= 20090311 +packetLen(0x031f, 10) +#elif PACKETVER >= 20090225 +packetLen(0x031f, 6) +#elif PACKETVER >= 20090218 +packetLen(0x031f, 10) +#elif PACKETVER >= 20090114 +packetLen(0x031f, -1) +#elif PACKETVER >= 20090107 +packetLen(0x031f, 71) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0320 +#if PACKETVER >= 20090204 +packetLen(0x0320, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0320, 12) +#elif PACKETVER >= 20090120 +packetLen(0x0320, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0320, 16) +#elif PACKETVER >= 20090107 +packetLen(0x0320, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0321 +#if PACKETVER >= 20090401 +packetLen(0x0321, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0321, 22) +#elif PACKETVER >= 20090218 +packetLen(0x0321, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0321, 2) +#elif PACKETVER >= 20090204 +packetLen(0x0321, 186) +#elif PACKETVER >= 20090107 +packetLen(0x0321, -1) +#endif + +// Packet: 0x0322 +#if PACKETVER >= 20090401 +packetLen(0x0322, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0322, 10) +#elif PACKETVER >= 20090318 +packetLen(0x0322, 9) +#elif PACKETVER >= 20090218 +packetLen(0x0322, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0322, 8) +#elif PACKETVER >= 20090204 +packetLen(0x0322, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0322, 26) +#elif PACKETVER >= 20090120 +packetLen(0x0322, 8) +#elif PACKETVER >= 20090107 +packetLen(0x0322, 27) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0323 +#if PACKETVER >= 20090406 +packetLen(0x0323, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0323, 6) +#elif PACKETVER >= 20090311 +packetLen(0x0323, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0323, 3) +#elif PACKETVER >= 20090218 +packetLen(0x0323, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0323, 7) +#elif PACKETVER >= 20090204 +packetLen(0x0323, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0323, 12) +#elif PACKETVER >= 20090120 +packetLen(0x0323, 37) +#elif PACKETVER >= 20090114 +packetLen(0x0323, 7) +#elif PACKETVER >= 20090107 +packetLen(0x0323, 7) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0324 +#if PACKETVER >= 20090406 +packetLen(0x0324, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0324, 5) +#elif PACKETVER >= 20090325 +packetLen(0x0324, 33) +#elif PACKETVER >= 20090311 +packetLen(0x0324, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0324, 4) +#elif PACKETVER >= 20090218 +packetLen(0x0324, 2) +#elif PACKETVER >= 20090211 +packetLen(0x0324, 12) +#elif PACKETVER >= 20090204 +packetLen(0x0324, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0324, 97) +#elif PACKETVER >= 20090120 +packetLen(0x0324, 2) +#elif PACKETVER >= 20090114 +packetLen(0x0324, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0324, 10) +#endif + +// Packet: 0x0325 +#if PACKETVER >= 20090311 +packetLen(0x0325, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0325, 27) +#elif PACKETVER >= 20090129 +packetLen(0x0325, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0325, 6) +#elif PACKETVER >= 20090114 +packetLen(0x0325, 32) +#elif PACKETVER >= 20090107 +packetLen(0x0325, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0326 +#if PACKETVER >= 20090401 +packetLen(0x0326, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0326, 3) +#elif PACKETVER >= 20090225 +packetLen(0x0326, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0326, 6) +#elif PACKETVER >= 20090211 +packetLen(0x0326, 17) +#elif PACKETVER >= 20090204 +packetLen(0x0326, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0326, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0326, 14) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0327 +#if PACKETVER >= 20090406 +packetLen(0x0327, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0327, 10) +#elif PACKETVER >= 20090318 +packetLen(0x0327, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0327, 28) +#elif PACKETVER >= 20090211 +packetLen(0x0327, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0327, 9) +#elif PACKETVER >= 20090129 +packetLen(0x0327, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0327, 13) +#elif PACKETVER >= 20090107 +packetLen(0x0327, -1) +#endif + +// Packet: 0x0328 +#if PACKETVER >= 20090318 +packetLen(0x0328, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0328, 8) +#elif PACKETVER >= 20090225 +packetLen(0x0328, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0328, 6) +#elif PACKETVER >= 20090211 +packetLen(0x0328, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0328, 7) +#elif PACKETVER >= 20090129 +packetLen(0x0328, 14) +#elif PACKETVER >= 20090120 +packetLen(0x0328, 8) +#elif PACKETVER >= 20090107 +packetLen(0x0328, 26) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0329 +#if PACKETVER >= 20090406 +packetLen(0x0329, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0329, 60) +#elif PACKETVER >= 20090318 +packetLen(0x0329, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0329, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0329, 54) +#elif PACKETVER >= 20090218 +packetLen(0x0329, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0329, 2) +#elif PACKETVER >= 20090204 +packetLen(0x0329, 3) +#elif PACKETVER >= 20090120 +packetLen(0x0329, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0329, 114) +#elif PACKETVER >= 20090107 +packetLen(0x0329, -1) +#endif + +// Packet: 0x032a +#if PACKETVER >= 20090318 +packetLen(0x032a, -1) +#elif PACKETVER >= 20090311 +packetLen(0x032a, 66) +#elif PACKETVER >= 20090204 +packetLen(0x032a, -1) +#elif PACKETVER >= 20090129 +packetLen(0x032a, 6) +#elif PACKETVER >= 20090114 +packetLen(0x032a, -1) +#elif PACKETVER >= 20090107 +packetLen(0x032a, 7) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x032b +#if PACKETVER >= 20090406 +packetLen(0x032b, -1) +#elif PACKETVER >= 20090401 +packetLen(0x032b, 6) +#elif PACKETVER >= 20090325 +packetLen(0x032b, 3) +#elif PACKETVER >= 20090318 +packetLen(0x032b, -1) +#elif PACKETVER >= 20090311 +packetLen(0x032b, 10) +#elif PACKETVER >= 20090225 +packetLen(0x032b, 6) +#elif PACKETVER >= 20090218 +packetLen(0x032b, 17) +#elif PACKETVER >= 20090211 +packetLen(0x032b, -1) +#elif PACKETVER >= 20090204 +packetLen(0x032b, 55) +#elif PACKETVER >= 20090107 +packetLen(0x032b, 4) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x032c +#if PACKETVER >= 20090401 +packetLen(0x032c, -1) +#elif PACKETVER >= 20090325 +packetLen(0x032c, 6) +#elif PACKETVER >= 20090318 +packetLen(0x032c, -1) +#elif PACKETVER >= 20090311 +packetLen(0x032c, 3) +#elif PACKETVER >= 20090225 +packetLen(0x032c, -1) +#elif PACKETVER >= 20090218 +packetLen(0x032c, 58) +#elif PACKETVER >= 20090211 +packetLen(0x032c, 10) +#elif PACKETVER >= 20090129 +packetLen(0x032c, -1) +#elif PACKETVER >= 20090120 +packetLen(0x032c, 4) +#elif PACKETVER >= 20090114 +packetLen(0x032c, -1) +#elif PACKETVER >= 20090107 +packetLen(0x032c, 19) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x032d +#if PACKETVER >= 20090401 +packetLen(0x032d, -1) +#elif PACKETVER >= 20090325 +packetLen(0x032d, 11) +#elif PACKETVER >= 20090225 +packetLen(0x032d, -1) +#elif PACKETVER >= 20090218 +packetLen(0x032d, 10) +#elif PACKETVER >= 20090107 +packetLen(0x032d, 6) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x032e +#if PACKETVER >= 20090406 +packetLen(0x032e, -1) +#elif PACKETVER >= 20090401 +packetLen(0x032e, 68) +#elif PACKETVER >= 20090318 +packetLen(0x032e, -1) +#elif PACKETVER >= 20090311 +packetLen(0x032e, 17) +#elif PACKETVER >= 20090225 +packetLen(0x032e, 10) +#elif PACKETVER >= 20090218 +packetLen(0x032e, 2) +#elif PACKETVER >= 20090204 +packetLen(0x032e, -1) +#elif PACKETVER >= 20090129 +packetLen(0x032e, 10) +#elif PACKETVER >= 20090120 +packetLen(0x032e, -1) +#elif PACKETVER >= 20090107 +packetLen(0x032e, 6) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x032f +#if PACKETVER >= 20090218 +packetLen(0x032f, -1) +#elif PACKETVER >= 20090211 +packetLen(0x032f, 90) +#elif PACKETVER >= 20090204 +packetLen(0x032f, 3) +#elif PACKETVER >= 20090107 +packetLen(0x032f, -1) +#endif + +// Packet: 0x0330 +#if PACKETVER >= 20090318 +packetLen(0x0330, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0330, 7) +#elif PACKETVER >= 20090218 +packetLen(0x0330, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0330, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0330, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0330, 6) +#elif PACKETVER >= 20090120 +packetLen(0x0330, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0330, 3) +#elif PACKETVER >= 20090107 +packetLen(0x0330, -1) +#endif + +// Packet: 0x0331 +#if PACKETVER >= 20090318 +packetLen(0x0331, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0331, 5) +#elif PACKETVER >= 20090211 +packetLen(0x0331, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0331, 71) +#elif PACKETVER >= 20090129 +packetLen(0x0331, 29) +#elif PACKETVER >= 20090107 +packetLen(0x0331, -1) +#endif + +// Packet: 0x0332 +#if PACKETVER >= 20090401 +packetLen(0x0332, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0332, 11) +#elif PACKETVER >= 20090218 +packetLen(0x0332, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0332, 3) +#elif PACKETVER >= 20090129 +packetLen(0x0332, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0332, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0332, 3) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0333 +#if PACKETVER >= 20090406 +packetLen(0x0333, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0333, 282) +#elif PACKETVER >= 20090325 +packetLen(0x0333, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0333, 102) +#elif PACKETVER >= 20090311 +packetLen(0x0333, 6) +#elif PACKETVER >= 20090114 +packetLen(0x0333, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0333, 14) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0334 +#if PACKETVER >= 20090406 +packetLen(0x0334, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0334, 10) +#elif PACKETVER >= 20090325 +packetLen(0x0334, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0334, 3) +#elif PACKETVER >= 20090311 +packetLen(0x0334, 97) +#elif PACKETVER >= 20090225 +packetLen(0x0334, 3) +#elif PACKETVER >= 20090211 +packetLen(0x0334, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0334, 31) +#elif PACKETVER >= 20090120 +packetLen(0x0334, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0334, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0334, 27) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0335 +#if PACKETVER >= 20090401 +packetLen(0x0335, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0335, 11) +#elif PACKETVER >= 20090318 +packetLen(0x0335, 6) +#elif PACKETVER >= 20090311 +packetLen(0x0335, 71) +#elif PACKETVER >= 20090225 +packetLen(0x0335, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0335, 6) +#elif PACKETVER >= 20090211 +packetLen(0x0335, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0335, 10) +#elif PACKETVER >= 20090129 +packetLen(0x0335, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0335, -1) +#endif + +// Packet: 0x0336 +#if PACKETVER >= 20090325 +packetLen(0x0336, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0336, 2) +#elif PACKETVER >= 20090311 +packetLen(0x0336, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0336, 2) +#elif PACKETVER >= 20090218 +packetLen(0x0336, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0336, 8) +#elif PACKETVER >= 20090204 +packetLen(0x0336, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0336, 65) +#elif PACKETVER >= 20090120 +packetLen(0x0336, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0336, 5) +#elif PACKETVER >= 20090107 +packetLen(0x0336, 4) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0337 +#if PACKETVER >= 20090401 +packetLen(0x0337, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0337, 30) +#elif PACKETVER >= 20090318 +packetLen(0x0337, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0337, 30) +#elif PACKETVER >= 20090211 +packetLen(0x0337, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0337, 4) +#elif PACKETVER >= 20090129 +packetLen(0x0337, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0337, 4) +#elif PACKETVER >= 20090114 +packetLen(0x0337, 27) +#elif PACKETVER >= 20090107 +packetLen(0x0337, 6) +#endif + +// Packet: 0x0338 +#if PACKETVER >= 20090211 +packetLen(0x0338, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0338, 12) +#elif PACKETVER >= 20090114 +packetLen(0x0338, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0338, 4) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0339 +#if PACKETVER >= 20090311 +packetLen(0x0339, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0339, 14) +#elif PACKETVER >= 20090218 +packetLen(0x0339, 5) +#elif PACKETVER >= 20090204 +packetLen(0x0339, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0339, 4) +#elif PACKETVER >= 20090107 +packetLen(0x0339, -1) +#endif + +// Packet: 0x033a +#if PACKETVER >= 20090401 +packetLen(0x033a, -1) +#elif PACKETVER >= 20090325 +packetLen(0x033a, 3) +#elif PACKETVER >= 20090318 +packetLen(0x033a, 10) +#elif PACKETVER >= 20090218 +packetLen(0x033a, -1) +#elif PACKETVER >= 20090211 +packetLen(0x033a, 39) +#elif PACKETVER >= 20090204 +packetLen(0x033a, -1) +#elif PACKETVER >= 20090129 +packetLen(0x033a, 114) +#elif PACKETVER >= 20090120 +packetLen(0x033a, 16) +#elif PACKETVER >= 20090107 +packetLen(0x033a, -1) +#endif + +// Packet: 0x033b +#if PACKETVER >= 20090225 +packetLen(0x033b, -1) +#elif PACKETVER >= 20090218 +packetLen(0x033b, 26) +#elif PACKETVER >= 20090204 +packetLen(0x033b, -1) +#elif PACKETVER >= 20090129 +packetLen(0x033b, 17) +#elif PACKETVER >= 20090120 +packetLen(0x033b, 14) +#elif PACKETVER >= 20090107 +packetLen(0x033b, 97) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x033c +#if PACKETVER >= 20090401 +packetLen(0x033c, -1) +#elif PACKETVER >= 20090325 +packetLen(0x033c, 27) +#elif PACKETVER >= 20090311 +packetLen(0x033c, -1) +#elif PACKETVER >= 20090225 +packetLen(0x033c, 30) +#elif PACKETVER >= 20090211 +packetLen(0x033c, -1) +#elif PACKETVER >= 20090204 +packetLen(0x033c, 282) +#elif PACKETVER >= 20090129 +packetLen(0x033c, 3) +#elif PACKETVER >= 20090114 +packetLen(0x033c, -1) +#elif PACKETVER >= 20090107 +packetLen(0x033c, 3) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x033d +#if PACKETVER >= 20090406 +packetLen(0x033d, -1) +#elif PACKETVER >= 20090401 +packetLen(0x033d, 6) +#elif PACKETVER >= 20090325 +packetLen(0x033d, 11) +#elif PACKETVER >= 20090318 +packetLen(0x033d, 39) +#elif PACKETVER >= 20090311 +packetLen(0x033d, 3) +#elif PACKETVER >= 20090211 +packetLen(0x033d, -1) +#elif PACKETVER >= 20090204 +packetLen(0x033d, 6) +#elif PACKETVER >= 20090114 +packetLen(0x033d, -1) +#elif PACKETVER >= 20090107 +packetLen(0x033d, 43) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x033e +#if PACKETVER >= 20090225 +packetLen(0x033e, -1) +#elif PACKETVER >= 20090218 +packetLen(0x033e, 114) +#elif PACKETVER >= 20090204 +packetLen(0x033e, -1) +#elif PACKETVER >= 20090129 +packetLen(0x033e, 11) +#elif PACKETVER >= 20090120 +packetLen(0x033e, -1) +#elif PACKETVER >= 20090114 +packetLen(0x033e, 6) +#elif PACKETVER >= 20090107 +packetLen(0x033e, 4) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x033f +#if PACKETVER >= 20090406 +packetLen(0x033f, -1) +#elif PACKETVER >= 20090401 +packetLen(0x033f, 3) +#elif PACKETVER >= 20090325 +packetLen(0x033f, 42) +#elif PACKETVER >= 20090311 +packetLen(0x033f, -1) +#elif PACKETVER >= 20090225 +packetLen(0x033f, 3) +#elif PACKETVER >= 20090211 +packetLen(0x033f, -1) +#elif PACKETVER >= 20090204 +packetLen(0x033f, 28) +#elif PACKETVER >= 20090114 +packetLen(0x033f, -1) +#elif PACKETVER >= 20090107 +packetLen(0x033f, 6) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0340 +#if PACKETVER >= 20090406 +packetLen(0x0340, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0340, 71) +#elif PACKETVER >= 20090325 +packetLen(0x0340, 2) +#elif PACKETVER >= 20090318 +packetLen(0x0340, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0340, 7) +#elif PACKETVER >= 20090204 +packetLen(0x0340, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0340, 4) +#elif PACKETVER >= 20090114 +packetLen(0x0340, 68) +#elif PACKETVER >= 20090107 +packetLen(0x0340, 10) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0341 +#if PACKETVER >= 20090406 +packetLen(0x0341, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0341, 6) +#elif PACKETVER >= 20090318 +packetLen(0x0341, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0341, 11) +#elif PACKETVER >= 20090225 +packetLen(0x0341, 39) +#elif PACKETVER >= 20090218 +packetLen(0x0341, 7) +#elif PACKETVER >= 20090129 +packetLen(0x0341, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0341, 4) +#elif PACKETVER >= 20090114 +packetLen(0x0341, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0341, 5) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0342 +#if PACKETVER >= 20090401 +packetLen(0x0342, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0342, 2) +#elif PACKETVER >= 20090318 +packetLen(0x0342, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0342, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0342, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0342, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0342, 36) +#elif PACKETVER >= 20090120 +packetLen(0x0342, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0342, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0342, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0343 +#if PACKETVER >= 20090325 +packetLen(0x0343, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0343, 7) +#elif PACKETVER >= 20090311 +packetLen(0x0343, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0343, 32) +#elif PACKETVER >= 20090218 +packetLen(0x0343, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0343, 2) +#elif PACKETVER >= 20090129 +packetLen(0x0343, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0343, 5) +#elif PACKETVER >= 20090114 +packetLen(0x0343, 8) +#elif PACKETVER >= 20090107 +packetLen(0x0343, 27) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0344 +#if PACKETVER >= 20090401 +packetLen(0x0344, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0344, 3) +#elif PACKETVER >= 20090318 +packetLen(0x0344, 14) +#elif PACKETVER >= 20090311 +packetLen(0x0344, 11) +#elif PACKETVER >= 20090211 +packetLen(0x0344, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0344, 2) +#elif PACKETVER >= 20090129 +packetLen(0x0344, 7) +#elif PACKETVER >= 20090107 +packetLen(0x0344, -1) +#endif + +// Packet: 0x0345 +#if PACKETVER >= 20090401 +packetLen(0x0345, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0345, 8) +#elif PACKETVER >= 20090129 +packetLen(0x0345, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0345, 19) +#elif PACKETVER >= 20090107 +packetLen(0x0345, -1) +#endif + +// Packet: 0x0346 +#if PACKETVER >= 20090406 +packetLen(0x0346, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0346, 13) +#elif PACKETVER >= 20090325 +packetLen(0x0346, 59) +#elif PACKETVER >= 20090318 +packetLen(0x0346, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0346, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0346, 4) +#elif PACKETVER >= 20090204 +packetLen(0x0346, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0346, 6) +#elif PACKETVER >= 20090120 +packetLen(0x0346, 22) +#elif PACKETVER >= 20090114 +packetLen(0x0346, 19) +#elif PACKETVER >= 20090107 +packetLen(0x0346, 13) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0347 +#if PACKETVER >= 20090401 +packetLen(0x0347, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0347, 11) +#elif PACKETVER >= 20090318 +packetLen(0x0347, 15) +#elif PACKETVER >= 20090311 +packetLen(0x0347, 7) +#elif PACKETVER >= 20090225 +packetLen(0x0347, 10) +#elif PACKETVER >= 20090218 +packetLen(0x0347, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0347, 10) +#elif PACKETVER >= 20090129 +packetLen(0x0347, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0347, 4) +#elif PACKETVER >= 20090114 +packetLen(0x0347, 10) +#elif PACKETVER >= 20090107 +packetLen(0x0347, 23) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0348 +#if PACKETVER >= 20090406 +packetLen(0x0348, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0348, 7) +#elif PACKETVER >= 20090325 +packetLen(0x0348, 30) +#elif PACKETVER >= 20090318 +packetLen(0x0348, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0348, 6) +#elif PACKETVER >= 20090218 +packetLen(0x0348, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0348, 3) +#elif PACKETVER >= 20090114 +packetLen(0x0348, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0348, 3) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0349 +#if PACKETVER >= 20090406 +packetLen(0x0349, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0349, 2) +#elif PACKETVER >= 20090311 +packetLen(0x0349, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0349, 4) +#elif PACKETVER >= 20090218 +packetLen(0x0349, 31) +#elif PACKETVER >= 20090129 +packetLen(0x0349, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0349, 10) +#elif PACKETVER >= 20090114 +packetLen(0x0349, 22) +#elif PACKETVER >= 20090107 +packetLen(0x0349, 11) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x034a +#if PACKETVER >= 20090406 +packetLen(0x034a, -1) +#elif PACKETVER >= 20090401 +packetLen(0x034a, 9) +#elif PACKETVER >= 20090325 +packetLen(0x034a, -1) +#elif PACKETVER >= 20090318 +packetLen(0x034a, 31) +#elif PACKETVER >= 20090311 +packetLen(0x034a, -1) +#elif PACKETVER >= 20090225 +packetLen(0x034a, 22) +#elif PACKETVER >= 20090218 +packetLen(0x034a, 19) +#elif PACKETVER >= 20090211 +packetLen(0x034a, 10) +#elif PACKETVER >= 20090129 +packetLen(0x034a, -1) +#elif PACKETVER >= 20090120 +packetLen(0x034a, 6) +#elif PACKETVER >= 20090114 +packetLen(0x034a, 36) +#elif PACKETVER >= 20090107 +packetLen(0x034a, 2) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x034b +#if PACKETVER >= 20090225 +packetLen(0x034b, -1) +#elif PACKETVER >= 20090218 +packetLen(0x034b, 6) +#elif PACKETVER >= 20090211 +packetLen(0x034b, 23) +#elif PACKETVER >= 20090204 +packetLen(0x034b, 7) +#elif PACKETVER >= 20090114 +packetLen(0x034b, -1) +#elif PACKETVER >= 20090107 +packetLen(0x034b, 54) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x034c +#if PACKETVER >= 20090225 +packetLen(0x034c, -1) +#elif PACKETVER >= 20090218 +packetLen(0x034c, 54) +#elif PACKETVER >= 20090211 +packetLen(0x034c, 28) +#elif PACKETVER >= 20090204 +packetLen(0x034c, -1) +#elif PACKETVER >= 20090129 +packetLen(0x034c, 282) +#elif PACKETVER >= 20090120 +packetLen(0x034c, 65) +#elif PACKETVER >= 20090114 +packetLen(0x034c, -1) +#elif PACKETVER >= 20090107 +packetLen(0x034c, 3) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x034d +#if PACKETVER >= 20090406 +packetLen(0x034d, -1) +#elif PACKETVER >= 20090401 +packetLen(0x034d, 6) +#elif PACKETVER >= 20090325 +packetLen(0x034d, 5) +#elif PACKETVER >= 20090318 +packetLen(0x034d, -1) +#elif PACKETVER >= 20090311 +packetLen(0x034d, 2) +#elif PACKETVER >= 20090211 +packetLen(0x034d, -1) +#elif PACKETVER >= 20090204 +packetLen(0x034d, 30) +#elif PACKETVER >= 20090129 +packetLen(0x034d, -1) +#elif PACKETVER >= 20090120 +packetLen(0x034d, 23) +#elif PACKETVER >= 20090114 +packetLen(0x034d, 2) +#elif PACKETVER >= 20090107 +packetLen(0x034d, 60) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x034e +#if PACKETVER >= 20090401 +packetLen(0x034e, -1) +#elif PACKETVER >= 20090325 +packetLen(0x034e, 8) +#elif PACKETVER >= 20090318 +packetLen(0x034e, 7) +#elif PACKETVER >= 20090218 +packetLen(0x034e, -1) +#elif PACKETVER >= 20090211 +packetLen(0x034e, 8) +#elif PACKETVER >= 20090114 +packetLen(0x034e, -1) +#elif PACKETVER >= 20090107 +packetLen(0x034e, 31) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x034f +#if PACKETVER >= 20090406 +packetLen(0x034f, -1) +#elif PACKETVER >= 20090401 +packetLen(0x034f, 6) +#elif PACKETVER >= 20090318 +packetLen(0x034f, 19) +#elif PACKETVER >= 20090311 +packetLen(0x034f, -1) +#elif PACKETVER >= 20090225 +packetLen(0x034f, 66) +#elif PACKETVER >= 20090218 +packetLen(0x034f, 6) +#elif PACKETVER >= 20090211 +packetLen(0x034f, -1) +#elif PACKETVER >= 20090204 +packetLen(0x034f, 7) +#elif PACKETVER >= 20090114 +packetLen(0x034f, -1) +#elif PACKETVER >= 20090107 +packetLen(0x034f, 27) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0350 +#if PACKETVER >= 20090406 +packetLen(0x0350, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0350, 14) +#elif PACKETVER >= 20090325 +packetLen(0x0350, 8) +#elif PACKETVER >= 20090225 +packetLen(0x0350, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0350, 3) +#elif PACKETVER >= 20090211 +packetLen(0x0350, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0350, 4) +#elif PACKETVER >= 20090129 +packetLen(0x0350, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0350, 3) +#elif PACKETVER >= 20090114 +packetLen(0x0350, 28) +#elif PACKETVER >= 20090107 +packetLen(0x0350, -1) +#endif + +// Packet: 0x0351 +#if PACKETVER >= 20090401 +packetLen(0x0351, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0351, 12) +#elif PACKETVER >= 20090311 +packetLen(0x0351, 2) +#elif PACKETVER >= 20090225 +packetLen(0x0351, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0351, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0351, 30) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0352 +#if PACKETVER >= 20090406 +packetLen(0x0352, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0352, 14) +#elif PACKETVER >= 20090325 +packetLen(0x0352, 7) +#elif PACKETVER >= 20090318 +packetLen(0x0352, 8) +#elif PACKETVER >= 20090311 +packetLen(0x0352, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0352, 6) +#elif PACKETVER >= 20090218 +packetLen(0x0352, 7) +#elif PACKETVER >= 20090204 +packetLen(0x0352, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0352, 3) +#elif PACKETVER >= 20090107 +packetLen(0x0352, 14) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0353 +#if PACKETVER >= 20090406 +packetLen(0x0353, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0353, 2) +#elif PACKETVER >= 20090325 +packetLen(0x0353, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0353, 4) +#elif PACKETVER >= 20090311 +packetLen(0x0353, 2) +#elif PACKETVER >= 20090225 +packetLen(0x0353, 54) +#elif PACKETVER >= 20090218 +packetLen(0x0353, 39) +#elif PACKETVER >= 20090120 +packetLen(0x0353, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0353, 4) +#elif PACKETVER >= 20090107 +packetLen(0x0353, 6) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0354 +#if PACKETVER >= 20090311 +packetLen(0x0354, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0354, 23) +#elif PACKETVER >= 20090218 +packetLen(0x0354, 16) +#elif PACKETVER >= 20090211 +packetLen(0x0354, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0354, 97) +#elif PACKETVER >= 20090129 +packetLen(0x0354, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0354, 14) +#elif PACKETVER >= 20090114 +packetLen(0x0354, 29) +#elif PACKETVER >= 20090107 +packetLen(0x0354, 20) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0355 +#if PACKETVER >= 20090401 +packetLen(0x0355, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0355, 97) +#elif PACKETVER >= 20090318 +packetLen(0x0355, 4) +#elif PACKETVER >= 20090218 +packetLen(0x0355, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0355, 10) +#elif PACKETVER >= 20090129 +packetLen(0x0355, 3) +#elif PACKETVER >= 20090114 +packetLen(0x0355, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0355, 16) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0356 +#if PACKETVER >= 20090406 +packetLen(0x0356, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0356, 28) +#elif PACKETVER >= 20090325 +packetLen(0x0356, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0356, 37) +#elif PACKETVER >= 20090311 +packetLen(0x0356, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0356, 81) +#elif PACKETVER >= 20090211 +packetLen(0x0356, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0356, 5) +#elif PACKETVER >= 20090129 +packetLen(0x0356, 11) +#elif PACKETVER >= 20090120 +packetLen(0x0356, 10) +#elif PACKETVER >= 20090114 +packetLen(0x0356, 28) +#elif PACKETVER >= 20090107 +packetLen(0x0356, -1) +#endif + +// Packet: 0x0357 +#if PACKETVER >= 20090406 +packetLen(0x0357, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0357, 8) +#elif PACKETVER >= 20090318 +packetLen(0x0357, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0357, 20) +#elif PACKETVER >= 20090225 +packetLen(0x0357, 4) +#elif PACKETVER >= 20090218 +packetLen(0x0357, 11) +#elif PACKETVER >= 20090211 +packetLen(0x0357, 13) +#elif PACKETVER >= 20090204 +packetLen(0x0357, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0357, 10) +#elif PACKETVER >= 20090120 +packetLen(0x0357, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0357, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0357, -1) +#endif + +// Packet: 0x0358 +#if PACKETVER >= 20090325 +packetLen(0x0358, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0358, 4) +#elif PACKETVER >= 20090311 +packetLen(0x0358, 26) +#elif PACKETVER >= 20090225 +packetLen(0x0358, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0358, 32) +#elif PACKETVER >= 20090120 +packetLen(0x0358, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0358, 5) +#elif PACKETVER >= 20090107 +packetLen(0x0358, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0359 +#if PACKETVER >= 20090218 +packetLen(0x0359, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0359, 8) +#elif PACKETVER >= 20090204 +packetLen(0x0359, 29) +#elif PACKETVER >= 20090129 +packetLen(0x0359, 3) +#elif PACKETVER >= 20090107 +packetLen(0x0359, -1) +#endif + +// Packet: 0x035a +#if PACKETVER >= 20090406 +packetLen(0x035a, -1) +#elif PACKETVER >= 20090401 +packetLen(0x035a, 11) +#elif PACKETVER >= 20090311 +packetLen(0x035a, -1) +#elif PACKETVER >= 20090225 +packetLen(0x035a, 29) +#elif PACKETVER >= 20090218 +packetLen(0x035a, -1) +#elif PACKETVER >= 20090211 +packetLen(0x035a, 30) +#elif PACKETVER >= 20090204 +packetLen(0x035a, 3) +#elif PACKETVER >= 20090107 +packetLen(0x035a, 12) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x035b +#if PACKETVER >= 20090325 +packetLen(0x035b, -1) +#elif PACKETVER >= 20090318 +packetLen(0x035b, 26) +#elif PACKETVER >= 20090311 +packetLen(0x035b, 14) +#elif PACKETVER >= 20090120 +packetLen(0x035b, -1) +#elif PACKETVER >= 20090114 +packetLen(0x035b, 3) +#elif PACKETVER >= 20090107 +packetLen(0x035b, 10) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20090406 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20090401 +packetLen(0x035f, 11) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20090325 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20090318 +packetLen(0x035f, 67) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20090311 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20090225 +packetLen(0x035f, 26) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20090218 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20090129 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20090120 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20090107 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20090401 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090325 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090318 +packetLen(0x0360, 4) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090311 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090225 +packetLen(0x0360, 8) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090211 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090204 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090129 +packetLen(0x0360, 4) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090120 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090114 +packetLen(0x0360, 11) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20090107 +packetLen(0x0360, 29) // CZ_REQUEST_TIME2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20090406 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20090401 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20090325 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20090225 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20090218 +packetLen(0x0361, 22) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20090211 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20090204 +packetLen(0x0361, 86) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20090120 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20090114 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20090107 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20090318 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20090225 +packetLen(0x0362, 3) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20090218 +packetLen(0x0362, 11) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20090211 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20090204 +packetLen(0x0362, 26) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20090120 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20090114 +packetLen(0x0362, 15) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20090107 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20090401 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20090325 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20090311 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20090225 +packetLen(0x0363, 13) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20090211 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20090204 +packetLen(0x0363, 30) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20090120 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20090114 +packetLen(0x0363, 4) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20090107 +packetLen(0x0363, 34) // CZ_ITEM_THROW2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20090406 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090401 +packetLen(0x0364, 30) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090325 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090318 +packetLen(0x0364, 30) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090311 +packetLen(0x0364, 3) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090225 +packetLen(0x0364, 30) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090218 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090204 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090129 +packetLen(0x0364, 7) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090120 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090114 +packetLen(0x0364, 14) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20090107 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20090318 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20090311 +packetLen(0x0365, 60) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20090211 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20090204 +packetLen(0x0365, 54) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20090120 +packetLen(0x0365, 67) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20090107 +packetLen(0x0365, 4) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20090406 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20090401 +packetLen(0x0366, 8) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20090318 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20090311 +packetLen(0x0366, 16) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20090107 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20090406 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20090401 +packetLen(0x0367, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20090325 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20090318 +packetLen(0x0367, 30) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20090218 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20090211 +packetLen(0x0367, 15) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20090204 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20090129 +packetLen(0x0367, 29) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20090107 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20090204 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20090129 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20090120 +packetLen(0x0368, 71) // CZ_REQNAME2 +#elif PACKETVER >= 20090114 +packetLen(0x0368, 30) // CZ_REQNAME2 +#elif PACKETVER >= 20090107 +packetLen(0x0368, 53) // CZ_REQNAME2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20090318 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20090311 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20090225 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20090211 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20090204 +packetLen(0x0369, 3) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20090114 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20090107 +packetLen(0x0369, 19) // CZ_REQNAME_BYGID2 +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x036a +#if PACKETVER >= 20090311 +packetLen(0x036a, -1) +#elif PACKETVER >= 20090225 +packetLen(0x036a, 44) +#elif PACKETVER >= 20090218 +packetLen(0x036a, -1) +#elif PACKETVER >= 20090211 +packetLen(0x036a, 8) +#elif PACKETVER >= 20090204 +packetLen(0x036a, -1) +#elif PACKETVER >= 20090129 +packetLen(0x036a, 6) +#elif PACKETVER >= 20090120 +packetLen(0x036a, 24) +#elif PACKETVER >= 20090114 +packetLen(0x036a, 282) +#elif PACKETVER >= 20090107 +packetLen(0x036a, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x036b +#if PACKETVER >= 20090311 +packetLen(0x036b, -1) +#elif PACKETVER >= 20090225 +packetLen(0x036b, 9) +#elif PACKETVER >= 20090218 +packetLen(0x036b, 2) +#elif PACKETVER >= 20090211 +packetLen(0x036b, -1) +#elif PACKETVER >= 20090204 +packetLen(0x036b, 19) +#elif PACKETVER >= 20090120 +packetLen(0x036b, -1) +#elif PACKETVER >= 20090114 +packetLen(0x036b, 53) +#elif PACKETVER >= 20090107 +packetLen(0x036b, 10) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x036c +#if PACKETVER >= 20090401 +packetLen(0x036c, -1) +#elif PACKETVER >= 20090325 +packetLen(0x036c, 6) +#elif PACKETVER >= 20090318 +packetLen(0x036c, 186) +#elif PACKETVER >= 20090311 +packetLen(0x036c, -1) +#elif PACKETVER >= 20090225 +packetLen(0x036c, 6) +#elif PACKETVER >= 20090204 +packetLen(0x036c, -1) +#elif PACKETVER >= 20090120 +packetLen(0x036c, 26) +#elif PACKETVER >= 20090114 +packetLen(0x036c, 10) +#elif PACKETVER >= 20090107 +packetLen(0x036c, 5) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x036d +#if PACKETVER >= 20090406 +packetLen(0x036d, -1) +#elif PACKETVER >= 20090401 +packetLen(0x036d, 5) +#elif PACKETVER >= 20090311 +packetLen(0x036d, -1) +#elif PACKETVER >= 20090225 +packetLen(0x036d, 18) +#elif PACKETVER >= 20090218 +packetLen(0x036d, 10) +#elif PACKETVER >= 20090120 +packetLen(0x036d, -1) +#elif PACKETVER >= 20090114 +packetLen(0x036d, 14) +#elif PACKETVER >= 20090107 +packetLen(0x036d, 2) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x036e +#if PACKETVER >= 20090406 +packetLen(0x036e, -1) +#elif PACKETVER >= 20090401 +packetLen(0x036e, 2) +#elif PACKETVER >= 20090311 +packetLen(0x036e, -1) +#elif PACKETVER >= 20090225 +packetLen(0x036e, 3) +#elif PACKETVER >= 20090120 +packetLen(0x036e, -1) +#elif PACKETVER >= 20090114 +packetLen(0x036e, 4) +#elif PACKETVER >= 20090107 +packetLen(0x036e, -1) +#endif + +// Packet: 0x036f +#if PACKETVER >= 20090325 +packetLen(0x036f, -1) +#elif PACKETVER >= 20090318 +packetLen(0x036f, 4) +#elif PACKETVER >= 20090311 +packetLen(0x036f, -1) +#elif PACKETVER >= 20090225 +packetLen(0x036f, 5) +#elif PACKETVER >= 20090218 +packetLen(0x036f, -1) +#elif PACKETVER >= 20090211 +packetLen(0x036f, 29) +#elif PACKETVER >= 20090204 +packetLen(0x036f, 10) +#elif PACKETVER >= 20090129 +packetLen(0x036f, -1) +#elif PACKETVER >= 20090120 +packetLen(0x036f, 4) +#elif PACKETVER >= 20090107 +packetLen(0x036f, 28) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0370 +#if PACKETVER >= 20090406 +packetLen(0x0370, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0370, 60) +#elif PACKETVER >= 20090218 +packetLen(0x0370, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0370, 9) +#elif PACKETVER >= 20090204 +packetLen(0x0370, 8) +#elif PACKETVER >= 20090129 +packetLen(0x0370, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0370, 28) +#elif PACKETVER >= 20090107 +packetLen(0x0370, -1) +#endif + +// Packet: 0x0371 +#if PACKETVER >= 20090406 +packetLen(0x0371, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0371, 8) +#elif PACKETVER >= 20090318 +packetLen(0x0371, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0371, 26) +#elif PACKETVER >= 20090225 +packetLen(0x0371, 22) +#elif PACKETVER >= 20090218 +packetLen(0x0371, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0371, 5) +#elif PACKETVER >= 20090120 +packetLen(0x0371, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0371, 86) +#elif PACKETVER >= 20090107 +packetLen(0x0371, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0372 +#if PACKETVER >= 20090318 +packetLen(0x0372, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0372, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0372, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0372, 10) +#elif PACKETVER >= 20090211 +packetLen(0x0372, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0372, 8) +#elif PACKETVER >= 20090120 +packetLen(0x0372, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0372, 8) +#elif PACKETVER >= 20090107 +packetLen(0x0372, -1) +#endif + +// Packet: 0x0373 +#if PACKETVER >= 20090406 +packetLen(0x0373, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0373, 7) +#elif PACKETVER >= 20090325 +packetLen(0x0373, 14) +#elif PACKETVER >= 20090318 +packetLen(0x0373, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0373, 2) +#elif PACKETVER >= 20090225 +packetLen(0x0373, 4) +#elif PACKETVER >= 20090218 +packetLen(0x0373, 67) +#elif PACKETVER >= 20090204 +packetLen(0x0373, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0373, 10) +#elif PACKETVER >= 20090107 +packetLen(0x0373, -1) +#endif + +// Packet: 0x0374 +#if PACKETVER >= 20090406 +packetLen(0x0374, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0374, 29) +#elif PACKETVER >= 20090325 +packetLen(0x0374, 68) +#elif PACKETVER >= 20090318 +packetLen(0x0374, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0374, 13) +#elif PACKETVER >= 20090225 +packetLen(0x0374, 11) +#elif PACKETVER >= 20090218 +packetLen(0x0374, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0374, 60) +#elif PACKETVER >= 20090204 +packetLen(0x0374, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0374, 19) +#elif PACKETVER >= 20090120 +packetLen(0x0374, 7) +#elif PACKETVER >= 20090107 +packetLen(0x0374, 36) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0375 +#if PACKETVER >= 20090129 +packetLen(0x0375, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0375, 8) +#elif PACKETVER >= 20090114 +packetLen(0x0375, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0375, 6) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0376 +#if PACKETVER >= 20090406 +packetLen(0x0376, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0376, 30) +#elif PACKETVER >= 20090311 +packetLen(0x0376, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0376, 60) +#elif PACKETVER >= 20090204 +packetLen(0x0376, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0376, 5) +#elif PACKETVER >= 20090120 +packetLen(0x0376, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0376, 14) +#elif PACKETVER >= 20090107 +packetLen(0x0376, 10) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0377 +#if PACKETVER >= 20090406 +packetLen(0x0377, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0377, 11) +#elif PACKETVER >= 20090211 +packetLen(0x0377, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0377, 12) +#elif PACKETVER >= 20090107 +packetLen(0x0377, -1) +#endif + +// Packet: 0x0378 +#if PACKETVER >= 20090325 +packetLen(0x0378, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0378, 14) +#elif PACKETVER >= 20090311 +packetLen(0x0378, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0378, 10) +#elif PACKETVER >= 20090211 +packetLen(0x0378, 6) +#elif PACKETVER >= 20090114 +packetLen(0x0378, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0378, 6) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0379 +#if PACKETVER >= 20090406 +packetLen(0x0379, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0379, 26) +#elif PACKETVER >= 20090318 +packetLen(0x0379, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0379, 22) +#elif PACKETVER >= 20090225 +packetLen(0x0379, 11) +#elif PACKETVER >= 20090218 +packetLen(0x0379, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0379, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0379, 9) +#elif PACKETVER >= 20090120 +packetLen(0x0379, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0379, 10) +#elif PACKETVER >= 20090107 +packetLen(0x0379, -1) +#endif + +// Packet: 0x037a +#if PACKETVER >= 20090401 +packetLen(0x037a, -1) +#elif PACKETVER >= 20090325 +packetLen(0x037a, 30) +#elif PACKETVER >= 20090318 +packetLen(0x037a, -1) +#elif PACKETVER >= 20090311 +packetLen(0x037a, 11) +#elif PACKETVER >= 20090211 +packetLen(0x037a, -1) +#elif PACKETVER >= 20090204 +packetLen(0x037a, 3) +#elif PACKETVER >= 20090129 +packetLen(0x037a, 19) +#elif PACKETVER >= 20090107 +packetLen(0x037a, 3) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x037b +#if PACKETVER >= 20090318 +packetLen(0x037b, -1) +#elif PACKETVER >= 20090311 +packetLen(0x037b, 8) +#elif PACKETVER >= 20090218 +packetLen(0x037b, -1) +#elif PACKETVER >= 20090211 +packetLen(0x037b, 11) +#elif PACKETVER >= 20090204 +packetLen(0x037b, 66) +#elif PACKETVER >= 20090129 +packetLen(0x037b, -1) +#elif PACKETVER >= 20090120 +packetLen(0x037b, 55) +#elif PACKETVER >= 20090114 +packetLen(0x037b, -1) +#elif PACKETVER >= 20090107 +packetLen(0x037b, 5) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x037c +#if PACKETVER >= 20090406 +packetLen(0x037c, -1) +#elif PACKETVER >= 20090401 +packetLen(0x037c, 22) +#elif PACKETVER >= 20090318 +packetLen(0x037c, -1) +#elif PACKETVER >= 20090311 +packetLen(0x037c, 3) +#elif PACKETVER >= 20090225 +packetLen(0x037c, 2) +#elif PACKETVER >= 20090218 +packetLen(0x037c, 282) +#elif PACKETVER >= 20090211 +packetLen(0x037c, 3) +#elif PACKETVER >= 20090129 +packetLen(0x037c, -1) +#elif PACKETVER >= 20090120 +packetLen(0x037c, 7) +#elif PACKETVER >= 20090114 +packetLen(0x037c, -1) +#elif PACKETVER >= 20090107 +packetLen(0x037c, 6) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x037d +#if PACKETVER >= 20090406 +packetLen(0x037d, -1) +#elif PACKETVER >= 20090401 +packetLen(0x037d, 6) +#elif PACKETVER >= 20090325 +packetLen(0x037d, -1) +#elif PACKETVER >= 20090318 +packetLen(0x037d, 2) +#elif PACKETVER >= 20090225 +packetLen(0x037d, 4) +#elif PACKETVER >= 20090218 +packetLen(0x037d, 6) +#elif PACKETVER >= 20090120 +packetLen(0x037d, -1) +#elif PACKETVER >= 20090114 +packetLen(0x037d, 6) +#elif PACKETVER >= 20090107 +packetLen(0x037d, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x037e +#if PACKETVER >= 20090401 +packetLen(0x037e, -1) +#elif PACKETVER >= 20090325 +packetLen(0x037e, 4) +#elif PACKETVER >= 20090318 +packetLen(0x037e, -1) +#elif PACKETVER >= 20090311 +packetLen(0x037e, 4) +#elif PACKETVER >= 20090225 +packetLen(0x037e, -1) +#elif PACKETVER >= 20090218 +packetLen(0x037e, 6) +#elif PACKETVER >= 20090129 +packetLen(0x037e, -1) +#elif PACKETVER >= 20090120 +packetLen(0x037e, 10) +#elif PACKETVER >= 20090107 +packetLen(0x037e, 4) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x037f +#if PACKETVER >= 20090311 +packetLen(0x037f, -1) +#elif PACKETVER >= 20090225 +packetLen(0x037f, 9) +#elif PACKETVER >= 20090107 +packetLen(0x037f, 22) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0380 +#if PACKETVER >= 20090406 +packetLen(0x0380, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0380, 55) +#elif PACKETVER >= 20090325 +packetLen(0x0380, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0380, 10) +#elif PACKETVER >= 20090211 +packetLen(0x0380, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0380, 10) +#elif PACKETVER >= 20090107 +packetLen(0x0380, -1) +#endif + +// Packet: 0x0381 +#if PACKETVER >= 20090406 +packetLen(0x0381, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0381, 90) +#elif PACKETVER >= 20090325 +packetLen(0x0381, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0381, 282) +#elif PACKETVER >= 20090218 +packetLen(0x0381, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0381, 16) +#elif PACKETVER >= 20090204 +packetLen(0x0381, 3) +#elif PACKETVER >= 20090114 +packetLen(0x0381, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0381, 26) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0382 +#if PACKETVER >= 20090325 +packetLen(0x0382, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0382, 32) +#elif PACKETVER >= 20090225 +packetLen(0x0382, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0382, 5) +#elif PACKETVER >= 20090129 +packetLen(0x0382, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0382, 6) +#elif PACKETVER >= 20090114 +packetLen(0x0382, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0382, 2) +#endif + +// Packet: 0x0383 +#if PACKETVER >= 20090325 +packetLen(0x0383, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0383, 2) +#elif PACKETVER >= 20090311 +packetLen(0x0383, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0383, 3) +#elif PACKETVER >= 20090218 +packetLen(0x0383, 30) +#elif PACKETVER >= 20090129 +packetLen(0x0383, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0383, 9) +#elif PACKETVER >= 20090107 +packetLen(0x0383, 3) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0384 +#if PACKETVER >= 20090406 +packetLen(0x0384, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0384, 30) +#elif PACKETVER >= 20090318 +packetLen(0x0384, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0384, 24) +#elif PACKETVER >= 20090225 +packetLen(0x0384, 16) +#elif PACKETVER >= 20090218 +packetLen(0x0384, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0384, 3) +#elif PACKETVER >= 20090204 +packetLen(0x0384, 5) +#elif PACKETVER >= 20090129 +packetLen(0x0384, 186) +#elif PACKETVER >= 20090120 +packetLen(0x0384, 3) +#elif PACKETVER >= 20090107 +packetLen(0x0384, -1) +#endif + +// Packet: 0x0385 +#if PACKETVER >= 20090325 +packetLen(0x0385, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0385, 11) +#elif PACKETVER >= 20090311 +packetLen(0x0385, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0385, 90) +#elif PACKETVER >= 20090218 +packetLen(0x0385, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0385, 28) +#elif PACKETVER >= 20090129 +packetLen(0x0385, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0385, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0385, 2) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0386 +#if PACKETVER >= 20090406 +packetLen(0x0386, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0386, 6) +#elif PACKETVER >= 20090325 +packetLen(0x0386, 14) +#elif PACKETVER >= 20090218 +packetLen(0x0386, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0386, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0386, 27) +#elif PACKETVER >= 20090129 +packetLen(0x0386, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0386, 3) +#elif PACKETVER >= 20090107 +packetLen(0x0386, 30) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0387 +#if PACKETVER >= 20090318 +packetLen(0x0387, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0387, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0387, 54) +#elif PACKETVER >= 20090218 +packetLen(0x0387, 7) +#elif PACKETVER >= 20090204 +packetLen(0x0387, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0387, 4) +#elif PACKETVER >= 20090120 +packetLen(0x0387, 22) +#elif PACKETVER >= 20090107 +packetLen(0x0387, 71) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0388 +#if PACKETVER >= 20090318 +packetLen(0x0388, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0388, 6) +#elif PACKETVER >= 20090218 +packetLen(0x0388, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0388, 14) +#elif PACKETVER >= 20090204 +packetLen(0x0388, 22) +#elif PACKETVER >= 20090129 +packetLen(0x0388, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0388, 30) +#elif PACKETVER >= 20090107 +packetLen(0x0388, -1) +#endif + +// Packet: 0x0389 +#if PACKETVER >= 20090406 +packetLen(0x0389, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0389, 9) +#elif PACKETVER >= 20090318 +packetLen(0x0389, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0389, 4) +#elif PACKETVER >= 20090218 +packetLen(0x0389, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0389, 4) +#elif PACKETVER >= 20090129 +packetLen(0x0389, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0389, 2) +#elif PACKETVER >= 20090114 +packetLen(0x0389, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0389, 66) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x038a +#if PACKETVER >= 20090406 +packetLen(0x038a, -1) +#elif PACKETVER >= 20090401 +packetLen(0x038a, 2) +#elif PACKETVER >= 20090325 +packetLen(0x038a, 9) +#elif PACKETVER >= 20090318 +packetLen(0x038a, -1) +#elif PACKETVER >= 20090311 +packetLen(0x038a, 14) +#elif PACKETVER >= 20090225 +packetLen(0x038a, 27) +#elif PACKETVER >= 20090218 +packetLen(0x038a, -1) +#elif PACKETVER >= 20090204 +packetLen(0x038a, 2) +#elif PACKETVER >= 20090107 +packetLen(0x038a, -1) +#endif + +// Packet: 0x038b +#if PACKETVER >= 20090401 +packetLen(0x038b, -1) +#elif PACKETVER >= 20090325 +packetLen(0x038b, 10) +#elif PACKETVER >= 20090318 +packetLen(0x038b, 30) +#elif PACKETVER >= 20090311 +packetLen(0x038b, 14) +#elif PACKETVER >= 20090225 +packetLen(0x038b, 53) +#elif PACKETVER >= 20090218 +packetLen(0x038b, 4) +#elif PACKETVER >= 20090211 +packetLen(0x038b, 3) +#elif PACKETVER >= 20090129 +packetLen(0x038b, -1) +#elif PACKETVER >= 20090120 +packetLen(0x038b, 114) +#elif PACKETVER >= 20090114 +packetLen(0x038b, 8) +#elif PACKETVER >= 20090107 +packetLen(0x038b, 27) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x038c +#if PACKETVER >= 20090114 +packetLen(0x038c, -1) +#elif PACKETVER >= 20090107 +packetLen(0x038c, 6) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x038d +#if PACKETVER >= 20090318 +packetLen(0x038d, -1) +#elif PACKETVER >= 20090311 +packetLen(0x038d, 4) +#elif PACKETVER >= 20090225 +packetLen(0x038d, 11) +#elif PACKETVER >= 20090218 +packetLen(0x038d, -1) +#elif PACKETVER >= 20090211 +packetLen(0x038d, 43) +#elif PACKETVER >= 20090204 +packetLen(0x038d, 11) +#elif PACKETVER >= 20090129 +packetLen(0x038d, 3) +#elif PACKETVER >= 20090120 +packetLen(0x038d, 6) +#elif PACKETVER >= 20090114 +packetLen(0x038d, 2) +#elif PACKETVER >= 20090107 +packetLen(0x038d, 32) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x038e +#if PACKETVER >= 20090401 +packetLen(0x038e, -1) +#elif PACKETVER >= 20090318 +packetLen(0x038e, 4) +#elif PACKETVER >= 20090311 +packetLen(0x038e, 2) +#elif PACKETVER >= 20090204 +packetLen(0x038e, -1) +#elif PACKETVER >= 20090129 +packetLen(0x038e, 5) +#elif PACKETVER >= 20090120 +packetLen(0x038e, 17) +#elif PACKETVER >= 20090107 +packetLen(0x038e, -1) +#endif + +// Packet: 0x038f +#if PACKETVER >= 20090311 +packetLen(0x038f, -1) +#elif PACKETVER >= 20090225 +packetLen(0x038f, 182) +#elif PACKETVER >= 20090218 +packetLen(0x038f, -1) +#elif PACKETVER >= 20090204 +packetLen(0x038f, 2) +#elif PACKETVER >= 20090129 +packetLen(0x038f, -1) +#elif PACKETVER >= 20090120 +packetLen(0x038f, 9) +#elif PACKETVER >= 20090114 +packetLen(0x038f, 5) +#elif PACKETVER >= 20090107 +packetLen(0x038f, 39) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0390 +#if PACKETVER >= 20090318 +packetLen(0x0390, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0390, 7) +#elif PACKETVER >= 20090225 +packetLen(0x0390, 6) +#elif PACKETVER >= 20090129 +packetLen(0x0390, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0390, 6) +#elif PACKETVER >= 20090114 +packetLen(0x0390, 9) +#elif PACKETVER >= 20090107 +packetLen(0x0390, 10) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0391 +#if PACKETVER >= 20090225 +packetLen(0x0391, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0391, 23) +#elif PACKETVER >= 20090211 +packetLen(0x0391, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0391, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0391, 11) +#elif PACKETVER >= 20090120 +packetLen(0x0391, 7) +#elif PACKETVER >= 20090114 +packetLen(0x0391, 11) +#elif PACKETVER >= 20090107 +packetLen(0x0391, -1) +#endif + +// Packet: 0x0392 +#if PACKETVER >= 20090318 +packetLen(0x0392, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0392, 9) +#elif PACKETVER >= 20090211 +packetLen(0x0392, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0392, 28) +#elif PACKETVER >= 20090129 +packetLen(0x0392, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0392, 12) +#elif PACKETVER >= 20090114 +packetLen(0x0392, 26) +#elif PACKETVER >= 20090107 +packetLen(0x0392, 8) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0393 +#if PACKETVER >= 20090401 +packetLen(0x0393, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0393, 102) +#elif PACKETVER >= 20090218 +packetLen(0x0393, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0393, 7) +#elif PACKETVER >= 20090204 +packetLen(0x0393, 2) +#elif PACKETVER >= 20090129 +packetLen(0x0393, 16) +#elif PACKETVER >= 20090120 +packetLen(0x0393, 12) +#elif PACKETVER >= 20090107 +packetLen(0x0393, -1) +#endif + +// Packet: 0x0394 +#if PACKETVER >= 20090406 +packetLen(0x0394, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0394, 4) +#elif PACKETVER >= 20090129 +packetLen(0x0394, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0394, 32) +#elif PACKETVER >= 20090107 +packetLen(0x0394, -1) +#endif + +// Packet: 0x0395 +#if PACKETVER >= 20090406 +packetLen(0x0395, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0395, 22) +#elif PACKETVER >= 20090225 +packetLen(0x0395, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0395, 9) +#elif PACKETVER >= 20090211 +packetLen(0x0395, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0395, 2) +#elif PACKETVER >= 20090120 +packetLen(0x0395, 31) +#elif PACKETVER >= 20090114 +packetLen(0x0395, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0395, -1) +#endif + +// Packet: 0x0396 +#if PACKETVER >= 20090401 +packetLen(0x0396, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0396, 5) +#elif PACKETVER >= 20090318 +packetLen(0x0396, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0396, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0396, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0396, 24) +#elif PACKETVER >= 20090211 +packetLen(0x0396, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0396, 14) +#elif PACKETVER >= 20090107 +packetLen(0x0396, -1) +#endif + +// Packet: 0x0397 +#if PACKETVER >= 20090401 +packetLen(0x0397, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0397, 10) +#elif PACKETVER >= 20090318 +packetLen(0x0397, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0397, 8) +#elif PACKETVER >= 20090225 +packetLen(0x0397, 55) +#elif PACKETVER >= 20090114 +packetLen(0x0397, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0397, 9) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0398 +#if PACKETVER >= 20090401 +packetLen(0x0398, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0398, 9) +#elif PACKETVER >= 20090225 +packetLen(0x0398, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0398, 10) +#elif PACKETVER >= 20090114 +packetLen(0x0398, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0398, 12) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0399 +#if PACKETVER >= 20090406 +packetLen(0x0399, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0399, 4) +#elif PACKETVER >= 20090325 +packetLen(0x0399, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0399, 3) +#elif PACKETVER >= 20090311 +packetLen(0x0399, 30) +#elif PACKETVER >= 20090225 +packetLen(0x0399, 282) +#elif PACKETVER >= 20090218 +packetLen(0x0399, 186) +#elif PACKETVER >= 20090211 +packetLen(0x0399, 7) +#elif PACKETVER >= 20090204 +packetLen(0x0399, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0399, 8) +#elif PACKETVER >= 20090120 +packetLen(0x0399, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0399, 8) +#elif PACKETVER >= 20090107 +packetLen(0x0399, 9) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x039a +#if PACKETVER >= 20090318 +packetLen(0x039a, -1) +#elif PACKETVER >= 20090311 +packetLen(0x039a, 6) +#elif PACKETVER >= 20090225 +packetLen(0x039a, -1) +#elif PACKETVER >= 20090218 +packetLen(0x039a, 6) +#elif PACKETVER >= 20090211 +packetLen(0x039a, -1) +#elif PACKETVER >= 20090204 +packetLen(0x039a, 2) +#elif PACKETVER >= 20090114 +packetLen(0x039a, -1) +#elif PACKETVER >= 20090107 +packetLen(0x039a, 3) +#endif + +// Packet: 0x039b +#if PACKETVER >= 20090325 +packetLen(0x039b, -1) +#elif PACKETVER >= 20090318 +packetLen(0x039b, 6) +#elif PACKETVER >= 20090311 +packetLen(0x039b, 8) +#elif PACKETVER >= 20090225 +packetLen(0x039b, -1) +#elif PACKETVER >= 20090218 +packetLen(0x039b, 7) +#elif PACKETVER >= 20090211 +packetLen(0x039b, -1) +#elif PACKETVER >= 20090204 +packetLen(0x039b, 90) +#elif PACKETVER >= 20090129 +packetLen(0x039b, 10) +#elif PACKETVER >= 20090107 +packetLen(0x039b, 10) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x039c +#if PACKETVER >= 20090406 +packetLen(0x039c, -1) +#elif PACKETVER >= 20090401 +packetLen(0x039c, 6) +#elif PACKETVER >= 20090325 +packetLen(0x039c, -1) +#elif PACKETVER >= 20090318 +packetLen(0x039c, 6) +#elif PACKETVER >= 20090311 +packetLen(0x039c, -1) +#elif PACKETVER >= 20090225 +packetLen(0x039c, 12) +#elif PACKETVER >= 20090218 +packetLen(0x039c, -1) +#elif PACKETVER >= 20090211 +packetLen(0x039c, 39) +#elif PACKETVER >= 20090204 +packetLen(0x039c, 26) +#elif PACKETVER >= 20090129 +packetLen(0x039c, 2) +#elif PACKETVER >= 20090120 +packetLen(0x039c, -1) +#elif PACKETVER >= 20090114 +packetLen(0x039c, 2) +#elif PACKETVER >= 20090107 +packetLen(0x039c, 86) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x039d +#if PACKETVER >= 20090406 +packetLen(0x039d, -1) +#elif PACKETVER >= 20090401 +packetLen(0x039d, 4) +#elif PACKETVER >= 20090325 +packetLen(0x039d, -1) +#elif PACKETVER >= 20090318 +packetLen(0x039d, 30) +#elif PACKETVER >= 20090311 +packetLen(0x039d, 4) +#elif PACKETVER >= 20090204 +packetLen(0x039d, -1) +#elif PACKETVER >= 20090129 +packetLen(0x039d, 6) +#elif PACKETVER >= 20090107 +packetLen(0x039d, 30) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x039e +#if PACKETVER >= 20090406 +packetLen(0x039e, -1) +#elif PACKETVER >= 20090401 +packetLen(0x039e, 2) +#elif PACKETVER >= 20090318 +packetLen(0x039e, -1) +#elif PACKETVER >= 20090311 +packetLen(0x039e, 5) +#elif PACKETVER >= 20090225 +packetLen(0x039e, -1) +#elif PACKETVER >= 20090218 +packetLen(0x039e, 5) +#elif PACKETVER >= 20090204 +packetLen(0x039e, -1) +#elif PACKETVER >= 20090129 +packetLen(0x039e, 7) +#elif PACKETVER >= 20090107 +packetLen(0x039e, -1) +#endif + +// Packet: 0x039f +#if PACKETVER >= 20090406 +packetLen(0x039f, -1) +#elif PACKETVER >= 20090401 +packetLen(0x039f, 29) +#elif PACKETVER >= 20090325 +packetLen(0x039f, 2) +#elif PACKETVER >= 20090318 +packetLen(0x039f, 60) +#elif PACKETVER >= 20090204 +packetLen(0x039f, -1) +#elif PACKETVER >= 20090120 +packetLen(0x039f, 6) +#elif PACKETVER >= 20090114 +packetLen(0x039f, 18) +#elif PACKETVER >= 20090107 +packetLen(0x039f, 30) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03a0 +#if PACKETVER >= 20090406 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03a0, 6) +#elif PACKETVER >= 20090325 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03a0, 2) +#elif PACKETVER >= 20090311 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03a0, 14) +#elif PACKETVER >= 20090120 +packetLen(0x03a0, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03a0, 54) +#elif PACKETVER >= 20090107 +packetLen(0x03a0, -1) +#endif + +// Packet: 0x03a1 +#if PACKETVER >= 20090406 +packetLen(0x03a1, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03a1, 4) +#elif PACKETVER >= 20090325 +packetLen(0x03a1, 2) +#elif PACKETVER >= 20090318 +packetLen(0x03a1, 14) +#elif PACKETVER >= 20090311 +packetLen(0x03a1, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03a1, 3) +#elif PACKETVER >= 20090218 +packetLen(0x03a1, 57) +#elif PACKETVER >= 20090211 +packetLen(0x03a1, 30) +#elif PACKETVER >= 20090204 +packetLen(0x03a1, 6) +#elif PACKETVER >= 20090120 +packetLen(0x03a1, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03a1, 39) +#elif PACKETVER >= 20090107 +packetLen(0x03a1, 44) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03a2 +#if PACKETVER >= 20090401 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03a2, 23) +#elif PACKETVER >= 20090225 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03a2, 28) +#elif PACKETVER >= 20090120 +packetLen(0x03a2, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03a2, 3) +#elif PACKETVER >= 20090107 +packetLen(0x03a2, 282) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03a3 +#if PACKETVER >= 20090401 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03a3, 3) +#elif PACKETVER >= 20090318 +packetLen(0x03a3, 2) +#elif PACKETVER >= 20090204 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03a3, 4) +#elif PACKETVER >= 20090120 +packetLen(0x03a3, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03a3, 26) +#elif PACKETVER >= 20090107 +packetLen(0x03a3, 2) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03a4 +#if PACKETVER >= 20090406 +packetLen(0x03a4, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03a4, 31) +#elif PACKETVER >= 20090325 +packetLen(0x03a4, 8) +#elif PACKETVER >= 20090318 +packetLen(0x03a4, 10) +#elif PACKETVER >= 20090225 +packetLen(0x03a4, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03a4, 14) +#elif PACKETVER >= 20090211 +packetLen(0x03a4, 3) +#elif PACKETVER >= 20090204 +packetLen(0x03a4, 7) +#elif PACKETVER >= 20090107 +packetLen(0x03a4, 44) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03a5 +#if PACKETVER >= 20090325 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03a5, 3) +#elif PACKETVER >= 20090311 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03a5, 28) +#elif PACKETVER >= 20090114 +packetLen(0x03a5, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03a5, 8) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03a6 +#if PACKETVER >= 20090401 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03a6, 15) +#elif PACKETVER >= 20090225 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03a6, 10) +#elif PACKETVER >= 20090211 +packetLen(0x03a6, 7) +#elif PACKETVER >= 20090204 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03a6, 17) +#elif PACKETVER >= 20090114 +packetLen(0x03a6, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03a6, 10) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03a7 +#if PACKETVER >= 20090406 +packetLen(0x03a7, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03a7, 14) +#elif PACKETVER >= 20090311 +packetLen(0x03a7, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03a7, 8) +#elif PACKETVER >= 20090218 +packetLen(0x03a7, 13) +#elif PACKETVER >= 20090211 +packetLen(0x03a7, 3) +#elif PACKETVER >= 20090129 +packetLen(0x03a7, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03a7, 30) +#elif PACKETVER >= 20090114 +packetLen(0x03a7, 5) +#elif PACKETVER >= 20090107 +packetLen(0x03a7, 8) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03a8 +#if PACKETVER >= 20090325 +packetLen(0x03a8, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03a8, 10) +#elif PACKETVER >= 20090311 +packetLen(0x03a8, 6) +#elif PACKETVER >= 20090218 +packetLen(0x03a8, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03a8, 8) +#elif PACKETVER >= 20090204 +packetLen(0x03a8, 30) +#elif PACKETVER >= 20090129 +packetLen(0x03a8, 26) +#elif PACKETVER >= 20090120 +packetLen(0x03a8, 86) +#elif PACKETVER >= 20090114 +packetLen(0x03a8, 19) +#elif PACKETVER >= 20090107 +packetLen(0x03a8, -1) +#endif + +// Packet: 0x03a9 +#if PACKETVER >= 20090406 +packetLen(0x03a9, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03a9, 2) +#elif PACKETVER >= 20090325 +packetLen(0x03a9, 3) +#elif PACKETVER >= 20090318 +packetLen(0x03a9, 27) +#elif PACKETVER >= 20090311 +packetLen(0x03a9, 10) +#elif PACKETVER >= 20090225 +packetLen(0x03a9, 8) +#elif PACKETVER >= 20090218 +packetLen(0x03a9, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03a9, 2) +#elif PACKETVER >= 20090129 +packetLen(0x03a9, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03a9, 6) +#elif PACKETVER >= 20090107 +packetLen(0x03a9, 15) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03aa +#if PACKETVER >= 20090406 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03aa, 7) +#elif PACKETVER >= 20090311 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03aa, 6) +#elif PACKETVER >= 20090218 +packetLen(0x03aa, 4) +#elif PACKETVER >= 20090211 +packetLen(0x03aa, 18) +#elif PACKETVER >= 20090114 +packetLen(0x03aa, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03aa, 2) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03ab +#if PACKETVER >= 20090401 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03ab, 3) +#elif PACKETVER >= 20090318 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03ab, 9) +#elif PACKETVER >= 20090225 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03ab, 30) +#elif PACKETVER >= 20090204 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03ab, 4) +#elif PACKETVER >= 20090120 +packetLen(0x03ab, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03ab, 7) +#elif PACKETVER >= 20090107 +packetLen(0x03ab, 8) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03ac +#if PACKETVER >= 20090325 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03ac, 6) +#elif PACKETVER >= 20090225 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03ac, 71) +#elif PACKETVER >= 20090129 +packetLen(0x03ac, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03ac, 10) +#elif PACKETVER >= 20090114 +packetLen(0x03ac, 54) +#elif PACKETVER >= 20090107 +packetLen(0x03ac, -1) +#endif + +// Packet: 0x03ad +#if PACKETVER >= 20090325 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03ad, 14) +#elif PACKETVER >= 20090311 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03ad, 15) +#elif PACKETVER >= 20090218 +packetLen(0x03ad, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03ad, 9) +#elif PACKETVER >= 20090107 +packetLen(0x03ad, -1) +#endif + +// Packet: 0x03ae +#if PACKETVER >= 20090325 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03ae, 6) +#elif PACKETVER >= 20090311 +packetLen(0x03ae, 2) +#elif PACKETVER >= 20090225 +packetLen(0x03ae, 282) +#elif PACKETVER >= 20090218 +packetLen(0x03ae, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03ae, 3) +#elif PACKETVER >= 20090107 +packetLen(0x03ae, -1) +#endif + +// Packet: 0x03af +#if PACKETVER >= 20090406 +packetLen(0x03af, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03af, 5) +#elif PACKETVER >= 20090325 +packetLen(0x03af, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03af, 3) +#elif PACKETVER >= 20090311 +packetLen(0x03af, 10) +#elif PACKETVER >= 20090225 +packetLen(0x03af, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03af, 14) +#elif PACKETVER >= 20090211 +packetLen(0x03af, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03af, 54) +#elif PACKETVER >= 20090114 +packetLen(0x03af, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03af, 23) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03b0 +#if PACKETVER >= 20090406 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03b0, 26) +#elif PACKETVER >= 20090325 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03b0, 14) +#elif PACKETVER >= 20090225 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03b0, 6) +#elif PACKETVER >= 20090211 +packetLen(0x03b0, 3) +#elif PACKETVER >= 20090114 +packetLen(0x03b0, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03b0, 26) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03b1 +#if PACKETVER >= 20090406 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03b1, 10) +#elif PACKETVER >= 20090325 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03b1, 18) +#elif PACKETVER >= 20090225 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03b1, 6) +#elif PACKETVER >= 20090204 +packetLen(0x03b1, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03b1, 3) +#elif PACKETVER >= 20090120 +packetLen(0x03b1, 26) +#elif PACKETVER >= 20090114 +packetLen(0x03b1, 17) +#elif PACKETVER >= 20090107 +packetLen(0x03b1, 22) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03b2 +#if PACKETVER >= 20090311 +packetLen(0x03b2, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03b2, 5) +#elif PACKETVER >= 20090211 +packetLen(0x03b2, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03b2, 26) +#elif PACKETVER >= 20090129 +packetLen(0x03b2, 30) +#elif PACKETVER >= 20090107 +packetLen(0x03b2, -1) +#endif + +// Packet: 0x03b3 +#if PACKETVER >= 20090406 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03b3, 79) +#elif PACKETVER >= 20090325 +packetLen(0x03b3, 2) +#elif PACKETVER >= 20090318 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03b3, 53) +#elif PACKETVER >= 20090218 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03b3, 31) +#elif PACKETVER >= 20090114 +packetLen(0x03b3, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03b3, 39) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03b4 +#if PACKETVER >= 20090406 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03b4, 2) +#elif PACKETVER >= 20090318 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03b4, 31) +#elif PACKETVER >= 20090211 +packetLen(0x03b4, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03b4, 3) +#elif PACKETVER >= 20090129 +packetLen(0x03b4, 8) +#elif PACKETVER >= 20090120 +packetLen(0x03b4, 7) +#elif PACKETVER >= 20090107 +packetLen(0x03b4, -1) +#endif + +// Packet: 0x03b5 +#if PACKETVER >= 20090311 +packetLen(0x03b5, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03b5, 6) +#elif PACKETVER >= 20090204 +packetLen(0x03b5, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03b5, 8) +#elif PACKETVER >= 20090120 +packetLen(0x03b5, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03b5, 37) +#elif PACKETVER >= 20090107 +packetLen(0x03b5, -1) +#endif + +// Packet: 0x03b6 +#if PACKETVER >= 20090406 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03b6, 3) +#elif PACKETVER >= 20090325 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03b6, 8) +#elif PACKETVER >= 20090211 +packetLen(0x03b6, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03b6, 6) +#elif PACKETVER >= 20090129 +packetLen(0x03b6, 3) +#elif PACKETVER >= 20090120 +packetLen(0x03b6, 60) +#elif PACKETVER >= 20090114 +packetLen(0x03b6, 2) +#elif PACKETVER >= 20090107 +packetLen(0x03b6, 22) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03b7 +#if PACKETVER >= 20090401 +packetLen(0x03b7, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03b7, 31) +#elif PACKETVER >= 20090311 +packetLen(0x03b7, 6) +#elif PACKETVER >= 20090225 +packetLen(0x03b7, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03b7, 32) +#elif PACKETVER >= 20090211 +packetLen(0x03b7, 5) +#elif PACKETVER >= 20090204 +packetLen(0x03b7, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03b7, 9) +#elif PACKETVER >= 20090120 +packetLen(0x03b7, 4) +#elif PACKETVER >= 20090114 +packetLen(0x03b7, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03b7, 29) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03b8 +#if PACKETVER >= 20090401 +packetLen(0x03b8, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03b8, 17) +#elif PACKETVER >= 20090318 +packetLen(0x03b8, 3) +#elif PACKETVER >= 20090129 +packetLen(0x03b8, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03b8, 8) +#elif PACKETVER >= 20090114 +packetLen(0x03b8, 10) +#elif PACKETVER >= 20090107 +packetLen(0x03b8, -1) +#endif + +// Packet: 0x03b9 +#if PACKETVER >= 20090401 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03b9, 26) +#elif PACKETVER >= 20090318 +packetLen(0x03b9, 58) +#elif PACKETVER >= 20090218 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03b9, 22) +#elif PACKETVER >= 20090204 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03b9, 28) +#elif PACKETVER >= 20090120 +packetLen(0x03b9, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03b9, 20) +#elif PACKETVER >= 20090107 +packetLen(0x03b9, 18) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03ba +#if PACKETVER >= 20090406 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03ba, 12) +#elif PACKETVER >= 20090325 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03ba, 22) +#elif PACKETVER >= 20090311 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03ba, 23) +#elif PACKETVER >= 20090218 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03ba, 7) +#elif PACKETVER >= 20090204 +packetLen(0x03ba, 4) +#elif PACKETVER >= 20090129 +packetLen(0x03ba, 42) +#elif PACKETVER >= 20090114 +packetLen(0x03ba, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03ba, 67) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03bb +#if PACKETVER >= 20090406 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03bb, 8) +#elif PACKETVER >= 20090318 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03bb, 6) +#elif PACKETVER >= 20090218 +packetLen(0x03bb, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03bb, 34) +#elif PACKETVER >= 20090107 +packetLen(0x03bb, -1) +#endif + +// Packet: 0x03bc +#if PACKETVER >= 20090325 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03bc, 7) +#elif PACKETVER >= 20090311 +packetLen(0x03bc, 6) +#elif PACKETVER >= 20090225 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03bc, 2) +#elif PACKETVER >= 20090211 +packetLen(0x03bc, 30) +#elif PACKETVER >= 20090204 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03bc, 53) +#elif PACKETVER >= 20090120 +packetLen(0x03bc, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03bc, 186) +#elif PACKETVER >= 20090107 +packetLen(0x03bc, -1) +#endif + +// Packet: 0x03bd +#if PACKETVER >= 20090401 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03bd, 20) +#elif PACKETVER >= 20090311 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03bd, 67) +#elif PACKETVER >= 20090211 +packetLen(0x03bd, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03bd, 11) +#elif PACKETVER >= 20090129 +packetLen(0x03bd, 28) +#elif PACKETVER >= 20090107 +packetLen(0x03bd, -1) +#endif + +// Packet: 0x03be +#if PACKETVER >= 20090406 +packetLen(0x03be, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03be, 2) +#elif PACKETVER >= 20090325 +packetLen(0x03be, 6) +#elif PACKETVER >= 20090318 +packetLen(0x03be, 42) +#elif PACKETVER >= 20090311 +packetLen(0x03be, 5) +#elif PACKETVER >= 20090114 +packetLen(0x03be, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03be, 6) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03bf +#if PACKETVER >= 20090406 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03bf, 11) +#elif PACKETVER >= 20090325 +packetLen(0x03bf, 2) +#elif PACKETVER >= 20090318 +packetLen(0x03bf, 3) +#elif PACKETVER >= 20090311 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03bf, 6) +#elif PACKETVER >= 20090218 +packetLen(0x03bf, 12) +#elif PACKETVER >= 20090211 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03bf, 4) +#elif PACKETVER >= 20090120 +packetLen(0x03bf, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03bf, 6) +#elif PACKETVER >= 20090107 +packetLen(0x03bf, 28) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03c0 +#if PACKETVER >= 20090325 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03c0, 2) +#elif PACKETVER >= 20090311 +packetLen(0x03c0, 30) +#elif PACKETVER >= 20090225 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03c0, 102) +#elif PACKETVER >= 20090204 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03c0, 4) +#elif PACKETVER >= 20090120 +packetLen(0x03c0, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03c0, 6) +#elif PACKETVER >= 20090107 +packetLen(0x03c0, -1) +#endif + +// Packet: 0x03c1 +#if PACKETVER >= 20090401 +packetLen(0x03c1, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03c1, 30) +#elif PACKETVER >= 20090318 +packetLen(0x03c1, 10) +#elif PACKETVER >= 20090311 +packetLen(0x03c1, 13) +#elif PACKETVER >= 20090225 +packetLen(0x03c1, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03c1, 6) +#elif PACKETVER >= 20090211 +packetLen(0x03c1, 5) +#elif PACKETVER >= 20090204 +packetLen(0x03c1, 30) +#elif PACKETVER >= 20090129 +packetLen(0x03c1, 18) +#elif PACKETVER >= 20090107 +packetLen(0x03c1, -1) +#endif + +// Packet: 0x03c2 +#if PACKETVER >= 20090406 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03c2, 4) +#elif PACKETVER >= 20090325 +packetLen(0x03c2, 2) +#elif PACKETVER >= 20090225 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03c2, 6) +#elif PACKETVER >= 20090211 +packetLen(0x03c2, 55) +#elif PACKETVER >= 20090204 +packetLen(0x03c2, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03c2, 30) +#elif PACKETVER >= 20090120 +packetLen(0x03c2, 26) +#elif PACKETVER >= 20090107 +packetLen(0x03c2, -1) +#endif + +// Packet: 0x03c3 +#if PACKETVER >= 20090406 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03c3, 114) +#elif PACKETVER >= 20090325 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03c3, 8) +#elif PACKETVER >= 20090311 +packetLen(0x03c3, 18) +#elif PACKETVER >= 20090225 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03c3, 15) +#elif PACKETVER >= 20090120 +packetLen(0x03c3, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03c3, 3) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03c4 +#if PACKETVER >= 20090406 +packetLen(0x03c4, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03c4, 39) +#elif PACKETVER >= 20090325 +packetLen(0x03c4, 6) +#elif PACKETVER >= 20090318 +packetLen(0x03c4, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03c4, 8) +#elif PACKETVER >= 20090225 +packetLen(0x03c4, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03c4, 8) +#elif PACKETVER >= 20090107 +packetLen(0x03c4, -1) +#endif + +// Packet: 0x03c5 +#if PACKETVER >= 20090325 +packetLen(0x03c5, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03c5, 6) +#elif PACKETVER >= 20090311 +packetLen(0x03c5, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03c5, 8) +#elif PACKETVER >= 20090218 +packetLen(0x03c5, 6) +#elif PACKETVER >= 20090120 +packetLen(0x03c5, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03c5, 90) +#elif PACKETVER >= 20090107 +packetLen(0x03c5, 12) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03c6 +#if PACKETVER >= 20090406 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03c6, 10) +#elif PACKETVER >= 20090325 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03c6, 21) +#elif PACKETVER >= 20090311 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03c6, 14) +#elif PACKETVER >= 20090218 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03c6, 58) +#elif PACKETVER >= 20090204 +packetLen(0x03c6, 14) +#elif PACKETVER >= 20090120 +packetLen(0x03c6, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03c6, 26) +#elif PACKETVER >= 20090107 +packetLen(0x03c6, 7) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03c7 +#if PACKETVER >= 20090406 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03c7, 3) +#elif PACKETVER >= 20090311 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03c7, 3) +#elif PACKETVER >= 20090218 +packetLen(0x03c7, 282) +#elif PACKETVER >= 20090211 +packetLen(0x03c7, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03c7, 6) +#elif PACKETVER >= 20090129 +packetLen(0x03c7, 2) +#elif PACKETVER >= 20090120 +packetLen(0x03c7, 28) +#elif PACKETVER >= 20090107 +packetLen(0x03c7, 9) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03c8 +#if PACKETVER >= 20090325 +packetLen(0x03c8, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03c8, 6) +#elif PACKETVER >= 20090218 +packetLen(0x03c8, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03c8, 11) +#elif PACKETVER >= 20090129 +packetLen(0x03c8, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03c8, 6) +#elif PACKETVER >= 20090107 +packetLen(0x03c8, -1) +#endif + +// Packet: 0x03c9 +#if PACKETVER >= 20090406 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03c9, 10) +#elif PACKETVER >= 20090325 +packetLen(0x03c9, 26) +#elif PACKETVER >= 20090311 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03c9, 10) +#elif PACKETVER >= 20090218 +packetLen(0x03c9, 4) +#elif PACKETVER >= 20090211 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03c9, 30) +#elif PACKETVER >= 20090129 +packetLen(0x03c9, 6) +#elif PACKETVER >= 20090114 +packetLen(0x03c9, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03c9, 68) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03ca +#if PACKETVER >= 20090406 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03ca, 57) +#elif PACKETVER >= 20090225 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03ca, 18) +#elif PACKETVER >= 20090211 +packetLen(0x03ca, 6) +#elif PACKETVER >= 20090204 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03ca, 5) +#elif PACKETVER >= 20090120 +packetLen(0x03ca, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03ca, 34) +#elif PACKETVER >= 20090107 +packetLen(0x03ca, -1) +#endif + +// Packet: 0x03cb +#if PACKETVER >= 20090225 +packetLen(0x03cb, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03cb, 60) +#elif PACKETVER >= 20090211 +packetLen(0x03cb, 3) +#elif PACKETVER >= 20090204 +packetLen(0x03cb, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03cb, 33) +#elif PACKETVER >= 20090107 +packetLen(0x03cb, 2) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03cc +#if PACKETVER >= 20090401 +packetLen(0x03cc, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03cc, 10) +#elif PACKETVER >= 20090318 +packetLen(0x03cc, 29) +#elif PACKETVER >= 20090225 +packetLen(0x03cc, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03cc, 11) +#elif PACKETVER >= 20090211 +packetLen(0x03cc, 2) +#elif PACKETVER >= 20090107 +packetLen(0x03cc, -1) +#endif + +// Packet: 0x03cd +#if PACKETVER >= 20090406 +packetLen(0x03cd, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03cd, 20) +#elif PACKETVER >= 20090325 +packetLen(0x03cd, 6) +#elif PACKETVER >= 20090318 +packetLen(0x03cd, 66) +#elif PACKETVER >= 20090311 +packetLen(0x03cd, 7) +#elif PACKETVER >= 20090218 +packetLen(0x03cd, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03cd, 6) +#elif PACKETVER >= 20090114 +packetLen(0x03cd, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03cd, 26) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03ce +#if PACKETVER >= 20090225 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03ce, 26) +#elif PACKETVER >= 20090204 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03ce, 7) +#elif PACKETVER >= 20090120 +packetLen(0x03ce, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03ce, 22) +#elif PACKETVER >= 20090107 +packetLen(0x03ce, 7) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03cf +#if PACKETVER >= 20090225 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03cf, 3) +#elif PACKETVER >= 20090211 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03cf, 26) +#elif PACKETVER >= 20090129 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03cf, 14) +#elif PACKETVER >= 20090114 +packetLen(0x03cf, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03cf, 30) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03d0 +#if PACKETVER >= 20090406 +packetLen(0x03d0, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03d0, 14) +#elif PACKETVER >= 20090211 +packetLen(0x03d0, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03d0, 7) +#elif PACKETVER >= 20090129 +packetLen(0x03d0, 18) +#elif PACKETVER >= 20090120 +packetLen(0x03d0, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03d0, 6) +#elif PACKETVER >= 20090107 +packetLen(0x03d0, 2) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03d1 +#if PACKETVER >= 20090406 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03d1, 54) +#elif PACKETVER >= 20090325 +packetLen(0x03d1, 26) +#elif PACKETVER >= 20090311 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03d1, 2) +#elif PACKETVER >= 20090218 +packetLen(0x03d1, 36) +#elif PACKETVER >= 20090211 +packetLen(0x03d1, 28) +#elif PACKETVER >= 20090114 +packetLen(0x03d1, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03d1, 28) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03d2 +#if PACKETVER >= 20090406 +packetLen(0x03d2, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03d2, 3) +#elif PACKETVER >= 20090107 +packetLen(0x03d2, 29) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03d3 +#if PACKETVER >= 20090401 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03d3, 6) +#elif PACKETVER >= 20090225 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03d3, 26) +#elif PACKETVER >= 20090211 +packetLen(0x03d3, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03d3, 4) +#elif PACKETVER >= 20090120 +packetLen(0x03d3, 6) +#elif PACKETVER >= 20090107 +packetLen(0x03d3, 6) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03d4 +#if PACKETVER >= 20090406 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03d4, 4) +#elif PACKETVER >= 20090311 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03d4, 15) +#elif PACKETVER >= 20090218 +packetLen(0x03d4, 6) +#elif PACKETVER >= 20090211 +packetLen(0x03d4, 14) +#elif PACKETVER >= 20090204 +packetLen(0x03d4, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03d4, 6) +#elif PACKETVER >= 20090120 +packetLen(0x03d4, 282) +#elif PACKETVER >= 20090114 +packetLen(0x03d4, 10) +#elif PACKETVER >= 20090107 +packetLen(0x03d4, 21) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03d5 +#if PACKETVER >= 20090325 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03d5, 2) +#elif PACKETVER >= 20090225 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03d5, 30) +#elif PACKETVER >= 20090211 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03d5, 60) +#elif PACKETVER >= 20090114 +packetLen(0x03d5, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03d5, 6) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03d6 +#if PACKETVER >= 20090406 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03d6, 3) +#elif PACKETVER >= 20090325 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03d6, 32) +#elif PACKETVER >= 20090311 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03d6, 6) +#elif PACKETVER >= 20090218 +packetLen(0x03d6, 2) +#elif PACKETVER >= 20090211 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03d6, 8) +#elif PACKETVER >= 20090114 +packetLen(0x03d6, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03d6, 4) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03d7 +#if PACKETVER >= 20090406 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03d7, 182) +#elif PACKETVER >= 20090318 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03d7, 11) +#elif PACKETVER >= 20090225 +packetLen(0x03d7, 42) +#elif PACKETVER >= 20090218 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03d7, 8) +#elif PACKETVER >= 20090204 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03d7, 6) +#elif PACKETVER >= 20090120 +packetLen(0x03d7, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03d7, 10) +#elif PACKETVER >= 20090107 +packetLen(0x03d7, 27) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03d8 +#if PACKETVER >= 20090318 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03d8, 8) +#elif PACKETVER >= 20090114 +packetLen(0x03d8, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03d8, 32) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03d9 +#if PACKETVER >= 20090406 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03d9, 11) +#elif PACKETVER >= 20090325 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03d9, 6) +#elif PACKETVER >= 20090211 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03d9, 5) +#elif PACKETVER >= 20090129 +packetLen(0x03d9, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03d9, 3) +#elif PACKETVER >= 20090107 +packetLen(0x03d9, 4) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03da +#if PACKETVER >= 20090204 +packetLen(0x03da, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03da, 2) +#elif PACKETVER >= 20090120 +packetLen(0x03da, 44) +#elif PACKETVER >= 20090114 +packetLen(0x03da, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03da, 102) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03db +#if PACKETVER >= 20090325 +packetLen(0x03db, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03db, 5) +#elif PACKETVER >= 20090211 +packetLen(0x03db, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03db, 3) +#elif PACKETVER >= 20090129 +packetLen(0x03db, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03db, 10) +#elif PACKETVER >= 20090107 +packetLen(0x03db, -1) +#endif + +// Packet: 0x03dc +#if PACKETVER >= 20090211 +packetLen(0x03dc, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03dc, 2) +#elif PACKETVER >= 20090129 +packetLen(0x03dc, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03dc, 5) +#elif PACKETVER >= 20090114 +packetLen(0x03dc, 10) +#elif PACKETVER >= 20090107 +packetLen(0x03dc, 90) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x03e2 +#if PACKETVER >= 20090401 +packetLen(0x03e2, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03e2, 8) +#elif PACKETVER >= 20090225 +packetLen(0x03e2, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03e2, 29) +#elif PACKETVER >= 20090204 +packetLen(0x03e2, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03e2, 3) +#elif PACKETVER >= 20090120 +packetLen(0x03e2, 6) +#elif PACKETVER >= 20090114 +packetLen(0x03e2, 3) +#elif PACKETVER >= 20090107 +packetLen(0x03e2, 10) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03e3 +#if PACKETVER >= 20090401 +packetLen(0x03e3, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03e3, 10) +#elif PACKETVER >= 20090318 +packetLen(0x03e3, 54) +#elif PACKETVER >= 20090311 +packetLen(0x03e3, 67) +#elif PACKETVER >= 20090129 +packetLen(0x03e3, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03e3, 2) +#elif PACKETVER >= 20090114 +packetLen(0x03e3, 26) +#elif PACKETVER >= 20090107 +packetLen(0x03e3, -1) +#endif + +// Packet: 0x03e4 +#if PACKETVER >= 20090401 +packetLen(0x03e4, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03e4, 58) +#elif PACKETVER >= 20090318 +packetLen(0x03e4, 12) +#elif PACKETVER >= 20090311 +packetLen(0x03e4, 19) +#elif PACKETVER >= 20090211 +packetLen(0x03e4, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03e4, 6) +#elif PACKETVER >= 20090129 +packetLen(0x03e4, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03e4, 3) +#elif PACKETVER >= 20090107 +packetLen(0x03e4, -1) +#endif + +// Packet: 0x03e5 +#if PACKETVER >= 20090211 +packetLen(0x03e5, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03e5, 9) +#elif PACKETVER >= 20090120 +packetLen(0x03e5, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03e5, 8) +#elif PACKETVER >= 20090107 +packetLen(0x03e5, 3) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03e6 +#if PACKETVER >= 20090406 +packetLen(0x03e6, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03e6, 10) +#elif PACKETVER >= 20090325 +packetLen(0x03e6, 54) +#elif PACKETVER >= 20090318 +packetLen(0x03e6, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03e6, 6) +#elif PACKETVER >= 20090225 +packetLen(0x03e6, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03e6, 5) +#elif PACKETVER >= 20090211 +packetLen(0x03e6, 6) +#elif PACKETVER >= 20090204 +packetLen(0x03e6, 10) +#elif PACKETVER >= 20090129 +packetLen(0x03e6, 58) +#elif PACKETVER >= 20090107 +packetLen(0x03e6, 6) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03e7 +#if PACKETVER >= 20090225 +packetLen(0x03e7, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03e7, 3) +#elif PACKETVER >= 20090211 +packetLen(0x03e7, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03e7, 3) +#elif PACKETVER >= 20090129 +packetLen(0x03e7, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03e7, 2) +#elif PACKETVER >= 20090114 +packetLen(0x03e7, 11) +#elif PACKETVER >= 20090107 +packetLen(0x03e7, 66) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03e8 +#if PACKETVER >= 20090401 +packetLen(0x03e8, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03e8, 14) +#elif PACKETVER >= 20090318 +packetLen(0x03e8, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03e8, 30) +#elif PACKETVER >= 20090225 +packetLen(0x03e8, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03e8, 7) +#elif PACKETVER >= 20090211 +packetLen(0x03e8, 6) +#elif PACKETVER >= 20090204 +packetLen(0x03e8, 10) +#elif PACKETVER >= 20090129 +packetLen(0x03e8, 30) +#elif PACKETVER >= 20090120 +packetLen(0x03e8, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03e8, 81) +#elif PACKETVER >= 20090107 +packetLen(0x03e8, 2) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03e9 +#if PACKETVER >= 20090406 +packetLen(0x03e9, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03e9, 10) +#elif PACKETVER >= 20090325 +packetLen(0x03e9, 7) +#elif PACKETVER >= 20090318 +packetLen(0x03e9, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03e9, 10) +#elif PACKETVER >= 20090225 +packetLen(0x03e9, 5) +#elif PACKETVER >= 20090218 +packetLen(0x03e9, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03e9, 4) +#elif PACKETVER >= 20090204 +packetLen(0x03e9, 53) +#elif PACKETVER >= 20090129 +packetLen(0x03e9, 10) +#elif PACKETVER >= 20090114 +packetLen(0x03e9, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03e9, 58) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03ea +#if PACKETVER >= 20090406 +packetLen(0x03ea, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03ea, 44) +#elif PACKETVER >= 20090325 +packetLen(0x03ea, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03ea, 2) +#elif PACKETVER >= 20090218 +packetLen(0x03ea, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03ea, 97) +#elif PACKETVER >= 20090107 +packetLen(0x03ea, -1) +#endif + +// Packet: 0x03eb +#if PACKETVER >= 20090406 +packetLen(0x03eb, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03eb, 6) +#elif PACKETVER >= 20090325 +packetLen(0x03eb, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03eb, 6) +#elif PACKETVER >= 20090311 +packetLen(0x03eb, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03eb, 8) +#elif PACKETVER >= 20090218 +packetLen(0x03eb, 6) +#elif PACKETVER >= 20090211 +packetLen(0x03eb, 8) +#elif PACKETVER >= 20090204 +packetLen(0x03eb, 4) +#elif PACKETVER >= 20090120 +packetLen(0x03eb, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03eb, 39) +#elif PACKETVER >= 20090107 +packetLen(0x03eb, -1) +#endif + +// Packet: 0x03ec +#if PACKETVER >= 20090318 +packetLen(0x03ec, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03ec, 68) +#elif PACKETVER >= 20090225 +packetLen(0x03ec, 2) +#elif PACKETVER >= 20090218 +packetLen(0x03ec, 282) +#elif PACKETVER >= 20090204 +packetLen(0x03ec, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03ec, 34) +#elif PACKETVER >= 20090114 +packetLen(0x03ec, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03ec, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03ed +#if PACKETVER >= 20090406 +packetLen(0x03ed, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03ed, 32) +#elif PACKETVER >= 20090325 +packetLen(0x03ed, 186) +#elif PACKETVER >= 20090311 +packetLen(0x03ed, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03ed, 13) +#elif PACKETVER >= 20090218 +packetLen(0x03ed, 9) +#elif PACKETVER >= 20090211 +packetLen(0x03ed, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03ed, 6) +#elif PACKETVER >= 20090129 +packetLen(0x03ed, 4) +#elif PACKETVER >= 20090120 +packetLen(0x03ed, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03ed, 33) +#elif PACKETVER >= 20090107 +packetLen(0x03ed, 6) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03ee +#if PACKETVER >= 20090401 +packetLen(0x03ee, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03ee, 7) +#elif PACKETVER >= 20090318 +packetLen(0x03ee, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03ee, 39) +#elif PACKETVER >= 20090225 +packetLen(0x03ee, 43) +#elif PACKETVER >= 20090211 +packetLen(0x03ee, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03ee, 6) +#elif PACKETVER >= 20090129 +packetLen(0x03ee, 60) +#elif PACKETVER >= 20090107 +packetLen(0x03ee, 10) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03ef +#if PACKETVER >= 20090325 +packetLen(0x03ef, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03ef, 6) +#elif PACKETVER >= 20090311 +packetLen(0x03ef, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03ef, 28) +#elif PACKETVER >= 20090129 +packetLen(0x03ef, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03ef, 16) +#elif PACKETVER >= 20090114 +packetLen(0x03ef, 27) +#elif PACKETVER >= 20090107 +packetLen(0x03ef, 17) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03f0 +#if PACKETVER >= 20090406 +packetLen(0x03f0, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03f0, 186) +#elif PACKETVER >= 20090318 +packetLen(0x03f0, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03f0, 4) +#elif PACKETVER >= 20090225 +packetLen(0x03f0, 3) +#elif PACKETVER >= 20090218 +packetLen(0x03f0, 21) +#elif PACKETVER >= 20090211 +packetLen(0x03f0, 4) +#elif PACKETVER >= 20090204 +packetLen(0x03f0, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03f0, 8) +#elif PACKETVER >= 20090120 +packetLen(0x03f0, 3) +#elif PACKETVER >= 20090114 +packetLen(0x03f0, 6) +#elif PACKETVER >= 20090107 +packetLen(0x03f0, -1) +#endif + +// Packet: 0x03f1 +#if PACKETVER >= 20090401 +packetLen(0x03f1, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03f1, 2) +#elif PACKETVER >= 20090318 +packetLen(0x03f1, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03f1, 4) +#elif PACKETVER >= 20090225 +packetLen(0x03f1, 30) +#elif PACKETVER >= 20090218 +packetLen(0x03f1, 65) +#elif PACKETVER >= 20090211 +packetLen(0x03f1, 14) +#elif PACKETVER >= 20090204 +packetLen(0x03f1, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03f1, 10) +#elif PACKETVER >= 20090114 +packetLen(0x03f1, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03f1, 6) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03f2 +#if PACKETVER >= 20090311 +packetLen(0x03f2, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03f2, 10) +#elif PACKETVER >= 20090218 +packetLen(0x03f2, 26) +#elif PACKETVER >= 20090211 +packetLen(0x03f2, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03f2, 4) +#elif PACKETVER >= 20090129 +packetLen(0x03f2, 282) +#elif PACKETVER >= 20090120 +packetLen(0x03f2, 9) +#elif PACKETVER >= 20090107 +packetLen(0x03f2, -1) +#endif + +// Packet: 0x03f3 +#if PACKETVER >= 20090401 +packetLen(0x03f3, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03f3, 2) +#elif PACKETVER >= 20090318 +packetLen(0x03f3, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03f3, 5) +#elif PACKETVER >= 20090225 +packetLen(0x03f3, 7) +#elif PACKETVER >= 20090211 +packetLen(0x03f3, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03f3, 9) +#elif PACKETVER >= 20090129 +packetLen(0x03f3, 6) +#elif PACKETVER >= 20090120 +packetLen(0x03f3, 67) +#elif PACKETVER >= 20090114 +packetLen(0x03f3, 8) +#elif PACKETVER >= 20090107 +packetLen(0x03f3, -1) +#endif + +// Packet: 0x03f4 +#if PACKETVER >= 20090406 +packetLen(0x03f4, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03f4, 8) +#elif PACKETVER >= 20090311 +packetLen(0x03f4, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03f4, 14) +#elif PACKETVER >= 20090218 +packetLen(0x03f4, -1) +#elif PACKETVER >= 20090211 +packetLen(0x03f4, 32) +#elif PACKETVER >= 20090129 +packetLen(0x03f4, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03f4, 13) +#elif PACKETVER >= 20090114 +packetLen(0x03f4, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03f4, 5) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03f5 +#if PACKETVER >= 20090318 +packetLen(0x03f5, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03f5, 10) +#elif PACKETVER >= 20090211 +packetLen(0x03f5, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03f5, 8) +#elif PACKETVER >= 20090107 +packetLen(0x03f5, -1) +#endif + +// Packet: 0x03f6 +#if PACKETVER >= 20090406 +packetLen(0x03f6, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03f6, 6) +#elif PACKETVER >= 20090318 +packetLen(0x03f6, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03f6, 10) +#elif PACKETVER >= 20090211 +packetLen(0x03f6, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03f6, 2) +#elif PACKETVER >= 20090129 +packetLen(0x03f6, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03f6, 8) +#elif PACKETVER >= 20090114 +packetLen(0x03f6, 4) +#elif PACKETVER >= 20090107 +packetLen(0x03f6, 4) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x03f7 +#if PACKETVER >= 20090401 +packetLen(0x03f7, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03f7, 54) +#elif PACKETVER >= 20090318 +packetLen(0x03f7, 16) +#elif PACKETVER >= 20090311 +packetLen(0x03f7, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03f7, 30) +#elif PACKETVER >= 20090211 +packetLen(0x03f7, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03f7, 4) +#elif PACKETVER >= 20090129 +packetLen(0x03f7, -1) +#elif PACKETVER >= 20090120 +packetLen(0x03f7, 7) +#elif PACKETVER >= 20090114 +packetLen(0x03f7, 30) +#elif PACKETVER >= 20090107 +packetLen(0x03f7, -1) +#endif + +// Packet: 0x03f8 +#if PACKETVER >= 20090406 +packetLen(0x03f8, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03f8, 3) +#elif PACKETVER >= 20090318 +packetLen(0x03f8, -1) +#elif PACKETVER >= 20090311 +packetLen(0x03f8, 21) +#elif PACKETVER >= 20090211 +packetLen(0x03f8, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03f8, 17) +#elif PACKETVER >= 20090129 +packetLen(0x03f8, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03f8, 6) +#elif PACKETVER >= 20090107 +packetLen(0x03f8, -1) +#endif + +// Packet: 0x03f9 +#if PACKETVER >= 20090225 +packetLen(0x03f9, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03f9, 14) +#elif PACKETVER >= 20090211 +packetLen(0x03f9, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03f9, 3) +#elif PACKETVER >= 20090129 +packetLen(0x03f9, 2) +#elif PACKETVER >= 20090120 +packetLen(0x03f9, 11) +#elif PACKETVER >= 20090114 +packetLen(0x03f9, 3) +#elif PACKETVER >= 20090107 +packetLen(0x03f9, 10) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03fa +#if PACKETVER >= 20090406 +packetLen(0x03fa, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03fa, 282) +#elif PACKETVER >= 20090325 +packetLen(0x03fa, 90) +#elif PACKETVER >= 20090318 +packetLen(0x03fa, 33) +#elif PACKETVER >= 20090311 +packetLen(0x03fa, -1) +#elif PACKETVER >= 20090225 +packetLen(0x03fa, 71) +#elif PACKETVER >= 20090218 +packetLen(0x03fa, 5) +#elif PACKETVER >= 20090211 +packetLen(0x03fa, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03fa, 8) +#elif PACKETVER >= 20090120 +packetLen(0x03fa, 3) +#elif PACKETVER >= 20090114 +packetLen(0x03fa, 7) +#elif PACKETVER >= 20090107 +packetLen(0x03fa, 57) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03fb +#if PACKETVER >= 20090406 +packetLen(0x03fb, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03fb, 19) +#elif PACKETVER >= 20090325 +packetLen(0x03fb, -1) +#elif PACKETVER >= 20090318 +packetLen(0x03fb, 60) +#elif PACKETVER >= 20090311 +packetLen(0x03fb, 6) +#elif PACKETVER >= 20090225 +packetLen(0x03fb, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03fb, 6) +#elif PACKETVER >= 20090114 +packetLen(0x03fb, -1) +#elif PACKETVER >= 20090107 +packetLen(0x03fb, 68) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03fc +#if PACKETVER >= 20090406 +packetLen(0x03fc, -1) +#elif PACKETVER >= 20090401 +packetLen(0x03fc, 30) +#elif PACKETVER >= 20090225 +packetLen(0x03fc, -1) +#elif PACKETVER >= 20090218 +packetLen(0x03fc, 16) +#elif PACKETVER >= 20090211 +packetLen(0x03fc, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03fc, 6) +#elif PACKETVER >= 20090120 +packetLen(0x03fc, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03fc, 16) +#elif PACKETVER >= 20090107 +packetLen(0x03fc, 182) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x03fd +#if PACKETVER >= 20090211 +packetLen(0x03fd, -1) +#elif PACKETVER >= 20090204 +packetLen(0x03fd, 16) +#elif PACKETVER >= 20090107 +packetLen(0x03fd, -1) +#endif + +// Packet: 0x03fe +#if PACKETVER >= 20090204 +packetLen(0x03fe, -1) +#elif PACKETVER >= 20090129 +packetLen(0x03fe, 22) +#elif PACKETVER >= 20090114 +packetLen(0x03fe, 4) +#elif PACKETVER >= 20090107 +packetLen(0x03fe, -1) +#endif + +// Packet: 0x03ff +#if PACKETVER >= 20090401 +packetLen(0x03ff, -1) +#elif PACKETVER >= 20090325 +packetLen(0x03ff, 13) +#elif PACKETVER >= 20090120 +packetLen(0x03ff, -1) +#elif PACKETVER >= 20090114 +packetLen(0x03ff, 6) +#elif PACKETVER >= 20090107 +packetLen(0x03ff, 4) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0400 +#if PACKETVER >= 20090401 +packetLen(0x0400, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0400, 10) +#elif PACKETVER >= 20090318 +packetLen(0x0400, 7) +#elif PACKETVER >= 20090225 +packetLen(0x0400, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0400, 8) +#elif PACKETVER >= 20090211 +packetLen(0x0400, 67) +#elif PACKETVER >= 20090107 +packetLen(0x0400, -1) +#endif + +// Packet: 0x0401 +#if PACKETVER >= 20090401 +packetLen(0x0401, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0401, 60) +#elif PACKETVER >= 20090318 +packetLen(0x0401, 3) +#elif PACKETVER >= 20090311 +packetLen(0x0401, 4) +#elif PACKETVER >= 20090225 +packetLen(0x0401, 11) +#elif PACKETVER >= 20090218 +packetLen(0x0401, 29) +#elif PACKETVER >= 20090204 +packetLen(0x0401, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0401, 6) +#elif PACKETVER >= 20090114 +packetLen(0x0401, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0401, 2) +#endif + +// Packet: 0x0402 +#if PACKETVER >= 20090225 +packetLen(0x0402, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0402, 42) +#elif PACKETVER >= 20090211 +packetLen(0x0402, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0402, 10) +#elif PACKETVER >= 20090129 +packetLen(0x0402, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0402, 27) +#elif PACKETVER >= 20090114 +packetLen(0x0402, 9) +#elif PACKETVER >= 20090107 +packetLen(0x0402, 14) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0403 +#if PACKETVER >= 20090401 +packetLen(0x0403, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0403, 27) +#elif PACKETVER >= 20090318 +packetLen(0x0403, 4) +#elif PACKETVER >= 20090311 +packetLen(0x0403, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0403, 6) +#elif PACKETVER >= 20090218 +packetLen(0x0403, 3) +#elif PACKETVER >= 20090211 +packetLen(0x0403, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0403, 8) +#elif PACKETVER >= 20090129 +packetLen(0x0403, 9) +#elif PACKETVER >= 20090120 +packetLen(0x0403, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0403, 58) +#elif PACKETVER >= 20090107 +packetLen(0x0403, -1) +#endif + +// Packet: 0x0404 +#if PACKETVER >= 20090406 +packetLen(0x0404, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0404, 7) +#elif PACKETVER >= 20090325 +packetLen(0x0404, 282) +#elif PACKETVER >= 20090318 +packetLen(0x0404, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0404, 3) +#elif PACKETVER >= 20090225 +packetLen(0x0404, 2) +#elif PACKETVER >= 20090218 +packetLen(0x0404, 6) +#elif PACKETVER >= 20090211 +packetLen(0x0404, 11) +#elif PACKETVER >= 20090204 +packetLen(0x0404, 6) +#elif PACKETVER >= 20090120 +packetLen(0x0404, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0404, 7) +#elif PACKETVER >= 20090107 +packetLen(0x0404, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0405 +#if PACKETVER >= 20090406 +packetLen(0x0405, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0405, 3) +#elif PACKETVER >= 20090311 +packetLen(0x0405, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0405, 4) +#elif PACKETVER >= 20090218 +packetLen(0x0405, 22) +#elif PACKETVER >= 20090211 +packetLen(0x0405, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0405, 10) +#elif PACKETVER >= 20090107 +packetLen(0x0405, 4) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0406 +#if PACKETVER >= 20090225 +packetLen(0x0406, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0406, 10) +#elif PACKETVER >= 20090211 +packetLen(0x0406, 6) +#elif PACKETVER >= 20090129 +packetLen(0x0406, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0406, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0406, 16) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0407 +#if PACKETVER >= 20090318 +packetLen(0x0407, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0407, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0407, -1) +#endif + +// Packet: 0x0408 +#if PACKETVER >= 20090401 +packetLen(0x0408, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0408, 5) +#elif PACKETVER >= 20090318 +packetLen(0x0408, 3) +#elif PACKETVER >= 20090311 +packetLen(0x0408, 5) +#elif PACKETVER >= 20090225 +packetLen(0x0408, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0408, 8) +#elif PACKETVER >= 20090204 +packetLen(0x0408, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0408, 22) +#elif PACKETVER >= 20090120 +packetLen(0x0408, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0408, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0408, 2) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0409 +#if PACKETVER >= 20090401 +packetLen(0x0409, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0409, 10) +#elif PACKETVER >= 20090129 +packetLen(0x0409, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0409, 30) +#elif PACKETVER >= 20090114 +packetLen(0x0409, 67) +#elif PACKETVER >= 20090107 +packetLen(0x0409, 7) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x040a +#if PACKETVER >= 20090406 +packetLen(0x040a, -1) +#elif PACKETVER >= 20090401 +packetLen(0x040a, 6) +#elif PACKETVER >= 20090325 +packetLen(0x040a, -1) +#elif PACKETVER >= 20090318 +packetLen(0x040a, 3) +#elif PACKETVER >= 20090311 +packetLen(0x040a, 8) +#elif PACKETVER >= 20090225 +packetLen(0x040a, 6) +#elif PACKETVER >= 20090218 +packetLen(0x040a, -1) +#elif PACKETVER >= 20090211 +packetLen(0x040a, 58) +#elif PACKETVER >= 20090204 +packetLen(0x040a, 2) +#elif PACKETVER >= 20090129 +packetLen(0x040a, 5) +#elif PACKETVER >= 20090120 +packetLen(0x040a, 2) +#elif PACKETVER >= 20090114 +packetLen(0x040a, 10) +#elif PACKETVER >= 20090107 +packetLen(0x040a, -1) +#endif + +// Packet: 0x040b +#if PACKETVER >= 20090406 +packetLen(0x040b, -1) +#elif PACKETVER >= 20090401 +packetLen(0x040b, 21) +#elif PACKETVER >= 20090318 +packetLen(0x040b, -1) +#elif PACKETVER >= 20090311 +packetLen(0x040b, 8) +#elif PACKETVER >= 20090225 +packetLen(0x040b, 102) +#elif PACKETVER >= 20090218 +packetLen(0x040b, 2) +#elif PACKETVER >= 20090204 +packetLen(0x040b, -1) +#elif PACKETVER >= 20090129 +packetLen(0x040b, 14) +#elif PACKETVER >= 20090120 +packetLen(0x040b, 8) +#elif PACKETVER >= 20090107 +packetLen(0x040b, -1) +#endif + +// Packet: 0x040c +#if PACKETVER >= 20090401 +packetLen(0x040c, -1) +#elif PACKETVER >= 20090325 +packetLen(0x040c, 6) +#elif PACKETVER >= 20090318 +packetLen(0x040c, 21) +#elif PACKETVER >= 20090311 +packetLen(0x040c, 182) +#elif PACKETVER >= 20090218 +packetLen(0x040c, -1) +#elif PACKETVER >= 20090211 +packetLen(0x040c, 6) +#elif PACKETVER >= 20090204 +packetLen(0x040c, 60) +#elif PACKETVER >= 20090114 +packetLen(0x040c, -1) +#elif PACKETVER >= 20090107 +packetLen(0x040c, 67) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x040d +#if PACKETVER >= 20090401 +packetLen(0x040d, -1) +#elif PACKETVER >= 20090325 +packetLen(0x040d, 22) +#elif PACKETVER >= 20090225 +packetLen(0x040d, -1) +#elif PACKETVER >= 20090218 +packetLen(0x040d, 28) +#elif PACKETVER >= 20090211 +packetLen(0x040d, -1) +#elif PACKETVER >= 20090204 +packetLen(0x040d, 10) +#elif PACKETVER >= 20090129 +packetLen(0x040d, 2) +#elif PACKETVER >= 20090120 +packetLen(0x040d, -1) +#elif PACKETVER >= 20090114 +packetLen(0x040d, 2) +#elif PACKETVER >= 20090107 +packetLen(0x040d, 282) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x040e +#if PACKETVER >= 20090406 +packetLen(0x040e, -1) +#elif PACKETVER >= 20090401 +packetLen(0x040e, 3) +#elif PACKETVER >= 20090325 +packetLen(0x040e, 10) +#elif PACKETVER >= 20090318 +packetLen(0x040e, 26) +#elif PACKETVER >= 20090311 +packetLen(0x040e, 11) +#elif PACKETVER >= 20090225 +packetLen(0x040e, 14) +#elif PACKETVER >= 20090218 +packetLen(0x040e, -1) +#elif PACKETVER >= 20090211 +packetLen(0x040e, 4) +#elif PACKETVER >= 20090204 +packetLen(0x040e, 58) +#elif PACKETVER >= 20090129 +packetLen(0x040e, -1) +#elif PACKETVER >= 20090120 +packetLen(0x040e, 5) +#elif PACKETVER >= 20090114 +packetLen(0x040e, 66) +#elif PACKETVER >= 20090107 +packetLen(0x040e, -1) +#endif + +// Packet: 0x040f +#if PACKETVER >= 20090401 +packetLen(0x040f, -1) +#elif PACKETVER >= 20090325 +packetLen(0x040f, 26) +#elif PACKETVER >= 20090218 +packetLen(0x040f, -1) +#elif PACKETVER >= 20090211 +packetLen(0x040f, 2) +#elif PACKETVER >= 20090204 +packetLen(0x040f, 6) +#elif PACKETVER >= 20090129 +packetLen(0x040f, -1) +#elif PACKETVER >= 20090120 +packetLen(0x040f, 29) +#elif PACKETVER >= 20090114 +packetLen(0x040f, 6) +#elif PACKETVER >= 20090107 +packetLen(0x040f, 6) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0410 +#if PACKETVER >= 20090406 +packetLen(0x0410, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0410, 3) +#elif PACKETVER >= 20090325 +packetLen(0x0410, 21) +#elif PACKETVER >= 20090211 +packetLen(0x0410, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0410, 6) +#elif PACKETVER >= 20090129 +packetLen(0x0410, 11) +#elif PACKETVER >= 20090114 +packetLen(0x0410, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0410, 26) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0411 +#if PACKETVER >= 20090318 +packetLen(0x0411, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0411, 14) +#elif PACKETVER >= 20090211 +packetLen(0x0411, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0411, 2) +#elif PACKETVER >= 20090129 +packetLen(0x0411, 81) +#elif PACKETVER >= 20090120 +packetLen(0x0411, 6) +#elif PACKETVER >= 20090114 +packetLen(0x0411, 9) +#elif PACKETVER >= 20090107 +packetLen(0x0411, 186) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0412 +#if PACKETVER >= 20090401 +packetLen(0x0412, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0412, 81) +#elif PACKETVER >= 20090318 +packetLen(0x0412, 22) +#elif PACKETVER >= 20090218 +packetLen(0x0412, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0412, 6) +#elif PACKETVER >= 20090129 +packetLen(0x0412, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0412, 4) +#elif PACKETVER >= 20090107 +packetLen(0x0412, 2) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0413 +#if PACKETVER >= 20090325 +packetLen(0x0413, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0413, 7) +#elif PACKETVER >= 20090311 +packetLen(0x0413, 14) +#elif PACKETVER >= 20090225 +packetLen(0x0413, 26) +#elif PACKETVER >= 20090218 +packetLen(0x0413, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0413, 282) +#elif PACKETVER >= 20090204 +packetLen(0x0413, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0413, 5) +#elif PACKETVER >= 20090120 +packetLen(0x0413, 8) +#elif PACKETVER >= 20090114 +packetLen(0x0413, 2) +#elif PACKETVER >= 20090107 +packetLen(0x0413, -1) +#endif + +// Packet: 0x0414 +#if PACKETVER >= 20090225 +packetLen(0x0414, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0414, 34) +#elif PACKETVER >= 20090211 +packetLen(0x0414, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0414, 26) +#elif PACKETVER >= 20090129 +packetLen(0x0414, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0414, -1) +#endif + +// Packet: 0x0415 +#if PACKETVER >= 20090406 +packetLen(0x0415, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0415, 4) +#elif PACKETVER >= 20090325 +packetLen(0x0415, 29) +#elif PACKETVER >= 20090318 +packetLen(0x0415, 17) +#elif PACKETVER >= 20090311 +packetLen(0x0415, 6) +#elif PACKETVER >= 20090225 +packetLen(0x0415, 114) +#elif PACKETVER >= 20090218 +packetLen(0x0415, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0415, 8) +#elif PACKETVER >= 20090129 +packetLen(0x0415, 2) +#elif PACKETVER >= 20090120 +packetLen(0x0415, 30) +#elif PACKETVER >= 20090114 +packetLen(0x0415, 10) +#elif PACKETVER >= 20090107 +packetLen(0x0415, 8) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0416 +#if PACKETVER >= 20090401 +packetLen(0x0416, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0416, 28) +#elif PACKETVER >= 20090318 +packetLen(0x0416, 10) +#elif PACKETVER >= 20090218 +packetLen(0x0416, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0416, 3) +#elif PACKETVER >= 20090204 +packetLen(0x0416, 15) +#elif PACKETVER >= 20090114 +packetLen(0x0416, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0416, 8) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0417 +#if PACKETVER >= 20090325 +packetLen(0x0417, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0417, 8) +#elif PACKETVER >= 20090311 +packetLen(0x0417, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0417, 26) +#elif PACKETVER >= 20090218 +packetLen(0x0417, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0417, 10) +#elif PACKETVER >= 20090120 +packetLen(0x0417, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0417, 4) +#elif PACKETVER >= 20090107 +packetLen(0x0417, 59) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0418 +#if PACKETVER >= 20090401 +packetLen(0x0418, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0418, 60) +#elif PACKETVER >= 20090318 +packetLen(0x0418, 182) +#elif PACKETVER >= 20090311 +packetLen(0x0418, 23) +#elif PACKETVER >= 20090225 +packetLen(0x0418, 33) +#elif PACKETVER >= 20090218 +packetLen(0x0418, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0418, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0418, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0418, 15) +#elif PACKETVER >= 20090120 +packetLen(0x0418, 42) +#elif PACKETVER >= 20090114 +packetLen(0x0418, 21) +#elif PACKETVER >= 20090107 +packetLen(0x0418, -1) +#endif + +// Packet: 0x0419 +#if PACKETVER >= 20090401 +packetLen(0x0419, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0419, 20) +#elif PACKETVER >= 20090311 +packetLen(0x0419, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0419, 2) +#elif PACKETVER >= 20090211 +packetLen(0x0419, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0419, 14) +#elif PACKETVER >= 20090129 +packetLen(0x0419, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0419, 10) +#elif PACKETVER >= 20090114 +packetLen(0x0419, 3) +#elif PACKETVER >= 20090107 +packetLen(0x0419, -1) +#endif + +// Packet: 0x041a +#if PACKETVER >= 20090325 +packetLen(0x041a, -1) +#elif PACKETVER >= 20090318 +packetLen(0x041a, 3) +#elif PACKETVER >= 20090311 +packetLen(0x041a, 102) +#elif PACKETVER >= 20090225 +packetLen(0x041a, 6) +#elif PACKETVER >= 20090218 +packetLen(0x041a, -1) +#elif PACKETVER >= 20090211 +packetLen(0x041a, 6) +#elif PACKETVER >= 20090107 +packetLen(0x041a, -1) +#endif + +// Packet: 0x041b +#if PACKETVER >= 20090318 +packetLen(0x041b, -1) +#elif PACKETVER >= 20090311 +packetLen(0x041b, 86) +#elif PACKETVER >= 20090225 +packetLen(0x041b, 4) +#elif PACKETVER >= 20090211 +packetLen(0x041b, -1) +#elif PACKETVER >= 20090204 +packetLen(0x041b, 2) +#elif PACKETVER >= 20090129 +packetLen(0x041b, -1) +#elif PACKETVER >= 20090120 +packetLen(0x041b, 11) +#elif PACKETVER >= 20090114 +packetLen(0x041b, 30) +#elif PACKETVER >= 20090107 +packetLen(0x041b, 54) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x041c +#if PACKETVER >= 20090406 +packetLen(0x041c, -1) +#elif PACKETVER >= 20090401 +packetLen(0x041c, 26) +#elif PACKETVER >= 20090325 +packetLen(0x041c, -1) +#elif PACKETVER >= 20090318 +packetLen(0x041c, 30) +#elif PACKETVER >= 20090311 +packetLen(0x041c, 2) +#elif PACKETVER >= 20090225 +packetLen(0x041c, 20) +#elif PACKETVER >= 20090218 +packetLen(0x041c, -1) +#elif PACKETVER >= 20090211 +packetLen(0x041c, 4) +#elif PACKETVER >= 20090129 +packetLen(0x041c, -1) +#elif PACKETVER >= 20090120 +packetLen(0x041c, 28) +#elif PACKETVER >= 20090114 +packetLen(0x041c, 17) +#elif PACKETVER >= 20090107 +packetLen(0x041c, 34) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x041d +#if PACKETVER >= 20090318 +packetLen(0x041d, -1) +#elif PACKETVER >= 20090311 +packetLen(0x041d, 282) +#elif PACKETVER >= 20090225 +packetLen(0x041d, 7) +#elif PACKETVER >= 20090218 +packetLen(0x041d, 3) +#elif PACKETVER >= 20090204 +packetLen(0x041d, -1) +#elif PACKETVER >= 20090129 +packetLen(0x041d, 90) +#elif PACKETVER >= 20090107 +packetLen(0x041d, 67) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x041e +#if PACKETVER >= 20090406 +packetLen(0x041e, -1) +#elif PACKETVER >= 20090401 +packetLen(0x041e, 6) +#elif PACKETVER >= 20090311 +packetLen(0x041e, -1) +#elif PACKETVER >= 20090225 +packetLen(0x041e, 10) +#elif PACKETVER >= 20090218 +packetLen(0x041e, 30) +#elif PACKETVER >= 20090211 +packetLen(0x041e, -1) +#elif PACKETVER >= 20090204 +packetLen(0x041e, 11) +#elif PACKETVER >= 20090107 +packetLen(0x041e, -1) +#endif + +// Packet: 0x041f +#if PACKETVER >= 20090401 +packetLen(0x041f, -1) +#elif PACKETVER >= 20090325 +packetLen(0x041f, 10) +#elif PACKETVER >= 20090318 +packetLen(0x041f, 34) +#elif PACKETVER >= 20090311 +packetLen(0x041f, -1) +#elif PACKETVER >= 20090225 +packetLen(0x041f, 3) +#elif PACKETVER >= 20090218 +packetLen(0x041f, -1) +#elif PACKETVER >= 20090211 +packetLen(0x041f, 26) +#elif PACKETVER >= 20090204 +packetLen(0x041f, 8) +#elif PACKETVER >= 20090129 +packetLen(0x041f, -1) +#elif PACKETVER >= 20090120 +packetLen(0x041f, 8) +#elif PACKETVER >= 20090114 +packetLen(0x041f, 5) +#elif PACKETVER >= 20090107 +packetLen(0x041f, -1) +#endif + +// Packet: 0x0420 +#if PACKETVER >= 20090406 +packetLen(0x0420, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0420, 30) +#elif PACKETVER >= 20090318 +packetLen(0x0420, 10) +#elif PACKETVER >= 20090218 +packetLen(0x0420, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0420, 10) +#elif PACKETVER >= 20090204 +packetLen(0x0420, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0420, 30) +#elif PACKETVER >= 20090120 +packetLen(0x0420, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0420, 23) +#elif PACKETVER >= 20090107 +packetLen(0x0420, 14) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0421 +#if PACKETVER >= 20090401 +packetLen(0x0421, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0421, 4) +#elif PACKETVER >= 20090318 +packetLen(0x0421, 2) +#elif PACKETVER >= 20090218 +packetLen(0x0421, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0421, 7) +#elif PACKETVER >= 20090204 +packetLen(0x0421, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0421, 4) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0422 +#if PACKETVER >= 20090406 +packetLen(0x0422, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0422, 5) +#elif PACKETVER >= 20090318 +packetLen(0x0422, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0422, 22) +#elif PACKETVER >= 20090225 +packetLen(0x0422, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0422, 3) +#elif PACKETVER >= 20090120 +packetLen(0x0422, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0422, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0422, 28) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0423 +#if PACKETVER >= 20090406 +packetLen(0x0423, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0423, 86) +#elif PACKETVER >= 20090325 +packetLen(0x0423, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0423, 6) +#elif PACKETVER >= 20090311 +packetLen(0x0423, 10) +#elif PACKETVER >= 20090211 +packetLen(0x0423, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0423, 10) +#elif PACKETVER >= 20090120 +packetLen(0x0423, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0423, 58) +#elif PACKETVER >= 20090107 +packetLen(0x0423, 30) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0424 +#if PACKETVER >= 20090225 +packetLen(0x0424, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0424, 6) +#elif PACKETVER >= 20090211 +packetLen(0x0424, 9) +#elif PACKETVER >= 20090204 +packetLen(0x0424, 8) +#elif PACKETVER >= 20090129 +packetLen(0x0424, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0424, 6) +#elif PACKETVER >= 20090114 +packetLen(0x0424, 26) +#elif PACKETVER >= 20090107 +packetLen(0x0424, -1) +#endif + +// Packet: 0x0425 +#if PACKETVER >= 20090318 +packetLen(0x0425, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0425, 4) +#elif PACKETVER >= 20090218 +packetLen(0x0425, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0425, 60) +#elif PACKETVER >= 20090107 +packetLen(0x0425, 57) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0426 +#if PACKETVER >= 20090225 +packetLen(0x0426, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0426, 6) +#elif PACKETVER >= 20090211 +packetLen(0x0426, 53) +#elif PACKETVER >= 20090204 +packetLen(0x0426, 11) +#elif PACKETVER >= 20090129 +packetLen(0x0426, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0426, 3) +#elif PACKETVER >= 20090107 +packetLen(0x0426, -1) +#endif + +// Packet: 0x0427 +#if PACKETVER >= 20090325 +packetLen(0x0427, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0427, 22) +#elif PACKETVER >= 20090311 +packetLen(0x0427, 16) +#elif PACKETVER >= 20090218 +packetLen(0x0427, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0427, 13) +#elif PACKETVER >= 20090129 +packetLen(0x0427, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0427, 2) +#elif PACKETVER >= 20090114 +packetLen(0x0427, 10) +#elif PACKETVER >= 20090107 +packetLen(0x0427, 28) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0428 +#if PACKETVER >= 20090401 +packetLen(0x0428, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0428, 5) +#elif PACKETVER >= 20090318 +packetLen(0x0428, 2) +#elif PACKETVER >= 20090225 +packetLen(0x0428, -1) +#elif PACKETVER >= 20090218 +packetLen(0x0428, 2) +#elif PACKETVER >= 20090211 +packetLen(0x0428, -1) +#elif PACKETVER >= 20090204 +packetLen(0x0428, 102) +#elif PACKETVER >= 20090129 +packetLen(0x0428, 7) +#elif PACKETVER >= 20090120 +packetLen(0x0428, 11) +#elif PACKETVER >= 20090107 +packetLen(0x0428, 19) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0429 +#if PACKETVER >= 20090406 +packetLen(0x0429, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0429, 2) +#elif PACKETVER >= 20090325 +packetLen(0x0429, 6) +#elif PACKETVER >= 20090318 +packetLen(0x0429, 11) +#elif PACKETVER >= 20090129 +packetLen(0x0429, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0429, 3) +#elif PACKETVER >= 20090114 +packetLen(0x0429, 11) +#elif PACKETVER >= 20090107 +packetLen(0x0429, -1) +#endif + +// Packet: 0x042a +#if PACKETVER >= 20090406 +packetLen(0x042a, -1) +#elif PACKETVER >= 20090401 +packetLen(0x042a, 5) +#elif PACKETVER >= 20090318 +packetLen(0x042a, -1) +#elif PACKETVER >= 20090311 +packetLen(0x042a, 3) +#elif PACKETVER >= 20090129 +packetLen(0x042a, -1) +#elif PACKETVER >= 20090120 +packetLen(0x042a, 4) +#elif PACKETVER >= 20090107 +packetLen(0x042a, -1) +#endif + +// Packet: 0x042b +#if PACKETVER >= 20090406 +packetLen(0x042b, -1) +#elif PACKETVER >= 20090401 +packetLen(0x042b, 8) +#elif PACKETVER >= 20090318 +packetLen(0x042b, -1) +#elif PACKETVER >= 20090311 +packetLen(0x042b, 10) +#elif PACKETVER >= 20090218 +packetLen(0x042b, -1) +#elif PACKETVER >= 20090211 +packetLen(0x042b, 30) +#elif PACKETVER >= 20090204 +packetLen(0x042b, -1) +#elif PACKETVER >= 20090129 +packetLen(0x042b, 10) +#elif PACKETVER >= 20090114 +packetLen(0x042b, -1) +#elif PACKETVER >= 20090107 +packetLen(0x042b, 58) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x042c +#if PACKETVER >= 20090311 +packetLen(0x042c, -1) +#elif PACKETVER >= 20090225 +packetLen(0x042c, 8) +#elif PACKETVER >= 20090218 +packetLen(0x042c, -1) +#elif PACKETVER >= 20090211 +packetLen(0x042c, 2) +#elif PACKETVER >= 20090204 +packetLen(0x042c, 4) +#elif PACKETVER >= 20090120 +packetLen(0x042c, -1) +#elif PACKETVER >= 20090114 +packetLen(0x042c, 29) +#elif PACKETVER >= 20090107 +packetLen(0x042c, 31) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x042d +#if PACKETVER >= 20090401 +packetLen(0x042d, -1) +#elif PACKETVER >= 20090325 +packetLen(0x042d, 5) +#elif PACKETVER >= 20090204 +packetLen(0x042d, -1) +#elif PACKETVER >= 20090129 +packetLen(0x042d, 4) +#elif PACKETVER >= 20090120 +packetLen(0x042d, -1) +#elif PACKETVER >= 20090114 +packetLen(0x042d, 24) +#elif PACKETVER >= 20090107 +packetLen(0x042d, -1) +#endif + +// Packet: 0x042e +#if PACKETVER >= 20090401 +packetLen(0x042e, -1) +#elif PACKETVER >= 20090325 +packetLen(0x042e, 4) +#elif PACKETVER >= 20090318 +packetLen(0x042e, 6) +#elif PACKETVER >= 20090225 +packetLen(0x042e, -1) +#elif PACKETVER >= 20090218 +packetLen(0x042e, 10) +#elif PACKETVER >= 20090211 +packetLen(0x042e, 6) +#elif PACKETVER >= 20090204 +packetLen(0x042e, 67) +#elif PACKETVER >= 20090120 +packetLen(0x042e, 6) +#elif PACKETVER >= 20090114 +packetLen(0x042e, 4) +#elif PACKETVER >= 20090107 +packetLen(0x042e, 6) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x042f +#if PACKETVER >= 20090325 +packetLen(0x042f, -1) +#elif PACKETVER >= 20090318 +packetLen(0x042f, 28) +#elif PACKETVER >= 20090311 +packetLen(0x042f, -1) +#elif PACKETVER >= 20090225 +packetLen(0x042f, 3) +#elif PACKETVER >= 20090211 +packetLen(0x042f, -1) +#elif PACKETVER >= 20090204 +packetLen(0x042f, 10) +#elif PACKETVER >= 20090129 +packetLen(0x042f, -1) +#elif PACKETVER >= 20090120 +packetLen(0x042f, 3) +#elif PACKETVER >= 20090107 +packetLen(0x042f, 11) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0430 +#if PACKETVER >= 20090325 +packetLen(0x0430, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0430, 2) +#elif PACKETVER >= 20090311 +packetLen(0x0430, 7) +#elif PACKETVER >= 20090225 +packetLen(0x0430, 28) +#elif PACKETVER >= 20090218 +packetLen(0x0430, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0430, 29) +#elif PACKETVER >= 20090204 +packetLen(0x0430, 16) +#elif PACKETVER >= 20090129 +packetLen(0x0430, 6) +#elif PACKETVER >= 20090107 +packetLen(0x0430, -1) +#endif + +// Packet: 0x0431 +#if PACKETVER >= 20090406 +packetLen(0x0431, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0431, 4) +#elif PACKETVER >= 20090325 +packetLen(0x0431, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0431, 10) +#elif PACKETVER >= 20090311 +packetLen(0x0431, -1) +#elif PACKETVER >= 20090225 +packetLen(0x0431, 6) +#elif PACKETVER >= 20090204 +packetLen(0x0431, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0431, 43) +#elif PACKETVER >= 20090120 +packetLen(0x0431, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0431, 7) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0432 +#if PACKETVER >= 20090218 +packetLen(0x0432, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0432, 3) +#elif PACKETVER >= 20090114 +packetLen(0x0432, -1) +#elif PACKETVER >= 20090107 +packetLen(0x0432, 10) +// ignored packet from 2009-01-07aRagexe +#endif + +// Packet: 0x0433 +#if PACKETVER >= 20090406 +packetLen(0x0433, -1) +#elif PACKETVER >= 20090401 +packetLen(0x0433, 8) +#elif PACKETVER >= 20090318 +packetLen(0x0433, -1) +#elif PACKETVER >= 20090311 +packetLen(0x0433, 54) +#elif PACKETVER >= 20090225 +packetLen(0x0433, 6) +#elif PACKETVER >= 20090218 +packetLen(0x0433, -1) +#elif PACKETVER >= 20090211 +packetLen(0x0433, 26) +#elif PACKETVER >= 20090129 +packetLen(0x0433, -1) +#elif PACKETVER >= 20090120 +packetLen(0x0433, 14) +#elif PACKETVER >= 20090114 +packetLen(0x0433, 31) +#elif PACKETVER >= 20090107 +packetLen(0x0433, 7) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0434 +#if PACKETVER >= 20090401 +packetLen(0x0434, -1) +#elif PACKETVER >= 20090325 +packetLen(0x0434, 6) +#elif PACKETVER >= 20090318 +packetLen(0x0434, 59) +#elif PACKETVER >= 20090311 +packetLen(0x0434, 3) +#elif PACKETVER >= 20090204 +packetLen(0x0434, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0434, 67) +#elif PACKETVER >= 20090120 +packetLen(0x0434, 39) +#elif PACKETVER >= 20090107 +packetLen(0x0434, 6) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0435 +#if PACKETVER >= 20090325 +packetLen(0x0435, -1) +#elif PACKETVER >= 20090318 +packetLen(0x0435, 36) +#elif PACKETVER >= 20090311 +packetLen(0x0435, 90) +#elif PACKETVER >= 20090204 +packetLen(0x0435, -1) +#elif PACKETVER >= 20090129 +packetLen(0x0435, 15) +#elif PACKETVER >= 20090120 +packetLen(0x0435, -1) +#elif PACKETVER >= 20090114 +packetLen(0x0435, 11) +#elif PACKETVER >= 20090107 +packetLen(0x0435, 3) +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0436 +#if PACKETVER >= 20090406 +packetLen(0x0436, 19) // CZ_ENTER2 +#elif PACKETVER >= 20090325 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20090318 +packetLen(0x0436, 8) // CZ_ENTER2 +#elif PACKETVER >= 20090311 +packetLen(0x0436, 10) // CZ_ENTER2 +#elif PACKETVER >= 20090225 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20090120 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20090114 +packetLen(0x0436, 14) // CZ_ENTER2 +#elif PACKETVER >= 20090107 +packetLen(0x0436, -1) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20090406 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090401 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090325 +packetLen(0x0437, 4) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090318 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090311 +packetLen(0x0437, 30) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090225 +packetLen(0x0437, 16) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090218 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090211 +packetLen(0x0437, 54) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090204 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090129 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090120 +packetLen(0x0437, 57) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20090107 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20090406 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20090318 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20090311 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20090225 +packetLen(0x0438, 3) // CZ_USE_SKILL2 +#elif PACKETVER >= 20090204 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20090129 +packetLen(0x0438, 39) // CZ_USE_SKILL2 +#elif PACKETVER >= 20090120 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20090114 +packetLen(0x0438, 3) // CZ_USE_SKILL2 +#elif PACKETVER >= 20090107 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x0439 +#if PACKETVER >= 20090406 +packetLen(0x0439, 8) // CZ_USE_ITEM2 +#elif PACKETVER >= 20090401 +packetLen(0x0439, 5) // CZ_USE_ITEM2 +#elif PACKETVER >= 20090218 +packetLen(0x0439, -1) // CZ_USE_ITEM2 +#elif PACKETVER >= 20090211 +packetLen(0x0439, 6) // CZ_USE_ITEM2 +#elif PACKETVER >= 20090129 +packetLen(0x0439, -1) // CZ_USE_ITEM2 +#elif PACKETVER >= 20090120 +packetLen(0x0439, 10) // CZ_USE_ITEM2 +#elif PACKETVER >= 20090114 +packetLen(0x0439, 28) // CZ_USE_ITEM2 +#elif PACKETVER >= 20090107 +packetLen(0x0439, 3) // CZ_USE_ITEM2 +// ignored packet from 2009-01-07bRagexe +#endif + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +#if PACKETVER >= 20090114 +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 +#elif PACKETVER >= 20090107 +packetLen(0x043f, 8) // ZC_MSG_STATE_CHANGE2 +#endif + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, 8) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +#if PACKETVER >= 20090218 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT +#endif + +// Packet: 0x0447 +#if PACKETVER >= 20090520 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL +#endif + +// Packet: 0x0448 +#if PACKETVER >= 20090225 +packetLen(0x0448, -1) // HC_CHARACTER_LIST +#endif + +// Packet: 0x0449 +#if PACKETVER >= 20090401 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG +#endif + +// Packet: 0x044a +#if PACKETVER >= 20090406 +packetLen(0x044a, 6) // CZ_CLIENT_VERSION +#endif + +// Packet: 0x044b +#if PACKETVER >= 20090514 +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP +#endif + +// Packet: 0x07d0 +#if PACKETVER >= 20090520 +packetLen(0x07d0, 6) // ZC_ES_RESULT +#endif + +// Packet: 0x07d1 +#if PACKETVER >= 20090520 +packetLen(0x07d1, 2) // CZ_ES_GET_LIST +#endif + +// Packet: 0x07d2 +#if PACKETVER >= 20090520 +packetLen(0x07d2, -1) // ZC_ES_LIST +#endif + +// Packet: 0x07d3 +#if PACKETVER >= 20090520 +packetLen(0x07d3, 4) // CZ_ES_CHOOSE +#endif + +// Packet: 0x07d4 +#if PACKETVER >= 20090520 +packetLen(0x07d4, 4) // CZ_ES_CANCEL +#endif + +// Packet: 0x07d5 +#if PACKETVER >= 20090520 +packetLen(0x07d5, 4) // ZC_ES_READY +#endif + +// Packet: 0x07d6 +#if PACKETVER >= 20090520 +packetLen(0x07d6, 4) // ZC_ES_GOTO +#endif + +// Packet: 0x07d7 +#if PACKETVER >= 20090603 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 +#endif + +// Packet: 0x07d8 +#if PACKETVER >= 20090603 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 +#endif + +// Packet: 0x07d9 +#if PACKETVER >= 20090617 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 +#elif PACKETVER >= 20090603 +packetLen(0x07d9, 254) // ZC_SHORTCUT_KEY_LIST_V2 +#endif + +// Packet: 0x07da +#if PACKETVER >= 20090603 +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER +#endif + +// Packet: 0x07db +#if PACKETVER >= 20090610 +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE +#endif + +// Packet: 0x07dc +#if PACKETVER >= 20090617 +packetLen(0x07dc, 6) // CZ_SEEK_PARTY +#endif + +// Packet: 0x07dd +#if PACKETVER >= 20090617 +packetLen(0x07dd, 54) // ZC_SEEK_PARTY +#endif + +// Packet: 0x07de +#if PACKETVER >= 20090617 +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER +#endif + +// Packet: 0x07df +#if PACKETVER >= 20090617 +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER +#endif + +// Packet: 0x07e0 +#if PACKETVER >= 20090708 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO +#endif + +// Packet: 0x07e1 +#if PACKETVER >= 20090715 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 +#endif + +// Packet: 0x07e2 +#if PACKETVER >= 20090805 +packetLen(0x07e2, 8) // ZC_MSG_VALUE +#endif + +// Packet: 0x07e3 +#if PACKETVER >= 20090818 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN +#endif + +// Packet: 0x07e4 +#if PACKETVER >= 20090818 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +#if PACKETVER >= 20090922 +packetLen(0x07e5, 8) // CH_ENTER_CHECKBOT +#elif PACKETVER >= 20090825 +packetLen(0x07e5, -1) // CH_ENTER_CHECKBOT +#endif + +// Packet: 0x07e6 +#if PACKETVER >= 20090818 +packetLen(0x07e6, 8) // ZC_MSG_SKILL +#endif + +// Packet: 0x07e7 +#if PACKETVER >= 20090922 +packetLen(0x07e7, 32) // CH_CHECKBOT +#elif PACKETVER >= 20090825 +packetLen(0x07e7, 5) // CH_CHECKBOT +#endif + +// Packet: 0x07e8 +#if PACKETVER >= 20090922 +packetLen(0x07e8, -1) // HC_CHECKBOT +#endif + +// Packet: 0x07e9 +#if PACKETVER >= 20090922 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT +#endif + +// Packet: 0x07ea +#if PACKETVER >= 20090929 +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST +#endif + +// Packet: 0x07eb +#if PACKETVER >= 20090929 +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST +#endif + +// Packet: 0x07ec +#if PACKETVER >= 20091006 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20090929 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +#if PACKETVER >= 20091006 +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20090929 +packetLen(0x07ed, 8) // ZC_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ee +#if PACKETVER >= 20090929 +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD +#endif + +// Packet: 0x07ef +#if PACKETVER >= 20090929 +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD +#endif + +// Packet: 0x07f0 +#if PACKETVER >= 20090929 +packetLen(0x07f0, 8) // CZ_REQ_BATTLE_STATE_MONITOR +#endif + +// Packet: 0x07f1 +#if PACKETVER >= 20090929 +packetLen(0x07f1, 15) // ZC_ACK_BATTLE_STATE_MONITOR +#endif + +// Packet: 0x07f2 +#if PACKETVER >= 20091006 +packetLen(0x07f2, 6) // ZC_BATTLE_NOTI_START_STEP +#elif PACKETVER >= 20090929 +packetLen(0x07f2, 4) // ZC_BATTLE_NOTI_START_STEP +#endif + +// Packet: 0x07f3 +#if PACKETVER >= 20091006 +packetLen(0x07f3, 4) // ZC_BATTLE_JOIN_NOTI_DEFER +#elif PACKETVER >= 20090929 +packetLen(0x07f3, 3) // ZC_BATTLE_JOIN_NOTI_DEFER +#endif + +// Packet: 0x07f4 +#if PACKETVER >= 20091006 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE +#endif + +// Packet: 0x07f5 +#if PACKETVER >= 20091027 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP +#endif + +// Packet: 0x07f6 +#if PACKETVER >= 20091027 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP +#endif + +// Packet: 0x07f7 +#if PACKETVER >= 20091103 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 +#endif + +// Packet: 0x07f8 +#if PACKETVER >= 20091103 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 +#endif + +// Packet: 0x07f9 +#if PACKETVER >= 20091103 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 +#endif + +// Packet: 0x07fa +#if PACKETVER >= 20091117 +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY +#endif + +// Packet: 0x07fb +#if PACKETVER >= 20091124 +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 +#endif + +// Packet: 0x07fc +#if PACKETVER >= 20091201 +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER +#endif + +// Packet: 0x07fd +#if PACKETVER >= 20091201 +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN +#endif + +// Packet: 0x07fe +#if PACKETVER >= 20091201 +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM +#endif + +// Packet: 0x07ff +#if PACKETVER >= 20091201 +packetLen(0x07ff, -1) // ZC_DEFINE_CHECK +#endif + +// Packet: 0x0800 +#if PACKETVER >= 20091215 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 +#endif + +// Packet: 0x0801 +#if PACKETVER >= 20091215 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 +#endif + +// Packet: 0x0802 +#if PACKETVER >= 20091222 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +#if PACKETVER >= 20091222 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER +#endif + +// Packet: 0x0804 +#if PACKETVER >= 20091228 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH +#elif PACKETVER >= 20091222 +packetLen(0x0804, 8) // CZ_PARTY_BOOKING_REQ_SEARCH +#endif + +// Packet: 0x0805 +#if PACKETVER >= 20091222 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH +#endif + +// Packet: 0x0806 +#if PACKETVER >= 20091228 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE +#elif PACKETVER >= 20091222 +packetLen(0x0806, 4) // CZ_PARTY_BOOKING_REQ_DELETE +#endif + +// Packet: 0x0807 +#if PACKETVER >= 20091228 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE +#elif PACKETVER >= 20091222 +packetLen(0x0807, 2) // ZC_PARTY_BOOKING_ACK_DELETE +#endif + +// Packet: 0x0808 +#if PACKETVER >= 20091228 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE +#elif PACKETVER >= 20091222 +packetLen(0x0808, 4) // CZ_PARTY_BOOKING_REQ_UPDATE +#endif + +// Packet: 0x0809 +#if PACKETVER >= 20091228 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT +#elif PACKETVER >= 20091222 +packetLen(0x0809, 14) // ZC_PARTY_BOOKING_NOTIFY_INSERT +#endif + +// Packet: 0x080a +#if PACKETVER >= 20091228 +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE +#elif PACKETVER >= 20091222 +packetLen(0x080a, 50) // ZC_PARTY_BOOKING_NOTIFY_UPDATE +#endif + +// Packet: 0x080b +#if PACKETVER >= 20091228 +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE +#elif PACKETVER >= 20091222 +packetLen(0x080b, 18) // ZC_PARTY_BOOKING_NOTIFY_DELETE +#endif + +// Packet: 0x080c +#if PACKETVER >= 20091228 +// removed +#elif PACKETVER >= 20091222 +packetLen(0x080c, 6) // CZ_SIMPLE_CASH_BTNSHOW +#endif + + +#endif /* COMMON_PACKETS2009_LEN_MAIN_H */ diff --git a/src/common/packets/packets2009_len_re.h b/src/common/packets/packets2009_len_re.h new file mode 100644 index 000000000..2b864d38d --- /dev/null +++ b/src/common/packets/packets2009_len_re.h @@ -0,0 +1,3418 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2009_LEN_RE_H +#define COMMON_PACKETS2009_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 114) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +#if PACKETVER >= 20090617 +packetLen(0x0072, 25) // CZ_ENTER +// ignored packet from 2009-06-17cRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x0072, 22) // CZ_ENTER +#endif + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +#if PACKETVER >= 20090617 +packetLen(0x007e, 105) // CZ_REQUEST_TIME +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x007e, 105) // CZ_REQUEST_TIME +#endif + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +#if PACKETVER >= 20090617 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE +// ignored packet from 2009-06-17cRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE +#endif + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +#if PACKETVER >= 20090617 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x0089, 11) // CZ_REQUEST_ACT +#endif + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +#if PACKETVER >= 20090617 +packetLen(0x008c, 14) +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x008c, 14) +#endif + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +#if PACKETVER >= 20090617 +packetLen(0x0094, 19) // CZ_REQNAME +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x0094, 19) // CZ_REQNAME +#endif + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +#if PACKETVER >= 20090617 +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION +#endif + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +#if PACKETVER >= 20090617 +packetLen(0x009f, 20) // CZ_ITEM_PICKUP +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x009f, 20) // CZ_ITEM_PICKUP +#endif + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +#if PACKETVER >= 20090617 +packetLen(0x00a2, 15) // CZ_ITEM_THROW +// ignored packet from 2009-06-17cRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x00a2, 14) // CZ_ITEM_THROW +#endif + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +#if PACKETVER >= 20090617 +packetLen(0x00a7, 9) +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x00a7, 9) +#endif + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +#if PACKETVER >= 20090617 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +#endif + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +#if PACKETVER >= 20090617 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME +// ignored packet from 2009-06-17cRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME +#endif + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +#if PACKETVER >= 20090617 +packetLen(0x0113, 25) // CZ_USE_SKILL +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x0113, 25) // CZ_USE_SKILL +#endif + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +#if PACKETVER >= 20090617 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +#if PACKETVER >= 20090617 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +#endif + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +#if PACKETVER >= 20090701 +packetLen(0x0275, 37) // CH_ENTER2 +#endif + +// Packet: 0x0276 +#if PACKETVER >= 20090701 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 +#endif + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +#if PACKETVER >= 20090722 +// removed +#elif PACKETVER >= 20090408 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG +#elif PACKETVER >= 20090325 +packetLen(0x02a6, 404) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20090722 +// removed +#elif PACKETVER >= 20090408 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG +#elif PACKETVER >= 20090325 +packetLen(0x02a7, 404) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +#if PACKETVER >= 20090617 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN +#endif + +// Packet: 0x02e3 +#if PACKETVER >= 20090617 +packetLen(0x02e3, 25) // CZ_USE_SKILL_NEW_JAPEN +// ignored packet from 2009-06-17cRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN +#endif + +// Packet: 0x02e4 +#if PACKETVER >= 20090617 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN +#endif + +// Packet: 0x02e5 +#if PACKETVER >= 20090617 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN +// ignored packet from 2009-06-17bRagexeRE +#elif PACKETVER >= 20090107 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN +#endif + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST + +// Packet: 0x02f7 +packetLen(0x02f7, -1) + +// Packet: 0x02f8 +packetLen(0x02f8, -1) + +// Packet: 0x02f9 +packetLen(0x02f9, -1) + +// Packet: 0x02fa +packetLen(0x02fa, -1) + +// Packet: 0x02fb +packetLen(0x02fb, -1) + +// Packet: 0x02fc +packetLen(0x02fc, -1) + +// Packet: 0x02fd +packetLen(0x02fd, -1) + +// Packet: 0x02fe +packetLen(0x02fe, -1) + +// Packet: 0x02ff +packetLen(0x02ff, -1) + +// Packet: 0x0300 +packetLen(0x0300, -1) + +// Packet: 0x0301 +packetLen(0x0301, -1) + +// Packet: 0x0302 +packetLen(0x0302, -1) + +// Packet: 0x0303 +packetLen(0x0303, -1) + +// Packet: 0x0304 +packetLen(0x0304, -1) + +// Packet: 0x0305 +packetLen(0x0305, -1) + +// Packet: 0x0306 +packetLen(0x0306, -1) + +// Packet: 0x0307 +packetLen(0x0307, -1) + +// Packet: 0x0308 +packetLen(0x0308, -1) + +// Packet: 0x0309 +packetLen(0x0309, -1) + +// Packet: 0x030a +packetLen(0x030a, -1) + +// Packet: 0x030b +packetLen(0x030b, -1) + +// Packet: 0x030c +packetLen(0x030c, -1) + +// Packet: 0x030d +packetLen(0x030d, -1) + +// Packet: 0x030e +packetLen(0x030e, -1) + +// Packet: 0x030f +packetLen(0x030f, -1) + +// Packet: 0x0310 +packetLen(0x0310, -1) + +// Packet: 0x0311 +packetLen(0x0311, -1) + +// Packet: 0x0312 +packetLen(0x0312, -1) + +// Packet: 0x0313 +packetLen(0x0313, -1) + +// Packet: 0x0314 +packetLen(0x0314, -1) + +// Packet: 0x0315 +packetLen(0x0315, -1) + +// Packet: 0x0316 +packetLen(0x0316, -1) + +// Packet: 0x0317 +packetLen(0x0317, -1) + +// Packet: 0x0318 +packetLen(0x0318, -1) + +// Packet: 0x0319 +packetLen(0x0319, -1) + +// Packet: 0x031a +packetLen(0x031a, -1) + +// Packet: 0x031b +packetLen(0x031b, -1) + +// Packet: 0x031c +packetLen(0x031c, -1) + +// Packet: 0x031d +packetLen(0x031d, -1) + +// Packet: 0x031e +packetLen(0x031e, -1) + +// Packet: 0x031f +packetLen(0x031f, -1) + +// Packet: 0x0320 +packetLen(0x0320, -1) + +// Packet: 0x0321 +packetLen(0x0321, -1) + +// Packet: 0x0322 +packetLen(0x0322, -1) + +// Packet: 0x0323 +packetLen(0x0323, -1) + +// Packet: 0x0324 +packetLen(0x0324, -1) + +// Packet: 0x0325 +packetLen(0x0325, -1) + +// Packet: 0x0326 +packetLen(0x0326, -1) + +// Packet: 0x0327 +packetLen(0x0327, -1) + +// Packet: 0x0328 +packetLen(0x0328, -1) + +// Packet: 0x0329 +packetLen(0x0329, -1) + +// Packet: 0x032a +packetLen(0x032a, -1) + +// Packet: 0x032b +packetLen(0x032b, -1) + +// Packet: 0x032c +packetLen(0x032c, -1) + +// Packet: 0x032d +packetLen(0x032d, -1) + +// Packet: 0x032e +packetLen(0x032e, -1) + +// Packet: 0x032f +packetLen(0x032f, -1) + +// Packet: 0x0330 +packetLen(0x0330, -1) + +// Packet: 0x0331 +packetLen(0x0331, -1) + +// Packet: 0x0332 +packetLen(0x0332, -1) + +// Packet: 0x0333 +packetLen(0x0333, -1) + +// Packet: 0x0334 +packetLen(0x0334, -1) + +// Packet: 0x0335 +packetLen(0x0335, -1) + +// Packet: 0x0336 +packetLen(0x0336, -1) + +// Packet: 0x0337 +packetLen(0x0337, -1) + +// Packet: 0x0338 +packetLen(0x0338, -1) + +// Packet: 0x0339 +packetLen(0x0339, -1) + +// Packet: 0x033a +packetLen(0x033a, -1) + +// Packet: 0x033b +packetLen(0x033b, -1) + +// Packet: 0x033c +packetLen(0x033c, -1) + +// Packet: 0x033d +packetLen(0x033d, -1) + +// Packet: 0x033e +packetLen(0x033e, -1) + +// Packet: 0x033f +packetLen(0x033f, -1) + +// Packet: 0x0340 +packetLen(0x0340, -1) + +// Packet: 0x0341 +packetLen(0x0341, -1) + +// Packet: 0x0342 +packetLen(0x0342, -1) + +// Packet: 0x0343 +packetLen(0x0343, -1) + +// Packet: 0x0344 +packetLen(0x0344, -1) + +// Packet: 0x0345 +packetLen(0x0345, -1) + +// Packet: 0x0346 +packetLen(0x0346, -1) + +// Packet: 0x0347 +packetLen(0x0347, -1) + +// Packet: 0x0348 +packetLen(0x0348, -1) + +// Packet: 0x0349 +packetLen(0x0349, -1) + +// Packet: 0x034a +packetLen(0x034a, -1) + +// Packet: 0x034b +packetLen(0x034b, -1) + +// Packet: 0x034c +packetLen(0x034c, -1) + +// Packet: 0x034d +packetLen(0x034d, -1) + +// Packet: 0x034e +packetLen(0x034e, -1) + +// Packet: 0x034f +packetLen(0x034f, -1) + +// Packet: 0x0350 +packetLen(0x0350, -1) + +// Packet: 0x0351 +packetLen(0x0351, -1) + +// Packet: 0x0352 +packetLen(0x0352, -1) + +// Packet: 0x0353 +packetLen(0x0353, -1) + +// Packet: 0x0354 +packetLen(0x0354, -1) + +// Packet: 0x0355 +packetLen(0x0355, -1) + +// Packet: 0x0356 +packetLen(0x0356, -1) + +// Packet: 0x0357 +packetLen(0x0357, -1) + +// Packet: 0x0358 +packetLen(0x0358, -1) + +// Packet: 0x0359 +packetLen(0x0359, -1) + +// Packet: 0x035a +packetLen(0x035a, -1) + +// Packet: 0x035b +packetLen(0x035b, -1) + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 + +// Packet: 0x0360 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 + +// Packet: 0x0361 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 + +// Packet: 0x0362 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 + +// Packet: 0x0363 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 + +// Packet: 0x0364 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 + +// Packet: 0x0365 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 + +// Packet: 0x0366 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 + +// Packet: 0x0367 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 + +// Packet: 0x0368 +packetLen(0x0368, -1) // CZ_REQNAME2 + +// Packet: 0x0369 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 + +// Packet: 0x036a +packetLen(0x036a, -1) + +// Packet: 0x036b +packetLen(0x036b, -1) + +// Packet: 0x036c +packetLen(0x036c, -1) + +// Packet: 0x036d +packetLen(0x036d, -1) + +// Packet: 0x036e +packetLen(0x036e, -1) + +// Packet: 0x036f +packetLen(0x036f, -1) + +// Packet: 0x0370 +packetLen(0x0370, -1) + +// Packet: 0x0371 +packetLen(0x0371, -1) + +// Packet: 0x0372 +packetLen(0x0372, -1) + +// Packet: 0x0373 +packetLen(0x0373, -1) + +// Packet: 0x0374 +packetLen(0x0374, -1) + +// Packet: 0x0375 +packetLen(0x0375, -1) + +// Packet: 0x0376 +packetLen(0x0376, -1) + +// Packet: 0x0377 +packetLen(0x0377, -1) + +// Packet: 0x0378 +packetLen(0x0378, -1) + +// Packet: 0x0379 +packetLen(0x0379, -1) + +// Packet: 0x037a +packetLen(0x037a, -1) + +// Packet: 0x037b +packetLen(0x037b, -1) + +// Packet: 0x037c +packetLen(0x037c, -1) + +// Packet: 0x037d +packetLen(0x037d, -1) + +// Packet: 0x037e +packetLen(0x037e, -1) + +// Packet: 0x037f +packetLen(0x037f, -1) + +// Packet: 0x0380 +packetLen(0x0380, -1) + +// Packet: 0x0381 +packetLen(0x0381, -1) + +// Packet: 0x0382 +packetLen(0x0382, -1) + +// Packet: 0x0383 +packetLen(0x0383, -1) + +// Packet: 0x0384 +packetLen(0x0384, -1) + +// Packet: 0x0385 +packetLen(0x0385, -1) + +// Packet: 0x0386 +packetLen(0x0386, -1) + +// Packet: 0x0387 +packetLen(0x0387, -1) + +// Packet: 0x0388 +packetLen(0x0388, -1) + +// Packet: 0x0389 +packetLen(0x0389, -1) + +// Packet: 0x038a +packetLen(0x038a, -1) + +// Packet: 0x038b +packetLen(0x038b, -1) + +// Packet: 0x038c +packetLen(0x038c, -1) + +// Packet: 0x038d +packetLen(0x038d, -1) + +// Packet: 0x038e +packetLen(0x038e, -1) + +// Packet: 0x038f +packetLen(0x038f, -1) + +// Packet: 0x0390 +packetLen(0x0390, -1) + +// Packet: 0x0391 +packetLen(0x0391, -1) + +// Packet: 0x0392 +packetLen(0x0392, -1) + +// Packet: 0x0393 +packetLen(0x0393, -1) + +// Packet: 0x0394 +packetLen(0x0394, -1) + +// Packet: 0x0395 +packetLen(0x0395, -1) + +// Packet: 0x0396 +packetLen(0x0396, -1) + +// Packet: 0x0397 +packetLen(0x0397, -1) + +// Packet: 0x0398 +packetLen(0x0398, -1) + +// Packet: 0x0399 +packetLen(0x0399, -1) + +// Packet: 0x039a +packetLen(0x039a, -1) + +// Packet: 0x039b +packetLen(0x039b, -1) + +// Packet: 0x039c +packetLen(0x039c, -1) + +// Packet: 0x039d +packetLen(0x039d, -1) + +// Packet: 0x039e +packetLen(0x039e, -1) + +// Packet: 0x039f +packetLen(0x039f, -1) + +// Packet: 0x03a0 +packetLen(0x03a0, -1) + +// Packet: 0x03a1 +packetLen(0x03a1, -1) + +// Packet: 0x03a2 +packetLen(0x03a2, -1) + +// Packet: 0x03a3 +packetLen(0x03a3, -1) + +// Packet: 0x03a4 +packetLen(0x03a4, -1) + +// Packet: 0x03a5 +packetLen(0x03a5, -1) + +// Packet: 0x03a6 +packetLen(0x03a6, -1) + +// Packet: 0x03a7 +packetLen(0x03a7, -1) + +// Packet: 0x03a8 +packetLen(0x03a8, -1) + +// Packet: 0x03a9 +packetLen(0x03a9, -1) + +// Packet: 0x03aa +packetLen(0x03aa, -1) + +// Packet: 0x03ab +packetLen(0x03ab, -1) + +// Packet: 0x03ac +packetLen(0x03ac, -1) + +// Packet: 0x03ad +packetLen(0x03ad, -1) + +// Packet: 0x03ae +packetLen(0x03ae, -1) + +// Packet: 0x03af +packetLen(0x03af, -1) + +// Packet: 0x03b0 +packetLen(0x03b0, -1) + +// Packet: 0x03b1 +packetLen(0x03b1, -1) + +// Packet: 0x03b2 +packetLen(0x03b2, -1) + +// Packet: 0x03b3 +packetLen(0x03b3, -1) + +// Packet: 0x03b4 +packetLen(0x03b4, -1) + +// Packet: 0x03b5 +packetLen(0x03b5, -1) + +// Packet: 0x03b6 +packetLen(0x03b6, -1) + +// Packet: 0x03b7 +packetLen(0x03b7, -1) + +// Packet: 0x03b8 +packetLen(0x03b8, -1) + +// Packet: 0x03b9 +packetLen(0x03b9, -1) + +// Packet: 0x03ba +packetLen(0x03ba, -1) + +// Packet: 0x03bb +packetLen(0x03bb, -1) + +// Packet: 0x03bc +packetLen(0x03bc, -1) + +// Packet: 0x03bd +packetLen(0x03bd, -1) + +// Packet: 0x03be +packetLen(0x03be, -1) + +// Packet: 0x03bf +packetLen(0x03bf, -1) + +// Packet: 0x03c0 +packetLen(0x03c0, -1) + +// Packet: 0x03c1 +packetLen(0x03c1, -1) + +// Packet: 0x03c2 +packetLen(0x03c2, -1) + +// Packet: 0x03c3 +packetLen(0x03c3, -1) + +// Packet: 0x03c4 +packetLen(0x03c4, -1) + +// Packet: 0x03c5 +packetLen(0x03c5, -1) + +// Packet: 0x03c6 +packetLen(0x03c6, -1) + +// Packet: 0x03c7 +packetLen(0x03c7, -1) + +// Packet: 0x03c8 +packetLen(0x03c8, -1) + +// Packet: 0x03c9 +packetLen(0x03c9, -1) + +// Packet: 0x03ca +packetLen(0x03ca, -1) + +// Packet: 0x03cb +packetLen(0x03cb, -1) + +// Packet: 0x03cc +packetLen(0x03cc, -1) + +// Packet: 0x03cd +packetLen(0x03cd, -1) + +// Packet: 0x03ce +packetLen(0x03ce, -1) + +// Packet: 0x03cf +packetLen(0x03cf, -1) + +// Packet: 0x03d0 +packetLen(0x03d0, -1) + +// Packet: 0x03d1 +packetLen(0x03d1, -1) + +// Packet: 0x03d2 +packetLen(0x03d2, -1) + +// Packet: 0x03d3 +packetLen(0x03d3, -1) + +// Packet: 0x03d4 +packetLen(0x03d4, -1) + +// Packet: 0x03d5 +packetLen(0x03d5, -1) + +// Packet: 0x03d6 +packetLen(0x03d6, -1) + +// Packet: 0x03d7 +packetLen(0x03d7, -1) + +// Packet: 0x03d8 +packetLen(0x03d8, -1) + +// Packet: 0x03d9 +packetLen(0x03d9, -1) + +// Packet: 0x03da +packetLen(0x03da, -1) + +// Packet: 0x03db +packetLen(0x03db, -1) + +// Packet: 0x03dc +packetLen(0x03dc, -1) + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x03e2 +packetLen(0x03e2, -1) + +// Packet: 0x03e3 +packetLen(0x03e3, -1) + +// Packet: 0x03e4 +packetLen(0x03e4, -1) + +// Packet: 0x03e5 +packetLen(0x03e5, -1) + +// Packet: 0x03e6 +packetLen(0x03e6, -1) + +// Packet: 0x03e7 +packetLen(0x03e7, -1) + +// Packet: 0x03e8 +packetLen(0x03e8, -1) + +// Packet: 0x03e9 +packetLen(0x03e9, -1) + +// Packet: 0x03ea +packetLen(0x03ea, -1) + +// Packet: 0x03eb +packetLen(0x03eb, -1) + +// Packet: 0x03ec +packetLen(0x03ec, -1) + +// Packet: 0x03ed +packetLen(0x03ed, -1) + +// Packet: 0x03ee +packetLen(0x03ee, -1) + +// Packet: 0x03ef +packetLen(0x03ef, -1) + +// Packet: 0x03f0 +packetLen(0x03f0, -1) + +// Packet: 0x03f1 +packetLen(0x03f1, -1) + +// Packet: 0x03f2 +packetLen(0x03f2, -1) + +// Packet: 0x03f3 +packetLen(0x03f3, -1) + +// Packet: 0x03f4 +packetLen(0x03f4, -1) + +// Packet: 0x03f5 +packetLen(0x03f5, -1) + +// Packet: 0x03f6 +packetLen(0x03f6, -1) + +// Packet: 0x03f7 +packetLen(0x03f7, -1) + +// Packet: 0x03f8 +packetLen(0x03f8, -1) + +// Packet: 0x03f9 +packetLen(0x03f9, -1) + +// Packet: 0x03fa +packetLen(0x03fa, -1) + +// Packet: 0x03fb +packetLen(0x03fb, -1) + +// Packet: 0x03fc +packetLen(0x03fc, -1) + +// Packet: 0x03fd +packetLen(0x03fd, -1) + +// Packet: 0x03fe +packetLen(0x03fe, -1) + +// Packet: 0x03ff +packetLen(0x03ff, -1) + +// Packet: 0x0400 +packetLen(0x0400, -1) + +// Packet: 0x0401 +packetLen(0x0401, -1) + +// Packet: 0x0402 +packetLen(0x0402, -1) + +// Packet: 0x0403 +packetLen(0x0403, -1) + +// Packet: 0x0404 +packetLen(0x0404, -1) + +// Packet: 0x0405 +packetLen(0x0405, -1) + +// Packet: 0x0406 +packetLen(0x0406, -1) + +// Packet: 0x0407 +packetLen(0x0407, -1) + +// Packet: 0x0408 +packetLen(0x0408, -1) + +// Packet: 0x0409 +packetLen(0x0409, -1) + +// Packet: 0x040a +packetLen(0x040a, -1) + +// Packet: 0x040b +packetLen(0x040b, -1) + +// Packet: 0x040c +packetLen(0x040c, -1) + +// Packet: 0x040d +packetLen(0x040d, -1) + +// Packet: 0x040e +packetLen(0x040e, -1) + +// Packet: 0x040f +packetLen(0x040f, -1) + +// Packet: 0x0410 +packetLen(0x0410, -1) + +// Packet: 0x0411 +packetLen(0x0411, -1) + +// Packet: 0x0412 +packetLen(0x0412, -1) + +// Packet: 0x0413 +packetLen(0x0413, -1) + +// Packet: 0x0414 +packetLen(0x0414, -1) + +// Packet: 0x0415 +packetLen(0x0415, -1) + +// Packet: 0x0416 +packetLen(0x0416, -1) + +// Packet: 0x0417 +packetLen(0x0417, -1) + +// Packet: 0x0418 +packetLen(0x0418, -1) + +// Packet: 0x0419 +packetLen(0x0419, -1) + +// Packet: 0x041a +packetLen(0x041a, -1) + +// Packet: 0x041b +packetLen(0x041b, -1) + +// Packet: 0x041c +packetLen(0x041c, -1) + +// Packet: 0x041d +packetLen(0x041d, -1) + +// Packet: 0x041e +packetLen(0x041e, -1) + +// Packet: 0x041f +packetLen(0x041f, -1) + +// Packet: 0x0420 +packetLen(0x0420, -1) + +// Packet: 0x0421 +packetLen(0x0421, -1) + +// Packet: 0x0422 +packetLen(0x0422, -1) + +// Packet: 0x0423 +packetLen(0x0423, -1) + +// Packet: 0x0424 +packetLen(0x0424, -1) + +// Packet: 0x0425 +packetLen(0x0425, -1) + +// Packet: 0x0426 +packetLen(0x0426, -1) + +// Packet: 0x0427 +packetLen(0x0427, -1) + +// Packet: 0x0428 +packetLen(0x0428, -1) + +// Packet: 0x0429 +packetLen(0x0429, -1) + +// Packet: 0x042a +packetLen(0x042a, -1) + +// Packet: 0x042b +packetLen(0x042b, -1) + +// Packet: 0x042c +packetLen(0x042c, -1) + +// Packet: 0x042d +packetLen(0x042d, -1) + +// Packet: 0x042e +packetLen(0x042e, -1) + +// Packet: 0x042f +packetLen(0x042f, -1) + +// Packet: 0x0430 +packetLen(0x0430, -1) + +// Packet: 0x0431 +packetLen(0x0431, -1) + +// Packet: 0x0432 +packetLen(0x0432, -1) + +// Packet: 0x0433 +packetLen(0x0433, -1) + +// Packet: 0x0434 +packetLen(0x0434, -1) + +// Packet: 0x0435 +packetLen(0x0435, -1) + +// Packet: 0x0436 +packetLen(0x0436, 19) // CZ_ENTER2 + +// Packet: 0x0437 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 + +// Packet: 0x0438 +packetLen(0x0438, 10) // CZ_USE_SKILL2 + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +#if PACKETVER >= 20090113 +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 +#elif PACKETVER >= 20090107 +packetLen(0x043f, 8) // ZC_MSG_STATE_CHANGE2 +#endif + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, 8) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +#if PACKETVER >= 20090113 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST +#endif + +// Packet: 0x0445 +#if PACKETVER >= 20090113 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0446 +#if PACKETVER >= 20090218 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT +#endif + +// Packet: 0x0447 +#if PACKETVER >= 20090520 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL +#endif + +// Packet: 0x0448 +#if PACKETVER >= 20090226 +packetLen(0x0448, -1) // HC_CHARACTER_LIST +#endif + +// Packet: 0x0449 +#if PACKETVER >= 20090722 +// removed +#elif PACKETVER >= 20090401 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG +#endif + +// Packet: 0x044a +#if PACKETVER >= 20090408 +packetLen(0x044a, 6) // CZ_CLIENT_VERSION +#endif + +// Packet: 0x044b +#if PACKETVER >= 20090514 +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP +#endif + +// Packet: 0x07d0 +#if PACKETVER >= 20090520 +packetLen(0x07d0, 6) // ZC_ES_RESULT +#endif + +// Packet: 0x07d1 +#if PACKETVER >= 20090520 +packetLen(0x07d1, 2) // CZ_ES_GET_LIST +#endif + +// Packet: 0x07d2 +#if PACKETVER >= 20090520 +packetLen(0x07d2, -1) // ZC_ES_LIST +#endif + +// Packet: 0x07d3 +#if PACKETVER >= 20090520 +packetLen(0x07d3, 4) // CZ_ES_CHOOSE +#endif + +// Packet: 0x07d4 +#if PACKETVER >= 20090520 +packetLen(0x07d4, 4) // CZ_ES_CANCEL +#endif + +// Packet: 0x07d5 +#if PACKETVER >= 20090520 +packetLen(0x07d5, 4) // ZC_ES_READY +#endif + +// Packet: 0x07d6 +#if PACKETVER >= 20090520 +packetLen(0x07d6, 4) // ZC_ES_GOTO +#endif + +// Packet: 0x07d7 +#if PACKETVER >= 20090603 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 +#endif + +// Packet: 0x07d8 +#if PACKETVER >= 20090603 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 +#endif + +// Packet: 0x07d9 +#if PACKETVER >= 20090617 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 +#elif PACKETVER >= 20090603 +packetLen(0x07d9, 254) // ZC_SHORTCUT_KEY_LIST_V2 +#endif + +// Packet: 0x07da +#if PACKETVER >= 20090603 +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER +#endif + +// Packet: 0x07db +#if PACKETVER >= 20090610 +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE +#endif + +// Packet: 0x07dc +#if PACKETVER >= 20090617 +packetLen(0x07dc, 6) // CZ_SEEK_PARTY +#endif + +// Packet: 0x07dd +#if PACKETVER >= 20090617 +packetLen(0x07dd, 54) // ZC_SEEK_PARTY +#endif + +// Packet: 0x07de +#if PACKETVER >= 20090617 +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER +#endif + +// Packet: 0x07df +#if PACKETVER >= 20090617 +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER +#endif + +// Packet: 0x07e0 +#if PACKETVER >= 20090708 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO +#endif + +// Packet: 0x07e1 +#if PACKETVER >= 20090715 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 +#endif + +// Packet: 0x07e2 +#if PACKETVER >= 20090805 +packetLen(0x07e2, 8) // ZC_MSG_VALUE +#endif + +// Packet: 0x07e3 +#if PACKETVER >= 20090818 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN +#endif + +// Packet: 0x07e4 +#if PACKETVER >= 20090818 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +#if PACKETVER >= 20090922 +packetLen(0x07e5, 8) // CH_ENTER_CHECKBOT +#elif PACKETVER >= 20090825 +packetLen(0x07e5, -1) // CH_ENTER_CHECKBOT +#endif + +// Packet: 0x07e6 +#if PACKETVER >= 20090818 +packetLen(0x07e6, 8) // ZC_MSG_SKILL +#endif + +// Packet: 0x07e7 +#if PACKETVER >= 20090922 +packetLen(0x07e7, 32) // CH_CHECKBOT +#elif PACKETVER >= 20090825 +packetLen(0x07e7, 5) // CH_CHECKBOT +#endif + +// Packet: 0x07e8 +#if PACKETVER >= 20090922 +packetLen(0x07e8, -1) // HC_CHECKBOT +#endif + +// Packet: 0x07e9 +#if PACKETVER >= 20090922 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT +#endif + +// Packet: 0x07ea +#if PACKETVER >= 20090929 +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST +#endif + +// Packet: 0x07eb +#if PACKETVER >= 20090929 +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST +#endif + +// Packet: 0x07ec +#if PACKETVER >= 20091006 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20090929 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +#if PACKETVER >= 20091006 +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20090929 +packetLen(0x07ed, 8) // ZC_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ee +#if PACKETVER >= 20090929 +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD +#endif + +// Packet: 0x07ef +#if PACKETVER >= 20090929 +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD +#endif + +// Packet: 0x07f0 +#if PACKETVER >= 20090929 +packetLen(0x07f0, 8) // CZ_REQ_BATTLE_STATE_MONITOR +#endif + +// Packet: 0x07f1 +#if PACKETVER >= 20090929 +packetLen(0x07f1, 15) // ZC_ACK_BATTLE_STATE_MONITOR +#endif + +// Packet: 0x07f2 +#if PACKETVER >= 20091006 +packetLen(0x07f2, 6) // ZC_BATTLE_NOTI_START_STEP +#elif PACKETVER >= 20090929 +packetLen(0x07f2, 4) // ZC_BATTLE_NOTI_START_STEP +#endif + +// Packet: 0x07f3 +#if PACKETVER >= 20091006 +packetLen(0x07f3, 4) // ZC_BATTLE_JOIN_NOTI_DEFER +#elif PACKETVER >= 20090929 +packetLen(0x07f3, 3) // ZC_BATTLE_JOIN_NOTI_DEFER +#endif + +// Packet: 0x07f4 +#if PACKETVER >= 20091006 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE +#endif + +// Packet: 0x07f5 +#if PACKETVER >= 20091027 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP +#endif + +// Packet: 0x07f6 +#if PACKETVER >= 20091027 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP +#endif + +// Packet: 0x07f7 +#if PACKETVER >= 20091103 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 +#endif + +// Packet: 0x07f8 +#if PACKETVER >= 20091103 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 +#endif + +// Packet: 0x07f9 +#if PACKETVER >= 20091103 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 +#endif + +// Packet: 0x07fa +#if PACKETVER >= 20091117 +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY +#endif + +// Packet: 0x07fb +#if PACKETVER >= 20091124 +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 +#endif + +// Packet: 0x07fc +#if PACKETVER >= 20091201 +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER +#endif + +// Packet: 0x07fd +#if PACKETVER >= 20091201 +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN +#endif + +// Packet: 0x07fe +#if PACKETVER >= 20091201 +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM +#endif + +// Packet: 0x07ff +#if PACKETVER >= 20091201 +packetLen(0x07ff, -1) // ZC_DEFINE_CHECK +#endif + +// Packet: 0x0800 +#if PACKETVER >= 20091215 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 +#endif + +// Packet: 0x0801 +#if PACKETVER >= 20091215 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 +#endif + +// Packet: 0x0802 +#if PACKETVER >= 20091222 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +#if PACKETVER >= 20091222 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER +#endif + +// Packet: 0x0804 +#if PACKETVER >= 20091229 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH +#elif PACKETVER >= 20091222 +packetLen(0x0804, 8) // CZ_PARTY_BOOKING_REQ_SEARCH +#endif + +// Packet: 0x0805 +#if PACKETVER >= 20091222 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH +#endif + +// Packet: 0x0806 +#if PACKETVER >= 20091229 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE +#elif PACKETVER >= 20091222 +packetLen(0x0806, 4) // CZ_PARTY_BOOKING_REQ_DELETE +#endif + +// Packet: 0x0807 +#if PACKETVER >= 20091229 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE +#elif PACKETVER >= 20091222 +packetLen(0x0807, 2) // ZC_PARTY_BOOKING_ACK_DELETE +#endif + +// Packet: 0x0808 +#if PACKETVER >= 20091229 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE +#elif PACKETVER >= 20091222 +packetLen(0x0808, 4) // CZ_PARTY_BOOKING_REQ_UPDATE +#endif + +// Packet: 0x0809 +#if PACKETVER >= 20091229 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT +#elif PACKETVER >= 20091222 +packetLen(0x0809, 14) // ZC_PARTY_BOOKING_NOTIFY_INSERT +#endif + +// Packet: 0x080a +#if PACKETVER >= 20091229 +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE +#elif PACKETVER >= 20091222 +packetLen(0x080a, 50) // ZC_PARTY_BOOKING_NOTIFY_UPDATE +#endif + +// Packet: 0x080b +#if PACKETVER >= 20091229 +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE +#elif PACKETVER >= 20091222 +packetLen(0x080b, 18) // ZC_PARTY_BOOKING_NOTIFY_DELETE +#endif + +// Packet: 0x080c +#if PACKETVER >= 20091229 +// removed +#elif PACKETVER >= 20091222 +packetLen(0x080c, 6) // CZ_SIMPLE_CASH_BTNSHOW +#endif + + +#endif /* COMMON_PACKETS2009_LEN_RE_H */ diff --git a/src/common/packets/packets2009_len_sak.h b/src/common/packets/packets2009_len_sak.h new file mode 100644 index 000000000..f65433c1a --- /dev/null +++ b/src/common/packets/packets2009_len_sak.h @@ -0,0 +1,3054 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2009_LEN_SAK_H +#define COMMON_PACKETS2009_LEN_SAK_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 110) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 25) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 42) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 102) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 11) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 8) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 11) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 14) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 26) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 14) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 15) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 8) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 22) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 22) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 10) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 19) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +#if PACKETVER >= 20090408 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG +#elif PACKETVER >= 20090320 +packetLen(0x02a6, 404) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20090408 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG +#elif PACKETVER >= 20090320 +packetLen(0x02a7, 404) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 14) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 25) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 8) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 8) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST + +// Packet: 0x02f7 +packetLen(0x02f7, -1) + +// Packet: 0x02f8 +packetLen(0x02f8, -1) + +// Packet: 0x02f9 +packetLen(0x02f9, -1) + +// Packet: 0x02fa +packetLen(0x02fa, -1) + +// Packet: 0x02fb +packetLen(0x02fb, -1) + +// Packet: 0x02fc +packetLen(0x02fc, -1) + +// Packet: 0x02fd +packetLen(0x02fd, -1) + +// Packet: 0x02fe +packetLen(0x02fe, -1) + +// Packet: 0x02ff +packetLen(0x02ff, -1) + +// Packet: 0x0300 +packetLen(0x0300, -1) + +// Packet: 0x0301 +packetLen(0x0301, -1) + +// Packet: 0x0302 +packetLen(0x0302, -1) + +// Packet: 0x0303 +packetLen(0x0303, -1) + +// Packet: 0x0304 +packetLen(0x0304, -1) + +// Packet: 0x0305 +packetLen(0x0305, -1) + +// Packet: 0x0306 +packetLen(0x0306, -1) + +// Packet: 0x0307 +packetLen(0x0307, -1) + +// Packet: 0x0308 +packetLen(0x0308, -1) + +// Packet: 0x0309 +packetLen(0x0309, -1) + +// Packet: 0x030a +packetLen(0x030a, -1) + +// Packet: 0x030b +packetLen(0x030b, -1) + +// Packet: 0x030c +packetLen(0x030c, -1) + +// Packet: 0x030d +packetLen(0x030d, -1) + +// Packet: 0x030e +packetLen(0x030e, -1) + +// Packet: 0x030f +packetLen(0x030f, -1) + +// Packet: 0x0310 +packetLen(0x0310, -1) + +// Packet: 0x0311 +packetLen(0x0311, -1) + +// Packet: 0x0312 +packetLen(0x0312, -1) + +// Packet: 0x0313 +packetLen(0x0313, -1) + +// Packet: 0x0314 +packetLen(0x0314, -1) + +// Packet: 0x0315 +packetLen(0x0315, -1) + +// Packet: 0x0316 +packetLen(0x0316, -1) + +// Packet: 0x0317 +packetLen(0x0317, -1) + +// Packet: 0x0318 +packetLen(0x0318, -1) + +// Packet: 0x0319 +packetLen(0x0319, -1) + +// Packet: 0x031a +packetLen(0x031a, -1) + +// Packet: 0x031b +packetLen(0x031b, -1) + +// Packet: 0x031c +packetLen(0x031c, -1) + +// Packet: 0x031d +packetLen(0x031d, -1) + +// Packet: 0x031e +packetLen(0x031e, -1) + +// Packet: 0x031f +packetLen(0x031f, -1) + +// Packet: 0x0320 +packetLen(0x0320, -1) + +// Packet: 0x0321 +packetLen(0x0321, -1) + +// Packet: 0x0322 +packetLen(0x0322, -1) + +// Packet: 0x0323 +packetLen(0x0323, -1) + +// Packet: 0x0324 +packetLen(0x0324, -1) + +// Packet: 0x0325 +packetLen(0x0325, -1) + +// Packet: 0x0326 +packetLen(0x0326, -1) + +// Packet: 0x0327 +packetLen(0x0327, -1) + +// Packet: 0x0328 +packetLen(0x0328, -1) + +// Packet: 0x0329 +packetLen(0x0329, -1) + +// Packet: 0x032a +packetLen(0x032a, -1) + +// Packet: 0x032b +packetLen(0x032b, -1) + +// Packet: 0x032c +packetLen(0x032c, -1) + +// Packet: 0x032d +packetLen(0x032d, -1) + +// Packet: 0x032e +packetLen(0x032e, -1) + +// Packet: 0x032f +packetLen(0x032f, -1) + +// Packet: 0x0330 +packetLen(0x0330, -1) + +// Packet: 0x0331 +packetLen(0x0331, -1) + +// Packet: 0x0332 +packetLen(0x0332, -1) + +// Packet: 0x0333 +packetLen(0x0333, -1) + +// Packet: 0x0334 +packetLen(0x0334, -1) + +// Packet: 0x0335 +packetLen(0x0335, -1) + +// Packet: 0x0336 +packetLen(0x0336, -1) + +// Packet: 0x0337 +packetLen(0x0337, -1) + +// Packet: 0x0338 +packetLen(0x0338, -1) + +// Packet: 0x0339 +packetLen(0x0339, -1) + +// Packet: 0x033a +packetLen(0x033a, -1) + +// Packet: 0x033b +packetLen(0x033b, -1) + +// Packet: 0x033c +packetLen(0x033c, -1) + +// Packet: 0x033d +packetLen(0x033d, -1) + +// Packet: 0x033e +packetLen(0x033e, -1) + +// Packet: 0x033f +packetLen(0x033f, -1) + +// Packet: 0x0340 +packetLen(0x0340, -1) + +// Packet: 0x0341 +packetLen(0x0341, -1) + +// Packet: 0x0342 +packetLen(0x0342, -1) + +// Packet: 0x0343 +packetLen(0x0343, -1) + +// Packet: 0x0344 +packetLen(0x0344, -1) + +// Packet: 0x0345 +packetLen(0x0345, -1) + +// Packet: 0x0346 +packetLen(0x0346, -1) + +// Packet: 0x0347 +packetLen(0x0347, -1) + +// Packet: 0x0348 +packetLen(0x0348, -1) + +// Packet: 0x0349 +packetLen(0x0349, -1) + +// Packet: 0x034a +packetLen(0x034a, -1) + +// Packet: 0x034b +packetLen(0x034b, -1) + +// Packet: 0x034c +packetLen(0x034c, -1) + +// Packet: 0x034d +packetLen(0x034d, -1) + +// Packet: 0x034e +packetLen(0x034e, -1) + +// Packet: 0x034f +packetLen(0x034f, -1) + +// Packet: 0x0350 +packetLen(0x0350, -1) + +// Packet: 0x0351 +packetLen(0x0351, -1) + +// Packet: 0x0352 +packetLen(0x0352, -1) + +// Packet: 0x0353 +packetLen(0x0353, -1) + +// Packet: 0x0354 +packetLen(0x0354, -1) + +// Packet: 0x0355 +packetLen(0x0355, -1) + +// Packet: 0x0356 +packetLen(0x0356, -1) + +// Packet: 0x0357 +packetLen(0x0357, -1) + +// Packet: 0x0358 +packetLen(0x0358, -1) + +// Packet: 0x0359 +packetLen(0x0359, -1) + +// Packet: 0x035a +packetLen(0x035a, -1) + +// Packet: 0x035b +packetLen(0x035b, -1) + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 + +// Packet: 0x0360 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 + +// Packet: 0x0361 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 + +// Packet: 0x0362 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 + +// Packet: 0x0363 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 + +// Packet: 0x0364 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 + +// Packet: 0x0365 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 + +// Packet: 0x0366 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 + +// Packet: 0x0367 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 + +// Packet: 0x0368 +packetLen(0x0368, -1) // CZ_REQNAME2 + +// Packet: 0x0369 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 + +// Packet: 0x036a +packetLen(0x036a, -1) + +// Packet: 0x036b +packetLen(0x036b, -1) + +// Packet: 0x036c +packetLen(0x036c, -1) + +// Packet: 0x036d +packetLen(0x036d, -1) + +// Packet: 0x036e +packetLen(0x036e, -1) + +// Packet: 0x036f +packetLen(0x036f, -1) + +// Packet: 0x0370 +packetLen(0x0370, -1) + +// Packet: 0x0371 +packetLen(0x0371, -1) + +// Packet: 0x0372 +packetLen(0x0372, -1) + +// Packet: 0x0373 +packetLen(0x0373, -1) + +// Packet: 0x0374 +packetLen(0x0374, -1) + +// Packet: 0x0375 +packetLen(0x0375, -1) + +// Packet: 0x0376 +packetLen(0x0376, -1) + +// Packet: 0x0377 +packetLen(0x0377, -1) + +// Packet: 0x0378 +packetLen(0x0378, -1) + +// Packet: 0x0379 +packetLen(0x0379, -1) + +// Packet: 0x037a +packetLen(0x037a, -1) + +// Packet: 0x037b +packetLen(0x037b, -1) + +// Packet: 0x037c +packetLen(0x037c, -1) + +// Packet: 0x037d +packetLen(0x037d, -1) + +// Packet: 0x037e +packetLen(0x037e, -1) + +// Packet: 0x037f +packetLen(0x037f, -1) + +// Packet: 0x0380 +packetLen(0x0380, -1) + +// Packet: 0x0381 +packetLen(0x0381, -1) + +// Packet: 0x0382 +packetLen(0x0382, -1) + +// Packet: 0x0383 +packetLen(0x0383, -1) + +// Packet: 0x0384 +packetLen(0x0384, -1) + +// Packet: 0x0385 +packetLen(0x0385, -1) + +// Packet: 0x0386 +packetLen(0x0386, -1) + +// Packet: 0x0387 +packetLen(0x0387, -1) + +// Packet: 0x0388 +packetLen(0x0388, -1) + +// Packet: 0x0389 +packetLen(0x0389, -1) + +// Packet: 0x038a +packetLen(0x038a, -1) + +// Packet: 0x038b +packetLen(0x038b, -1) + +// Packet: 0x038c +packetLen(0x038c, -1) + +// Packet: 0x038d +packetLen(0x038d, -1) + +// Packet: 0x038e +packetLen(0x038e, -1) + +// Packet: 0x038f +packetLen(0x038f, -1) + +// Packet: 0x0390 +packetLen(0x0390, -1) + +// Packet: 0x0391 +packetLen(0x0391, -1) + +// Packet: 0x0392 +packetLen(0x0392, -1) + +// Packet: 0x0393 +packetLen(0x0393, -1) + +// Packet: 0x0394 +packetLen(0x0394, -1) + +// Packet: 0x0395 +packetLen(0x0395, -1) + +// Packet: 0x0396 +packetLen(0x0396, -1) + +// Packet: 0x0397 +packetLen(0x0397, -1) + +// Packet: 0x0398 +packetLen(0x0398, -1) + +// Packet: 0x0399 +packetLen(0x0399, -1) + +// Packet: 0x039a +packetLen(0x039a, -1) + +// Packet: 0x039b +packetLen(0x039b, -1) + +// Packet: 0x039c +packetLen(0x039c, -1) + +// Packet: 0x039d +packetLen(0x039d, -1) + +// Packet: 0x039e +packetLen(0x039e, -1) + +// Packet: 0x039f +packetLen(0x039f, -1) + +// Packet: 0x03a0 +packetLen(0x03a0, -1) + +// Packet: 0x03a1 +packetLen(0x03a1, -1) + +// Packet: 0x03a2 +packetLen(0x03a2, -1) + +// Packet: 0x03a3 +packetLen(0x03a3, -1) + +// Packet: 0x03a4 +packetLen(0x03a4, -1) + +// Packet: 0x03a5 +packetLen(0x03a5, -1) + +// Packet: 0x03a6 +packetLen(0x03a6, -1) + +// Packet: 0x03a7 +packetLen(0x03a7, -1) + +// Packet: 0x03a8 +packetLen(0x03a8, -1) + +// Packet: 0x03a9 +packetLen(0x03a9, -1) + +// Packet: 0x03aa +packetLen(0x03aa, -1) + +// Packet: 0x03ab +packetLen(0x03ab, -1) + +// Packet: 0x03ac +packetLen(0x03ac, -1) + +// Packet: 0x03ad +packetLen(0x03ad, -1) + +// Packet: 0x03ae +packetLen(0x03ae, -1) + +// Packet: 0x03af +packetLen(0x03af, -1) + +// Packet: 0x03b0 +packetLen(0x03b0, -1) + +// Packet: 0x03b1 +packetLen(0x03b1, -1) + +// Packet: 0x03b2 +packetLen(0x03b2, -1) + +// Packet: 0x03b3 +packetLen(0x03b3, -1) + +// Packet: 0x03b4 +packetLen(0x03b4, -1) + +// Packet: 0x03b5 +packetLen(0x03b5, -1) + +// Packet: 0x03b6 +packetLen(0x03b6, -1) + +// Packet: 0x03b7 +packetLen(0x03b7, -1) + +// Packet: 0x03b8 +packetLen(0x03b8, -1) + +// Packet: 0x03b9 +packetLen(0x03b9, -1) + +// Packet: 0x03ba +packetLen(0x03ba, -1) + +// Packet: 0x03bb +packetLen(0x03bb, -1) + +// Packet: 0x03bc +packetLen(0x03bc, -1) + +// Packet: 0x03bd +packetLen(0x03bd, -1) + +// Packet: 0x03be +packetLen(0x03be, -1) + +// Packet: 0x03bf +packetLen(0x03bf, -1) + +// Packet: 0x03c0 +packetLen(0x03c0, -1) + +// Packet: 0x03c1 +packetLen(0x03c1, -1) + +// Packet: 0x03c2 +packetLen(0x03c2, -1) + +// Packet: 0x03c3 +packetLen(0x03c3, -1) + +// Packet: 0x03c4 +packetLen(0x03c4, -1) + +// Packet: 0x03c5 +packetLen(0x03c5, -1) + +// Packet: 0x03c6 +packetLen(0x03c6, -1) + +// Packet: 0x03c7 +packetLen(0x03c7, -1) + +// Packet: 0x03c8 +packetLen(0x03c8, -1) + +// Packet: 0x03c9 +packetLen(0x03c9, -1) + +// Packet: 0x03ca +packetLen(0x03ca, -1) + +// Packet: 0x03cb +packetLen(0x03cb, -1) + +// Packet: 0x03cc +packetLen(0x03cc, -1) + +// Packet: 0x03cd +packetLen(0x03cd, -1) + +// Packet: 0x03ce +packetLen(0x03ce, -1) + +// Packet: 0x03cf +packetLen(0x03cf, -1) + +// Packet: 0x03d0 +packetLen(0x03d0, -1) + +// Packet: 0x03d1 +packetLen(0x03d1, -1) + +// Packet: 0x03d2 +packetLen(0x03d2, -1) + +// Packet: 0x03d3 +packetLen(0x03d3, -1) + +// Packet: 0x03d4 +packetLen(0x03d4, -1) + +// Packet: 0x03d5 +packetLen(0x03d5, -1) + +// Packet: 0x03d6 +packetLen(0x03d6, -1) + +// Packet: 0x03d7 +packetLen(0x03d7, -1) + +// Packet: 0x03d8 +packetLen(0x03d8, -1) + +// Packet: 0x03d9 +packetLen(0x03d9, -1) + +// Packet: 0x03da +packetLen(0x03da, -1) + +// Packet: 0x03db +packetLen(0x03db, -1) + +// Packet: 0x03dc +packetLen(0x03dc, -1) + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x03e2 +packetLen(0x03e2, -1) + +// Packet: 0x03e3 +packetLen(0x03e3, -1) + +// Packet: 0x03e4 +packetLen(0x03e4, -1) + +// Packet: 0x03e5 +packetLen(0x03e5, -1) + +// Packet: 0x03e6 +packetLen(0x03e6, -1) + +// Packet: 0x03e7 +packetLen(0x03e7, -1) + +// Packet: 0x03e8 +packetLen(0x03e8, -1) + +// Packet: 0x03e9 +packetLen(0x03e9, -1) + +// Packet: 0x03ea +packetLen(0x03ea, -1) + +// Packet: 0x03eb +packetLen(0x03eb, -1) + +// Packet: 0x03ec +packetLen(0x03ec, -1) + +// Packet: 0x03ed +packetLen(0x03ed, -1) + +// Packet: 0x03ee +packetLen(0x03ee, -1) + +// Packet: 0x03ef +packetLen(0x03ef, -1) + +// Packet: 0x03f0 +packetLen(0x03f0, -1) + +// Packet: 0x03f1 +packetLen(0x03f1, -1) + +// Packet: 0x03f2 +packetLen(0x03f2, -1) + +// Packet: 0x03f3 +packetLen(0x03f3, -1) + +// Packet: 0x03f4 +packetLen(0x03f4, -1) + +// Packet: 0x03f5 +packetLen(0x03f5, -1) + +// Packet: 0x03f6 +packetLen(0x03f6, -1) + +// Packet: 0x03f7 +packetLen(0x03f7, -1) + +// Packet: 0x03f8 +packetLen(0x03f8, -1) + +// Packet: 0x03f9 +packetLen(0x03f9, -1) + +// Packet: 0x03fa +packetLen(0x03fa, -1) + +// Packet: 0x03fb +packetLen(0x03fb, -1) + +// Packet: 0x03fc +packetLen(0x03fc, -1) + +// Packet: 0x03fd +packetLen(0x03fd, -1) + +// Packet: 0x03fe +packetLen(0x03fe, -1) + +// Packet: 0x03ff +packetLen(0x03ff, -1) + +// Packet: 0x0400 +packetLen(0x0400, -1) + +// Packet: 0x0401 +packetLen(0x0401, -1) + +// Packet: 0x0402 +packetLen(0x0402, -1) + +// Packet: 0x0403 +packetLen(0x0403, -1) + +// Packet: 0x0404 +packetLen(0x0404, -1) + +// Packet: 0x0405 +packetLen(0x0405, -1) + +// Packet: 0x0406 +packetLen(0x0406, -1) + +// Packet: 0x0407 +packetLen(0x0407, -1) + +// Packet: 0x0408 +packetLen(0x0408, -1) + +// Packet: 0x0409 +packetLen(0x0409, -1) + +// Packet: 0x040a +packetLen(0x040a, -1) + +// Packet: 0x040b +packetLen(0x040b, -1) + +// Packet: 0x040c +packetLen(0x040c, -1) + +// Packet: 0x040d +packetLen(0x040d, -1) + +// Packet: 0x040e +packetLen(0x040e, -1) + +// Packet: 0x040f +packetLen(0x040f, -1) + +// Packet: 0x0410 +packetLen(0x0410, -1) + +// Packet: 0x0411 +packetLen(0x0411, -1) + +// Packet: 0x0412 +packetLen(0x0412, -1) + +// Packet: 0x0413 +packetLen(0x0413, -1) + +// Packet: 0x0414 +packetLen(0x0414, -1) + +// Packet: 0x0415 +packetLen(0x0415, -1) + +// Packet: 0x0416 +packetLen(0x0416, -1) + +// Packet: 0x0417 +packetLen(0x0417, -1) + +// Packet: 0x0418 +packetLen(0x0418, -1) + +// Packet: 0x0419 +packetLen(0x0419, -1) + +// Packet: 0x041a +packetLen(0x041a, -1) + +// Packet: 0x041b +packetLen(0x041b, -1) + +// Packet: 0x041c +packetLen(0x041c, -1) + +// Packet: 0x041d +packetLen(0x041d, -1) + +// Packet: 0x041e +packetLen(0x041e, -1) + +// Packet: 0x041f +packetLen(0x041f, -1) + +// Packet: 0x0420 +packetLen(0x0420, -1) + +// Packet: 0x0421 +packetLen(0x0421, -1) + +// Packet: 0x0422 +packetLen(0x0422, -1) + +// Packet: 0x0423 +packetLen(0x0423, -1) + +// Packet: 0x0424 +packetLen(0x0424, -1) + +// Packet: 0x0425 +packetLen(0x0425, -1) + +// Packet: 0x0426 +packetLen(0x0426, -1) + +// Packet: 0x0427 +packetLen(0x0427, -1) + +// Packet: 0x0428 +packetLen(0x0428, -1) + +// Packet: 0x0429 +packetLen(0x0429, -1) + +// Packet: 0x042a +packetLen(0x042a, -1) + +// Packet: 0x042b +packetLen(0x042b, -1) + +// Packet: 0x042c +packetLen(0x042c, -1) + +// Packet: 0x042d +packetLen(0x042d, -1) + +// Packet: 0x042e +packetLen(0x042e, -1) + +// Packet: 0x042f +packetLen(0x042f, -1) + +// Packet: 0x0430 +packetLen(0x0430, -1) + +// Packet: 0x0431 +packetLen(0x0431, -1) + +// Packet: 0x0432 +packetLen(0x0432, -1) + +// Packet: 0x0433 +packetLen(0x0433, -1) + +// Packet: 0x0434 +packetLen(0x0434, -1) + +// Packet: 0x0435 +packetLen(0x0435, -1) + +// Packet: 0x0436 +packetLen(0x0436, 19) // CZ_ENTER2 + +// Packet: 0x0437 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 + +// Packet: 0x0438 +packetLen(0x0438, 10) // CZ_USE_SKILL2 + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +#if PACKETVER >= 20090114 +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 +#elif PACKETVER >= 20090107 +packetLen(0x043f, 8) // ZC_MSG_STATE_CHANGE2 +#endif + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, 8) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +#if PACKETVER >= 20090114 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST +#endif + +// Packet: 0x0445 +#if PACKETVER >= 20090114 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0446 +#if PACKETVER >= 20090218 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT +#endif + +// Packet: 0x0447 +#if PACKETVER >= 20090520 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL +#endif + +// Packet: 0x0448 +#if PACKETVER >= 20090225 +packetLen(0x0448, -1) // HC_CHARACTER_LIST +#endif + +// Packet: 0x0449 +#if PACKETVER >= 20090330 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG +#endif + +// Packet: 0x044a +#if PACKETVER >= 20090408 +packetLen(0x044a, 6) // CZ_CLIENT_VERSION +#endif + +// Packet: 0x044b +#if PACKETVER >= 20090514 +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP +#endif + +// Packet: 0x07d0 +#if PACKETVER >= 20090520 +packetLen(0x07d0, 6) // ZC_ES_RESULT +#endif + +// Packet: 0x07d1 +#if PACKETVER >= 20090520 +packetLen(0x07d1, 2) // CZ_ES_GET_LIST +#endif + +// Packet: 0x07d2 +#if PACKETVER >= 20090520 +packetLen(0x07d2, -1) // ZC_ES_LIST +#endif + +// Packet: 0x07d3 +#if PACKETVER >= 20090520 +packetLen(0x07d3, 4) // CZ_ES_CHOOSE +#endif + +// Packet: 0x07d4 +#if PACKETVER >= 20090520 +packetLen(0x07d4, 4) // CZ_ES_CANCEL +#endif + +// Packet: 0x07d5 +#if PACKETVER >= 20090520 +packetLen(0x07d5, 4) // ZC_ES_READY +#endif + +// Packet: 0x07d6 +#if PACKETVER >= 20090520 +packetLen(0x07d6, 4) // ZC_ES_GOTO +#endif + +// Packet: 0x07d7 +#if PACKETVER >= 20090603 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 +#endif + +// Packet: 0x07d8 +#if PACKETVER >= 20090603 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 +#endif + +// Packet: 0x07d9 +#if PACKETVER >= 20090617 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 +#elif PACKETVER >= 20090603 +packetLen(0x07d9, 254) // ZC_SHORTCUT_KEY_LIST_V2 +#endif + +// Packet: 0x07da +#if PACKETVER >= 20090603 +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER +#endif + +// Packet: 0x07db +#if PACKETVER >= 20090610 +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE +#endif + +// Packet: 0x07dc +#if PACKETVER >= 20090617 +packetLen(0x07dc, 6) // CZ_SEEK_PARTY +#endif + +// Packet: 0x07dd +#if PACKETVER >= 20090617 +packetLen(0x07dd, 54) // ZC_SEEK_PARTY +#endif + +// Packet: 0x07de +#if PACKETVER >= 20090617 +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER +#endif + +// Packet: 0x07df +#if PACKETVER >= 20090617 +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER +#endif + + +#endif /* COMMON_PACKETS2009_LEN_SAK_H */ diff --git a/src/common/packets/packets2010_len_main.h b/src/common/packets/packets2010_len_main.h new file mode 100644 index 000000000..017c4d98b --- /dev/null +++ b/src/common/packets/packets2010_len_main.h @@ -0,0 +1,5784 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2010_LEN_MAIN_H +#define COMMON_PACKETS2010_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20100803 +packetLen(0x006d, 134) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20100728 +packetLen(0x006d, 114) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20100727 +packetLen(0x006d, 130) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20100105 +packetLen(0x006d, 114) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +#if PACKETVER >= 20101123 +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20100105 +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK +#endif + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +#if PACKETVER >= 20100817 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO +#endif + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20101228 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20101221 +packetLen(0x0202, 18) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20101130 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20101123 +packetLen(0x0202, 90) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20100105 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20101214 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20101207 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20101130 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20101123 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20100105 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20101228 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20101221 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20101214 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20101207 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20101123 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20100105 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20101228 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20101221 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20101123 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20100105 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +#if PACKETVER >= 20100803 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20100105 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20101123 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20100105 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#endif + +// Packet: 0x02f4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#endif + +// Packet: 0x02f5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#endif + +// Packet: 0x02f6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#endif + +// Packet: 0x02f7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f7, -1) +#endif + +// Packet: 0x02f8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f8, -1) +#endif + +// Packet: 0x02f9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f9, -1) +#endif + +// Packet: 0x02fa +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fa, -1) +#endif + +// Packet: 0x02fb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fb, -1) +#endif + +// Packet: 0x02fc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fc, -1) +#endif + +// Packet: 0x02fd +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fd, -1) +#endif + +// Packet: 0x02fe +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fe, -1) +#endif + +// Packet: 0x02ff +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02ff, -1) +#endif + +// Packet: 0x0300 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0300, -1) +#endif + +// Packet: 0x0301 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0301, -1) +#endif + +// Packet: 0x0302 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0302, -1) +#endif + +// Packet: 0x0303 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0303, -1) +#endif + +// Packet: 0x0304 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0304, -1) +#endif + +// Packet: 0x0305 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0305, -1) +#endif + +// Packet: 0x0306 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0306, -1) +#endif + +// Packet: 0x0307 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0307, -1) +#endif + +// Packet: 0x0308 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0308, -1) +#endif + +// Packet: 0x0309 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0309, -1) +#endif + +// Packet: 0x030a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030a, -1) +#endif + +// Packet: 0x030b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030b, -1) +#endif + +// Packet: 0x030c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030c, -1) +#endif + +// Packet: 0x030d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030d, -1) +#endif + +// Packet: 0x030e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030e, -1) +#endif + +// Packet: 0x030f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030f, -1) +#endif + +// Packet: 0x0310 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0310, -1) +#endif + +// Packet: 0x0311 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0311, -1) +#endif + +// Packet: 0x0312 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0312, -1) +#endif + +// Packet: 0x0313 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0313, -1) +#endif + +// Packet: 0x0314 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0314, -1) +#endif + +// Packet: 0x0315 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0315, -1) +#endif + +// Packet: 0x0316 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0316, -1) +#endif + +// Packet: 0x0317 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0317, -1) +#endif + +// Packet: 0x0318 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0318, -1) +#endif + +// Packet: 0x0319 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0319, -1) +#endif + +// Packet: 0x031a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031a, -1) +#endif + +// Packet: 0x031b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031b, -1) +#endif + +// Packet: 0x031c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031c, -1) +#endif + +// Packet: 0x031d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031d, -1) +#endif + +// Packet: 0x031e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031e, -1) +#endif + +// Packet: 0x031f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031f, -1) +#endif + +// Packet: 0x0320 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0320, -1) +#endif + +// Packet: 0x0321 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0321, -1) +#endif + +// Packet: 0x0322 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0322, -1) +#endif + +// Packet: 0x0323 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0323, -1) +#endif + +// Packet: 0x0324 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0324, -1) +#endif + +// Packet: 0x0325 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0325, -1) +#endif + +// Packet: 0x0326 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0326, -1) +#endif + +// Packet: 0x0327 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0327, -1) +#endif + +// Packet: 0x0328 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0328, -1) +#endif + +// Packet: 0x0329 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0329, -1) +#endif + +// Packet: 0x032a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032a, -1) +#endif + +// Packet: 0x032b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032b, -1) +#endif + +// Packet: 0x032c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032c, -1) +#endif + +// Packet: 0x032d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032d, -1) +#endif + +// Packet: 0x032e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032e, -1) +#endif + +// Packet: 0x032f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032f, -1) +#endif + +// Packet: 0x0330 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0330, -1) +#endif + +// Packet: 0x0331 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0331, -1) +#endif + +// Packet: 0x0332 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0332, -1) +#endif + +// Packet: 0x0333 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0333, -1) +#endif + +// Packet: 0x0334 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0334, -1) +#endif + +// Packet: 0x0335 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0335, -1) +#endif + +// Packet: 0x0336 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0336, -1) +#endif + +// Packet: 0x0337 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0337, -1) +#endif + +// Packet: 0x0338 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0338, -1) +#endif + +// Packet: 0x0339 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0339, -1) +#endif + +// Packet: 0x033a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033a, -1) +#endif + +// Packet: 0x033b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033b, -1) +#endif + +// Packet: 0x033c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033c, -1) +#endif + +// Packet: 0x033d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033d, -1) +#endif + +// Packet: 0x033e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033e, -1) +#endif + +// Packet: 0x033f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033f, -1) +#endif + +// Packet: 0x0340 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0340, -1) +#endif + +// Packet: 0x0341 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0341, -1) +#endif + +// Packet: 0x0342 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0342, -1) +#endif + +// Packet: 0x0343 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0343, -1) +#endif + +// Packet: 0x0344 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0344, -1) +#endif + +// Packet: 0x0345 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0345, -1) +#endif + +// Packet: 0x0346 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0346, -1) +#endif + +// Packet: 0x0347 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0347, -1) +#endif + +// Packet: 0x0348 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0348, -1) +#endif + +// Packet: 0x0349 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0349, -1) +#endif + +// Packet: 0x034a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034a, -1) +#endif + +// Packet: 0x034b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034b, -1) +#endif + +// Packet: 0x034c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034c, -1) +#endif + +// Packet: 0x034d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034d, -1) +#endif + +// Packet: 0x034e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034e, -1) +#endif + +// Packet: 0x034f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034f, -1) +#endif + +// Packet: 0x0350 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0350, -1) +#endif + +// Packet: 0x0351 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0351, -1) +#endif + +// Packet: 0x0352 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0352, -1) +#endif + +// Packet: 0x0353 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0353, -1) +#endif + +// Packet: 0x0354 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0354, -1) +#endif + +// Packet: 0x0355 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0355, -1) +#endif + +// Packet: 0x0356 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0356, -1) +#endif + +// Packet: 0x0357 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0357, -1) +#endif + +// Packet: 0x0358 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0358, -1) +#endif + +// Packet: 0x0359 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0359, -1) +#endif + +// Packet: 0x035a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x035a, -1) +#endif + +// Packet: 0x035b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x035b, -1) +#endif + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20101221 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20101214 +packetLen(0x035f, 18) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20101130 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20101123 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20100105 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20101214 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20101207 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20101123 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20100105 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20101228 +packetLen(0x0361, 10) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20101221 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20101214 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20101130 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20101123 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20100105 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20101221 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20101214 +packetLen(0x0362, 90) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20101207 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20101130 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20100105 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20101228 +packetLen(0x0363, 12) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20101221 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20101207 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20101130 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20101123 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20100105 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20101214 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20101207 +packetLen(0x0364, 12) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20101123 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20100105 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20101228 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20101130 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20101123 +packetLen(0x0365, 36) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20100105 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20101221 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20101214 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20101207 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20101130 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20101123 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20100105 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20101228 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20101221 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20101123 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20100105 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20101228 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20101221 +packetLen(0x0368, 10) // CZ_REQNAME2 +#elif PACKETVER >= 20101214 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20101207 +packetLen(0x0368, 4) // CZ_REQNAME2 +#elif PACKETVER >= 20101130 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20101123 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20100105 +packetLen(0x0368, -1) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20101228 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20101207 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20101130 +packetLen(0x0369, 90) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20101123 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20100105 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x036a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036a, -1) +#endif + +// Packet: 0x036b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036b, -1) +#endif + +// Packet: 0x036c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036c, -1) +#endif + +// Packet: 0x036d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036d, -1) +#endif + +// Packet: 0x036e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036e, -1) +#endif + +// Packet: 0x036f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036f, -1) +#endif + +// Packet: 0x0370 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0370, -1) +#endif + +// Packet: 0x0371 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0371, -1) +#endif + +// Packet: 0x0372 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0372, -1) +#endif + +// Packet: 0x0373 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0373, -1) +#endif + +// Packet: 0x0374 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0374, -1) +#endif + +// Packet: 0x0375 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0375, -1) +#endif + +// Packet: 0x0376 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0376, -1) +#endif + +// Packet: 0x0377 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0377, -1) +#endif + +// Packet: 0x0378 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0378, -1) +#endif + +// Packet: 0x0379 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0379, -1) +#endif + +// Packet: 0x037a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037a, -1) +#endif + +// Packet: 0x037b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037b, -1) +#endif + +// Packet: 0x037c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037c, -1) +#endif + +// Packet: 0x037d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037d, -1) +#endif + +// Packet: 0x037e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037e, -1) +#endif + +// Packet: 0x037f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037f, -1) +#endif + +// Packet: 0x0380 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0380, -1) +#endif + +// Packet: 0x0381 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0381, -1) +#endif + +// Packet: 0x0382 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0382, -1) +#endif + +// Packet: 0x0383 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0383, -1) +#endif + +// Packet: 0x0384 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0384, -1) +#endif + +// Packet: 0x0385 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0385, -1) +#endif + +// Packet: 0x0386 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0386, -1) +#endif + +// Packet: 0x0387 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0387, -1) +#endif + +// Packet: 0x0388 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0388, -1) +#endif + +// Packet: 0x0389 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0389, -1) +#endif + +// Packet: 0x038a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038a, -1) +#endif + +// Packet: 0x038b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038b, -1) +#endif + +// Packet: 0x038c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038c, -1) +#endif + +// Packet: 0x038d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038d, -1) +#endif + +// Packet: 0x038e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038e, -1) +#endif + +// Packet: 0x038f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038f, -1) +#endif + +// Packet: 0x0390 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0390, -1) +#endif + +// Packet: 0x0391 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0391, -1) +#endif + +// Packet: 0x0392 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0392, -1) +#endif + +// Packet: 0x0393 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0393, -1) +#endif + +// Packet: 0x0394 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0394, -1) +#endif + +// Packet: 0x0395 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0395, -1) +#endif + +// Packet: 0x0396 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0396, -1) +#endif + +// Packet: 0x0397 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0397, -1) +#endif + +// Packet: 0x0398 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0398, -1) +#endif + +// Packet: 0x0399 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0399, -1) +#endif + +// Packet: 0x039a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039a, -1) +#endif + +// Packet: 0x039b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039b, -1) +#endif + +// Packet: 0x039c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039c, -1) +#endif + +// Packet: 0x039d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039d, -1) +#endif + +// Packet: 0x039e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039e, -1) +#endif + +// Packet: 0x039f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039f, -1) +#endif + +// Packet: 0x03a0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a0, -1) +#endif + +// Packet: 0x03a1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a1, -1) +#endif + +// Packet: 0x03a2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a2, -1) +#endif + +// Packet: 0x03a3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a3, -1) +#endif + +// Packet: 0x03a4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a4, -1) +#endif + +// Packet: 0x03a5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a5, -1) +#endif + +// Packet: 0x03a6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a6, -1) +#endif + +// Packet: 0x03a7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a7, -1) +#endif + +// Packet: 0x03a8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a8, -1) +#endif + +// Packet: 0x03a9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a9, -1) +#endif + +// Packet: 0x03aa +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03aa, -1) +#endif + +// Packet: 0x03ab +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ab, -1) +#endif + +// Packet: 0x03ac +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ac, -1) +#endif + +// Packet: 0x03ad +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ad, -1) +#endif + +// Packet: 0x03ae +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ae, -1) +#endif + +// Packet: 0x03af +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03af, -1) +#endif + +// Packet: 0x03b0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b0, -1) +#endif + +// Packet: 0x03b1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b1, -1) +#endif + +// Packet: 0x03b2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b2, -1) +#endif + +// Packet: 0x03b3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b3, -1) +#endif + +// Packet: 0x03b4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b4, -1) +#endif + +// Packet: 0x03b5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b5, -1) +#endif + +// Packet: 0x03b6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b6, -1) +#endif + +// Packet: 0x03b7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b7, -1) +#endif + +// Packet: 0x03b8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b8, -1) +#endif + +// Packet: 0x03b9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b9, -1) +#endif + +// Packet: 0x03ba +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ba, -1) +#endif + +// Packet: 0x03bb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03bb, -1) +#endif + +// Packet: 0x03bc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03bc, -1) +#endif + +// Packet: 0x03bd +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03bd, -1) +#endif + +// Packet: 0x03be +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03be, -1) +#endif + +// Packet: 0x03bf +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03bf, -1) +#endif + +// Packet: 0x03c0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c0, -1) +#endif + +// Packet: 0x03c1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c1, -1) +#endif + +// Packet: 0x03c2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c2, -1) +#endif + +// Packet: 0x03c3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c3, -1) +#endif + +// Packet: 0x03c4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c4, -1) +#endif + +// Packet: 0x03c5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c5, -1) +#endif + +// Packet: 0x03c6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c6, -1) +#endif + +// Packet: 0x03c7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c7, -1) +#endif + +// Packet: 0x03c8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c8, -1) +#endif + +// Packet: 0x03c9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c9, -1) +#endif + +// Packet: 0x03ca +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ca, -1) +#endif + +// Packet: 0x03cb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03cb, -1) +#endif + +// Packet: 0x03cc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03cc, -1) +#endif + +// Packet: 0x03cd +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03cd, -1) +#endif + +// Packet: 0x03ce +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ce, -1) +#endif + +// Packet: 0x03cf +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03cf, -1) +#endif + +// Packet: 0x03d0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d0, -1) +#endif + +// Packet: 0x03d1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d1, -1) +#endif + +// Packet: 0x03d2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d2, -1) +#endif + +// Packet: 0x03d3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d3, -1) +#endif + +// Packet: 0x03d4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d4, -1) +#endif + +// Packet: 0x03d5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d5, -1) +#endif + +// Packet: 0x03d6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d6, -1) +#endif + +// Packet: 0x03d7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d7, -1) +#endif + +// Packet: 0x03d8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d8, -1) +#endif + +// Packet: 0x03d9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d9, -1) +#endif + +// Packet: 0x03da +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03da, -1) +#endif + +// Packet: 0x03db +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03db, -1) +#endif + +// Packet: 0x03dc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03dc, -1) +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x03e2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e2, -1) +#endif + +// Packet: 0x03e3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e3, -1) +#endif + +// Packet: 0x03e4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e4, -1) +#endif + +// Packet: 0x03e5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e5, -1) +#endif + +// Packet: 0x03e6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e6, -1) +#endif + +// Packet: 0x03e7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e7, -1) +#endif + +// Packet: 0x03e8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e8, -1) +#endif + +// Packet: 0x03e9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e9, -1) +#endif + +// Packet: 0x03ea +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ea, -1) +#endif + +// Packet: 0x03eb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03eb, -1) +#endif + +// Packet: 0x03ec +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ec, -1) +#endif + +// Packet: 0x03ed +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ed, -1) +#endif + +// Packet: 0x03ee +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ee, -1) +#endif + +// Packet: 0x03ef +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ef, -1) +#endif + +// Packet: 0x03f0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f0, -1) +#endif + +// Packet: 0x03f1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f1, -1) +#endif + +// Packet: 0x03f2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f2, -1) +#endif + +// Packet: 0x03f3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f3, -1) +#endif + +// Packet: 0x03f4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f4, -1) +#endif + +// Packet: 0x03f5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f5, -1) +#endif + +// Packet: 0x03f6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f6, -1) +#endif + +// Packet: 0x03f7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f7, -1) +#endif + +// Packet: 0x03f8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f8, -1) +#endif + +// Packet: 0x03f9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f9, -1) +#endif + +// Packet: 0x03fa +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fa, -1) +#endif + +// Packet: 0x03fb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fb, -1) +#endif + +// Packet: 0x03fc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fc, -1) +#endif + +// Packet: 0x03fd +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fd, -1) +#endif + +// Packet: 0x03fe +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fe, -1) +#endif + +// Packet: 0x03ff +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ff, -1) +#endif + +// Packet: 0x0400 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0400, -1) +#endif + +// Packet: 0x0401 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0401, -1) +#endif + +// Packet: 0x0402 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0402, -1) +#endif + +// Packet: 0x0403 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0403, -1) +#endif + +// Packet: 0x0404 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0404, -1) +#endif + +// Packet: 0x0405 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0405, -1) +#endif + +// Packet: 0x0406 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0406, -1) +#endif + +// Packet: 0x0407 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0407, -1) +#endif + +// Packet: 0x0408 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0408, -1) +#endif + +// Packet: 0x0409 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0409, -1) +#endif + +// Packet: 0x040a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040a, -1) +#endif + +// Packet: 0x040b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040b, -1) +#endif + +// Packet: 0x040c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040c, -1) +#endif + +// Packet: 0x040d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040d, -1) +#endif + +// Packet: 0x040e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040e, -1) +#endif + +// Packet: 0x040f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040f, -1) +#endif + +// Packet: 0x0410 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0410, -1) +#endif + +// Packet: 0x0411 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0411, -1) +#endif + +// Packet: 0x0412 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0412, -1) +#endif + +// Packet: 0x0413 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0413, -1) +#endif + +// Packet: 0x0414 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0414, -1) +#endif + +// Packet: 0x0415 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0415, -1) +#endif + +// Packet: 0x0416 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0416, -1) +#endif + +// Packet: 0x0417 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0417, -1) +#endif + +// Packet: 0x0418 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0418, -1) +#endif + +// Packet: 0x0419 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0419, -1) +#endif + +// Packet: 0x041a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041a, -1) +#endif + +// Packet: 0x041b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041b, -1) +#endif + +// Packet: 0x041c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041c, -1) +#endif + +// Packet: 0x041d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041d, -1) +#endif + +// Packet: 0x041e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041e, -1) +#endif + +// Packet: 0x041f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041f, -1) +#endif + +// Packet: 0x0420 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0420, -1) +#endif + +// Packet: 0x0421 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0421, -1) +#endif + +// Packet: 0x0422 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0422, -1) +#endif + +// Packet: 0x0423 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0423, -1) +#endif + +// Packet: 0x0424 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0424, -1) +#endif + +// Packet: 0x0425 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0425, -1) +#endif + +// Packet: 0x0426 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0426, -1) +#endif + +// Packet: 0x0427 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0427, -1) +#endif + +// Packet: 0x0428 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0428, -1) +#endif + +// Packet: 0x0429 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0429, -1) +#endif + +// Packet: 0x042a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042a, -1) +#endif + +// Packet: 0x042b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042b, -1) +#endif + +// Packet: 0x042c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042c, -1) +#endif + +// Packet: 0x042d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042d, -1) +#endif + +// Packet: 0x042e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042e, -1) +#endif + +// Packet: 0x042f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042f, -1) +#endif + +// Packet: 0x0430 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0430, -1) +#endif + +// Packet: 0x0431 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0431, -1) +#endif + +// Packet: 0x0432 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0432, -1) +#endif + +// Packet: 0x0433 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0433, -1) +#endif + +// Packet: 0x0434 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0434, -1) +#endif + +// Packet: 0x0435 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0435, -1) +#endif + +// Packet: 0x0436 +#if PACKETVER >= 20101228 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20101221 +packetLen(0x0436, 12) // CZ_ENTER2 +#elif PACKETVER >= 20101214 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20101123 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20100105 +packetLen(0x0436, 19) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20101228 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20101221 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20101207 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20101130 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20101123 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20100105 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20101214 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20101207 +packetLen(0x0438, 7) // CZ_USE_SKILL2 +#elif PACKETVER >= 20101130 +packetLen(0x0438, 12) // CZ_USE_SKILL2 +#elif PACKETVER >= 20100105 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +#if PACKETVER >= 20100817 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST +#elif PACKETVER >= 20100105 +packetLen(0x0442, 8) // ZC_SKILL_SELECT_REQUEST +#endif + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d0 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d0, 6) // ZC_ES_RESULT +#endif + +// Packet: 0x07d1 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d1, 2) // CZ_ES_GET_LIST +#endif + +// Packet: 0x07d2 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d2, -1) // ZC_ES_LIST +#endif + +// Packet: 0x07d3 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d3, 4) // CZ_ES_CHOOSE +#endif + +// Packet: 0x07d4 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d4, 4) // CZ_ES_CANCEL +#endif + +// Packet: 0x07d5 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d5, 4) // ZC_ES_READY +#endif + +// Packet: 0x07d6 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d6, 4) // ZC_ES_GOTO +#endif + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20101228 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20101221 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20101214 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20101207 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20101123 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20100105 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +#if PACKETVER >= 20101012 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT +#elif PACKETVER >= 20100105 +packetLen(0x07e5, 8) // CH_ENTER_CHECKBOT +#endif + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20101207 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20101130 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20101123 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20100105 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +#if PACKETVER >= 20100209 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR +#elif PACKETVER >= 20100105 +packetLen(0x07f0, 8) // CZ_REQ_BATTLE_STATE_MONITOR +#endif + +// Packet: 0x07f1 +#if PACKETVER >= 20100629 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR +#elif PACKETVER >= 20100105 +packetLen(0x07f1, 15) // ZC_ACK_BATTLE_STATE_MONITOR +#endif + +// Packet: 0x07f2 +#if PACKETVER >= 20100629 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP +#elif PACKETVER >= 20100105 +packetLen(0x07f2, 6) // ZC_BATTLE_NOTI_START_STEP +#endif + +// Packet: 0x07f3 +#if PACKETVER >= 20100629 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER +#elif PACKETVER >= 20100105 +packetLen(0x07f3, 4) // ZC_BATTLE_JOIN_NOTI_DEFER +#endif + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x07ff +packetLen(0x07ff, -1) // ZC_DEFINE_CHECK + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20101228 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20101221 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20101214 +packetLen(0x0802, 36) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20101130 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20101123 +packetLen(0x0802, 5) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20100105 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +#if PACKETVER >= 20100113 +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW +#endif + +// Packet: 0x080d +#if PACKETVER >= 20100113 +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW +#endif + +// Packet: 0x080e +#if PACKETVER >= 20100119 +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 +#endif + +// Packet: 0x080f +#if PACKETVER >= 20100223 +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 +#endif + +// Packet: 0x0810 +#if PACKETVER >= 20100303 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE +#endif + +// Packet: 0x0811 +#if PACKETVER >= 20101228 +packetLen(0x0811, 90) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20101221 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20101207 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20101130 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20101123 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +#if PACKETVER >= 20100420 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER +#elif PACKETVER >= 20100303 +packetLen(0x0812, 86) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER +#endif + +// Packet: 0x0813 +#if PACKETVER >= 20100309 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0813, 6) // ZC_MYITEMLIST_BUYING_STORE +#endif + +// Packet: 0x0814 +#if PACKETVER >= 20100420 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY +#elif PACKETVER >= 20100309 +packetLen(0x0814, 2) // ZC_BUYING_STORE_ENTRY +#elif PACKETVER >= 20100303 +packetLen(0x0814, 6) // ZC_BUYING_STORE_ENTRY +#endif + +// Packet: 0x0815 +#if PACKETVER >= 20101228 +packetLen(0x0815, 7) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20101221 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20101214 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20101207 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20101130 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20100420 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20100309 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +#if PACKETVER >= 20100309 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY +#endif + +// Packet: 0x0817 +#if PACKETVER >= 20101228 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20101221 +packetLen(0x0817, 7) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20101130 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20101123 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20100420 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +#if PACKETVER >= 20100309 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0818, 6) // ZC_ACK_ITEMLIST_BUYING_STORE +#endif + +// Packet: 0x0819 +#if PACKETVER >= 20101207 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20101130 +packetLen(0x0819, 7) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20101123 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20100420 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20100309 +packetLen(0x0819, 10) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0819, 4) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +#if PACKETVER >= 20100420 +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER +#elif PACKETVER >= 20100413 +packetLen(0x081a, 10) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER +#elif PACKETVER >= 20100331 +packetLen(0x081a, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER +#elif PACKETVER >= 20100309 +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER +#endif + +// Packet: 0x081b +#if PACKETVER >= 20100420 +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#elif PACKETVER >= 20100414 +packetLen(0x081b, 8) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#elif PACKETVER >= 20100309 +packetLen(0x081b, 4) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#endif + +// Packet: 0x081c +#if PACKETVER >= 20100420 +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE +#elif PACKETVER >= 20100309 +packetLen(0x081c, 6) // ZC_ITEM_DELETE_BUYING_STORE +#endif + +// Packet: 0x081d +#if PACKETVER >= 20100309 +packetLen(0x081d, 22) // ZC_EL_INIT +#endif + +// Packet: 0x081e +#if PACKETVER >= 20100309 +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE +#endif + +// Packet: 0x081f +#if PACKETVER >= 20100323 +packetLen(0x081f, -1) // ZC_BROADCAST4 +#endif + +// Packet: 0x0820 +#if PACKETVER >= 20100413 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE +#endif + +// Packet: 0x0821 +#if PACKETVER >= 20100413 +packetLen(0x0821, 2) // AC_OTP_USER +#endif + +// Packet: 0x0822 +#if PACKETVER >= 20100413 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ +#endif + +// Packet: 0x0823 +#if PACKETVER >= 20100413 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK +#endif + +// Packet: 0x0824 +#if PACKETVER >= 20100420 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER +#endif + +// Packet: 0x0825 +#if PACKETVER >= 20100601 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ +#endif + +// Packet: 0x0826 +#if PACKETVER >= 20101019 +// removed +#elif PACKETVER >= 20100601 +packetLen(0x0826, 4) // AC_SSO_LOGIN_ACK +#endif + +// Packet: 0x0827 +#if PACKETVER >= 20100713 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED +#endif + +// Packet: 0x0828 +#if PACKETVER >= 20100713 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED +#endif + +// Packet: 0x0829 +#if PACKETVER >= 20100728 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 +#elif PACKETVER >= 20100713 +packetLen(0x0829, 6) // CH_DELETE_CHAR3 +#endif + +// Packet: 0x082a +#if PACKETVER >= 20100713 +packetLen(0x082a, 10) // HC_DELETE_CHAR3 +#endif + +// Packet: 0x082b +#if PACKETVER >= 20100713 +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL +#endif + +// Packet: 0x082c +#if PACKETVER >= 20100720 +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL +#elif PACKETVER >= 20100713 +packetLen(0x082c, 14) // HC_DELETE_CHAR3_CANCEL +#endif + +// Packet: 0x082d +#if PACKETVER >= 20101221 +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 +#endif + +// Packet: 0x0835 +#if PACKETVER >= 20101228 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20101214 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20101207 +packetLen(0x0835, 19) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20101130 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20101123 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20100601 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +#if PACKETVER >= 20100601 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK +#endif + +// Packet: 0x0837 +#if PACKETVER >= 20100601 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED +#endif + +// Packet: 0x0838 +#if PACKETVER >= 20101228 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20101214 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20101207 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20101130 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20100608 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20100601 +packetLen(0x0838, 3) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +#if PACKETVER >= 20100608 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO +#endif + +// Packet: 0x083a +#if PACKETVER >= 20100701 +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO +#elif PACKETVER >= 20100608 +packetLen(0x083a, 4) // ZC_OPEN_SEARCH_STORE_INFO +#endif + +// Packet: 0x083b +#if PACKETVER >= 20100608 +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO +#endif + +// Packet: 0x083c +#if PACKETVER >= 20101214 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20101207 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20101130 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20101123 +packetLen(0x083c, 7) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20100608 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +#if PACKETVER >= 20100608 +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK +#endif + +// Packet: 0x083e +#if PACKETVER >= 20100615 +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 +#endif + +// Packet: 0x083f +#if PACKETVER >= 20100629 +// removed +#elif PACKETVER >= 20100622 +packetLen(0x083f, 22) // ZC_SEARCH_STORE_OPEN_INFO +#endif + +// Packet: 0x0840 +#if PACKETVER >= 20100713 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME +#endif + +// Packet: 0x0841 +#if PACKETVER >= 20100714 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME +#elif PACKETVER >= 20100713 +packetLen(0x0841, 19) // CH_SELECT_ACCESSIBLE_MAPNAME +#endif + +// Packet: 0x0842 +#if PACKETVER >= 20100720 +packetLen(0x0842, 6) // CZ_RECALL_SSO +#endif + +// Packet: 0x0843 +#if PACKETVER >= 20100720 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO +#endif + +// Packet: 0x0844 +#if PACKETVER >= 20100824 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN +#endif + +// Packet: 0x0845 +#if PACKETVER >= 20100824 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN +#endif + +// Packet: 0x0846 +#if PACKETVER >= 20100824 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE +#endif + +// Packet: 0x0847 +#if PACKETVER >= 20100824 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST +#endif + +// Packet: 0x0848 +#if PACKETVER >= 20100824 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST +#endif + +// Packet: 0x0849 +#if PACKETVER >= 20100914 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT +#elif PACKETVER >= 20100824 +packetLen(0x0849, 12) // ZC_SE_PC_BUY_CASHITEM_RESULT +#endif + +// Packet: 0x084a +#if PACKETVER >= 20101019 +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE +#endif + +// Packet: 0x084b +#if PACKETVER >= 20101019 +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 +#endif + +// Packet: 0x084c +#if PACKETVER >= 20101026 +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL +#endif + +// Packet: 0x084d +#if PACKETVER >= 20101026 +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND +#endif + +// Packet: 0x084e +#if PACKETVER >= 20101026 +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE +#endif + +// Packet: 0x084f +#if PACKETVER >= 20101026 +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP +#endif + +// Packet: 0x0850 +#if PACKETVER >= 20101026 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT +#endif + +// Packet: 0x0851 +#if PACKETVER >= 20101102 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE +#endif + +// Packet: 0x0852 +#if PACKETVER >= 20101102 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD +#endif + +// Packet: 0x0853 +#if PACKETVER >= 20101102 +packetLen(0x0853, -1) // ZC_GPK_AUTH +#endif + +// Packet: 0x0854 +#if PACKETVER >= 20101102 +packetLen(0x0854, -1) // CZ_GPK_AUTH +#endif + +// Packet: 0x0855 +#if PACKETVER >= 20101102 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL +#endif + +// Packet: 0x0856 +#if PACKETVER >= 20101123 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 +#endif + +// Packet: 0x0857 +#if PACKETVER >= 20101123 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 +#endif + +// Packet: 0x0858 +#if PACKETVER >= 20101123 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 +#endif + +// Packet: 0x0859 +#if PACKETVER >= 20101123 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 +#endif + +// Packet: 0x085a +#if PACKETVER >= 20101123 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20101123 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20101123 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20101123 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20101123 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20101123 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20101123 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20101123 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20101123 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20101123 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20101123 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20101123 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20101123 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20101123 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20101123 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20101123 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20101123 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20101123 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20101123 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20101123 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20101123 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20101123 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20101123 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20101123 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20101123 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20101123 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20101123 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20101123 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20101123 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20101123 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20101123 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20101123 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20101123 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20101123 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20101123 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20101123 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20101123 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20101123 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20101123 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20101123 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20101123 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20101123 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20101228 +packetLen(0x0884, 19) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20101221 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20101214 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20101123 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20101228 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20101221 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20101214 +packetLen(0x0885, 19) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20101207 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20101123 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20101228 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20101221 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20101207 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20101130 +packetLen(0x0886, 10) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20101123 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20101221 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20101214 +packetLen(0x0887, 4) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20101207 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20101130 +packetLen(0x0887, 18) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20101123 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20101228 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20101221 +packetLen(0x0888, 4) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20101130 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20101123 +packetLen(0x0888, 10) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20101228 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20101221 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20101214 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20101207 +packetLen(0x0889, 26) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20101130 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20101123 +packetLen(0x0889, 19) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20101123 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20101123 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20101228 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20101221 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20101207 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20101130 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20101123 +packetLen(0x088c, 26) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20101228 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20101221 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20101214 +packetLen(0x088d, 12) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20101123 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20101228 +packetLen(0x088e, 18) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20101207 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20101130 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20101123 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20101228 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20101221 +packetLen(0x088f, 10) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20101214 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20101207 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20101130 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20101123 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20101228 +packetLen(0x0890, 4) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20101214 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20101207 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20101123 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20101228 +packetLen(0x0891, 26) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20101214 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20101207 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20101130 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20101123 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20101228 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20101221 +packetLen(0x0892, 8) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20101214 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20101123 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20101228 +packetLen(0x0893, -1) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20101130 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20101123 +packetLen(0x0893, 18) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20101207 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20101130 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20101123 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20101214 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20101207 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20101123 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20101228 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20101214 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20101207 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20101130 +packetLen(0x0896, 10) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20101123 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20101228 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20101221 +packetLen(0x0897, 36) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20101214 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20101123 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20101228 +packetLen(0x0898, 10) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20101221 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20101214 +packetLen(0x0898, 5) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20101207 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20101130 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20101123 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20101228 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20101221 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20101214 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20101207 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20101130 +packetLen(0x0899, -1) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20101123 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20101123 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20101130 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20101123 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20101228 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20101221 +packetLen(0x089c, -1) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20101214 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20101123 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20101228 +packetLen(0x089d, 36) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20101214 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20101207 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20101130 +packetLen(0x089d, 36) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20101123 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20101228 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20101221 +packetLen(0x089e, 90) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20101214 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20101207 +packetLen(0x089e, 18) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20101130 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20101123 +packetLen(0x089e, 4) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20101221 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20101214 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20101207 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20101130 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20101123 +packetLen(0x089f, 8) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20101228 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20101123 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20101221 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20101214 +packetLen(0x08a1, -1) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20101130 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20101123 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20101228 +packetLen(0x08a2, 5) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20101214 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20101207 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20101130 +packetLen(0x08a2, 19) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20101123 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20101221 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20101214 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20101207 +packetLen(0x08a3, -1) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20101130 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20101123 +packetLen(0x08a3, 12) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20101228 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20101221 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20101214 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20101123 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20101228 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20101214 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20101207 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20101123 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20101123 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20101221 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20101214 +packetLen(0x08a7, 8) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20101123 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20101123 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20101214 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20101207 +packetLen(0x08a9, 10) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20101130 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20101123 +packetLen(0x08a9, -1) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20101228 +packetLen(0x08aa, 5) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20101221 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20101214 +packetLen(0x08aa, 7) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20101207 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20101130 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20101123 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20101207 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20101130 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20101123 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20101228 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20101221 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20101214 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20101207 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20101130 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20101123 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20101228 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20101221 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20101214 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20101207 +packetLen(0x08ad, 90) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20101130 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20101123 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +#if PACKETVER >= 20101228 +packetLen(0x08af, 10) // HC_WAITING_LOGIN +#endif + +// Packet: 0x08b1 +#if PACKETVER >= 20101221 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST +#endif + +// Packet: 0x08b2 +#if PACKETVER >= 20101228 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH +#endif + + +#endif /* COMMON_PACKETS2010_LEN_MAIN_H */ diff --git a/src/common/packets/packets2010_len_re.h b/src/common/packets/packets2010_len_re.h new file mode 100644 index 000000000..1788a9479 --- /dev/null +++ b/src/common/packets/packets2010_len_re.h @@ -0,0 +1,5291 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2010_LEN_RE_H +#define COMMON_PACKETS2010_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20100803 +packetLen(0x006d, 134) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20100728 +packetLen(0x006d, 114) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20100720 +packetLen(0x006d, 130) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20100105 +packetLen(0x006d, 114) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +#if PACKETVER >= 20100629 +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK +#elif PACKETVER >= 20100105 +packetLen(0x00aa, 7) // ZC_REQ_WEAR_EQUIP_ACK +#endif + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0158 +#if PACKETVER >= 20100817 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0158, -1) // ZC_ACK_OPEN_MEMBER_INFO +#endif + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +packetLen(0x022d, 5) // CZ_COMMAND_MER + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +packetLen(0x0281, 4) // CZ_GANGSI_RANK + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +#if PACKETVER >= 20100803 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20100105 +packetLen(0x0288, 10) // CZ_PC_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#endif + +// Packet: 0x02f4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f4, -1) // ZC_IRMAIL_SEND_RES +#endif + +// Packet: 0x02f5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f5, -1) // ZC_IRMAIL_NOTIFY +#endif + +// Packet: 0x02f6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f6, -1) // CZ_IRMAIL_LIST +#endif + +// Packet: 0x02f7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f7, -1) +#endif + +// Packet: 0x02f8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f8, -1) +#endif + +// Packet: 0x02f9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02f9, -1) +#endif + +// Packet: 0x02fa +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fa, -1) +#endif + +// Packet: 0x02fb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fb, -1) +#endif + +// Packet: 0x02fc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fc, -1) +#endif + +// Packet: 0x02fd +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fd, -1) +#endif + +// Packet: 0x02fe +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02fe, -1) +#endif + +// Packet: 0x02ff +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x02ff, -1) +#endif + +// Packet: 0x0300 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0300, -1) +#endif + +// Packet: 0x0301 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0301, -1) +#endif + +// Packet: 0x0302 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0302, -1) +#endif + +// Packet: 0x0303 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0303, -1) +#endif + +// Packet: 0x0304 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0304, -1) +#endif + +// Packet: 0x0305 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0305, -1) +#endif + +// Packet: 0x0306 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0306, -1) +#endif + +// Packet: 0x0307 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0307, -1) +#endif + +// Packet: 0x0308 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0308, -1) +#endif + +// Packet: 0x0309 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0309, -1) +#endif + +// Packet: 0x030a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030a, -1) +#endif + +// Packet: 0x030b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030b, -1) +#endif + +// Packet: 0x030c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030c, -1) +#endif + +// Packet: 0x030d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030d, -1) +#endif + +// Packet: 0x030e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030e, -1) +#endif + +// Packet: 0x030f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x030f, -1) +#endif + +// Packet: 0x0310 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0310, -1) +#endif + +// Packet: 0x0311 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0311, -1) +#endif + +// Packet: 0x0312 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0312, -1) +#endif + +// Packet: 0x0313 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0313, -1) +#endif + +// Packet: 0x0314 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0314, -1) +#endif + +// Packet: 0x0315 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0315, -1) +#endif + +// Packet: 0x0316 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0316, -1) +#endif + +// Packet: 0x0317 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0317, -1) +#endif + +// Packet: 0x0318 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0318, -1) +#endif + +// Packet: 0x0319 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0319, -1) +#endif + +// Packet: 0x031a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031a, -1) +#endif + +// Packet: 0x031b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031b, -1) +#endif + +// Packet: 0x031c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031c, -1) +#endif + +// Packet: 0x031d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031d, -1) +#endif + +// Packet: 0x031e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031e, -1) +#endif + +// Packet: 0x031f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x031f, -1) +#endif + +// Packet: 0x0320 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0320, -1) +#endif + +// Packet: 0x0321 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0321, -1) +#endif + +// Packet: 0x0322 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0322, -1) +#endif + +// Packet: 0x0323 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0323, -1) +#endif + +// Packet: 0x0324 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0324, -1) +#endif + +// Packet: 0x0325 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0325, -1) +#endif + +// Packet: 0x0326 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0326, -1) +#endif + +// Packet: 0x0327 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0327, -1) +#endif + +// Packet: 0x0328 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0328, -1) +#endif + +// Packet: 0x0329 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0329, -1) +#endif + +// Packet: 0x032a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032a, -1) +#endif + +// Packet: 0x032b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032b, -1) +#endif + +// Packet: 0x032c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032c, -1) +#endif + +// Packet: 0x032d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032d, -1) +#endif + +// Packet: 0x032e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032e, -1) +#endif + +// Packet: 0x032f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x032f, -1) +#endif + +// Packet: 0x0330 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0330, -1) +#endif + +// Packet: 0x0331 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0331, -1) +#endif + +// Packet: 0x0332 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0332, -1) +#endif + +// Packet: 0x0333 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0333, -1) +#endif + +// Packet: 0x0334 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0334, -1) +#endif + +// Packet: 0x0335 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0335, -1) +#endif + +// Packet: 0x0336 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0336, -1) +#endif + +// Packet: 0x0337 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0337, -1) +#endif + +// Packet: 0x0338 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0338, -1) +#endif + +// Packet: 0x0339 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0339, -1) +#endif + +// Packet: 0x033a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033a, -1) +#endif + +// Packet: 0x033b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033b, -1) +#endif + +// Packet: 0x033c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033c, -1) +#endif + +// Packet: 0x033d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033d, -1) +#endif + +// Packet: 0x033e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033e, -1) +#endif + +// Packet: 0x033f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x033f, -1) +#endif + +// Packet: 0x0340 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0340, -1) +#endif + +// Packet: 0x0341 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0341, -1) +#endif + +// Packet: 0x0342 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0342, -1) +#endif + +// Packet: 0x0343 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0343, -1) +#endif + +// Packet: 0x0344 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0344, -1) +#endif + +// Packet: 0x0345 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0345, -1) +#endif + +// Packet: 0x0346 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0346, -1) +#endif + +// Packet: 0x0347 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0347, -1) +#endif + +// Packet: 0x0348 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0348, -1) +#endif + +// Packet: 0x0349 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0349, -1) +#endif + +// Packet: 0x034a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034a, -1) +#endif + +// Packet: 0x034b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034b, -1) +#endif + +// Packet: 0x034c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034c, -1) +#endif + +// Packet: 0x034d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034d, -1) +#endif + +// Packet: 0x034e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034e, -1) +#endif + +// Packet: 0x034f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x034f, -1) +#endif + +// Packet: 0x0350 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0350, -1) +#endif + +// Packet: 0x0351 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0351, -1) +#endif + +// Packet: 0x0352 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0352, -1) +#endif + +// Packet: 0x0353 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0353, -1) +#endif + +// Packet: 0x0354 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0354, -1) +#endif + +// Packet: 0x0355 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0355, -1) +#endif + +// Packet: 0x0356 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0356, -1) +#endif + +// Packet: 0x0357 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0357, -1) +#endif + +// Packet: 0x0358 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0358, -1) +#endif + +// Packet: 0x0359 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0359, -1) +#endif + +// Packet: 0x035a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x035a, -1) +#endif + +// Packet: 0x035b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x035b, -1) +#endif + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20101123 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20100105 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20101123 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20100105 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20101123 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20100105 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20101123 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20100105 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20101123 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20100105 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20101123 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20100105 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20101123 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20100105 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20101123 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20100105 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20101123 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20100105 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20101123 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20100105 +packetLen(0x0368, -1) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20101123 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20100105 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x036a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036a, -1) +#endif + +// Packet: 0x036b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036b, -1) +#endif + +// Packet: 0x036c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036c, -1) +#endif + +// Packet: 0x036d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036d, -1) +#endif + +// Packet: 0x036e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036e, -1) +#endif + +// Packet: 0x036f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x036f, -1) +#endif + +// Packet: 0x0370 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0370, -1) +#endif + +// Packet: 0x0371 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0371, -1) +#endif + +// Packet: 0x0372 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0372, -1) +#endif + +// Packet: 0x0373 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0373, -1) +#endif + +// Packet: 0x0374 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0374, -1) +#endif + +// Packet: 0x0375 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0375, -1) +#endif + +// Packet: 0x0376 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0376, -1) +#endif + +// Packet: 0x0377 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0377, -1) +#endif + +// Packet: 0x0378 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0378, -1) +#endif + +// Packet: 0x0379 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0379, -1) +#endif + +// Packet: 0x037a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037a, -1) +#endif + +// Packet: 0x037b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037b, -1) +#endif + +// Packet: 0x037c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037c, -1) +#endif + +// Packet: 0x037d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037d, -1) +#endif + +// Packet: 0x037e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037e, -1) +#endif + +// Packet: 0x037f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x037f, -1) +#endif + +// Packet: 0x0380 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0380, -1) +#endif + +// Packet: 0x0381 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0381, -1) +#endif + +// Packet: 0x0382 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0382, -1) +#endif + +// Packet: 0x0383 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0383, -1) +#endif + +// Packet: 0x0384 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0384, -1) +#endif + +// Packet: 0x0385 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0385, -1) +#endif + +// Packet: 0x0386 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0386, -1) +#endif + +// Packet: 0x0387 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0387, -1) +#endif + +// Packet: 0x0388 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0388, -1) +#endif + +// Packet: 0x0389 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0389, -1) +#endif + +// Packet: 0x038a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038a, -1) +#endif + +// Packet: 0x038b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038b, -1) +#endif + +// Packet: 0x038c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038c, -1) +#endif + +// Packet: 0x038d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038d, -1) +#endif + +// Packet: 0x038e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038e, -1) +#endif + +// Packet: 0x038f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x038f, -1) +#endif + +// Packet: 0x0390 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0390, -1) +#endif + +// Packet: 0x0391 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0391, -1) +#endif + +// Packet: 0x0392 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0392, -1) +#endif + +// Packet: 0x0393 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0393, -1) +#endif + +// Packet: 0x0394 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0394, -1) +#endif + +// Packet: 0x0395 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0395, -1) +#endif + +// Packet: 0x0396 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0396, -1) +#endif + +// Packet: 0x0397 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0397, -1) +#endif + +// Packet: 0x0398 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0398, -1) +#endif + +// Packet: 0x0399 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0399, -1) +#endif + +// Packet: 0x039a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039a, -1) +#endif + +// Packet: 0x039b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039b, -1) +#endif + +// Packet: 0x039c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039c, -1) +#endif + +// Packet: 0x039d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039d, -1) +#endif + +// Packet: 0x039e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039e, -1) +#endif + +// Packet: 0x039f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x039f, -1) +#endif + +// Packet: 0x03a0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a0, -1) +#endif + +// Packet: 0x03a1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a1, -1) +#endif + +// Packet: 0x03a2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a2, -1) +#endif + +// Packet: 0x03a3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a3, -1) +#endif + +// Packet: 0x03a4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a4, -1) +#endif + +// Packet: 0x03a5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a5, -1) +#endif + +// Packet: 0x03a6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a6, -1) +#endif + +// Packet: 0x03a7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a7, -1) +#endif + +// Packet: 0x03a8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a8, -1) +#endif + +// Packet: 0x03a9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03a9, -1) +#endif + +// Packet: 0x03aa +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03aa, -1) +#endif + +// Packet: 0x03ab +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ab, -1) +#endif + +// Packet: 0x03ac +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ac, -1) +#endif + +// Packet: 0x03ad +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ad, -1) +#endif + +// Packet: 0x03ae +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ae, -1) +#endif + +// Packet: 0x03af +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03af, -1) +#endif + +// Packet: 0x03b0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b0, -1) +#endif + +// Packet: 0x03b1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b1, -1) +#endif + +// Packet: 0x03b2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b2, -1) +#endif + +// Packet: 0x03b3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b3, -1) +#endif + +// Packet: 0x03b4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b4, -1) +#endif + +// Packet: 0x03b5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b5, -1) +#endif + +// Packet: 0x03b6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b6, -1) +#endif + +// Packet: 0x03b7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b7, -1) +#endif + +// Packet: 0x03b8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b8, -1) +#endif + +// Packet: 0x03b9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03b9, -1) +#endif + +// Packet: 0x03ba +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ba, -1) +#endif + +// Packet: 0x03bb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03bb, -1) +#endif + +// Packet: 0x03bc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03bc, -1) +#endif + +// Packet: 0x03bd +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03bd, -1) +#endif + +// Packet: 0x03be +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03be, -1) +#endif + +// Packet: 0x03bf +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03bf, -1) +#endif + +// Packet: 0x03c0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c0, -1) +#endif + +// Packet: 0x03c1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c1, -1) +#endif + +// Packet: 0x03c2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c2, -1) +#endif + +// Packet: 0x03c3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c3, -1) +#endif + +// Packet: 0x03c4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c4, -1) +#endif + +// Packet: 0x03c5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c5, -1) +#endif + +// Packet: 0x03c6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c6, -1) +#endif + +// Packet: 0x03c7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c7, -1) +#endif + +// Packet: 0x03c8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c8, -1) +#endif + +// Packet: 0x03c9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03c9, -1) +#endif + +// Packet: 0x03ca +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ca, -1) +#endif + +// Packet: 0x03cb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03cb, -1) +#endif + +// Packet: 0x03cc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03cc, -1) +#endif + +// Packet: 0x03cd +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03cd, -1) +#endif + +// Packet: 0x03ce +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ce, -1) +#endif + +// Packet: 0x03cf +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03cf, -1) +#endif + +// Packet: 0x03d0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d0, -1) +#endif + +// Packet: 0x03d1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d1, -1) +#endif + +// Packet: 0x03d2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d2, -1) +#endif + +// Packet: 0x03d3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d3, -1) +#endif + +// Packet: 0x03d4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d4, -1) +#endif + +// Packet: 0x03d5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d5, -1) +#endif + +// Packet: 0x03d6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d6, -1) +#endif + +// Packet: 0x03d7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d7, -1) +#endif + +// Packet: 0x03d8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d8, -1) +#endif + +// Packet: 0x03d9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03d9, -1) +#endif + +// Packet: 0x03da +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03da, -1) +#endif + +// Packet: 0x03db +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03db, -1) +#endif + +// Packet: 0x03dc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03dc, -1) +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x03e2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e2, -1) +#endif + +// Packet: 0x03e3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e3, -1) +#endif + +// Packet: 0x03e4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e4, -1) +#endif + +// Packet: 0x03e5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e5, -1) +#endif + +// Packet: 0x03e6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e6, -1) +#endif + +// Packet: 0x03e7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e7, -1) +#endif + +// Packet: 0x03e8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e8, -1) +#endif + +// Packet: 0x03e9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03e9, -1) +#endif + +// Packet: 0x03ea +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ea, -1) +#endif + +// Packet: 0x03eb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03eb, -1) +#endif + +// Packet: 0x03ec +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ec, -1) +#endif + +// Packet: 0x03ed +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ed, -1) +#endif + +// Packet: 0x03ee +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ee, -1) +#endif + +// Packet: 0x03ef +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ef, -1) +#endif + +// Packet: 0x03f0 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f0, -1) +#endif + +// Packet: 0x03f1 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f1, -1) +#endif + +// Packet: 0x03f2 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f2, -1) +#endif + +// Packet: 0x03f3 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f3, -1) +#endif + +// Packet: 0x03f4 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f4, -1) +#endif + +// Packet: 0x03f5 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f5, -1) +#endif + +// Packet: 0x03f6 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f6, -1) +#endif + +// Packet: 0x03f7 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f7, -1) +#endif + +// Packet: 0x03f8 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f8, -1) +#endif + +// Packet: 0x03f9 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03f9, -1) +#endif + +// Packet: 0x03fa +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fa, -1) +#endif + +// Packet: 0x03fb +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fb, -1) +#endif + +// Packet: 0x03fc +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fc, -1) +#endif + +// Packet: 0x03fd +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fd, -1) +#endif + +// Packet: 0x03fe +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03fe, -1) +#endif + +// Packet: 0x03ff +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x03ff, -1) +#endif + +// Packet: 0x0400 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0400, -1) +#endif + +// Packet: 0x0401 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0401, -1) +#endif + +// Packet: 0x0402 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0402, -1) +#endif + +// Packet: 0x0403 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0403, -1) +#endif + +// Packet: 0x0404 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0404, -1) +#endif + +// Packet: 0x0405 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0405, -1) +#endif + +// Packet: 0x0406 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0406, -1) +#endif + +// Packet: 0x0407 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0407, -1) +#endif + +// Packet: 0x0408 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0408, -1) +#endif + +// Packet: 0x0409 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0409, -1) +#endif + +// Packet: 0x040a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040a, -1) +#endif + +// Packet: 0x040b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040b, -1) +#endif + +// Packet: 0x040c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040c, -1) +#endif + +// Packet: 0x040d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040d, -1) +#endif + +// Packet: 0x040e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040e, -1) +#endif + +// Packet: 0x040f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x040f, -1) +#endif + +// Packet: 0x0410 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0410, -1) +#endif + +// Packet: 0x0411 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0411, -1) +#endif + +// Packet: 0x0412 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0412, -1) +#endif + +// Packet: 0x0413 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0413, -1) +#endif + +// Packet: 0x0414 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0414, -1) +#endif + +// Packet: 0x0415 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0415, -1) +#endif + +// Packet: 0x0416 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0416, -1) +#endif + +// Packet: 0x0417 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0417, -1) +#endif + +// Packet: 0x0418 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0418, -1) +#endif + +// Packet: 0x0419 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0419, -1) +#endif + +// Packet: 0x041a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041a, -1) +#endif + +// Packet: 0x041b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041b, -1) +#endif + +// Packet: 0x041c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041c, -1) +#endif + +// Packet: 0x041d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041d, -1) +#endif + +// Packet: 0x041e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041e, -1) +#endif + +// Packet: 0x041f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x041f, -1) +#endif + +// Packet: 0x0420 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0420, -1) +#endif + +// Packet: 0x0421 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0421, -1) +#endif + +// Packet: 0x0422 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0422, -1) +#endif + +// Packet: 0x0423 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0423, -1) +#endif + +// Packet: 0x0424 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0424, -1) +#endif + +// Packet: 0x0425 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0425, -1) +#endif + +// Packet: 0x0426 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0426, -1) +#endif + +// Packet: 0x0427 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0427, -1) +#endif + +// Packet: 0x0428 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0428, -1) +#endif + +// Packet: 0x0429 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0429, -1) +#endif + +// Packet: 0x042a +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042a, -1) +#endif + +// Packet: 0x042b +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042b, -1) +#endif + +// Packet: 0x042c +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042c, -1) +#endif + +// Packet: 0x042d +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042d, -1) +#endif + +// Packet: 0x042e +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042e, -1) +#endif + +// Packet: 0x042f +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x042f, -1) +#endif + +// Packet: 0x0430 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0430, -1) +#endif + +// Packet: 0x0431 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0431, -1) +#endif + +// Packet: 0x0432 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0432, -1) +#endif + +// Packet: 0x0433 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0433, -1) +#endif + +// Packet: 0x0434 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0434, -1) +#endif + +// Packet: 0x0435 +#if PACKETVER >= 20101123 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x0435, -1) +#endif + +// Packet: 0x0436 +packetLen(0x0436, 19) // CZ_ENTER2 + +// Packet: 0x0437 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 + +// Packet: 0x0438 +packetLen(0x0438, 10) // CZ_USE_SKILL2 + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +#if PACKETVER >= 20100817 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST +#elif PACKETVER >= 20100105 +packetLen(0x0442, 8) // ZC_SKILL_SELECT_REQUEST +#endif + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d0 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d0, 6) // ZC_ES_RESULT +#endif + +// Packet: 0x07d1 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d1, 2) // CZ_ES_GET_LIST +#endif + +// Packet: 0x07d2 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d2, -1) // ZC_ES_LIST +#endif + +// Packet: 0x07d3 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d3, 4) // CZ_ES_CHOOSE +#endif + +// Packet: 0x07d4 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d4, 4) // CZ_ES_CANCEL +#endif + +// Packet: 0x07d5 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d5, 4) // ZC_ES_READY +#endif + +// Packet: 0x07d6 +#if PACKETVER >= 20100701 +// removed +#elif PACKETVER >= 20100105 +packetLen(0x07d6, 4) // ZC_ES_GOTO +#endif + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES + +// Packet: 0x07e5 +#if PACKETVER >= 20101012 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT +#elif PACKETVER >= 20100105 +packetLen(0x07e5, 8) // CH_ENTER_CHECKBOT +#endif + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +#if PACKETVER >= 20100209 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR +#elif PACKETVER >= 20100105 +packetLen(0x07f0, 8) // CZ_REQ_BATTLE_STATE_MONITOR +#endif + +// Packet: 0x07f1 +#if PACKETVER >= 20100629 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR +#elif PACKETVER >= 20100105 +packetLen(0x07f1, 15) // ZC_ACK_BATTLE_STATE_MONITOR +#endif + +// Packet: 0x07f2 +#if PACKETVER >= 20100629 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP +#elif PACKETVER >= 20100105 +packetLen(0x07f2, 6) // ZC_BATTLE_NOTI_START_STEP +#endif + +// Packet: 0x07f3 +#if PACKETVER >= 20100629 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER +#elif PACKETVER >= 20100105 +packetLen(0x07f3, 4) // ZC_BATTLE_JOIN_NOTI_DEFER +#endif + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x07ff +packetLen(0x07ff, -1) // ZC_DEFINE_CHECK + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +#if PACKETVER >= 20100113 +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW +#endif + +// Packet: 0x080d +#if PACKETVER >= 20100113 +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW +#endif + +// Packet: 0x080e +#if PACKETVER >= 20100119 +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 +#endif + +// Packet: 0x080f +#if PACKETVER >= 20100223 +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 +#endif + +// Packet: 0x0810 +#if PACKETVER >= 20100303 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE +#endif + +// Packet: 0x0811 +#if PACKETVER >= 20100303 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +#if PACKETVER >= 20100420 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER +#elif PACKETVER >= 20100303 +packetLen(0x0812, 86) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER +#endif + +// Packet: 0x0813 +#if PACKETVER >= 20100309 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0813, 6) // ZC_MYITEMLIST_BUYING_STORE +#endif + +// Packet: 0x0814 +#if PACKETVER >= 20100420 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY +#elif PACKETVER >= 20100309 +packetLen(0x0814, 2) // ZC_BUYING_STORE_ENTRY +#elif PACKETVER >= 20100303 +packetLen(0x0814, 6) // ZC_BUYING_STORE_ENTRY +#endif + +// Packet: 0x0815 +#if PACKETVER >= 20100420 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20100309 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +#if PACKETVER >= 20100309 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY +#endif + +// Packet: 0x0817 +#if PACKETVER >= 20100420 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +#if PACKETVER >= 20100309 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0818, 6) // ZC_ACK_ITEMLIST_BUYING_STORE +#endif + +// Packet: 0x0819 +#if PACKETVER >= 20100420 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20100309 +packetLen(0x0819, 10) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20100303 +packetLen(0x0819, 4) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +#if PACKETVER >= 20100420 +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER +#elif PACKETVER >= 20100413 +packetLen(0x081a, 10) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER +#elif PACKETVER >= 20100406 +packetLen(0x081a, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER +#elif PACKETVER >= 20100309 +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER +#endif + +// Packet: 0x081b +#if PACKETVER >= 20100420 +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#elif PACKETVER >= 20100414 +packetLen(0x081b, 8) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#elif PACKETVER >= 20100309 +packetLen(0x081b, 4) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#endif + +// Packet: 0x081c +#if PACKETVER >= 20100420 +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE +#elif PACKETVER >= 20100309 +packetLen(0x081c, 6) // ZC_ITEM_DELETE_BUYING_STORE +#endif + +// Packet: 0x081d +#if PACKETVER >= 20100309 +packetLen(0x081d, 22) // ZC_EL_INIT +#endif + +// Packet: 0x081e +#if PACKETVER >= 20100309 +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE +#endif + +// Packet: 0x081f +#if PACKETVER >= 20100323 +packetLen(0x081f, -1) // ZC_BROADCAST4 +#endif + +// Packet: 0x0820 +#if PACKETVER >= 20100413 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE +#endif + +// Packet: 0x0821 +#if PACKETVER >= 20100413 +packetLen(0x0821, 2) // AC_OTP_USER +#endif + +// Packet: 0x0822 +#if PACKETVER >= 20100413 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ +#endif + +// Packet: 0x0823 +#if PACKETVER >= 20100413 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK +#endif + +// Packet: 0x0824 +#if PACKETVER >= 20100420 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER +#endif + +// Packet: 0x0825 +#if PACKETVER >= 20100601 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ +#endif + +// Packet: 0x0826 +#if PACKETVER >= 20101019 +// removed +#elif PACKETVER >= 20100601 +packetLen(0x0826, 4) // AC_SSO_LOGIN_ACK +#endif + +// Packet: 0x0827 +#if PACKETVER >= 20100713 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED +#endif + +// Packet: 0x0828 +#if PACKETVER >= 20100713 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED +#endif + +// Packet: 0x0829 +#if PACKETVER >= 20100728 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 +#elif PACKETVER >= 20100713 +packetLen(0x0829, 6) // CH_DELETE_CHAR3 +#endif + +// Packet: 0x082a +#if PACKETVER >= 20100713 +packetLen(0x082a, 10) // HC_DELETE_CHAR3 +#endif + +// Packet: 0x082b +#if PACKETVER >= 20100713 +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL +#endif + +// Packet: 0x082c +#if PACKETVER >= 20100720 +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL +#elif PACKETVER >= 20100713 +packetLen(0x082c, 14) // HC_DELETE_CHAR3_CANCEL +#endif + +// Packet: 0x082d +#if PACKETVER >= 20101221 +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 +#endif + +// Packet: 0x0835 +#if PACKETVER >= 20100601 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +#if PACKETVER >= 20100601 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK +#endif + +// Packet: 0x0837 +#if PACKETVER >= 20100601 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED +#endif + +// Packet: 0x0838 +#if PACKETVER >= 20100608 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20100601 +packetLen(0x0838, 3) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +#if PACKETVER >= 20100608 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO +#endif + +// Packet: 0x083a +#if PACKETVER >= 20100701 +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO +#elif PACKETVER >= 20100608 +packetLen(0x083a, 4) // ZC_OPEN_SEARCH_STORE_INFO +#endif + +// Packet: 0x083b +#if PACKETVER >= 20100608 +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO +#endif + +// Packet: 0x083c +#if PACKETVER >= 20100608 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +#if PACKETVER >= 20100608 +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK +#endif + +// Packet: 0x083e +#if PACKETVER >= 20100615 +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 +#endif + +// Packet: 0x083f +#if PACKETVER >= 20100629 +// removed +#elif PACKETVER >= 20100622 +packetLen(0x083f, 22) // ZC_SEARCH_STORE_OPEN_INFO +#endif + +// Packet: 0x0840 +#if PACKETVER >= 20100713 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME +#endif + +// Packet: 0x0841 +#if PACKETVER >= 20100714 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME +#elif PACKETVER >= 20100713 +packetLen(0x0841, 19) // CH_SELECT_ACCESSIBLE_MAPNAME +#endif + +// Packet: 0x0842 +#if PACKETVER >= 20100720 +packetLen(0x0842, 6) // CZ_RECALL_SSO +#endif + +// Packet: 0x0843 +#if PACKETVER >= 20100720 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO +#endif + +// Packet: 0x0844 +#if PACKETVER >= 20100824 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN +#endif + +// Packet: 0x0845 +#if PACKETVER >= 20100824 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN +#endif + +// Packet: 0x0846 +#if PACKETVER >= 20100824 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE +#endif + +// Packet: 0x0847 +#if PACKETVER >= 20100824 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST +#endif + +// Packet: 0x0848 +#if PACKETVER >= 20100824 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST +#endif + +// Packet: 0x0849 +#if PACKETVER >= 20100914 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT +#elif PACKETVER >= 20100824 +packetLen(0x0849, 12) // ZC_SE_PC_BUY_CASHITEM_RESULT +#endif + +// Packet: 0x084a +#if PACKETVER >= 20101019 +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE +#endif + +// Packet: 0x084b +#if PACKETVER >= 20101019 +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 +#endif + +// Packet: 0x084c +#if PACKETVER >= 20101026 +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL +#endif + +// Packet: 0x084d +#if PACKETVER >= 20101026 +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND +#endif + +// Packet: 0x084e +#if PACKETVER >= 20101026 +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE +#endif + +// Packet: 0x084f +#if PACKETVER >= 20101026 +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP +#endif + +// Packet: 0x0850 +#if PACKETVER >= 20101026 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT +#endif + +// Packet: 0x0851 +#if PACKETVER >= 20101102 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE +#endif + +// Packet: 0x0852 +#if PACKETVER >= 20101102 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD +#endif + +// Packet: 0x0853 +#if PACKETVER >= 20101102 +packetLen(0x0853, -1) // ZC_GPK_AUTH +#endif + +// Packet: 0x0854 +#if PACKETVER >= 20101102 +packetLen(0x0854, -1) // CZ_GPK_AUTH +#endif + +// Packet: 0x0855 +#if PACKETVER >= 20101102 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL +#endif + +// Packet: 0x0856 +#if PACKETVER >= 20101123 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 +#endif + +// Packet: 0x0857 +#if PACKETVER >= 20101123 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 +#endif + +// Packet: 0x0858 +#if PACKETVER >= 20101123 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 +#endif + +// Packet: 0x0859 +#if PACKETVER >= 20101123 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 +#endif + +// Packet: 0x085a +#if PACKETVER >= 20101123 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20101123 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20101123 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20101123 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20101123 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20101123 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20101123 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20101123 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20101123 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20101123 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20101123 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20101123 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20101123 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20101123 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20101123 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20101123 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20101123 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20101123 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20101123 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20101123 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20101123 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20101123 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20101123 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20101123 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20101123 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20101123 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20101123 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20101123 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20101123 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20101123 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20101123 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20101123 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20101123 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20101123 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20101123 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20101123 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20101123 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20101123 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20101123 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20101123 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20101123 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20101123 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20101123 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20101123 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20101123 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20101123 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20101123 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20101123 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20101123 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20101123 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20101123 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20101123 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20101123 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20101123 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20101123 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20101123 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20101123 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20101123 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20101123 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20101123 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20101123 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20101123 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20101123 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20101123 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20101123 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20101123 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20101123 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20101123 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20101123 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20101123 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20101123 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20101123 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20101123 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20101123 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20101123 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20101123 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20101123 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20101123 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20101123 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20101123 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20101123 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20101123 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20101123 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20101123 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +#if PACKETVER >= 20101228 +packetLen(0x08af, 10) // HC_WAITING_LOGIN +#endif + +// Packet: 0x08b1 +#if PACKETVER >= 20101221 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST +#endif + +// Packet: 0x08b2 +#if PACKETVER >= 20101228 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH +#endif + + +#endif /* COMMON_PACKETS2010_LEN_RE_H */ diff --git a/src/common/packets/packets2011_len_main.h b/src/common/packets/packets2011_len_main.h new file mode 100644 index 000000000..f586ba54a --- /dev/null +++ b/src/common/packets/packets2011_len_main.h @@ -0,0 +1,7200 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2011_LEN_MAIN_H +#define COMMON_PACKETS2011_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20111101 +packetLen(0x006d, 146) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20110111 +packetLen(0x006d, 138) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20110104 +packetLen(0x006d, 134) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20111220 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111213 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111207 +packetLen(0x0202, 8) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111122 +packetLen(0x0202, 18) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111101 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111025 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111017 +packetLen(0x0202, 90) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111010 +packetLen(0x0202, 8) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110920 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110906 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110823 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110816 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110726 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110718 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110711 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110531 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110523 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110517 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110511 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110426 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110419 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110405 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110329 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110322 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110315 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110308 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110222 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110215 +packetLen(0x0202, 8) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110125 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110118 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110111 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110104 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20111227 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20111220 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20111213 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20111207 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20111122 +packetLen(0x022d, 7) // CZ_COMMAND_MER +#elif PACKETVER >= 20111114 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20111108 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20111025 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20111017 +packetLen(0x022d, 12) // CZ_COMMAND_MER +#elif PACKETVER >= 20111004 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110920 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20110906 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20110823 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110816 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20110809 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110802 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20110726 +packetLen(0x022d, 12) // CZ_COMMAND_MER +#elif PACKETVER >= 20110705 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110627 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20110620 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110614 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20110531 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20110523 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20110503 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110426 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20110412 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110405 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20110329 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20110315 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110308 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20110215 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110208 +packetLen(0x022d, 36) // CZ_COMMAND_MER +#elif PACKETVER >= 20110131 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110125 +packetLen(0x022d, 26) // CZ_COMMAND_MER +#elif PACKETVER >= 20110118 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20110111 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20110104 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20111220 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111213 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111207 +packetLen(0x023b, 19) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111114 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111108 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111101 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111025 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111010 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111004 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110928 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110920 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110906 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110831 +packetLen(0x023b, 10) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110823 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110816 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110726 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110718 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110705 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110627 +packetLen(0x023b, 4) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110620 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110531 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110523 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110517 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110511 +packetLen(0x023b, 7) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110426 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110419 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110405 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110329 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110308 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110228 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110222 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110215 +packetLen(0x023b, 18) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110208 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110131 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110125 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110118 +packetLen(0x023b, -1) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110111 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110104 +packetLen(0x023b, 4) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20111227 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111220 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111213 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111207 +packetLen(0x0281, 7) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111122 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111114 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111108 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111101 +packetLen(0x0281, 36) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111025 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111004 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110928 +packetLen(0x0281, 5) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110920 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110906 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110823 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110816 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110809 +packetLen(0x0281, 18) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110726 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110718 +packetLen(0x0281, 18) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110711 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110705 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110627 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110620 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110607 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110531 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110523 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110511 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110503 +packetLen(0x0281, 7) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110426 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110419 +packetLen(0x0281, 8) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110412 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110405 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110329 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110315 +packetLen(0x0281, 8) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110308 +packetLen(0x0281, 36) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110228 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110222 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110125 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110118 +packetLen(0x0281, 7) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110104 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20111227 +packetLen(0x02c4, 36) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111220 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111213 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111122 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111108 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111101 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111010 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111004 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110831 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110823 +packetLen(0x02c4, 5) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110816 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110809 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110802 +packetLen(0x02c4, 5) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110726 +packetLen(0x02c4, 4) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110718 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110711 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110705 +packetLen(0x02c4, 4) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110627 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110614 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110607 +packetLen(0x02c4, 19) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110523 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110517 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110511 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110503 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110426 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110419 +packetLen(0x02c4, -1) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110322 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110315 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110228 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110222 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110215 +packetLen(0x02c4, 36) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110125 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110118 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110104 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +#if PACKETVER >= 20110131 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#endif + +// Packet: 0x02f4 +#if PACKETVER >= 20110131 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES +#endif + +// Packet: 0x02f5 +#if PACKETVER >= 20110131 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY +#endif + +// Packet: 0x02f6 +#if PACKETVER >= 20110131 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST +#endif + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20111227 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111220 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111213 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111207 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111108 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111101 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111025 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111017 +packetLen(0x035f, 19) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111010 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110928 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110920 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110906 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110823 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110802 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110726 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110718 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110711 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110627 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110620 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110517 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110503 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110419 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110405 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110329 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110322 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110308 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110222 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110208 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110131 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110125 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110118 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110104 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20111227 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111220 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111122 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111108 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111101 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111025 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111017 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111004 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110928 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110920 +packetLen(0x0360, 19) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110906 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110831 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110823 +packetLen(0x0360, 12) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110809 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110802 +packetLen(0x0360, 90) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110711 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110705 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110620 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110614 +packetLen(0x0360, 4) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110517 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110511 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110503 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110426 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110419 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110405 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110329 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110322 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110315 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110308 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110228 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110222 +packetLen(0x0360, 26) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110208 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110131 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110125 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110118 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110104 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20111220 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111213 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111207 +packetLen(0x0361, 10) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111122 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111114 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111025 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111017 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111010 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111004 +packetLen(0x0361, 18) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110928 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110831 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110823 +packetLen(0x0361, 18) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110816 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110809 +packetLen(0x0361, 10) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110726 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110718 +packetLen(0x0361, 90) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110711 +packetLen(0x0361, 10) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110705 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110627 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110620 +packetLen(0x0361, 4) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110614 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110607 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110531 +packetLen(0x0361, 7) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110523 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110511 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110503 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110405 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110329 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110322 +packetLen(0x0361, 10) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110315 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110308 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110228 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110131 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110125 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110118 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110111 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110104 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20111213 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111207 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111122 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111017 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111010 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111004 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110928 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110920 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110906 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110831 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110823 +packetLen(0x0362, 10) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110816 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110809 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110802 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110726 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110620 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110607 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110531 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110523 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110517 +packetLen(0x0362, 4) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110511 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110426 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110419 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110412 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110405 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110329 +packetLen(0x0362, 36) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110322 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110315 +packetLen(0x0362, 4) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110308 +packetLen(0x0362, 10) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110208 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110131 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110125 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110118 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110104 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20111227 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111220 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111207 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111122 +packetLen(0x0363, 90) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111114 +packetLen(0x0363, 18) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111101 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111025 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111017 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111010 +packetLen(0x0363, 7) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111004 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110928 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110920 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110906 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110823 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110816 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110809 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110718 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110711 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110627 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110620 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110607 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110531 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110523 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110503 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110426 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110419 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110412 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110405 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110329 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110322 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110315 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110308 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110228 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110222 +packetLen(0x0363, 4) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110208 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110131 +packetLen(0x0363, 10) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110125 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110118 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110104 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20111227 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111220 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111207 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111114 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111108 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111101 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111017 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111010 +packetLen(0x0364, 19) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111004 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110928 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110920 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110906 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110823 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110816 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110809 +packetLen(0x0364, 90) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110726 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110718 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110705 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110627 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110620 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110607 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110531 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110523 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110517 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110511 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110503 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110419 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110412 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110405 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110329 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110315 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110308 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110228 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110222 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110215 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110208 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110131 +packetLen(0x0364, 90) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110125 +packetLen(0x0364, 12) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110104 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20111227 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111220 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111213 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111207 +packetLen(0x0365, 12) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111122 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111114 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111108 +packetLen(0x0365, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111010 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111004 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110928 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110920 +packetLen(0x0365, 90) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110906 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110831 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110823 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110816 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110809 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110705 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110627 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110620 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110607 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110531 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110523 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110517 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110511 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110503 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110426 +packetLen(0x0365, 90) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110412 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110405 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110329 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110118 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110104 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20111227 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111220 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111213 +packetLen(0x0366, 4) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111207 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111122 +packetLen(0x0366, 12) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111108 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111101 +packetLen(0x0366, 5) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111025 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111017 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111010 +packetLen(0x0366, 5) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110928 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110920 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110906 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110831 +packetLen(0x0366, 5) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110823 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110816 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110809 +packetLen(0x0366, 4) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110802 +packetLen(0x0366, 12) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110711 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110705 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110620 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110517 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110426 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110419 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110405 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110329 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110322 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110308 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110228 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110208 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110131 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110125 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110118 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110104 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20111220 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111213 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111207 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111122 +packetLen(0x0367, 4) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111101 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111025 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111017 +packetLen(0x0367, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111010 +packetLen(0x0367, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111004 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110906 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110831 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110816 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110809 +packetLen(0x0367, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110802 +packetLen(0x0367, 5) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110726 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110718 +packetLen(0x0367, 19) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110627 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110620 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110614 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110531 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110523 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110517 +packetLen(0x0367, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110419 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110405 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110329 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110322 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110315 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110131 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110125 +packetLen(0x0367, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110118 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110111 +packetLen(0x0367, 36) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110104 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20111227 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20111220 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20111122 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20111108 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20111101 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20111025 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20111010 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110906 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110831 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110809 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110802 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110726 +packetLen(0x0368, 8) // CZ_REQNAME2 +#elif PACKETVER >= 20110718 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110711 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110627 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110620 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110523 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110426 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110419 +packetLen(0x0368, 4) // CZ_REQNAME2 +#elif PACKETVER >= 20110412 +packetLen(0x0368, 19) // CZ_REQNAME2 +#elif PACKETVER >= 20110405 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110329 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110322 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110315 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110308 +packetLen(0x0368, 5) // CZ_REQNAME2 +#elif PACKETVER >= 20110228 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110208 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110131 +packetLen(0x0368, 26) // CZ_REQNAME2 +#elif PACKETVER >= 20110125 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110118 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110104 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20111227 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111220 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111207 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111122 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111114 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111108 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111101 +packetLen(0x0369, 10) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111025 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111010 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111004 +packetLen(0x0369, 8) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110928 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110920 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110906 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110831 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110823 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110816 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110809 +packetLen(0x0369, 8) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110726 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110718 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110711 +packetLen(0x0369, 19) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110705 +packetLen(0x0369, 18) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110620 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110607 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110531 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110517 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110503 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110426 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110419 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110412 +packetLen(0x0369, 4) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110405 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110329 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110322 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110308 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110228 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110208 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110131 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110125 +packetLen(0x0369, 18) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110118 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110104 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20111227 +packetLen(0x0436, 10) // CZ_ENTER2 +#elif PACKETVER >= 20111213 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20111122 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20111108 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20111101 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20111025 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20111017 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20111010 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20111004 +packetLen(0x0436, 19) // CZ_ENTER2 +#elif PACKETVER >= 20110928 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110920 +packetLen(0x0436, 12) // CZ_ENTER2 +#elif PACKETVER >= 20110906 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20110831 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110823 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20110816 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20110809 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110802 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20110726 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110718 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20110711 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110705 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20110620 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110614 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20110607 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20110531 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110523 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20110511 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110503 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20110426 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110419 +packetLen(0x0436, 36) // CZ_ENTER2 +#elif PACKETVER >= 20110412 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20110329 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20110315 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110308 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20110222 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110215 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20110118 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110111 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20110104 +packetLen(0x0436, 2) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20111220 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111122 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111108 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111101 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111025 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111010 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110906 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110823 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110809 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110802 +packetLen(0x0437, 18) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110726 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110718 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110711 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110705 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110620 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110523 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110517 +packetLen(0x0437, 36) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110511 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110503 +packetLen(0x0437, 26) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110426 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110419 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110412 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110405 +packetLen(0x0437, 36) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110329 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110322 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110308 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110228 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110222 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110215 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110208 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110131 +packetLen(0x0437, 19) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110125 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110118 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110104 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20111227 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111220 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111122 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111114 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111108 +packetLen(0x0438, 8) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111025 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111017 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111010 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110928 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110920 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110906 +packetLen(0x0438, 26) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110831 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110823 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110809 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110802 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110726 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110718 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110627 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110620 +packetLen(0x0438, 18) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110517 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110503 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110426 +packetLen(0x0438, 8) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110419 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110412 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110405 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110329 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110322 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110308 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110228 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110222 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110215 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110208 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110131 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110125 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110118 +packetLen(0x0438, 8) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110104 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20111227 +packetLen(0x07e4, 4) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20111220 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20111004 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110928 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110920 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110906 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110831 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110823 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110816 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110809 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110802 +packetLen(0x07e4, 4) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110726 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110718 +packetLen(0x07e4, 4) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110711 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110705 +packetLen(0x07e4, 8) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110627 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110620 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110614 +packetLen(0x07e4, 19) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110607 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110531 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110523 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110517 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110511 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110419 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110412 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110405 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110329 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110322 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110315 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110308 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110118 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110104 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20111227 +packetLen(0x07ec, 90) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111220 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111213 +packetLen(0x07ec, 10) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111207 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111122 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111114 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111108 +packetLen(0x07ec, 18) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111101 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111025 +packetLen(0x07ec, 10) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111017 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111010 +packetLen(0x07ec, 26) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111004 +packetLen(0x07ec, 7) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110928 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110920 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110906 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110831 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110823 +packetLen(0x07ec, 36) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110816 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110809 +packetLen(0x07ec, 7) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110802 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110726 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110718 +packetLen(0x07ec, 12) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110711 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110705 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110620 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110614 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110607 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110531 +packetLen(0x07ec, 4) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110523 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110517 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110503 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110426 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110419 +packetLen(0x07ec, 26) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110405 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110329 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110322 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110308 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110228 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110222 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110131 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110118 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110104 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x07ff +#if PACKETVER >= 20110718 +// removed +#elif PACKETVER >= 20110104 +packetLen(0x07ff, -1) // ZC_DEFINE_CHECK +#endif + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20111220 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111122 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111114 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111025 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111017 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111010 +packetLen(0x0802, 12) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111004 +packetLen(0x0802, 8) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110928 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110920 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110906 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110831 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110823 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110816 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110802 +packetLen(0x0802, 8) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110711 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110705 +packetLen(0x0802, 7) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110620 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110607 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110531 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110523 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110511 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110503 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110426 +packetLen(0x0802, 36) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110419 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110412 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110405 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110329 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110308 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110228 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110222 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110215 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110208 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110131 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110125 +packetLen(0x0802, 7) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110118 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110104 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20111227 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20111220 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20111122 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20111101 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20111010 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110928 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110920 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110906 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110823 +packetLen(0x0811, 10) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110809 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110802 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110726 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110718 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110711 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110627 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110620 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110517 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110511 +packetLen(0x0811, 90) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110426 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110419 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110412 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110405 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110329 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110322 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110308 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110228 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110215 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110208 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110131 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110125 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110118 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110104 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20111227 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111220 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111114 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111108 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111101 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111025 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111010 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111004 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110928 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110920 +packetLen(0x0815, 4) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110831 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110823 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110809 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110802 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110726 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110718 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110711 +packetLen(0x0815, 26) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110620 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110614 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110607 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110523 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110503 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110426 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110419 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110405 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110329 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110322 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110315 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110308 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110228 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110222 +packetLen(0x0815, 8) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110215 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110131 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110125 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110118 +packetLen(0x0815, 26) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110104 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20111220 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111213 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111108 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111101 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111025 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111017 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110906 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110831 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110718 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110711 +packetLen(0x0817, 26) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110705 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110627 +packetLen(0x0817, 10) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110419 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110412 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110329 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110322 +packetLen(0x0817, 36) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110104 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20111227 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111220 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111213 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111207 +packetLen(0x0819, 18) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111122 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111114 +packetLen(0x0819, 5) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111108 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111101 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111025 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111017 +packetLen(0x0819, 8) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111010 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110928 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110920 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110906 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110831 +packetLen(0x0819, 12) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110823 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110816 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110809 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110802 +packetLen(0x0819, 7) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110718 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110711 +packetLen(0x0819, 5) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110705 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110627 +packetLen(0x0819, 19) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110620 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110531 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110523 +packetLen(0x0819, 36) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110517 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110503 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110426 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110419 +packetLen(0x0819, 26) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110412 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110405 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110329 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110322 +packetLen(0x0819, 90) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110315 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110308 +packetLen(0x0819, 26) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110228 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110222 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110208 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110131 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110125 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110118 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110104 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20111213 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111207 +packetLen(0x0835, 10) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111122 +packetLen(0x0835, 19) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111108 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111101 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111025 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111010 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111004 +packetLen(0x0835, 26) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110906 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110831 +packetLen(0x0835, 4) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110823 +packetLen(0x0835, 8) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110809 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110802 +packetLen(0x0835, 26) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110726 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110718 +packetLen(0x0835, 8) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110711 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110705 +packetLen(0x0835, 36) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110627 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110503 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110426 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110412 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110405 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110315 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110308 +packetLen(0x0835, 4) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110222 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110215 +packetLen(0x0835, 26) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110208 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110131 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110125 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110118 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110104 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20111227 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111220 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111213 +packetLen(0x0838, 19) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111122 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111108 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111101 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111025 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111010 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110928 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110920 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110906 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110823 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110809 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110802 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110726 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110718 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110711 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110705 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110620 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110517 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110511 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110503 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110426 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110419 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110412 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110405 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110329 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110315 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110308 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110228 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110208 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110131 +packetLen(0x0838, 4) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110125 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110118 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110104 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20111227 +packetLen(0x083c, 8) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111220 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111122 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111114 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111108 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111101 +packetLen(0x083c, 19) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111017 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111010 +packetLen(0x083c, -1) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111004 +packetLen(0x083c, 26) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110928 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110920 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110906 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110831 +packetLen(0x083c, 26) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110823 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110816 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110809 +packetLen(0x083c, 5) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110726 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110718 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110711 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110705 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110627 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110620 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110523 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110511 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110503 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110426 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110419 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110412 +packetLen(0x083c, -1) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110405 +packetLen(0x083c, 19) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110329 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110322 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110315 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110308 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110228 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110208 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110131 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110125 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110118 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110104 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 + +// Packet: 0x085b +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 + +// Packet: 0x085c +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 + +// Packet: 0x085d +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 + +// Packet: 0x085e +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 + +// Packet: 0x085f +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 + +// Packet: 0x0860 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 + +// Packet: 0x0861 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 + +// Packet: 0x0862 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 + +// Packet: 0x0863 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 + +// Packet: 0x0864 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 + +// Packet: 0x0865 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 + +// Packet: 0x0866 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 + +// Packet: 0x0867 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 + +// Packet: 0x0868 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 + +// Packet: 0x0869 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 + +// Packet: 0x086a +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 + +// Packet: 0x086b +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 + +// Packet: 0x086c +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 + +// Packet: 0x086d +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 + +// Packet: 0x086e +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 + +// Packet: 0x086f +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 + +// Packet: 0x0870 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 + +// Packet: 0x0871 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 + +// Packet: 0x0872 +packetLen(0x0872, 2) + +// Packet: 0x0873 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 + +// Packet: 0x0874 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 + +// Packet: 0x0875 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 + +// Packet: 0x0876 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 + +// Packet: 0x0877 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 + +// Packet: 0x0878 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 + +// Packet: 0x0879 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 + +// Packet: 0x087a +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 + +// Packet: 0x087b +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 + +// Packet: 0x087c +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 + +// Packet: 0x087d +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 + +// Packet: 0x087e +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 + +// Packet: 0x087f +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 + +// Packet: 0x0880 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 + +// Packet: 0x0881 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 + +// Packet: 0x0882 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 + +// Packet: 0x0883 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 + +// Packet: 0x0884 +#if PACKETVER >= 20111114 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20111108 +packetLen(0x0884, 10) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20111025 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20111017 +packetLen(0x0884, 7) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20111010 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110928 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110920 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110831 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110823 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110802 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110726 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110718 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110711 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110705 +packetLen(0x0884, 26) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110627 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110620 +packetLen(0x0884, 10) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110523 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110517 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110503 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110426 +packetLen(0x0884, 18) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110315 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110308 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110215 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110208 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110131 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110104 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20111227 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111108 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111101 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111025 +packetLen(0x0885, 10) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111017 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111010 +packetLen(0x0885, 10) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111004 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110928 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110920 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110906 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110831 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110726 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110718 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110607 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110531 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110517 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110511 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110503 +packetLen(0x0885, 18) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110426 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110412 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110405 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110322 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110315 +packetLen(0x0885, 18) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110228 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110222 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110215 +packetLen(0x0885, 10) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110208 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110125 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110118 +packetLen(0x0885, 18) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110104 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20111227 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20111025 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20111017 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20111010 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110920 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110906 +packetLen(0x0886, 36) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110802 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110726 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110718 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110711 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110627 +packetLen(0x0886, 10) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110607 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110531 +packetLen(0x0886, 18) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110517 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110511 +packetLen(0x0886, 12) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110503 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110426 +packetLen(0x0886, 4) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110419 +packetLen(0x0886, 18) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110412 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110405 +packetLen(0x0886, 90) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110329 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110322 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110315 +packetLen(0x0886, 26) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110131 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110125 +packetLen(0x0886, 19) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110118 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110104 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20111220 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111213 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111207 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111122 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111114 +packetLen(0x0887, 7) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111101 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111025 +packetLen(0x0887, 26) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111010 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111004 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110906 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110831 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110802 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110726 +packetLen(0x0887, 90) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110711 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110705 +packetLen(0x0887, 19) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110627 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110620 +packetLen(0x0887, 36) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110523 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110517 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110511 +packetLen(0x0887, 18) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110412 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110405 +packetLen(0x0887, 12) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110322 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110315 +packetLen(0x0887, 19) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110308 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110228 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110222 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110215 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110208 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110131 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110111 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110104 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20111227 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111122 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111114 +packetLen(0x0888, -1) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111108 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111101 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111025 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110831 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110823 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110809 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110802 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110718 +packetLen(0x0888, 36) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110705 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110627 +packetLen(0x0888, 90) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110607 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110531 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110523 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110517 +packetLen(0x0888, -1) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110511 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110503 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110426 +packetLen(0x0888, 10) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110419 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110412 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110405 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110329 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110322 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110315 +packetLen(0x0888, 12) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110308 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110228 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110222 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110215 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110208 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110131 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110104 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20111227 +packetLen(0x0889, 18) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20111220 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20111213 +packetLen(0x0889, 26) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20111010 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20111004 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110809 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110802 +packetLen(0x0889, 26) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110607 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110531 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110523 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110517 +packetLen(0x0889, 10) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110511 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110503 +packetLen(0x0889, 19) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110426 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110419 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110412 +packetLen(0x0889, 5) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110405 +packetLen(0x0889, 18) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110329 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110322 +packetLen(0x0889, 5) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110315 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110308 +packetLen(0x0889, 18) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110228 +packetLen(0x0889, 90) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110222 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110215 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110104 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20111108 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20111101 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20111017 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20111010 +packetLen(0x088a, 18) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110906 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110831 +packetLen(0x088a, 5) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110718 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110711 +packetLen(0x088a, -1) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110627 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110620 +packetLen(0x088a, 7) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110419 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110412 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110329 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110322 +packetLen(0x088a, 18) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110228 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110222 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110215 +packetLen(0x088a, 5) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110208 +packetLen(0x088a, 19) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110111 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110104 +packetLen(0x088a, 19) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20111227 +packetLen(0x088b, 12) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111220 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111213 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111207 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111114 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111108 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110809 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110802 +packetLen(0x088b, 8) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110726 +packetLen(0x088b, 10) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110718 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110711 +packetLen(0x088b, 18) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110705 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110627 +packetLen(0x088b, 8) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110620 +packetLen(0x088b, 5) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110614 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110607 +packetLen(0x088b, 5) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110517 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110511 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110503 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110426 +packetLen(0x088b, 10) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110208 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110131 +packetLen(0x088b, 7) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110104 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20111213 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20111122 +packetLen(0x088c, 6) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20111017 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20111010 +packetLen(0x088c, 36) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20111004 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110928 +packetLen(0x088c, 36) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110920 +packetLen(0x088c, 6) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110831 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110823 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110802 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110726 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110705 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110627 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110511 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110503 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110322 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110315 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110125 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110118 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110104 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20111213 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111207 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111108 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111101 +packetLen(0x088d, 26) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111017 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111010 +packetLen(0x088d, 10) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110928 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110920 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110816 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110809 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110802 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110726 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110711 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110705 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110517 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110511 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110419 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110412 +packetLen(0x088d, 26) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110329 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110322 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110104 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20111025 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20111017 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110928 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110920 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110809 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110802 +packetLen(0x088e, 19) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110718 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110711 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110705 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110627 +packetLen(0x088e, 26) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110412 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110405 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110329 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110322 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110208 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110131 +packetLen(0x088e, 5) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110125 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110118 +packetLen(0x088e, 19) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110104 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20111220 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111213 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111207 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111025 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111017 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111010 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110906 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110831 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110823 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110816 +packetLen(0x088f, 36) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110809 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110802 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110718 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110711 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110627 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110620 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110517 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110511 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110412 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110405 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110329 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110322 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110308 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110228 +packetLen(0x088f, 10) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110125 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110118 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110111 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110104 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20111220 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111213 +packetLen(0x0890, 12) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111207 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111108 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111101 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111025 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111017 +packetLen(0x0890, 26) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111010 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110928 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110920 +packetLen(0x0890, 26) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110831 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110823 +packetLen(0x0890, 90) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110523 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110517 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110511 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110503 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110329 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110322 +packetLen(0x0890, 7) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110308 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110228 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110208 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110131 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110125 +packetLen(0x0890, 36) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110118 +packetLen(0x0890, 90) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110104 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20111227 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111220 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111213 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111207 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111122 +packetLen(0x0891, 26) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111025 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111010 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111004 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110928 +packetLen(0x0891, 4) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110920 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110718 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110711 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110627 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110620 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110517 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110511 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110503 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110426 +packetLen(0x0891, 7) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110329 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110322 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110315 +packetLen(0x0891, 36) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110215 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110208 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110131 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110104 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20111227 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111220 +packetLen(0x0892, 26) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111207 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111122 +packetLen(0x0892, 5) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111114 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111108 +packetLen(0x0892, 5) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110607 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110531 +packetLen(0x0892, 8) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110517 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110511 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110503 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110426 +packetLen(0x0892, 12) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110419 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110412 +packetLen(0x0892, 7) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110228 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110222 +packetLen(0x0892, 5) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110208 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110131 +packetLen(0x0892, 5) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110104 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20111227 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111220 +packetLen(0x0893, 4) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111213 +packetLen(0x0893, 10) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111122 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111108 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111101 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111025 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110920 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110906 +packetLen(0x0893, 5) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110831 +packetLen(0x0893, 90) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110823 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110816 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110809 +packetLen(0x0893, 26) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110802 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110726 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110718 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110711 +packetLen(0x0893, -1) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110308 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110228 +packetLen(0x0893, -1) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110222 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110215 +packetLen(0x0893, 4) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110208 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110131 +packetLen(0x0893, 36) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110104 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20111213 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111207 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111114 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111108 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111101 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111025 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111017 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111010 +packetLen(0x0894, 4) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110906 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110831 +packetLen(0x0894, 18) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110816 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110809 +packetLen(0x0894, 36) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110614 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110607 +packetLen(0x0894, 4) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110517 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110511 +packetLen(0x0894, 26) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110503 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110426 +packetLen(0x0894, -1) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110419 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110412 +packetLen(0x0894, 10) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110329 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110322 +packetLen(0x0894, 12) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110104 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20111207 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20111122 +packetLen(0x0895, 26) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20111114 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20111108 +packetLen(0x0895, 19) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20111101 +packetLen(0x0895, 4) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110906 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110831 +packetLen(0x0895, 36) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110802 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110726 +packetLen(0x0895, 26) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110718 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110711 +packetLen(0x0895, 12) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110627 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110620 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110412 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110405 +packetLen(0x0895, 10) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110104 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20111220 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111213 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111207 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111122 +packetLen(0x0896, 5) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111114 +packetLen(0x0896, 8) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111004 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110928 +packetLen(0x0896, 26) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110920 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110802 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110726 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110705 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110627 +packetLen(0x0896, 8) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110607 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110531 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110517 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110511 +packetLen(0x0896, 26) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110426 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110419 +packetLen(0x0896, 8) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110308 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110228 +packetLen(0x0896, 4) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110208 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110131 +packetLen(0x0896, 18) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110104 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20111227 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111220 +packetLen(0x0897, 36) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111213 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111207 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111108 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111101 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111025 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111017 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111010 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110809 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110802 +packetLen(0x0897, 10) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110726 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110705 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110627 +packetLen(0x0897, 12) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110620 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110517 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110511 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110315 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110308 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110228 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110208 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110131 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110125 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110118 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110104 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20111220 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111213 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111207 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111122 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111108 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111101 +packetLen(0x0898, 5) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111025 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111017 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111010 +packetLen(0x0898, 8) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110831 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110823 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110705 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110627 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110511 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110503 +packetLen(0x0898, 12) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110329 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110322 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110308 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110222 +packetLen(0x0898, 26) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110208 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110131 +packetLen(0x0898, 12) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110125 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110118 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110104 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20111207 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20111122 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20111114 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20111108 +packetLen(0x0899, -1) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110928 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110920 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110831 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110823 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110802 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110726 +packetLen(0x0899, 7) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110718 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110711 +packetLen(0x0899, 10) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110705 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110627 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110620 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110511 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110503 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110426 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110419 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110412 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110405 +packetLen(0x0899, 7) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110104 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20111220 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111213 +packetLen(0x089a, 90) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111122 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111114 +packetLen(0x089a, -1) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111010 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111004 +packetLen(0x089a, 4) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110928 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110920 +packetLen(0x089a, 10) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110726 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110718 +packetLen(0x089a, 5) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110711 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110517 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110511 +packetLen(0x089a, -1) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110503 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110208 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110131 +packetLen(0x089a, 8) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110104 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20111227 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111213 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111207 +packetLen(0x089b, 36) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111101 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111025 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111017 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111010 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111004 +packetLen(0x089b, 36) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110928 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110920 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110831 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110823 +packetLen(0x089b, 19) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110802 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110726 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110718 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110711 +packetLen(0x089b, 5) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110705 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110627 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110620 +packetLen(0x089b, 5) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110607 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110531 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110523 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110511 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110503 +packetLen(0x089b, 90) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110426 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110419 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110412 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110405 +packetLen(0x089b, 5) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110308 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110228 +packetLen(0x089b, 7) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110125 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110118 +packetLen(0x089b, 10) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110111 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110104 +packetLen(0x089b, 36) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20111227 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111220 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111213 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111122 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111114 +packetLen(0x089c, 19) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111025 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111010 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110928 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110920 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110831 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110823 +packetLen(0x089c, -1) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110816 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110809 +packetLen(0x089c, 19) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110718 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110711 +packetLen(0x089c, 7) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110627 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110620 +packetLen(0x089c, -1) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110503 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110426 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110329 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110322 +packetLen(0x089c, 26) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110315 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110308 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110228 +packetLen(0x089c, 12) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110215 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110208 +packetLen(0x089c, -1) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110131 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110125 +packetLen(0x089c, 4) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110118 +packetLen(0x089c, -1) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110104 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20111213 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20111207 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20111122 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20111114 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110928 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110920 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110906 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110831 +packetLen(0x089d, 7) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110802 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110726 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110718 +packetLen(0x089d, 8) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110711 +packetLen(0x089d, 36) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110523 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110517 +packetLen(0x089d, 8) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110511 +packetLen(0x089d, 10) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110503 +packetLen(0x089d, 4) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110419 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110412 +packetLen(0x089d, 8) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110228 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110222 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110215 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110208 +packetLen(0x089d, 26) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110104 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20111207 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111122 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111108 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111101 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111025 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111017 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110802 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110726 +packetLen(0x089e, 19) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110607 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110531 +packetLen(0x089e, 36) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110517 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110511 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110503 +packetLen(0x089e, 10) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110419 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110412 +packetLen(0x089e, 18) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110329 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110322 +packetLen(0x089e, 19) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110308 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110228 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110208 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110125 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110104 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20111025 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20111017 +packetLen(0x089f, 10) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110802 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110726 +packetLen(0x089f, 10) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110627 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110620 +packetLen(0x089f, 12) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110511 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110503 +packetLen(0x089f, 36) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110419 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110412 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110405 +packetLen(0x089f, 5) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110308 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110228 +packetLen(0x089f, 19) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110222 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110215 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110104 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20110928 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110920 +packetLen(0x08a0, 10) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110906 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110831 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110711 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110705 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110627 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110620 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110517 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110511 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110308 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110228 +packetLen(0x08a0, 10) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110215 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110208 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110104 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20111207 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111122 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111114 +packetLen(0x08a1, 8) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111108 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111101 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111025 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111017 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110831 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110823 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110627 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110620 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110419 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110412 +packetLen(0x08a1, 90) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110208 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110131 +packetLen(0x08a1, 26) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110125 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110104 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20111227 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111207 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111122 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111114 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111108 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111101 +packetLen(0x08a2, 12) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111025 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111017 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111010 +packetLen(0x08a2, 90) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111004 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110928 +packetLen(0x08a2, 19) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110809 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110802 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110718 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110711 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110705 +packetLen(0x08a2, 5) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110627 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110620 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110523 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110517 +packetLen(0x08a2, 18) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110308 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110228 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110208 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110131 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110125 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110118 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110104 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20110831 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110823 +packetLen(0x08a3, 7) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110523 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110517 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110511 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110503 +packetLen(0x08a3, 10) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110412 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110405 +packetLen(0x08a3, 8) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110215 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110208 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110104 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20111227 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111220 +packetLen(0x08a4, 19) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111207 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111122 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111017 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111010 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111004 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110928 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110920 +packetLen(0x08a4, 7) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110906 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110831 +packetLen(0x08a4, 26) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110823 +packetLen(0x08a4, 4) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110809 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110802 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110726 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110718 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110711 +packetLen(0x08a4, 90) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110627 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110620 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110614 +packetLen(0x08a4, 26) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110517 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110511 +packetLen(0x08a4, 19) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110426 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110419 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110412 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110329 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110322 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110228 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110222 +packetLen(0x08a4, 36) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110131 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110125 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110104 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20111220 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20111213 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20111207 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20111108 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20111101 +packetLen(0x08a5, 18) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110906 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110831 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110802 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110726 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110705 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110627 +packetLen(0x08a5, 7) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110607 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110531 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110511 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110503 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110426 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110412 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110405 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110329 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110322 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110315 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110308 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110228 +packetLen(0x08a5, 18) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110131 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110125 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110104 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20111227 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111220 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111213 +packetLen(0x08a6, -1) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111101 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111025 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111017 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111010 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110928 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110920 +packetLen(0x08a6, 26) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110906 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110831 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110816 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110809 +packetLen(0x08a6, -1) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110802 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110726 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110718 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110711 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110705 +packetLen(0x08a6, -1) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110104 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20111227 +packetLen(0x08a7, 19) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111220 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111213 +packetLen(0x08a7, 36) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111207 +packetLen(0x08a7, 90) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111010 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111004 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110906 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110831 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110705 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110627 +packetLen(0x08a7, 18) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110620 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110614 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110607 +packetLen(0x08a7, 36) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110531 +packetLen(0x08a7, 19) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110503 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110426 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110228 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110222 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110215 +packetLen(0x08a7, 26) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110208 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110131 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110125 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110118 +packetLen(0x08a7, 12) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110104 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20111213 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111207 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111114 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111108 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111101 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111025 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110928 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110920 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110802 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110726 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110419 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110412 +packetLen(0x08a8, 12) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110329 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110322 +packetLen(0x08a8, 4) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110308 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110228 +packetLen(0x08a8, 36) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110215 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110208 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110104 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20111213 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20111207 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110809 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110802 +packetLen(0x08a9, 36) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110705 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110627 +packetLen(0x08a9, 36) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110620 +packetLen(0x08a9, 19) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110523 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110517 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110419 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110412 +packetLen(0x08a9, 36) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110405 +packetLen(0x08a9, -1) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110329 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110322 +packetLen(0x08a9, -1) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110222 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110215 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110125 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110118 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110104 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20111220 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111213 +packetLen(0x08aa, 7) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111207 +packetLen(0x08aa, 26) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111108 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111101 +packetLen(0x08aa, 7) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111025 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111017 +packetLen(0x08aa, -1) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110928 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110920 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110906 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110823 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110523 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110517 +packetLen(0x08aa, 19) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110511 +packetLen(0x08aa, 10) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110503 +packetLen(0x08aa, 5) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110426 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110419 +packetLen(0x08aa, 19) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110228 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110222 +packetLen(0x08aa, 5) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110208 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110131 +packetLen(0x08aa, -1) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110104 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20111213 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20111207 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20111108 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20111101 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20111025 +packetLen(0x08ab, 36) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110809 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110802 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110718 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110711 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110620 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110614 +packetLen(0x08ab, 36) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110523 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110517 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110511 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110503 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110412 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110405 +packetLen(0x08ab, 10) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110329 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110322 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110228 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110222 +packetLen(0x08ab, 19) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110111 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110104 +packetLen(0x08ab, 26) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20111227 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110809 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110802 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110726 +packetLen(0x08ac, 18) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110511 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110503 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110426 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110308 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110228 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110215 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110208 +packetLen(0x08ac, 4) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110131 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110125 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110104 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20111227 +packetLen(0x08ad, 7) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111220 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111207 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111122 +packetLen(0x08ad, 10) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111114 +packetLen(0x08ad, 4) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111108 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111101 +packetLen(0x08ad, 90) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111025 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111004 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110928 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110920 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110906 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110831 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110809 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110802 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110726 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110718 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110711 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110705 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110620 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110614 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110517 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110426 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110419 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110412 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110405 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110329 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110322 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110308 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110228 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110222 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110215 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110208 +packetLen(0x08ad, 18) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110131 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110125 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110118 +packetLen(0x08ad, 4) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110104 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +#if PACKETVER >= 20110111 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN +#endif + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +#if PACKETVER >= 20110111 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT +#endif + +// Packet: 0x08b4 +#if PACKETVER >= 20110125 +packetLen(0x08b4, 2) // ZC_START_COLLECTION +#endif + +// Packet: 0x08b5 +#if PACKETVER >= 20110125 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION +#endif + +// Packet: 0x08b6 +#if PACKETVER >= 20110125 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION +#endif + +// Packet: 0x08b7 +#if PACKETVER >= 20110222 +// removed +#elif PACKETVER >= 20110215 +packetLen(0x08b7, 10) // HC_SECOND_PASSWD_REQ +#endif + +// Packet: 0x08b8 +#if PACKETVER >= 20110308 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK +#elif PACKETVER >= 20110215 +packetLen(0x08b8, 12) // CH_SECOND_PASSWD_ACK +#endif + +// Packet: 0x08b9 +#if PACKETVER >= 20110222 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN +#endif + +// Packet: 0x08ba +#if PACKETVER >= 20110308 +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08ba, 12) // CH_MAKE_SECOND_PASSWD +#endif + +// Packet: 0x08bb +#if PACKETVER >= 20110308 +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08bb, 4) // HC_MAKE_SECOND_PASSWD +#endif + +// Packet: 0x08bc +#if PACKETVER >= 20110308 +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08bc, 12) // CH_DELETE_SECOND_PASSWD +#endif + +// Packet: 0x08bd +#if PACKETVER >= 20111207 +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08bd, 12) // HC_DELETE_SECOND_PASSWD +#endif + +// Packet: 0x08be +#if PACKETVER >= 20110308 +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD +#elif PACKETVER >= 20110228 +packetLen(0x08be, 18) // CH_EDIT_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08be, 12) // CH_EDIT_SECOND_PASSWD +#endif + +// Packet: 0x08bf +#if PACKETVER >= 20110308 +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08bf, 4) // HC_EDIT_SECOND_PASSWD +#endif + +// Packet: 0x08c0 +#if PACKETVER >= 20110222 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 +#endif + +// Packet: 0x08c1 +#if PACKETVER >= 20110222 +packetLen(0x08c1, 2) // CZ_MACRO_START +#endif + +// Packet: 0x08c2 +#if PACKETVER >= 20110222 +packetLen(0x08c2, 2) // CZ_MACRO_STOP +#endif + +// Packet: 0x08c3 +#if PACKETVER >= 20110308 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD +#elif PACKETVER >= 20110228 +packetLen(0x08c3, 12) // CH_NOT_AVAILABLE_SECOND_PASSWD +#endif + +// Packet: 0x08c4 +#if PACKETVER >= 20110308 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD +#elif PACKETVER >= 20110228 +packetLen(0x08c4, 4) // HC_NOT_AVAILABLE_SECOND_PASSWD +#endif + +// Packet: 0x08c5 +#if PACKETVER >= 20110308 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD +#elif PACKETVER >= 20110228 +packetLen(0x08c5, 12) // CH_AVAILABLE_SECOND_PASSWD +#endif + +// Packet: 0x08c6 +#if PACKETVER >= 20110228 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD +#endif + +// Packet: 0x08c7 +#if PACKETVER >= 20110419 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 +#endif + +// Packet: 0x08c8 +#if PACKETVER >= 20110614 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 +#endif + +// Packet: 0x08c9 +#if PACKETVER >= 20110614 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM +#endif + +// Packet: 0x08ca +#if PACKETVER >= 20110614 +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM +#endif + +// Packet: 0x08cb +#if PACKETVER >= 20110627 +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION +#endif + +// Packet: 0x08cc +#if PACKETVER >= 20110726 +packetLen(0x08cc, 109) // CA_LOGIN5 +#elif PACKETVER >= 20110711 +// removed +#elif PACKETVER >= 20110705 +packetLen(0x08cc, 5) // CA_LOGIN5 +#endif + +// Packet: 0x08cd +#if PACKETVER >= 20110802 +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE +#endif + +// Packet: 0x08ce +#if PACKETVER >= 20110809 +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA +#elif PACKETVER >= 20110802 +packetLen(0x08ce, 10) // ZC_FAILED_GET_ITEM_FROM_ZONEDA +#endif + +// Packet: 0x08cf +#if PACKETVER >= 20110809 +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE +#endif + +// Packet: 0x08d0 +#if PACKETVER >= 20110809 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 +#endif + +// Packet: 0x08d1 +#if PACKETVER >= 20110809 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 +#endif + +// Packet: 0x08d2 +#if PACKETVER >= 20110809 +packetLen(0x08d2, 10) // ZC_FASTMOVE +#endif + +// Packet: 0x08d3 +#if PACKETVER >= 20110816 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE +#endif + +// Packet: 0x08d4 +#if PACKETVER >= 20111101 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT +#elif PACKETVER >= 20110928 +packetLen(0x08d4, 12) // CH_REQ_CHANGE_CHARACTER_SLOT +#elif PACKETVER >= 20110920 +packetLen(0x08d4, 10) // CH_REQ_CHANGE_CHARACTER_SLOT +#elif PACKETVER >= 20110906 +packetLen(0x08d4, 14) // CH_REQ_CHANGE_CHARACTER_SLOT +#endif + +// Packet: 0x08d5 +#if PACKETVER >= 20110906 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT +#endif + +// Packet: 0x08d6 +#if PACKETVER >= 20110928 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG +#endif + +// Packet: 0x08d7 +#if PACKETVER >= 20111004 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY +#endif + +// Packet: 0x08d8 +#if PACKETVER >= 20111004 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY +#endif + +// Packet: 0x08d9 +#if PACKETVER >= 20111004 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY +#endif + +// Packet: 0x08da +#if PACKETVER >= 20111004 +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL +#endif + +// Packet: 0x08db +#if PACKETVER >= 20111004 +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL +#endif + +// Packet: 0x08dc +#if PACKETVER >= 20111004 +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION +#endif + +// Packet: 0x08dd +#if PACKETVER >= 20111004 +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION +#endif + +// Packet: 0x08de +#if PACKETVER >= 20111004 +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION +#endif + +// Packet: 0x08df +#if PACKETVER >= 20111004 +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION +#endif + +// Packet: 0x08e0 +#if PACKETVER >= 20111004 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION +#endif + +// Packet: 0x08e1 +#if PACKETVER >= 20111004 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION +#endif + +// Packet: 0x08e2 +#if PACKETVER >= 20111108 +packetLen(0x08e2, 25) // ZC_NAVIGATION_ACTIVE +#elif PACKETVER >= 20111004 +packetLen(0x08e2, 23) // ZC_NAVIGATION_ACTIVE +#endif + +// Packet: 0x08e3 +#if PACKETVER >= 20111101 +packetLen(0x08e3, 146) // HC_UPDATE_CHARINFO +#elif PACKETVER >= 20111017 +packetLen(0x08e3, 138) // HC_UPDATE_CHARINFO +#endif + +// Packet: 0x08e4 +#if PACKETVER >= 20111025 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO +#endif + +// Packet: 0x08e5 +#if PACKETVER >= 20111025 +packetLen(0x08e5, 41) // CZ_PARTY_RECRUIT_REQ_REGISTER +#endif + +// Packet: 0x08e6 +#if PACKETVER >= 20111025 +packetLen(0x08e6, 4) // ZC_PARTY_RECRUIT_ACK_REGISTER +#endif + +// Packet: 0x08e7 +#if PACKETVER >= 20111025 +packetLen(0x08e7, 10) // CZ_PARTY_RECRUIT_REQ_SEARCH +#endif + +// Packet: 0x08e8 +#if PACKETVER >= 20111025 +packetLen(0x08e8, -1) +#endif + +// Packet: 0x08e9 +#if PACKETVER >= 20111025 +packetLen(0x08e9, 2) // CZ_PARTY_RECRUIT_REQ_DELETE +#endif + +// Packet: 0x08ea +#if PACKETVER >= 20111025 +packetLen(0x08ea, 4) // ZC_PARTY_RECRUIT_ACK_DELETE +#endif + +// Packet: 0x08eb +#if PACKETVER >= 20111025 +packetLen(0x08eb, 39) // CZ_PARTY_RECRUIT_REQ_UPDATE +#endif + +// Packet: 0x08ec +#if PACKETVER >= 20111025 +packetLen(0x08ec, 73) // ZC_PARTY_RECRUIT_NOTIFY_INSERT +#endif + +// Packet: 0x08ed +#if PACKETVER >= 20111025 +packetLen(0x08ed, 43) // ZC_PARTY_RECRUIT_NOTIFY_UPDATE +#endif + +// Packet: 0x08ee +#if PACKETVER >= 20111025 +packetLen(0x08ee, 6) // ZC_PARTY_RECRUIT_NOTIFY_DELETE +#endif + +// Packet: 0x08ef +#if PACKETVER >= 20111101 +packetLen(0x08ef, 6) // CZ_PARTY_RECRUIT_ADD_FILTERLINGLIST +#elif PACKETVER >= 20111025 +packetLen(0x08ef, -1) // CZ_PARTY_RECRUIT_ADD_FILTERLINGLIST +#endif + +// Packet: 0x08f0 +#if PACKETVER >= 20111101 +packetLen(0x08f0, 6) // CZ_PARTY_RECRUIT_SUB_FILTERLINGLIST +#elif PACKETVER >= 20111025 +packetLen(0x08f0, -1) // CZ_PARTY_RECRUIT_SUB_FILTERLINGLIST +#endif + +// Packet: 0x08f1 +#if PACKETVER >= 20111025 +packetLen(0x08f1, 6) // CZ_PARTY_RECRUIT_REQ_VOLUNTEER +#endif + +// Packet: 0x08f2 +#if PACKETVER >= 20111101 +packetLen(0x08f2, 36) // ZC_PARTY_RECRUIT_VOLUNTEER_INFO +#elif PACKETVER >= 20111025 +packetLen(0x08f2, 12) // ZC_PARTY_RECRUIT_VOLUNTEER_INFO +#endif + +// Packet: 0x08f3 +#if PACKETVER >= 20111025 +packetLen(0x08f3, -1) +#endif + +// Packet: 0x08f4 +#if PACKETVER >= 20111025 +packetLen(0x08f4, 6) // CZ_PARTY_RECRUIT_SHOW_EQUIPMENT +#endif + +// Packet: 0x08f5 +#if PACKETVER >= 20111108 +packetLen(0x08f5, -1) // CZ_UNKNOWN_BOOKING_SOMMON_MEMBER_08f5 +#elif PACKETVER >= 20111025 +packetLen(0x08f5, 2) // CZ_UNKNOWN_BOOKING_SOMMON_MEMBER_08f5 +#endif + +// Packet: 0x08f6 +#if PACKETVER >= 20111108 +packetLen(0x08f6, 22) // ZC_PARTY_RECRUIT_RECALL_COST +#elif PACKETVER >= 20111025 +packetLen(0x08f6, 6) // ZC_PARTY_RECRUIT_RECALL_COST +#endif + +// Packet: 0x08f7 +#if PACKETVER >= 20111108 +packetLen(0x08f7, 3) // CZ_PARTY_RECRUIT_ACK_RECALL +#elif PACKETVER >= 20111101 +packetLen(0x08f7, -1) // CZ_PARTY_RECRUIT_ACK_RECALL +#elif PACKETVER >= 20111025 +packetLen(0x08f7, 6) // CZ_PARTY_RECRUIT_ACK_RECALL +#endif + +// Packet: 0x08f8 +#if PACKETVER >= 20111108 +packetLen(0x08f8, 7) // ZC_PARTY_RECRUIT_FAILED_RECALL +#elif PACKETVER >= 20111025 +packetLen(0x08f8, 6) // ZC_PARTY_RECRUIT_FAILED_RECALL +#endif + +// Packet: 0x08f9 +#if PACKETVER >= 20111108 +packetLen(0x08f9, 6) // CZ_PARTY_RECRUIT_REFUSE_VOLUNTEER +#endif + +// Packet: 0x08fa +#if PACKETVER >= 20111108 +packetLen(0x08fa, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER +#endif + +// Packet: 0x08fb +#if PACKETVER >= 20111122 +packetLen(0x08fb, 6) // CZ_PARTY_RECRUIT_CANCEL_VOLUNTEER +#endif + +// Packet: 0x08fc +#if PACKETVER >= 20111101 +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME +#endif + +// Packet: 0x08fd +#if PACKETVER >= 20111101 +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME +#endif + +// Packet: 0x08fe +#if PACKETVER >= 20111101 +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO +#endif + +// Packet: 0x08ff +#if PACKETVER >= 20111101 +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER +#endif + +// Packet: 0x0900 +#if PACKETVER >= 20111122 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL +#endif + +// Packet: 0x0901 +#if PACKETVER >= 20111122 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP +#endif + +// Packet: 0x0902 +#if PACKETVER >= 20111122 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL +#endif + +// Packet: 0x0903 +#if PACKETVER >= 20111122 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP +#endif + +// Packet: 0x0904 +#if PACKETVER >= 20111122 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL +#endif + +// Packet: 0x0905 +#if PACKETVER >= 20111122 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP +#endif + +// Packet: 0x0906 +#if PACKETVER >= 20111122 +packetLen(0x0906, -1) // ZC_MICROSCOPE +#endif + +// Packet: 0x0907 +#if PACKETVER >= 20111122 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB +#endif + +// Packet: 0x0908 +#if PACKETVER >= 20111122 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB +#endif + +// Packet: 0x0909 +#if PACKETVER >= 20111122 +packetLen(0x0909, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER +#endif + +// Packet: 0x090a +#if PACKETVER >= 20111207 +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING +#endif + +// Packet: 0x090b +#if PACKETVER >= 20111207 +packetLen(0x090b, 30) // ZC_PARTY_RECRUIT_ADD_FILTERLINGLIST +#endif + +// Packet: 0x090c +#if PACKETVER >= 20111207 +packetLen(0x090c, 30) // ZC_PARTY_RECRUIT_SUB_FILTERLINGLIST +#endif + +// Packet: 0x090d +#if PACKETVER >= 20111227 +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO +#endif + +// Packet: 0x090e +#if PACKETVER >= 20111227 +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT +#endif + +// Packet: 0x09dc +#if PACKETVER >= 20110809 +// removed +#elif PACKETVER >= 20110802 +packetLen(0x09dc, 2) // ZC_NOTIFY_NEWENTRY10 +#endif + + +#endif /* COMMON_PACKETS2011_LEN_MAIN_H */ diff --git a/src/common/packets/packets2011_len_re.h b/src/common/packets/packets2011_len_re.h new file mode 100644 index 000000000..c01af0123 --- /dev/null +++ b/src/common/packets/packets2011_len_re.h @@ -0,0 +1,4781 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2011_LEN_RE_H +#define COMMON_PACKETS2011_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20111025 +packetLen(0x006d, 146) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20110928 +packetLen(0x006d, 142) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20110111 +packetLen(0x006d, 138) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20110104 +packetLen(0x006d, 134) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20111220 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111213 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111207 +packetLen(0x0202, 8) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111122 +packetLen(0x0202, 18) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111101 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111025 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111017 +packetLen(0x0202, 90) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20111010 +packetLen(0x0202, 8) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110920 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110906 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110823 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110816 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20110104 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20111227 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20111220 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20111213 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20111207 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20111122 +packetLen(0x022d, 7) // CZ_COMMAND_MER +#elif PACKETVER >= 20111114 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20111108 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20111025 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20111017 +packetLen(0x022d, 12) // CZ_COMMAND_MER +#elif PACKETVER >= 20111004 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110920 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20110906 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20110823 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20110816 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20110104 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20111220 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111213 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111207 +packetLen(0x023b, 19) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111114 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111108 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111101 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111025 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111010 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20111004 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110928 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110920 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110906 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110831 +packetLen(0x023b, 10) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110823 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110816 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20110104 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20111227 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111220 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111213 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111207 +packetLen(0x0281, 7) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111122 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111114 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111108 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111101 +packetLen(0x0281, 36) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111025 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20111004 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110928 +packetLen(0x0281, 5) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110920 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110906 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110823 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110816 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20110104 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20111227 +packetLen(0x02c4, 36) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111220 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111213 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111122 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111108 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111101 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111010 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20111004 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110831 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110823 +packetLen(0x02c4, 5) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110816 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20110104 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +#if PACKETVER >= 20110131 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND +#endif + +// Packet: 0x02f4 +#if PACKETVER >= 20110131 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES +#endif + +// Packet: 0x02f5 +#if PACKETVER >= 20110131 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY +#endif + +// Packet: 0x02f6 +#if PACKETVER >= 20110131 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST +#endif + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20111227 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111220 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111213 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111207 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111108 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111101 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111025 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111017 +packetLen(0x035f, 19) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20111010 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110928 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110920 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110906 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110823 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110816 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20110104 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20111227 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111220 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111122 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111108 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111101 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111025 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111017 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20111004 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110928 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110920 +packetLen(0x0360, 19) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110906 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110831 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110823 +packetLen(0x0360, 12) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20110104 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20111220 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111213 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111207 +packetLen(0x0361, 10) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111122 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111114 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111025 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111017 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111010 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20111004 +packetLen(0x0361, 18) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110928 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110831 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110823 +packetLen(0x0361, 18) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20110104 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20111213 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111207 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111122 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111017 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111010 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20111004 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110928 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110920 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110906 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110831 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110823 +packetLen(0x0362, 10) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20110104 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20111227 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111220 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111207 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111122 +packetLen(0x0363, 90) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111114 +packetLen(0x0363, 18) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111101 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111025 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111017 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111010 +packetLen(0x0363, 7) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20111004 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110928 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110920 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110906 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110823 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110816 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20110104 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20111227 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111220 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111207 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111114 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111108 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111101 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111017 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111010 +packetLen(0x0364, 19) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20111004 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110928 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110920 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110906 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110823 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20110104 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20111227 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111220 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111213 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111207 +packetLen(0x0365, 12) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111122 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111114 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111108 +packetLen(0x0365, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111010 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20111004 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110928 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110920 +packetLen(0x0365, 90) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110906 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110831 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110823 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110816 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20110104 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20111227 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111220 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111213 +packetLen(0x0366, 4) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111207 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111122 +packetLen(0x0366, 12) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111108 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111101 +packetLen(0x0366, 5) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111025 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111017 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20111010 +packetLen(0x0366, 5) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110928 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110920 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110906 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110831 +packetLen(0x0366, 5) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110823 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110816 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20110104 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20111220 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111213 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111207 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111122 +packetLen(0x0367, 4) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111101 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111025 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111017 +packetLen(0x0367, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111010 +packetLen(0x0367, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20111004 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110906 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110831 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110816 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20110104 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20111227 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20111220 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20111122 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20111108 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20111101 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20111025 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20111010 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110906 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20110831 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20110104 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20111227 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111220 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111207 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111122 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111114 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111108 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111101 +packetLen(0x0369, 10) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111025 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111010 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20111004 +packetLen(0x0369, 8) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110928 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110920 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110906 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110831 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110823 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110816 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20110104 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20111227 +packetLen(0x0436, 10) // CZ_ENTER2 +#elif PACKETVER >= 20111213 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20111122 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20111108 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20111101 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20111025 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20111017 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20111010 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20111004 +packetLen(0x0436, 19) // CZ_ENTER2 +#elif PACKETVER >= 20110928 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110920 +packetLen(0x0436, 12) // CZ_ENTER2 +#elif PACKETVER >= 20110906 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20110831 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20110823 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20110816 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20110104 +packetLen(0x0436, 19) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20111220 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111122 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111108 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111101 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111025 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20111010 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110906 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110823 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110816 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20110104 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20111227 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111220 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111122 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111114 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111108 +packetLen(0x0438, 8) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111025 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111017 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20111010 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110928 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110920 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110906 +packetLen(0x0438, 26) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110831 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110823 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20110104 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20111227 +packetLen(0x07e4, 4) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20111220 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20111004 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110928 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110920 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110906 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110831 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110823 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110816 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20110104 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20111227 +packetLen(0x07ec, 90) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111220 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111213 +packetLen(0x07ec, 10) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111207 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111122 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111114 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111108 +packetLen(0x07ec, 18) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111101 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111025 +packetLen(0x07ec, 10) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111017 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111010 +packetLen(0x07ec, 26) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20111004 +packetLen(0x07ec, 7) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110928 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110920 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110906 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110831 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110823 +packetLen(0x07ec, 36) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20110104 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x07ff +#if PACKETVER >= 20110719 +// removed +#elif PACKETVER >= 20110104 +packetLen(0x07ff, -1) // ZC_DEFINE_CHECK +#endif + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20111220 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111122 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111114 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111025 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111017 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111010 +packetLen(0x0802, 12) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20111004 +packetLen(0x0802, 8) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110928 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110920 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110906 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110831 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110823 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110816 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20110104 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20111227 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20111220 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20111122 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20111101 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20111010 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110928 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110920 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110906 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110823 +packetLen(0x0811, 10) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20110104 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20111227 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111220 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111114 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111108 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111101 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111025 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111010 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20111004 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110928 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110920 +packetLen(0x0815, 4) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110831 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110823 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110816 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20110104 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20111220 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111213 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111108 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111101 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111025 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20111017 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110906 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110831 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110816 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20110104 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20111227 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111220 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111213 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111207 +packetLen(0x0819, 18) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111122 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111114 +packetLen(0x0819, 5) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111108 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111101 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111025 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111017 +packetLen(0x0819, 8) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20111010 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110928 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110920 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110906 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110831 +packetLen(0x0819, 12) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110823 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20110104 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20111213 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111207 +packetLen(0x0835, 10) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111122 +packetLen(0x0835, 19) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111108 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111101 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111025 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111010 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20111004 +packetLen(0x0835, 26) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110906 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110831 +packetLen(0x0835, 4) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110823 +packetLen(0x0835, 8) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110816 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20110104 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20111227 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111220 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111213 +packetLen(0x0838, 19) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111122 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111108 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111101 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111025 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20111010 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110928 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110920 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110906 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110823 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110816 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20110104 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20111227 +packetLen(0x083c, 8) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111220 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111122 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111114 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111108 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111101 +packetLen(0x083c, 19) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111017 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111010 +packetLen(0x083c, -1) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20111004 +packetLen(0x083c, 26) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110928 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110920 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110906 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110831 +packetLen(0x083c, 26) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110823 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110816 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20110104 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 + +// Packet: 0x085b +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 + +// Packet: 0x085c +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 + +// Packet: 0x085d +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 + +// Packet: 0x085e +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 + +// Packet: 0x085f +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 + +// Packet: 0x0860 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 + +// Packet: 0x0861 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 + +// Packet: 0x0862 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 + +// Packet: 0x0863 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 + +// Packet: 0x0864 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 + +// Packet: 0x0865 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 + +// Packet: 0x0866 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 + +// Packet: 0x0867 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 + +// Packet: 0x0868 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 + +// Packet: 0x0869 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 + +// Packet: 0x086a +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 + +// Packet: 0x086b +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 + +// Packet: 0x086c +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 + +// Packet: 0x086d +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 + +// Packet: 0x086e +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 + +// Packet: 0x086f +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 + +// Packet: 0x0870 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 + +// Packet: 0x0871 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 + +// Packet: 0x0872 +packetLen(0x0872, 2) + +// Packet: 0x0873 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 + +// Packet: 0x0874 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 + +// Packet: 0x0875 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 + +// Packet: 0x0876 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 + +// Packet: 0x0877 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 + +// Packet: 0x0878 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 + +// Packet: 0x0879 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 + +// Packet: 0x087a +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 + +// Packet: 0x087b +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 + +// Packet: 0x087c +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 + +// Packet: 0x087d +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 + +// Packet: 0x087e +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 + +// Packet: 0x087f +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 + +// Packet: 0x0880 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 + +// Packet: 0x0881 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 + +// Packet: 0x0882 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 + +// Packet: 0x0883 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 + +// Packet: 0x0884 +#if PACKETVER >= 20111114 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20111108 +packetLen(0x0884, 10) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20111025 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20111017 +packetLen(0x0884, 7) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20111010 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110928 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110920 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110831 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110823 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20110104 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20111227 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111108 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111101 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111025 +packetLen(0x0885, 10) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111017 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111010 +packetLen(0x0885, 10) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20111004 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110928 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110920 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110906 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110831 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20110104 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20111227 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20111025 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20111017 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20111010 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110920 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110906 +packetLen(0x0886, 36) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20110104 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20111220 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111213 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111207 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111122 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111114 +packetLen(0x0887, 7) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111101 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111025 +packetLen(0x0887, 26) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111010 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20111004 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110906 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110831 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20110104 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20111227 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111122 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111114 +packetLen(0x0888, -1) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111108 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111101 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20111025 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110831 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110823 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20110104 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20111227 +packetLen(0x0889, 18) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20111220 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20111213 +packetLen(0x0889, 26) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20111010 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20111004 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20110104 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20111108 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20111101 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20111017 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20111010 +packetLen(0x088a, 18) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110906 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110831 +packetLen(0x088a, 5) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20110104 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20111227 +packetLen(0x088b, 12) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111220 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111213 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111207 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111114 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20111108 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20110104 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20111213 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20111122 +packetLen(0x088c, 6) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20111017 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20111010 +packetLen(0x088c, 36) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20111004 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110928 +packetLen(0x088c, 36) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110920 +packetLen(0x088c, 6) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110831 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110823 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20110104 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20111213 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111207 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111108 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111101 +packetLen(0x088d, 26) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111017 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20111010 +packetLen(0x088d, 10) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110928 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110920 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20110104 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20111025 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20111017 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110928 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110920 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20110104 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20111220 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111213 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111207 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111025 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111017 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20111010 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110906 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110831 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110823 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110816 +packetLen(0x088f, 36) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20110104 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20111220 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111213 +packetLen(0x0890, 12) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111207 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111108 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111101 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111025 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111017 +packetLen(0x0890, 26) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20111010 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110928 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110920 +packetLen(0x0890, 26) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110831 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110823 +packetLen(0x0890, 90) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20110104 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20111227 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111220 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111213 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111207 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111122 +packetLen(0x0891, 26) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111025 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111010 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20111004 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110928 +packetLen(0x0891, 4) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110920 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20110104 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20111227 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111220 +packetLen(0x0892, 26) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111207 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111122 +packetLen(0x0892, 5) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111114 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20111108 +packetLen(0x0892, 5) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20110104 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20111227 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111220 +packetLen(0x0893, 4) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111213 +packetLen(0x0893, 10) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111122 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111108 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111101 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20111025 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110920 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110906 +packetLen(0x0893, 5) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110831 +packetLen(0x0893, 90) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110823 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20110104 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20111213 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111207 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111114 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111108 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111101 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111025 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111017 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20111010 +packetLen(0x0894, 4) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110906 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110831 +packetLen(0x0894, 18) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20110104 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20111207 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20111122 +packetLen(0x0895, 26) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20111114 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20111108 +packetLen(0x0895, 19) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20111101 +packetLen(0x0895, 4) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110906 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110831 +packetLen(0x0895, 36) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20110104 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20111220 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111213 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111207 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111122 +packetLen(0x0896, 5) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111114 +packetLen(0x0896, 8) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20111004 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110928 +packetLen(0x0896, 26) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110920 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20110104 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20111227 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111220 +packetLen(0x0897, 36) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111213 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111207 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111108 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111101 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111025 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111017 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20111010 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20110104 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20111220 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111213 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111207 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111122 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111108 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111101 +packetLen(0x0898, 5) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111025 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111017 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20111010 +packetLen(0x0898, 8) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110831 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110823 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20110104 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20111207 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20111122 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20111114 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20111108 +packetLen(0x0899, -1) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110928 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110920 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110831 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110823 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20110104 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20111220 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111213 +packetLen(0x089a, 90) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111122 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111114 +packetLen(0x089a, -1) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111010 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20111004 +packetLen(0x089a, 4) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110928 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110920 +packetLen(0x089a, 10) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20110104 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20111227 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111213 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111207 +packetLen(0x089b, 36) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111101 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111025 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111017 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111010 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20111004 +packetLen(0x089b, 36) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110928 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110920 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110831 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110823 +packetLen(0x089b, 19) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20110104 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20111227 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111220 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111213 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111122 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111114 +packetLen(0x089c, 19) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111025 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20111010 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110928 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110920 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110831 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110823 +packetLen(0x089c, -1) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20110104 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20111213 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20111207 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20111122 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20111114 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110928 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110920 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110906 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110831 +packetLen(0x089d, 7) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20110104 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20111207 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111122 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111108 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111101 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111025 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20111017 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20110104 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20111025 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20111017 +packetLen(0x089f, 10) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20110104 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20110928 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110920 +packetLen(0x08a0, 10) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110906 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110831 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20110104 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20111207 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111122 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111114 +packetLen(0x08a1, 8) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111108 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111101 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111025 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20111017 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110831 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110823 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20110104 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20111227 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111207 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111122 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111114 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111108 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111101 +packetLen(0x08a2, 12) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111025 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111017 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111010 +packetLen(0x08a2, 90) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20111004 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110928 +packetLen(0x08a2, 19) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20110104 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20110831 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110823 +packetLen(0x08a3, 7) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20110104 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20111227 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111220 +packetLen(0x08a4, 19) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111207 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111122 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111017 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111010 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20111004 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110928 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110920 +packetLen(0x08a4, 7) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110906 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110831 +packetLen(0x08a4, 26) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110823 +packetLen(0x08a4, 4) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20110104 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20111220 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20111213 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20111207 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20111108 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20111101 +packetLen(0x08a5, 18) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110906 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110831 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20110104 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20111227 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111220 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111213 +packetLen(0x08a6, -1) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111101 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111025 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111017 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20111010 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110928 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110920 +packetLen(0x08a6, 26) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110906 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110831 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20110104 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20111227 +packetLen(0x08a7, 19) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111220 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111213 +packetLen(0x08a7, 36) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111207 +packetLen(0x08a7, 90) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111010 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20111004 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110906 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110831 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20110104 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20111213 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111207 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111114 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111108 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111101 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20111025 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110928 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110920 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20110104 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20111213 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20111207 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20110104 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20111220 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111213 +packetLen(0x08aa, 7) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111207 +packetLen(0x08aa, 26) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111108 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111101 +packetLen(0x08aa, 7) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111025 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20111017 +packetLen(0x08aa, -1) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110928 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110920 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110906 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110823 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20110104 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20111213 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20111207 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20111108 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20111101 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20111025 +packetLen(0x08ab, 36) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20110104 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20111227 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20110104 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20111227 +packetLen(0x08ad, 7) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111220 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111207 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111122 +packetLen(0x08ad, 10) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111114 +packetLen(0x08ad, 4) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111108 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111101 +packetLen(0x08ad, 90) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111025 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20111004 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110928 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110920 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110906 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110831 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110816 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20110104 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +#if PACKETVER >= 20110111 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN +#endif + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +#if PACKETVER >= 20110111 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT +#endif + +// Packet: 0x08b4 +#if PACKETVER >= 20110125 +packetLen(0x08b4, 2) // ZC_START_COLLECTION +#endif + +// Packet: 0x08b5 +#if PACKETVER >= 20110125 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION +#endif + +// Packet: 0x08b6 +#if PACKETVER >= 20110125 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION +#endif + +// Packet: 0x08b7 +#if PACKETVER >= 20110222 +// removed +#elif PACKETVER >= 20110215 +packetLen(0x08b7, 10) // HC_SECOND_PASSWD_REQ +#endif + +// Packet: 0x08b8 +#if PACKETVER >= 20110308 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK +#elif PACKETVER >= 20110215 +packetLen(0x08b8, 12) // CH_SECOND_PASSWD_ACK +#endif + +// Packet: 0x08b9 +#if PACKETVER >= 20110222 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN +#endif + +// Packet: 0x08ba +#if PACKETVER >= 20110308 +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08ba, 12) // CH_MAKE_SECOND_PASSWD +#endif + +// Packet: 0x08bb +#if PACKETVER >= 20110308 +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08bb, 4) // HC_MAKE_SECOND_PASSWD +#endif + +// Packet: 0x08bc +#if PACKETVER >= 20110308 +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08bc, 12) // CH_DELETE_SECOND_PASSWD +#endif + +// Packet: 0x08bd +#if PACKETVER >= 20111207 +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08bd, 12) // HC_DELETE_SECOND_PASSWD +#endif + +// Packet: 0x08be +#if PACKETVER >= 20110308 +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD +#elif PACKETVER >= 20110228 +packetLen(0x08be, 18) // CH_EDIT_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08be, 12) // CH_EDIT_SECOND_PASSWD +#endif + +// Packet: 0x08bf +#if PACKETVER >= 20110308 +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD +#elif PACKETVER >= 20110222 +packetLen(0x08bf, 4) // HC_EDIT_SECOND_PASSWD +#endif + +// Packet: 0x08c0 +#if PACKETVER >= 20110222 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 +#endif + +// Packet: 0x08c1 +#if PACKETVER >= 20110222 +packetLen(0x08c1, 2) // CZ_MACRO_START +#endif + +// Packet: 0x08c2 +#if PACKETVER >= 20110222 +packetLen(0x08c2, 2) // CZ_MACRO_STOP +#endif + +// Packet: 0x08c3 +#if PACKETVER >= 20110308 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD +#elif PACKETVER >= 20110228 +packetLen(0x08c3, 12) // CH_NOT_AVAILABLE_SECOND_PASSWD +#endif + +// Packet: 0x08c4 +#if PACKETVER >= 20110308 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD +#elif PACKETVER >= 20110228 +packetLen(0x08c4, 4) // HC_NOT_AVAILABLE_SECOND_PASSWD +#endif + +// Packet: 0x08c5 +#if PACKETVER >= 20110308 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD +#elif PACKETVER >= 20110228 +packetLen(0x08c5, 12) // CH_AVAILABLE_SECOND_PASSWD +#endif + +// Packet: 0x08c6 +#if PACKETVER >= 20110228 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD +#endif + +// Packet: 0x08c7 +#if PACKETVER >= 20110419 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 +#endif + +// Packet: 0x08c8 +#if PACKETVER >= 20110614 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 +#endif + +// Packet: 0x08c9 +#if PACKETVER >= 20110614 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM +#endif + +// Packet: 0x08ca +#if PACKETVER >= 20110614 +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM +#endif + +// Packet: 0x08cb +#if PACKETVER >= 20110628 +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION +#endif + +// Packet: 0x08cc +#if PACKETVER >= 20110726 +packetLen(0x08cc, 109) // CA_LOGIN5 +#elif PACKETVER >= 20110713 +// removed +#elif PACKETVER >= 20110706 +packetLen(0x08cc, 5) // CA_LOGIN5 +#endif + +// Packet: 0x08cd +#if PACKETVER >= 20110803 +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE +#endif + +// Packet: 0x08ce +#if PACKETVER >= 20110810 +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA +#elif PACKETVER >= 20110803 +packetLen(0x08ce, 10) // ZC_FAILED_GET_ITEM_FROM_ZONEDA +#endif + +// Packet: 0x08cf +#if PACKETVER >= 20110810 +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE +#endif + +// Packet: 0x08d0 +#if PACKETVER >= 20110810 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 +#endif + +// Packet: 0x08d1 +#if PACKETVER >= 20110810 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 +#endif + +// Packet: 0x08d2 +#if PACKETVER >= 20110810 +packetLen(0x08d2, 10) // ZC_FASTMOVE +#endif + +// Packet: 0x08d3 +#if PACKETVER >= 20110816 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE +#endif + +// Packet: 0x08d4 +#if PACKETVER >= 20111101 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT +#elif PACKETVER >= 20110928 +packetLen(0x08d4, 12) // CH_REQ_CHANGE_CHARACTER_SLOT +#elif PACKETVER >= 20110920 +packetLen(0x08d4, 10) // CH_REQ_CHANGE_CHARACTER_SLOT +#elif PACKETVER >= 20110906 +packetLen(0x08d4, 14) // CH_REQ_CHANGE_CHARACTER_SLOT +#endif + +// Packet: 0x08d5 +#if PACKETVER >= 20110906 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT +#endif + +// Packet: 0x08d6 +#if PACKETVER >= 20110928 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG +#endif + +// Packet: 0x08d7 +#if PACKETVER >= 20111004 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY +#endif + +// Packet: 0x08d8 +#if PACKETVER >= 20111004 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY +#endif + +// Packet: 0x08d9 +#if PACKETVER >= 20111004 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY +#endif + +// Packet: 0x08da +#if PACKETVER >= 20111004 +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL +#endif + +// Packet: 0x08db +#if PACKETVER >= 20111004 +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL +#endif + +// Packet: 0x08dc +#if PACKETVER >= 20111004 +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION +#endif + +// Packet: 0x08dd +#if PACKETVER >= 20111004 +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION +#endif + +// Packet: 0x08de +#if PACKETVER >= 20111004 +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION +#endif + +// Packet: 0x08df +#if PACKETVER >= 20111004 +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION +#endif + +// Packet: 0x08e0 +#if PACKETVER >= 20111004 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION +#endif + +// Packet: 0x08e1 +#if PACKETVER >= 20111004 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION +#endif + +// Packet: 0x08e2 +#if PACKETVER >= 20111108 +packetLen(0x08e2, 25) // ZC_NAVIGATION_ACTIVE +#elif PACKETVER >= 20111004 +packetLen(0x08e2, 23) // ZC_NAVIGATION_ACTIVE +#endif + +// Packet: 0x08e3 +#if PACKETVER >= 20111025 +packetLen(0x08e3, 146) // HC_UPDATE_CHARINFO +#elif PACKETVER >= 20111017 +packetLen(0x08e3, 142) // HC_UPDATE_CHARINFO +#endif + +// Packet: 0x08e4 +#if PACKETVER >= 20111025 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO +#endif + +// Packet: 0x08e5 +#if PACKETVER >= 20111025 +packetLen(0x08e5, 41) // CZ_PARTY_RECRUIT_REQ_REGISTER +#endif + +// Packet: 0x08e6 +#if PACKETVER >= 20111025 +packetLen(0x08e6, 4) // ZC_PARTY_RECRUIT_ACK_REGISTER +#endif + +// Packet: 0x08e7 +#if PACKETVER >= 20111025 +packetLen(0x08e7, 10) // CZ_PARTY_RECRUIT_REQ_SEARCH +#endif + +// Packet: 0x08e8 +#if PACKETVER >= 20111025 +packetLen(0x08e8, -1) +#endif + +// Packet: 0x08e9 +#if PACKETVER >= 20111025 +packetLen(0x08e9, 2) // CZ_PARTY_RECRUIT_REQ_DELETE +#endif + +// Packet: 0x08ea +#if PACKETVER >= 20111025 +packetLen(0x08ea, 4) // ZC_PARTY_RECRUIT_ACK_DELETE +#endif + +// Packet: 0x08eb +#if PACKETVER >= 20111025 +packetLen(0x08eb, 39) // CZ_PARTY_RECRUIT_REQ_UPDATE +#endif + +// Packet: 0x08ec +#if PACKETVER >= 20111025 +packetLen(0x08ec, 73) // ZC_PARTY_RECRUIT_NOTIFY_INSERT +#endif + +// Packet: 0x08ed +#if PACKETVER >= 20111025 +packetLen(0x08ed, 43) // ZC_PARTY_RECRUIT_NOTIFY_UPDATE +#endif + +// Packet: 0x08ee +#if PACKETVER >= 20111025 +packetLen(0x08ee, 6) // ZC_PARTY_RECRUIT_NOTIFY_DELETE +#endif + +// Packet: 0x08ef +#if PACKETVER >= 20111101 +packetLen(0x08ef, 6) // CZ_PARTY_RECRUIT_ADD_FILTERLINGLIST +#elif PACKETVER >= 20111025 +packetLen(0x08ef, -1) // CZ_PARTY_RECRUIT_ADD_FILTERLINGLIST +#endif + +// Packet: 0x08f0 +#if PACKETVER >= 20111101 +packetLen(0x08f0, 6) // CZ_PARTY_RECRUIT_SUB_FILTERLINGLIST +#elif PACKETVER >= 20111025 +packetLen(0x08f0, -1) // CZ_PARTY_RECRUIT_SUB_FILTERLINGLIST +#endif + +// Packet: 0x08f1 +#if PACKETVER >= 20111025 +packetLen(0x08f1, 6) // CZ_PARTY_RECRUIT_REQ_VOLUNTEER +#endif + +// Packet: 0x08f2 +#if PACKETVER >= 20111101 +packetLen(0x08f2, 36) // ZC_PARTY_RECRUIT_VOLUNTEER_INFO +#elif PACKETVER >= 20111025 +packetLen(0x08f2, 12) // ZC_PARTY_RECRUIT_VOLUNTEER_INFO +#endif + +// Packet: 0x08f3 +#if PACKETVER >= 20111025 +packetLen(0x08f3, -1) +#endif + +// Packet: 0x08f4 +#if PACKETVER >= 20111025 +packetLen(0x08f4, 6) // CZ_PARTY_RECRUIT_SHOW_EQUIPMENT +#endif + +// Packet: 0x08f5 +#if PACKETVER >= 20111108 +packetLen(0x08f5, -1) // CZ_UNKNOWN_BOOKING_SOMMON_MEMBER_08f5 +#elif PACKETVER >= 20111025 +packetLen(0x08f5, 2) // CZ_UNKNOWN_BOOKING_SOMMON_MEMBER_08f5 +#endif + +// Packet: 0x08f6 +#if PACKETVER >= 20111108 +packetLen(0x08f6, 22) // ZC_PARTY_RECRUIT_RECALL_COST +#elif PACKETVER >= 20111025 +packetLen(0x08f6, 6) // ZC_PARTY_RECRUIT_RECALL_COST +#endif + +// Packet: 0x08f7 +#if PACKETVER >= 20111108 +packetLen(0x08f7, 3) // CZ_PARTY_RECRUIT_ACK_RECALL +#elif PACKETVER >= 20111101 +packetLen(0x08f7, -1) // CZ_PARTY_RECRUIT_ACK_RECALL +#elif PACKETVER >= 20111025 +packetLen(0x08f7, 6) // CZ_PARTY_RECRUIT_ACK_RECALL +#endif + +// Packet: 0x08f8 +#if PACKETVER >= 20111108 +packetLen(0x08f8, 7) // ZC_PARTY_RECRUIT_FAILED_RECALL +#elif PACKETVER >= 20111025 +packetLen(0x08f8, 6) // ZC_PARTY_RECRUIT_FAILED_RECALL +#endif + +// Packet: 0x08f9 +#if PACKETVER >= 20111108 +packetLen(0x08f9, 6) // CZ_PARTY_RECRUIT_REFUSE_VOLUNTEER +#endif + +// Packet: 0x08fa +#if PACKETVER >= 20111108 +packetLen(0x08fa, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER +#endif + +// Packet: 0x08fb +#if PACKETVER >= 20111122 +packetLen(0x08fb, 6) // CZ_PARTY_RECRUIT_CANCEL_VOLUNTEER +#endif + +// Packet: 0x08fc +#if PACKETVER >= 20111101 +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME +#endif + +// Packet: 0x08fd +#if PACKETVER >= 20111101 +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME +#endif + +// Packet: 0x08fe +#if PACKETVER >= 20111101 +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO +#endif + +// Packet: 0x08ff +#if PACKETVER >= 20111101 +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER +#endif + +// Packet: 0x0900 +#if PACKETVER >= 20111122 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL +#endif + +// Packet: 0x0901 +#if PACKETVER >= 20111122 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP +#endif + +// Packet: 0x0902 +#if PACKETVER >= 20111122 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL +#endif + +// Packet: 0x0903 +#if PACKETVER >= 20111122 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP +#endif + +// Packet: 0x0904 +#if PACKETVER >= 20111122 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL +#endif + +// Packet: 0x0905 +#if PACKETVER >= 20111122 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP +#endif + +// Packet: 0x0906 +#if PACKETVER >= 20111122 +packetLen(0x0906, -1) // ZC_MICROSCOPE +#endif + +// Packet: 0x0907 +#if PACKETVER >= 20111122 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB +#endif + +// Packet: 0x0908 +#if PACKETVER >= 20111122 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB +#endif + +// Packet: 0x0909 +#if PACKETVER >= 20111122 +packetLen(0x0909, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER +#endif + +// Packet: 0x090a +#if PACKETVER >= 20111207 +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING +#endif + +// Packet: 0x090b +#if PACKETVER >= 20111207 +packetLen(0x090b, 30) // ZC_PARTY_RECRUIT_ADD_FILTERLINGLIST +#endif + +// Packet: 0x090c +#if PACKETVER >= 20111207 +packetLen(0x090c, 30) // ZC_PARTY_RECRUIT_SUB_FILTERLINGLIST +#endif + +// Packet: 0x090d +#if PACKETVER >= 20111227 +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO +#endif + +// Packet: 0x090e +#if PACKETVER >= 20111227 +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT +#endif + +// Packet: 0x09dc +#if PACKETVER >= 20110810 +// removed +#elif PACKETVER >= 20110803 +packetLen(0x09dc, 2) // ZC_NOTIFY_NEWENTRY10 +#endif + + +#endif /* COMMON_PACKETS2011_LEN_RE_H */ diff --git a/src/common/packets/packets2012_len_main.h b/src/common/packets/packets2012_len_main.h new file mode 100644 index 000000000..248eb77ec --- /dev/null +++ b/src/common/packets/packets2012_len_main.h @@ -0,0 +1,8486 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2012_LEN_MAIN_H +#define COMMON_PACKETS2012_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 146) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20121227 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20121128 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20121121 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20121017 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20121010 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120925 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120919 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120814 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120808 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120724 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120716 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120710 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120626 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120612 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120515 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120508 +packetLen(0x0202, 90) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120503 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120424 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120417 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120214 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120131 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120120 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120117 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120110 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120103 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20121107 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20121031 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20120925 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120919 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120911 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120905 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20120830 +packetLen(0x022d, 12) // CZ_COMMAND_MER +#elif PACKETVER >= 20120724 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120716 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120626 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120612 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120508 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120503 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120424 +packetLen(0x022d, 12) // CZ_COMMAND_MER +#elif PACKETVER >= 20120417 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120410 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120404 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120228 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120221 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20120214 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20120207 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120131 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20120110 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120103 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20121024 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20121017 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120925 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120919 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120724 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120716 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120626 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120612 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120529 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120522 +packetLen(0x023b, -1) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120515 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120508 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120503 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120424 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120417 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120214 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120207 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120120 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120117 +packetLen(0x023b, 4) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120110 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120103 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20121107 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20121031 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120925 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120919 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120822 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120814 +packetLen(0x0281, 5) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120808 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120724 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120716 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120626 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120612 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120604 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120529 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120508 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120503 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120424 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120417 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120404 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120328 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120320 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120214 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120207 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120117 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120110 +packetLen(0x0281, 36) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120103 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20121227 +packetLen(0x02c4, 19) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120716 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120710 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120515 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120508 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120410 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120404 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120314 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120307 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120131 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120120 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120103 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20121227 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121218 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121212 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121205 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121107 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121031 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121024 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121017 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120925 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120919 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120905 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120830 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120814 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120808 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120801 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120724 +packetLen(0x035f, 8) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120716 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120626 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120612 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120604 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120529 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120515 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120503 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120424 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120417 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120410 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120404 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120328 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120314 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120228 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120221 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120214 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120131 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120117 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120103 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20121227 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121218 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121212 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121205 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121114 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121031 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121024 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121017 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120925 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120919 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120905 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120830 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120814 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120808 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120801 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120724 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120716 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120626 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120612 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120604 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120529 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120515 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120503 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120424 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120410 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120328 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120307 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120228 +packetLen(0x0360, 90) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120221 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120214 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120131 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120120 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120117 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120103 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20121227 +packetLen(0x0361, 36) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20121212 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20121205 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20121114 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20121107 +packetLen(0x0361, 36) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120925 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120919 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120822 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120814 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120724 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120716 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120626 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120612 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120604 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120529 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120522 +packetLen(0x0361, 10) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120508 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120503 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120424 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120417 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120214 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120207 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120131 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120120 +packetLen(0x0361, 19) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120117 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120110 +packetLen(0x0361, 12) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120103 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20121227 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121218 +packetLen(0x0362, 10) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121212 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121205 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121128 +packetLen(0x0362, 19) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121107 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121031 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120925 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120919 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120814 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120808 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120724 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120716 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120710 +packetLen(0x0362, 18) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120626 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120612 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120604 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120529 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120508 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120503 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120424 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120417 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120410 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120404 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120328 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120320 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120214 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120207 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120131 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120120 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120117 +packetLen(0x0362, 26) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120103 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20121227 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121218 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121205 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121128 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121107 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121031 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120925 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120919 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120814 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120808 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120724 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120716 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120710 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120702 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120612 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120604 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120529 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120515 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120508 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120503 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120424 +packetLen(0x0363, 18) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120417 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120328 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120320 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120228 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120221 +packetLen(0x0363, 18) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120214 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120207 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120131 +packetLen(0x0363, 12) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120120 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120117 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120103 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20121121 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20121114 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20121107 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20121031 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120925 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120919 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120814 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120808 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120801 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120724 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120716 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120710 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120702 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120626 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120612 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120604 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120529 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120522 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120515 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120508 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120503 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120424 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120417 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120410 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120404 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120328 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120320 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120314 +packetLen(0x0364, 19) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120214 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120207 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120120 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120117 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120103 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20121121 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121114 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121107 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121031 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121024 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121017 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120925 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120919 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120911 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120905 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120830 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120822 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120814 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120808 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120724 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120716 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120710 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120702 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120626 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120612 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120604 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120529 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120508 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120503 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120424 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120417 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120328 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120320 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120214 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120207 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120131 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120120 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120117 +packetLen(0x0365, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120103 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20121227 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121218 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121107 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121031 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121024 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121017 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120925 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120919 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120905 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120830 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120814 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120808 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120724 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120716 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120702 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120626 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120612 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120604 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120529 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120522 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120515 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120508 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120503 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120424 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120410 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120404 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120328 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120307 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120228 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120221 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120214 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120207 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120120 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120117 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120103 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20120716 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120710 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120314 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120307 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120207 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120131 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120120 +packetLen(0x0367, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120117 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120110 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120103 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20121227 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20121218 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20121212 +packetLen(0x0368, 26) // CZ_REQNAME2 +#elif PACKETVER >= 20121107 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20121031 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20121024 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20121017 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120925 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120919 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120905 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120830 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120814 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120808 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120724 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120716 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120626 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120612 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120604 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120529 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120515 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120417 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120328 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120307 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120228 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120221 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120214 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120207 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120131 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120120 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120117 +packetLen(0x0368, 7) // CZ_REQNAME2 +#elif PACKETVER >= 20120103 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20121227 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121218 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121212 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121107 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121031 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121024 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121017 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120925 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120919 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120905 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120830 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120814 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120808 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120724 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120716 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120626 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120612 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120604 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120529 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120522 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120515 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120503 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120424 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120404 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120328 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120320 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120314 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120307 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120228 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120221 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120214 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120131 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120117 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120103 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20121031 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20121024 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20120925 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120919 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120905 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120830 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20120814 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120808 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120724 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120716 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120710 +packetLen(0x0436, 7) // CZ_ENTER2 +#elif PACKETVER >= 20120626 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120612 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120604 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120529 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120508 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120503 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120424 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120417 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120328 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120320 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120214 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120207 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120131 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120120 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20120117 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120103 +packetLen(0x0436, 4) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20121227 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121218 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121128 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121114 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121107 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121031 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121024 +packetLen(0x0437, 10) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121017 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120925 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120919 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120905 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120830 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120822 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120814 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120808 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120724 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120716 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120626 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120612 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120604 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120529 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120515 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120503 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120424 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120404 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120328 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120307 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120228 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120221 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120214 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120131 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120120 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120117 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120103 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20121227 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121218 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121107 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121031 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121024 +packetLen(0x0438, 12) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121017 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120925 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120919 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120911 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120822 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120814 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120808 +packetLen(0x0438, 90) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120801 +packetLen(0x0438, 18) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120724 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120716 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120626 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120612 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120604 +packetLen(0x0438, 19) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120529 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120515 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120503 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120424 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120404 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120328 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120307 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120228 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120221 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120214 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120131 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120117 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120103 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20121107 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20121031 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20121010 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120925 +packetLen(0x07e4, 4) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120919 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120814 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120808 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120724 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120710 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120626 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120612 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120604 +packetLen(0x07e4, 10) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120529 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120508 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120503 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120424 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120417 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120410 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120404 +packetLen(0x07e4, 90) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120328 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120320 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120214 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120207 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120117 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120110 +packetLen(0x07e4, 19) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120103 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20121205 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20121128 +packetLen(0x07ec, 26) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20121107 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20121031 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120925 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120919 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120822 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120814 +packetLen(0x07ec, 12) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120808 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120724 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120716 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120626 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120612 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120604 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120529 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120508 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120503 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120424 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120417 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120328 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120320 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120307 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120228 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120214 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120207 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120131 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120120 +packetLen(0x07ec, 26) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120117 +packetLen(0x07ec, 36) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120103 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20121205 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20121128 +packetLen(0x0802, 36) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20121107 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20121031 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120925 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120919 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120905 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120830 +packetLen(0x0802, 36) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120814 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120808 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120724 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120716 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120710 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120702 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120626 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120612 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120604 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120529 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120508 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120503 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120424 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120417 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120328 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120320 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120214 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120207 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120131 +packetLen(0x0802, 90) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120120 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120103 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20121227 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121218 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121107 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121031 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121024 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121017 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120925 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120919 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120905 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120830 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120814 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120808 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120724 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120716 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120710 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120626 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120612 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120604 +packetLen(0x0811, 12) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120522 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120515 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120503 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120424 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120404 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120328 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120307 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120228 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120221 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120214 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120207 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120131 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120120 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120117 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120103 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20121227 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121218 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121212 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121205 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121121 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121114 +packetLen(0x0815, 90) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121107 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121031 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121024 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121017 +packetLen(0x0815, 8) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121010 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120925 +packetLen(0x0815, 12) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120919 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120905 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120830 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120822 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120814 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120808 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120801 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120716 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120710 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120702 +packetLen(0x0815, 26) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120626 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120612 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120604 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120529 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120515 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120503 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120424 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120404 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120328 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120307 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120228 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120221 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120214 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120207 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120131 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120117 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120103 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20121218 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121212 +packetLen(0x0817, 10) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121031 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121024 +packetLen(0x0817, 7) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121017 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121010 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120911 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120905 +packetLen(0x0817, 36) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120522 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120515 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120508 +packetLen(0x0817, 4) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120503 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120424 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120214 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120207 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120103 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20121227 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121218 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121107 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121031 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121024 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121017 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121010 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120925 +packetLen(0x0819, 19) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120919 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120911 +packetLen(0x0819, 8) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120905 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120830 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120814 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120808 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120724 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120716 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120702 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120626 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120618 +packetLen(0x0819, 36) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120612 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120604 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120529 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120515 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120503 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120424 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120404 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120328 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120314 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120228 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120221 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120214 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120131 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120117 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120103 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20121010 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120925 +packetLen(0x0835, 90) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120905 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120830 +packetLen(0x0835, 8) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120801 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120724 +packetLen(0x0835, 26) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120103 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20121227 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121218 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121121 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121114 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121107 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121031 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121024 +packetLen(0x0838, 18) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121017 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121010 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120925 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120919 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120905 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120830 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120814 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120808 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120724 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120716 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120702 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120626 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120612 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120604 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120529 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120515 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120503 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120424 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120404 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120328 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120307 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120228 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120221 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120214 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120207 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120131 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120120 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120117 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120110 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120103 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20121227 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121218 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121107 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121031 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121024 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121017 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120925 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120919 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120905 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120830 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120814 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120808 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120724 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120716 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120626 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120612 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120604 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120529 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120515 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120503 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120424 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120404 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120328 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120314 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120228 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120221 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120214 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120131 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120117 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120103 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20121107 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20121031 +packetLen(0x085a, 26) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20121024 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120830 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120822 +packetLen(0x085a, 5) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120710 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120702 +packetLen(0x085a, 7) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120522 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120515 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120307 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120228 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120221 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120214 +packetLen(0x085a, 12) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120103 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20120716 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120710 +packetLen(0x085b, 10) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120410 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120404 +packetLen(0x085b, 4) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120103 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20121218 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20121212 +packetLen(0x085c, 7) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20121114 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20121107 +packetLen(0x085c, -1) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120830 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120822 +packetLen(0x085c, -1) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120103 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20121010 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120925 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120911 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120905 +packetLen(0x085d, 10) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120830 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120822 +packetLen(0x085d, 10) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120808 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120801 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120103 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20120822 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120814 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120103 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20120814 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120808 +packetLen(0x085f, 36) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120702 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120626 +packetLen(0x085f, 5) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120612 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120604 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120529 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120522 +packetLen(0x085f, 5) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120103 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20121227 +packetLen(0x0860, -1) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120529 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120522 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120103 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20121205 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121128 +packetLen(0x0861, 18) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121114 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121107 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120905 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120830 +packetLen(0x0861, 19) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120822 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120814 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120710 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120702 +packetLen(0x0861, 8) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120612 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120604 +packetLen(0x0861, 18) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120529 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120522 +packetLen(0x0861, 18) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120404 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120328 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120314 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120307 +packetLen(0x0861, 36) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120103 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20121121 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20121114 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120822 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120814 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120710 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120702 +packetLen(0x0862, 10) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120103 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20121212 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20121205 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20121128 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20121121 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120710 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120702 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120612 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120604 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120503 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120424 +packetLen(0x0863, 26) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120314 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120307 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120228 +packetLen(0x0863, 12) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120103 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20121212 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20121205 +packetLen(0x0864, 18) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120410 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120404 +packetLen(0x0864, 18) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120320 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120314 +packetLen(0x0864, 5) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120103 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20121114 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20121107 +packetLen(0x0865, 19) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120822 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120814 +packetLen(0x0865, 8) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120404 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120328 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120314 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120307 +packetLen(0x0865, 6) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120103 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20120801 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120724 +packetLen(0x0866, 4) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120702 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120626 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120529 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120522 +packetLen(0x0866, 8) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120404 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120328 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120103 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20121227 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121218 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121205 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121128 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120710 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120702 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120515 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120508 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120103 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20121031 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20121024 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20121017 +packetLen(0x0868, 8) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120919 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120911 +packetLen(0x0868, 6) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120822 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120814 +packetLen(0x0868, 7) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120702 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120626 +packetLen(0x0868, 5) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120515 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120508 +packetLen(0x0868, 5) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120103 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20121017 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20121010 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120925 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120702 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120626 +packetLen(0x0869, 10) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120612 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120604 +packetLen(0x0869, 10) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120529 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120522 +packetLen(0x0869, 19) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120515 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120221 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120214 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120103 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20121128 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20121121 +packetLen(0x086a, 90) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120808 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120801 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120604 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120529 +packetLen(0x086a, 36) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120522 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120410 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120404 +packetLen(0x086a, 5) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120314 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120307 +packetLen(0x086a, 19) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120221 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120214 +packetLen(0x086a, 26) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120103 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20121024 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20121017 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120830 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120822 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120808 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120801 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120103 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20121212 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121205 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121128 +packetLen(0x086c, 10) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121121 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121114 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121107 +packetLen(0x086c, 5) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121017 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121010 +packetLen(0x086c, 8) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20120417 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20120410 +packetLen(0x086c, 8) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20120103 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20121128 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20121121 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20121114 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20121107 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120702 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120626 +packetLen(0x086d, 18) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120612 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120604 +packetLen(0x086d, 5) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120103 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20121205 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121128 +packetLen(0x086e, 4) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120830 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120822 +packetLen(0x086e, 5) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120221 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120214 +packetLen(0x086e, 6) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120103 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20121128 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20121121 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120919 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120911 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120905 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120822 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120814 +packetLen(0x086f, 36) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120702 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120626 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120612 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120604 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120328 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120320 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120103 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20121227 +packetLen(0x0870, 12) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121212 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121205 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120314 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120307 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120228 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120221 +packetLen(0x0870, 6) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120103 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20121107 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20121031 +packetLen(0x0871, 5) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120702 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120626 +packetLen(0x0871, 6) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120612 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120604 +packetLen(0x0871, 36) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120503 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120424 +packetLen(0x0871, 10) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120417 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120410 +packetLen(0x0871, 5) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120307 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120228 +packetLen(0x0871, 10) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120103 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20121227 +packetLen(0x0872, 6) +#elif PACKETVER >= 20121218 +packetLen(0x0872, 4) +#elif PACKETVER >= 20121205 +packetLen(0x0872, 2) +#elif PACKETVER >= 20121128 +packetLen(0x0872, 10) +#elif PACKETVER >= 20121121 +packetLen(0x0872, 6) +#elif PACKETVER >= 20121031 +packetLen(0x0872, 2) +#elif PACKETVER >= 20121024 +packetLen(0x0872, 6) +#elif PACKETVER >= 20120905 +packetLen(0x0872, 2) +#elif PACKETVER >= 20120830 +packetLen(0x0872, 26) +#elif PACKETVER >= 20120822 +packetLen(0x0872, -1) +#elif PACKETVER >= 20120801 +packetLen(0x0872, 2) +#elif PACKETVER >= 20120724 +packetLen(0x0872, -1) +#elif PACKETVER >= 20120702 +packetLen(0x0872, 2) +#elif PACKETVER >= 20120626 +packetLen(0x0872, 6) +#elif PACKETVER >= 20120221 +packetLen(0x0872, 2) +#elif PACKETVER >= 20120214 +packetLen(0x0872, 8) +#elif PACKETVER >= 20120103 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20121114 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20121107 +packetLen(0x0873, 8) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20121010 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120925 +packetLen(0x0873, -1) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120808 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120801 +packetLen(0x0873, 10) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120417 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120410 +packetLen(0x0873, 4) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120103 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20121017 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20121010 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120702 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120626 +packetLen(0x0874, 5) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120503 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120424 +packetLen(0x0874, 90) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120404 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120328 +packetLen(0x0874, 12) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120103 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20121212 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121205 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121128 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121121 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121031 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121024 +packetLen(0x0875, 4) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120822 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120814 +packetLen(0x0875, 5) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120808 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120801 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120702 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120626 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120404 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120328 +packetLen(0x0875, 4) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120307 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120228 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120103 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20121121 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20121114 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120919 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120905 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120404 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120328 +packetLen(0x0876, 36) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120103 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20121218 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20121212 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20121107 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20121031 +packetLen(0x0877, 19) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120919 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120911 +packetLen(0x0877, 26) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120905 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120801 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120724 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120716 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120702 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120103 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20121212 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20121205 +packetLen(0x0878, 90) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20121114 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20121107 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120911 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120905 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120716 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120710 +packetLen(0x0878, -1) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120702 +packetLen(0x0878, 12) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120103 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20121121 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20121114 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120919 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120911 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120710 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120702 +packetLen(0x0879, 18) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120103 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20121227 +packetLen(0x087a, 7) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20121218 +packetLen(0x087a, 5) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20121031 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20121024 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20121010 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120925 +packetLen(0x087a, 6) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120919 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120911 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120905 +packetLen(0x087a, 10) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120103 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20121227 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20121218 +packetLen(0x087b, 26) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20121031 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20121024 +packetLen(0x087b, -1) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120911 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120905 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120529 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120522 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120103 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20120830 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120822 +packetLen(0x087c, 90) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120801 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120724 +packetLen(0x087c, 18) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120604 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120529 +packetLen(0x087c, 26) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120522 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120515 +packetLen(0x087c, 5) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120328 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120320 +packetLen(0x087c, 36) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120103 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20121218 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121212 +packetLen(0x087d, 10) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121017 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121010 +packetLen(0x087d, 90) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120830 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120822 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120612 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120604 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120522 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120515 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120103 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20121031 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20121024 +packetLen(0x087e, 10) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20121010 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120925 +packetLen(0x087e, 26) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120911 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120905 +packetLen(0x087e, 8) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120529 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120522 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120515 +packetLen(0x087e, 12) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120103 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20121218 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121212 +packetLen(0x087f, 12) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121114 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121107 +packetLen(0x087f, 5) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120822 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120814 +packetLen(0x087f, 26) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120716 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120710 +packetLen(0x087f, 5) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120529 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120522 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120103 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20121128 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121121 +packetLen(0x0880, 5) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120103 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20120702 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120626 +packetLen(0x0881, 6) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120221 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120214 +packetLen(0x0881, 10) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120103 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20121031 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20121024 +packetLen(0x0882, 36) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120822 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120814 +packetLen(0x0882, 18) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120515 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120508 +packetLen(0x0882, 8) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120103 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20121017 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121010 +packetLen(0x0883, 5) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120710 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120702 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120404 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120328 +packetLen(0x0883, 90) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120307 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120228 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120103 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20120515 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120508 +packetLen(0x0884, 36) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120417 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120410 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120314 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120307 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120103 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20120830 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120822 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120612 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120604 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120515 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120508 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120417 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120410 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120320 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120314 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120307 +packetLen(0x0885, 7) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120228 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120221 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120207 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120131 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120120 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120117 +packetLen(0x0885, 18) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120103 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20121218 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120710 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120702 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120503 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120424 +packetLen(0x0886, 36) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120417 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120404 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120228 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120221 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120120 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120117 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120103 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20121024 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20121017 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20121010 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120925 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120911 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120905 +packetLen(0x0887, 19) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120830 +packetLen(0x0887, 10) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120801 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120724 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120314 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120307 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120207 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120131 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120120 +packetLen(0x0887, 4) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120117 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120103 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20121227 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121212 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121205 +packetLen(0x0888, 36) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121128 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121031 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121024 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121017 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121010 +packetLen(0x0888, 4) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120905 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120830 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120801 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120724 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120228 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120214 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120207 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120131 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120103 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20121227 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121218 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121212 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121205 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121031 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121024 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120710 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120702 +packetLen(0x0889, 90) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120417 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120410 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120320 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120314 +packetLen(0x0889, 7) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120307 +packetLen(0x0889, 10) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120131 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120120 +packetLen(0x0889, 36) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120117 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120103 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20121031 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20121024 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20121010 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120925 +packetLen(0x088a, 26) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120919 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120911 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120830 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120822 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120404 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120328 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120307 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120228 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120207 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120131 +packetLen(0x088a, 19) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120103 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20121212 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121205 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121128 +packetLen(0x088b, -1) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120822 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120814 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120808 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120801 +packetLen(0x088b, 5) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120221 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120214 +packetLen(0x088b, 18) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120103 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20120320 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120314 +packetLen(0x088c, 4) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120221 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120214 +packetLen(0x088c, 26) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120120 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120117 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120103 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20121010 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120925 +packetLen(0x088d, 10) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120822 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120814 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120716 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120710 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120529 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120522 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120221 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120214 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120207 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120131 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120120 +packetLen(0x088d, 18) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120103 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20121227 +packetLen(0x088e, 5) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120801 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120724 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120612 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120604 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120503 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120424 +packetLen(0x088e, 5) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120404 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120328 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120120 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120117 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120103 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20121114 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20121107 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20121017 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20121010 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120925 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120919 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120911 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120814 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120808 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120508 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120503 +packetLen(0x088f, 36) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120131 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120120 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120117 +packetLen(0x088f, 10) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120103 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20121227 +packetLen(0x0890, 10) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20121218 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20121114 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20121107 +packetLen(0x0890, 10) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120905 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120830 +packetLen(0x0890, 4) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120808 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120801 +packetLen(0x0890, 7) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120529 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120522 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120314 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120307 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120221 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120214 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120207 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120131 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120120 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120103 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20121114 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121107 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121017 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121010 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120612 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120604 +packetLen(0x0891, 26) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120529 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120522 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120515 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120417 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120410 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120307 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120228 +packetLen(0x0891, 36) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120131 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120120 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120117 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120103 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20121128 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20121121 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120702 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120626 +packetLen(0x0892, 36) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120120 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120117 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120103 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20121218 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20121212 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120716 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120710 +packetLen(0x0893, 36) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120103 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20121227 +packetLen(0x0894, 26) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20121205 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20121128 +packetLen(0x0894, 8) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120404 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120328 +packetLen(0x0894, -1) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120131 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120120 +packetLen(0x0894, 10) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120103 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20121218 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20121212 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20121205 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20121128 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120911 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120905 +packetLen(0x0895, 5) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120822 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120814 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120808 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120801 +packetLen(0x0895, 19) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120131 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120120 +packetLen(0x0895, 7) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120103 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20121227 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121114 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121107 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121017 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121010 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20120103 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20121024 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20121017 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120911 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120905 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120716 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120710 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120702 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120612 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120604 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120529 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120522 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120117 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120110 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120103 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20121121 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121114 +packetLen(0x0898, 7) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121107 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121031 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121017 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121010 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120207 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120131 +packetLen(0x0898, 4) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120103 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20121128 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20121121 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20121114 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120830 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120822 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120716 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120710 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120410 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120404 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120207 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120131 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120120 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120103 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20121212 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121205 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121128 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121121 +packetLen(0x089a, 18) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121114 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121107 +packetLen(0x089a, 7) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121024 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121017 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120522 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120515 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120508 +packetLen(0x089a, 8) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120503 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120424 +packetLen(0x089a, -1) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120103 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20121114 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20121107 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120503 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120424 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120221 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120214 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120117 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120110 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120103 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20121031 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20121024 +packetLen(0x089c, 26) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120808 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120801 +packetLen(0x089c, 90) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120417 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120410 +packetLen(0x089c, 26) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120404 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120103 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20121212 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20121205 +packetLen(0x089d, 12) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20121010 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120925 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120808 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120801 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120307 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120228 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120120 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120117 +packetLen(0x089d, 90) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120103 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20120710 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120702 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120320 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120314 +packetLen(0x089e, 26) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120120 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120117 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120103 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20120830 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120822 +packetLen(0x089f, 19) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120808 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120801 +packetLen(0x089f, 5) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120724 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120716 +packetLen(0x089f, 36) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120710 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120702 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120221 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120214 +packetLen(0x089f, 36) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120207 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120131 +packetLen(0x089f, 36) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120120 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120103 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20120911 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120905 +packetLen(0x08a0, 4) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120710 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120702 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120626 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120503 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120424 +packetLen(0x08a0, 5) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120404 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120328 +packetLen(0x08a0, 18) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120320 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120314 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120131 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120120 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120103 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20121017 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20121010 +packetLen(0x08a1, 7) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120801 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120724 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120131 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120120 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120103 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20120808 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120801 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120612 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120604 +packetLen(0x08a2, 7) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120522 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120515 +packetLen(0x08a2, 90) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120417 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120410 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120307 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120228 +packetLen(0x08a2, 4) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120207 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120131 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120103 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20121218 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20121212 +packetLen(0x08a3, 19) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120716 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120710 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120529 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120522 +packetLen(0x08a3, 10) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120503 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120424 +packetLen(0x08a3, -1) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120410 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120404 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120103 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20121010 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120925 +packetLen(0x08a4, 7) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120919 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120911 +packetLen(0x08a4, 18) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120702 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120626 +packetLen(0x08a4, 19) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120503 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120424 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120131 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120117 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120103 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20120919 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120911 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120830 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120822 +packetLen(0x08a5, 8) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120522 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120515 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120221 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120214 +packetLen(0x08a5, 4) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120131 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120120 +packetLen(0x08a5, 90) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120103 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20121227 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20121024 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20121017 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20121010 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120919 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120911 +packetLen(0x08a6, 19) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120905 +packetLen(0x08a6, 26) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120716 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120710 +packetLen(0x08a6, -1) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120417 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120410 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120404 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120328 +packetLen(0x08a6, 19) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120120 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120117 +packetLen(0x08a6, 19) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120103 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20121218 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121212 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121128 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121121 +packetLen(0x08a7, -1) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120919 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120911 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120515 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120508 +packetLen(0x08a7, 18) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120221 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120214 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120103 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20121205 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20121128 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120822 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120814 +packetLen(0x08a8, 4) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120716 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120710 +packetLen(0x08a8, 19) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120522 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120515 +packetLen(0x08a8, 19) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120424 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120417 +packetLen(0x08a8, 36) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120320 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120314 +packetLen(0x08a8, 36) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120307 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120228 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120120 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120117 +packetLen(0x08a8, 12) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120103 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20121218 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121212 +packetLen(0x08a9, 36) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121121 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121114 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121031 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121024 +packetLen(0x08a9, -1) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121017 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121010 +packetLen(0x08a9, -1) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120801 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120724 +packetLen(0x08a9, 19) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120529 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120522 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120515 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120508 +packetLen(0x08a9, 19) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120503 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120424 +packetLen(0x08a9, 7) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120120 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120117 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120103 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20121227 +packetLen(0x08aa, 18) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121218 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121212 +packetLen(0x08aa, 4) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121128 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121121 +packetLen(0x08aa, 7) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121031 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121024 +packetLen(0x08aa, 5) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120808 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120801 +packetLen(0x08aa, 5) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120716 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120710 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120103 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20121121 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20121114 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120830 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120822 +packetLen(0x08ab, 7) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120808 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120801 +packetLen(0x08ab, 8) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120724 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120529 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120522 +packetLen(0x08ab, 8) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120221 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120214 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120110 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120103 +packetLen(0x08ab, 36) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20121218 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20121212 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120529 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120522 +packetLen(0x08ac, 7) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120515 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120328 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120320 +packetLen(0x08ac, 26) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120103 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20121212 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121205 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121128 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121114 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121107 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120919 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120911 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120522 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120515 +packetLen(0x08ad, 10) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120404 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120328 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120207 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120131 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120120 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120103 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +#if PACKETVER >= 20120307 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE +#elif PACKETVER >= 20120103 +packetLen(0x08e2, 25) // ZC_NAVIGATION_ACTIVE +#endif + +// Packet: 0x08e3 +packetLen(0x08e3, 146) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08e5 +packetLen(0x08e5, 41) // CZ_PARTY_RECRUIT_REQ_REGISTER + +// Packet: 0x08e6 +packetLen(0x08e6, 4) // ZC_PARTY_RECRUIT_ACK_REGISTER + +// Packet: 0x08e7 +packetLen(0x08e7, 10) // CZ_PARTY_RECRUIT_REQ_SEARCH + +// Packet: 0x08e8 +packetLen(0x08e8, -1) + +// Packet: 0x08e9 +packetLen(0x08e9, 2) // CZ_PARTY_RECRUIT_REQ_DELETE + +// Packet: 0x08ea +packetLen(0x08ea, 4) // ZC_PARTY_RECRUIT_ACK_DELETE + +// Packet: 0x08eb +packetLen(0x08eb, 39) // CZ_PARTY_RECRUIT_REQ_UPDATE + +// Packet: 0x08ec +packetLen(0x08ec, 73) // ZC_PARTY_RECRUIT_NOTIFY_INSERT + +// Packet: 0x08ed +packetLen(0x08ed, 43) // ZC_PARTY_RECRUIT_NOTIFY_UPDATE + +// Packet: 0x08ee +packetLen(0x08ee, 6) // ZC_PARTY_RECRUIT_NOTIFY_DELETE + +// Packet: 0x08ef +packetLen(0x08ef, 6) // CZ_PARTY_RECRUIT_ADD_FILTERLINGLIST + +// Packet: 0x08f0 +packetLen(0x08f0, 6) // CZ_PARTY_RECRUIT_SUB_FILTERLINGLIST + +// Packet: 0x08f1 +packetLen(0x08f1, 6) // CZ_PARTY_RECRUIT_REQ_VOLUNTEER + +// Packet: 0x08f2 +packetLen(0x08f2, 36) // ZC_PARTY_RECRUIT_VOLUNTEER_INFO + +// Packet: 0x08f3 +packetLen(0x08f3, -1) + +// Packet: 0x08f4 +packetLen(0x08f4, 6) // CZ_PARTY_RECRUIT_SHOW_EQUIPMENT + +// Packet: 0x08f5 +packetLen(0x08f5, -1) // CZ_UNKNOWN_BOOKING_SOMMON_MEMBER_08f5 + +// Packet: 0x08f6 +packetLen(0x08f6, 22) // ZC_PARTY_RECRUIT_RECALL_COST + +// Packet: 0x08f7 +packetLen(0x08f7, 3) // CZ_PARTY_RECRUIT_ACK_RECALL + +// Packet: 0x08f8 +packetLen(0x08f8, 7) // ZC_PARTY_RECRUIT_FAILED_RECALL + +// Packet: 0x08f9 +packetLen(0x08f9, 6) // CZ_PARTY_RECRUIT_REFUSE_VOLUNTEER + +// Packet: 0x08fa +packetLen(0x08fa, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER + +// Packet: 0x08fb +packetLen(0x08fb, 6) // CZ_PARTY_RECRUIT_CANCEL_VOLUNTEER + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x0909 +packetLen(0x0909, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090b +packetLen(0x090b, 30) // ZC_PARTY_RECRUIT_ADD_FILTERLINGLIST + +// Packet: 0x090c +packetLen(0x090c, 30) // ZC_PARTY_RECRUIT_SUB_FILTERLINGLIST + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +#if PACKETVER >= 20120131 +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 +#endif + +// Packet: 0x0910 +#if PACKETVER >= 20120120 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME +#endif + +// Packet: 0x0911 +#if PACKETVER >= 20120120 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME +#endif + +// Packet: 0x0912 +#if PACKETVER >= 20120120 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME +#endif + +// Packet: 0x0913 +#if PACKETVER >= 20120120 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME +#endif + +// Packet: 0x0914 +#if PACKETVER >= 20120131 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 +#endif + +// Packet: 0x0915 +#if PACKETVER >= 20120131 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 +#endif + +// Packet: 0x0916 +#if PACKETVER >= 20120131 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 +#endif + +// Packet: 0x0917 +#if PACKETVER >= 20121218 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20121212 +packetLen(0x0917, 8) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120911 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120905 +packetLen(0x0917, -1) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120830 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120822 +packetLen(0x0917, -1) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120808 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120801 +packetLen(0x0917, 36) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120307 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120228 +packetLen(0x0917, 7) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120207 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20121024 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20121017 +packetLen(0x0918, 36) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120911 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120905 +packetLen(0x0918, -1) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120207 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20120604 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120529 +packetLen(0x0919, 5) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120307 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120228 +packetLen(0x0919, 19) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120221 +packetLen(0x0919, 4) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120207 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20121227 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121218 +packetLen(0x091a, 8) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121212 +packetLen(0x091a, -1) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121128 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121121 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121114 +packetLen(0x091a, 8) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120911 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120905 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120522 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120515 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120404 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120328 +packetLen(0x091a, -1) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120221 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120214 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120207 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20121205 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20121128 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120503 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120424 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120404 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120328 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120207 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20121227 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20121218 +packetLen(0x091c, 19) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20121212 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20121205 +packetLen(0x091c, 8) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20121128 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120801 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120724 +packetLen(0x091c, 5) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120417 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120410 +packetLen(0x091c, 26) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120207 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20120905 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120830 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120808 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120801 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120612 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120604 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120417 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120410 +packetLen(0x091d, 18) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120404 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120328 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120207 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20121205 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20121128 +packetLen(0x091e, -1) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120529 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120522 +packetLen(0x091e, 12) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120207 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20121227 +packetLen(0x091f, 4) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20121205 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20121128 +packetLen(0x091f, 90) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120822 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120814 +packetLen(0x091f, 19) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120801 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120724 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120522 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120515 +packetLen(0x091f, 26) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120207 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20121227 +packetLen(0x0920, 90) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121218 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121212 +packetLen(0x0920, 5) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121024 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121017 +packetLen(0x0920, 4) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120822 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120814 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120702 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120626 +packetLen(0x0920, 7) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120404 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120328 +packetLen(0x0920, 5) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120221 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120214 +packetLen(0x0920, 8) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120207 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20121212 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121205 +packetLen(0x0921, 19) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121128 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121121 +packetLen(0x0921, 10) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120221 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120214 +packetLen(0x0921, -1) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120207 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20121205 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20121128 +packetLen(0x0922, 8) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20121114 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20121107 +packetLen(0x0922, 8) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120503 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120424 +packetLen(0x0922, 10) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120207 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20121010 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120925 +packetLen(0x0923, 6) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120522 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120515 +packetLen(0x0923, 7) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120503 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120424 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120207 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20120612 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120604 +packetLen(0x0924, 90) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120207 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20121017 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20121010 +packetLen(0x0925, 12) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120307 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120228 +packetLen(0x0925, -1) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120207 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20120905 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120830 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120503 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120424 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120314 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120307 +packetLen(0x0926, 18) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120207 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20121128 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20121121 +packetLen(0x0927, 19) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20121010 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120925 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120911 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120905 +packetLen(0x0927, 18) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120830 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120822 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120207 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20120801 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120724 +packetLen(0x0928, -1) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120307 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120228 +packetLen(0x0928, 26) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120207 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20121128 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121121 +packetLen(0x0929, 4) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120822 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120814 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120801 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120724 +packetLen(0x0929, 12) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120314 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120307 +packetLen(0x0929, 26) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120207 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20120808 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120801 +packetLen(0x092a, 4) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120320 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120314 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120207 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20121107 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20121031 +packetLen(0x092b, 4) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120801 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120724 +packetLen(0x092b, 90) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120522 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120515 +packetLen(0x092b, 8) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120404 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120328 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120207 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20120710 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120702 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120529 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120522 +packetLen(0x092c, 5) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120207 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20120716 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120710 +packetLen(0x092d, 12) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120307 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120228 +packetLen(0x092d, -1) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120207 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20120808 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120801 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120612 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120604 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120410 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120404 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120207 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20121205 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20121128 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120702 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120626 +packetLen(0x092f, 4) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120612 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120604 +packetLen(0x092f, -1) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120207 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20121121 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20121114 +packetLen(0x0930, 4) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120919 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120911 +packetLen(0x0930, -1) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120808 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120801 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120529 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120522 +packetLen(0x0930, 4) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120228 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120221 +packetLen(0x0930, 26) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120207 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20121205 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20121128 +packetLen(0x0931, 7) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20121031 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20121024 +packetLen(0x0931, 6) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120320 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120314 +packetLen(0x0931, 8) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120207 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20121227 +packetLen(0x0932, 5) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121218 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121212 +packetLen(0x0932, 18) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121010 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120925 +packetLen(0x0932, 6) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120822 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120814 +packetLen(0x0932, 10) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120207 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20121227 +packetLen(0x0933, -1) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120307 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120228 +packetLen(0x0933, 18) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120221 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120214 +packetLen(0x0933, 6) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120207 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20121114 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121107 +packetLen(0x0934, 12) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121017 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121010 +packetLen(0x0934, 6) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120905 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120830 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120822 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120814 +packetLen(0x0934, 10) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120808 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120801 +packetLen(0x0934, 10) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120404 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120328 +packetLen(0x0934, 6) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120207 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20121227 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20121218 +packetLen(0x0935, 26) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20121121 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20121114 +packetLen(0x0935, 10) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120830 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120822 +packetLen(0x0935, 5) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120702 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120626 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120228 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120221 +packetLen(0x0935, -1) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120207 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20120716 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120710 +packetLen(0x0936, 8) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120702 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120626 +packetLen(0x0936, 12) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120612 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120604 +packetLen(0x0936, 8) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120207 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20120830 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120822 +packetLen(0x0937, 10) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120307 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120228 +packetLen(0x0937, 26) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120221 +packetLen(0x0937, 8) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120207 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20121128 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20121121 +packetLen(0x0938, 12) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20121114 +packetLen(0x0938, -1) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120801 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120724 +packetLen(0x0938, 10) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120702 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120626 +packetLen(0x0938, -1) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120417 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120410 +packetLen(0x0938, 6) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120207 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20120207 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20121212 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20121205 +packetLen(0x093a, 6) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20121031 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20121024 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120702 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120626 +packetLen(0x093a, 90) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120604 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120529 +packetLen(0x093a, 19) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120320 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120314 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120207 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20121121 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121114 +packetLen(0x093b, 12) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121107 +packetLen(0x093b, 10) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120314 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120307 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120207 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20121121 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121114 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121017 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121010 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120911 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120905 +packetLen(0x093c, 12) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120808 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120801 +packetLen(0x093c, 26) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120724 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120503 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120424 +packetLen(0x093c, 5) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120228 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120221 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120207 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20120814 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120808 +packetLen(0x093d, 5) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120207 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20121212 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20121205 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120919 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120911 +packetLen(0x093e, 12) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120529 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120522 +packetLen(0x093e, 90) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120404 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120328 +packetLen(0x093e, 10) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120207 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20121212 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20121205 +packetLen(0x093f, 10) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120207 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20121227 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120830 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120822 +packetLen(0x0940, 12) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120814 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120808 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120626 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120618 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120515 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120508 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120410 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120404 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120207 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20121121 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20121114 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120822 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120814 +packetLen(0x0941, 90) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120808 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120801 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120529 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120522 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120503 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120424 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120320 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120314 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120307 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120228 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120207 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20121031 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20121024 +packetLen(0x0942, -1) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20121017 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20121010 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120925 +packetLen(0x0942, 36) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120307 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120228 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120207 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20120830 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120822 +packetLen(0x0943, 8) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120612 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120604 +packetLen(0x0943, 4) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120207 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20121121 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121114 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120911 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120905 +packetLen(0x0944, 26) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120710 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120702 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120522 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120515 +packetLen(0x0944, 18) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120207 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20121205 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20121128 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20121114 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20121107 +packetLen(0x0945, 90) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120911 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120905 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120830 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120801 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120724 +packetLen(0x0945, 7) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120417 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120410 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120328 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120320 +packetLen(0x0945, 19) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120307 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120228 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120207 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20121227 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121218 +packetLen(0x0946, 36) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121212 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121205 +packetLen(0x0946, 10) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121128 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121121 +packetLen(0x0946, 5) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121017 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121010 +packetLen(0x0946, 19) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120808 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120801 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120320 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120314 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120207 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20121227 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121218 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121212 +packetLen(0x0947, 5) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121031 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121024 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121017 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121010 +packetLen(0x0947, 10) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120522 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120515 +packetLen(0x0947, 10) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120503 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120424 +packetLen(0x0947, 4) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120410 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120404 +packetLen(0x0947, 36) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120307 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120228 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120207 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20121010 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120925 +packetLen(0x0948, 18) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120919 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120911 +packetLen(0x0948, 10) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120503 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120424 +packetLen(0x0948, 6) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120207 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20121121 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20121114 +packetLen(0x0949, 18) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120919 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120911 +packetLen(0x0949, 4) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120207 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20121121 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121114 +packetLen(0x094a, 10) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120710 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120702 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120626 +packetLen(0x094a, -1) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120207 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20121212 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121205 +packetLen(0x094b, 6) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121121 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121114 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120919 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120911 +packetLen(0x094b, -1) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120905 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120830 +packetLen(0x094b, 18) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120716 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120710 +packetLen(0x094b, 5) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120522 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120515 +packetLen(0x094b, 5) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120417 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120410 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120207 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20121017 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20121010 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120604 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120529 +packetLen(0x094c, 5) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120207 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20121128 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20121121 +packetLen(0x094d, 8) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20121114 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20121107 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120830 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120822 +packetLen(0x094d, 36) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120529 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120522 +packetLen(0x094d, 26) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120515 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120508 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120307 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120228 +packetLen(0x094d, 8) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120207 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20120830 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120822 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120808 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120801 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120716 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120710 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120612 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120604 +packetLen(0x094e, 5) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120207 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20121121 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20121114 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120320 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120314 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120207 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20121205 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20121128 +packetLen(0x0950, 12) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20121121 +packetLen(0x0950, 5) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20121010 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120925 +packetLen(0x0950, 5) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120911 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120905 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120207 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20121218 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20121212 +packetLen(0x0951, 8) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120702 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120626 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120404 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120328 +packetLen(0x0951, 7) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120207 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20121128 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20121121 +packetLen(0x0952, 6) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120919 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120911 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120221 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120214 +packetLen(0x0952, 19) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120207 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20121227 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121218 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121212 +packetLen(0x0953, 6) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121205 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121128 +packetLen(0x0953, 6) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120830 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120822 +packetLen(0x0953, 18) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120716 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120710 +packetLen(0x0953, 4) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120702 +packetLen(0x0953, 5) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120221 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120214 +packetLen(0x0953, -1) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120207 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20121212 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121205 +packetLen(0x0954, 7) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121128 +packetLen(0x0954, 8) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121121 +packetLen(0x0954, 36) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121031 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121024 +packetLen(0x0954, 90) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120618 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120612 +packetLen(0x0954, 36) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120404 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120328 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120307 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120228 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120207 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20120830 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120822 +packetLen(0x0955, -1) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120503 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120424 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120207 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20121010 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120925 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120919 +packetLen(0x0956, 36) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120716 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120710 +packetLen(0x0956, -1) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120529 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120522 +packetLen(0x0956, 6) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120207 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20121227 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121218 +packetLen(0x0957, 18) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121212 +packetLen(0x0957, 90) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121128 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121121 +packetLen(0x0957, 26) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121017 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120925 +packetLen(0x0957, 5) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120801 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120724 +packetLen(0x0957, 36) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120522 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120515 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120221 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120214 +packetLen(0x0957, 90) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120207 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20121227 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20121128 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20121121 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20121010 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120925 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120919 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120911 +packetLen(0x0958, 10) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120410 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120404 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120207 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20121212 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20121205 +packetLen(0x0959, 26) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20121017 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20121010 +packetLen(0x0959, -1) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120919 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120911 +packetLen(0x0959, 7) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120905 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120801 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120724 +packetLen(0x0959, 26) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120207 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20120207 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20121218 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20121212 +packetLen(0x095b, 8) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120830 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120822 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120612 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120604 +packetLen(0x095b, 8) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120503 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120424 +packetLen(0x095b, -1) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120207 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20121121 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121114 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121017 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121010 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120314 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120307 +packetLen(0x095c, 4) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120228 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120221 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120214 +packetLen(0x095c, 10) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120207 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20121227 +packetLen(0x095d, -1) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20121031 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20121024 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120710 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120702 +packetLen(0x095d, 36) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120404 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120328 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120207 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20121031 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121024 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121010 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120925 +packetLen(0x095e, 10) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120307 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120228 +packetLen(0x095e, 5) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120207 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20120207 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20121205 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121128 +packetLen(0x0960, -1) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121114 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121107 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121024 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121017 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120911 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120905 +packetLen(0x0960, 90) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120716 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120710 +packetLen(0x0960, 90) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120702 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120207 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20120710 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120702 +packetLen(0x0961, 4) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120417 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120410 +packetLen(0x0961, 36) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120307 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120228 +packetLen(0x0961, 10) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120207 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20121227 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20121024 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20121017 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120702 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120626 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120207 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20121114 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20121107 +packetLen(0x0963, 4) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20121010 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120925 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120919 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120911 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120801 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120724 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120612 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120604 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120404 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120328 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120314 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120307 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120221 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120214 +packetLen(0x0963, 7) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120207 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20121017 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20121010 +packetLen(0x0964, 26) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120905 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120830 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120808 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120801 +packetLen(0x0964, 12) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120522 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120515 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120320 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120314 +packetLen(0x0964, 18) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120207 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20121218 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121212 +packetLen(0x0965, -1) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121121 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121114 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121031 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121017 +packetLen(0x0965, 19) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120801 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120724 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120503 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120424 +packetLen(0x0965, 8) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120207 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20121218 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121212 +packetLen(0x0966, -1) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121205 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121114 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121107 +packetLen(0x0966, 18) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120919 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120911 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120801 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120724 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120522 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120515 +packetLen(0x0966, 4) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120328 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120320 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120221 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120214 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120207 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20120911 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120905 +packetLen(0x0967, 7) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120822 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120814 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120404 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120328 +packetLen(0x0967, 10) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120228 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120221 +packetLen(0x0967, 36) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120207 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20121212 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20121205 +packetLen(0x0968, 5) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120919 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120911 +packetLen(0x0968, 5) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120207 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20121017 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20121010 +packetLen(0x0969, 18) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120822 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120814 +packetLen(0x0969, 5) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120228 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120221 +packetLen(0x0969, 19) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120207 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20121227 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121212 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121121 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121114 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121107 +packetLen(0x096a, 26) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121031 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121024 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121017 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120925 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120919 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120911 +packetLen(0x096a, 36) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120905 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120830 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120814 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120808 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120724 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120716 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120626 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120612 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120604 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120529 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120522 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120515 +packetLen(0x096a, -1) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120508 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120503 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120424 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120417 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120410 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120404 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120328 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120307 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120228 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120221 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120214 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120207 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +#if PACKETVER >= 20120404 +packetLen(0x096b, 4) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120207 +packetLen(0x096b, 3) // ZC_PRNPC_STATE +#endif + +// Packet: 0x096c +#if PACKETVER >= 20120207 +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x096d +#if PACKETVER >= 20120228 +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN +#elif PACKETVER >= 20120214 +packetLen(0x096d, 2) // ZC_MERGE_ITEM_OPEN +#endif + +// Packet: 0x096e +#if PACKETVER >= 20120228 +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM +#elif PACKETVER >= 20120221 +packetLen(0x096e, 6) // CZ_REQ_MERGE_ITEM +#elif PACKETVER >= 20120214 +packetLen(0x096e, 10) // CZ_REQ_MERGE_ITEM +#endif + +// Packet: 0x096f +#if PACKETVER >= 20120221 +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM +#elif PACKETVER >= 20120214 +packetLen(0x096f, 3) // ZC_ACK_MERGE_ITEM +#endif + +// Packet: 0x0970 +#if PACKETVER >= 20120214 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS +#endif + +// Packet: 0x0971 +#if PACKETVER >= 20120214 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM +#endif + +// Packet: 0x0972 +#if PACKETVER >= 20120214 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 +#endif + +// Packet: 0x0973 +#if PACKETVER >= 20120214 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 +#endif + +// Packet: 0x0974 +#if PACKETVER >= 20120221 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM +#endif + +// Packet: 0x0975 +#if PACKETVER >= 20120221 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 +#endif + +// Packet: 0x0976 +#if PACKETVER >= 20120221 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 +#endif + +// Packet: 0x0977 +#if PACKETVER >= 20120228 +packetLen(0x0977, 14) // ZC_HP_INFO +#elif PACKETVER >= 20120221 +packetLen(0x0977, 15) // ZC_HP_INFO +#endif + +// Packet: 0x0978 +#if PACKETVER >= 20120328 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO +#endif + +// Packet: 0x0979 +#if PACKETVER >= 20120328 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO +#endif + +// Packet: 0x097a +#if PACKETVER >= 20120410 +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 +#endif + +// Packet: 0x097b +#if PACKETVER >= 20120417 +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 +#endif + +// Packet: 0x097c +#if PACKETVER >= 20120503 +packetLen(0x097c, 4) // CZ_REQ_RANKING +#endif + +// Packet: 0x097d +#if PACKETVER >= 20120503 +packetLen(0x097d, 288) // ZC_ACK_RANKING +#endif + +// Packet: 0x097e +#if PACKETVER >= 20120503 +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT +#endif + +// Packet: 0x097f +#if PACKETVER >= 20120503 +packetLen(0x097f, -1) // ZC_SELECTCART +#endif + +// Packet: 0x0980 +#if PACKETVER >= 20120503 +packetLen(0x0980, 7) // CZ_SELECTCART +#endif + +// Packet: 0x0981 +#if PACKETVER >= 20120515 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN +#endif + +// Packet: 0x0982 +#if PACKETVER >= 20120522 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN +#elif PACKETVER >= 20120515 +packetLen(0x0982, 3) // ZC_FATIGUE_CHN +#endif + +// Packet: 0x0983 +#if PACKETVER >= 20120529 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 +#endif + +// Packet: 0x0984 +#if PACKETVER >= 20120529 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 +#endif + +// Packet: 0x0985 +#if PACKETVER >= 20120604 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 +#endif + +// Packet: 0x0986 +#if PACKETVER >= 20120626 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY +#elif PACKETVER >= 20120612 +packetLen(0x0986, 6) // AC_SHUTDOWN_NOTIFY +#endif + +// Packet: 0x0987 +#if PACKETVER >= 20120702 +packetLen(0x0987, 63) // CA_LOGIN6 +#endif + +// Packet: 0x0988 +#if PACKETVER >= 20120716 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO +#elif PACKETVER >= 20120702 +packetLen(0x0988, 2) // ZC_NOTIFY_CLAN_CONNECTINFO +#endif + +// Packet: 0x0989 +#if PACKETVER >= 20120716 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE +#elif PACKETVER >= 20120702 +packetLen(0x0989, 6) // ZC_ACK_CLAN_LEAVE +#endif + +// Packet: 0x098a +#if PACKETVER >= 20120702 +packetLen(0x098a, -1) // ZC_CLANINFO +#endif + +// Packet: 0x098b +#if PACKETVER >= 20120716 +packetLen(0x098b, 2) // AC_REQ_NEW_USER +#endif + +// Packet: 0x098c +#if PACKETVER >= 20120716 +packetLen(0x098c, 4) // CA_ACK_NEW_USER +#endif + +// Packet: 0x098d +#if PACKETVER >= 20120716 +packetLen(0x098d, -1) // CZ_CLAN_CHAT +#endif + +// Packet: 0x098e +#if PACKETVER >= 20120716 +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT +#endif + +// Packet: 0x098f +#if PACKETVER >= 20120724 +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT +#endif + +// Packet: 0x0990 +#if PACKETVER >= 20120925 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 +#endif + +// Packet: 0x0991 +#if PACKETVER >= 20120925 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 +#endif + +// Packet: 0x0992 +#if PACKETVER >= 20120925 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 +#endif + +// Packet: 0x0993 +#if PACKETVER >= 20120925 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 +#endif + +// Packet: 0x0994 +#if PACKETVER >= 20120925 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 +#endif + +// Packet: 0x0995 +#if PACKETVER >= 20120925 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 +#endif + +// Packet: 0x0996 +#if PACKETVER >= 20120925 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 +#endif + +// Packet: 0x0997 +#if PACKETVER >= 20120925 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 +#endif + +// Packet: 0x0998 +#if PACKETVER >= 20120925 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 +#endif + +// Packet: 0x0999 +#if PACKETVER >= 20120925 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 +#endif + +// Packet: 0x099a +#if PACKETVER >= 20120925 +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 +#endif + +// Packet: 0x099b +#if PACKETVER >= 20121010 +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 +#endif + +// Packet: 0x099c +#if PACKETVER >= 20121024 +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE +#endif + +// Packet: 0x099d +#if PACKETVER >= 20121024 +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE +#endif + +// Packet: 0x099e +#if PACKETVER >= 20121128 +packetLen(0x099e, 12) // HC_QUEUE_ORDER +#endif + +// Packet: 0x099f +#if PACKETVER >= 20121212 +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 +#endif + +// Packet: 0x09a0 +#if PACKETVER >= 20121212 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY +#endif + +// Packet: 0x09a1 +#if PACKETVER >= 20121212 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ +#endif + + +#endif /* COMMON_PACKETS2012_LEN_MAIN_H */ diff --git a/src/common/packets/packets2012_len_re.h b/src/common/packets/packets2012_len_re.h new file mode 100644 index 000000000..3273a85f9 --- /dev/null +++ b/src/common/packets/packets2012_len_re.h @@ -0,0 +1,8498 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2012_LEN_RE_H +#define COMMON_PACKETS2012_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 146) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20121227 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20121128 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20121121 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20121017 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20121010 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120925 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120919 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120814 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120808 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120724 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120716 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120710 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120626 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120612 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120515 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120508 +packetLen(0x0202, 90) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120502 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120424 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120417 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120214 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120131 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120120 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120117 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120110 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20120103 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20121107 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20121031 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20120925 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120919 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120911 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120905 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20120830 +packetLen(0x022d, 12) // CZ_COMMAND_MER +#elif PACKETVER >= 20120724 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120716 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120626 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120612 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120508 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120502 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120424 +packetLen(0x022d, 12) // CZ_COMMAND_MER +#elif PACKETVER >= 20120417 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120410 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120404 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120228 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120221 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20120214 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20120207 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20120131 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20120110 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20120103 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20121024 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20121017 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120925 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120919 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120724 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120716 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120626 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120612 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120529 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120523 +packetLen(0x023b, -1) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120515 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120508 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120502 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120424 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120417 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120214 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120207 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120120 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120117 +packetLen(0x023b, 4) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120110 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20120103 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20121107 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20121031 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120925 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120919 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120822 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120814 +packetLen(0x0281, 5) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120808 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120724 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120716 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120626 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120612 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120601 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120529 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120508 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120502 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120424 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120417 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120404 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120328 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120320 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120214 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120207 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120117 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120110 +packetLen(0x0281, 36) // CZ_GANGSI_RANK +#elif PACKETVER >= 20120103 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +#if PACKETVER >= 20120523 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG +#endif + +// Packet: 0x02a7 +#if PACKETVER >= 20120523 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG +#endif + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20121227 +packetLen(0x02c4, 19) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120716 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120710 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120515 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120508 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120410 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120404 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120314 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120307 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120131 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120120 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20120103 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20121227 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121218 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121212 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121205 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121107 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121031 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121024 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20121017 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120925 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120919 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120905 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120830 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120814 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120808 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120801 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120724 +packetLen(0x035f, 8) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120716 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120626 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120612 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120601 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120529 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120515 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120502 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120424 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120417 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120410 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120404 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120328 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120314 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120228 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120221 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120214 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120131 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120117 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20120103 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20121227 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121218 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121212 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121205 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121114 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121031 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121024 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20121017 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120925 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120919 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120905 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120830 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120814 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120808 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120801 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120724 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120716 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120626 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120612 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120601 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120529 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120515 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120502 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120424 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120410 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120328 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120307 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120228 +packetLen(0x0360, 90) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120221 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120214 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120131 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120120 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120117 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20120103 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20121227 +packetLen(0x0361, 36) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20121212 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20121205 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20121114 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20121107 +packetLen(0x0361, 36) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120925 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120919 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120822 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120814 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120724 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120716 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120626 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120612 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120601 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120529 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120523 +packetLen(0x0361, 10) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120508 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120502 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120424 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120417 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120214 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120207 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120131 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120120 +packetLen(0x0361, 19) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120117 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120110 +packetLen(0x0361, 12) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20120103 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20121227 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121218 +packetLen(0x0362, 10) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121212 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121205 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121128 +packetLen(0x0362, 19) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121107 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20121031 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120925 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120919 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120814 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120808 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120724 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120716 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120710 +packetLen(0x0362, 18) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120626 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120612 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120601 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120529 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120508 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120502 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120424 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120417 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120410 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120404 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120328 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120320 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120214 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120207 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120131 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120120 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120117 +packetLen(0x0362, 26) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20120103 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20121227 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121218 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121205 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121128 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121107 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20121031 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120925 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120919 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120814 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120808 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120724 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120716 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120710 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120702 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120612 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120601 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120529 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120515 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120508 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120502 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120424 +packetLen(0x0363, 18) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120417 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120328 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120320 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120228 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120221 +packetLen(0x0363, 18) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120214 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120207 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120131 +packetLen(0x0363, 12) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120120 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120117 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20120103 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20121121 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20121114 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20121107 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20121031 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120925 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120919 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120814 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120808 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120801 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120724 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120716 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120710 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120702 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120626 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120612 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120601 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120529 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120523 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120515 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120508 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120502 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120424 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120417 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120410 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120404 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120328 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120320 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120314 +packetLen(0x0364, 19) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120214 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120207 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120120 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120117 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20120103 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20121121 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121114 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121107 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121031 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121024 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20121017 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120925 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120919 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120911 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120905 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120830 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120822 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120814 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120808 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120724 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120716 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120710 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120702 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120626 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120612 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120601 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120529 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120508 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120502 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120424 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120417 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120328 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120320 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120214 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120207 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120131 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120120 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120117 +packetLen(0x0365, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20120103 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20121227 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121218 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121107 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121031 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121024 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20121017 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120925 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120919 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120905 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120830 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120814 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120808 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120724 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120716 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120702 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120626 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120612 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120601 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120529 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120523 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120515 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120508 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120502 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120424 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120410 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120404 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120328 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120307 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120228 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120221 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120214 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120207 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120120 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120117 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20120103 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20120716 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120710 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120314 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120307 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120207 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120131 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120120 +packetLen(0x0367, 10) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120117 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120110 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20120103 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20121227 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20121218 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20121212 +packetLen(0x0368, 26) // CZ_REQNAME2 +#elif PACKETVER >= 20121107 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20121031 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20121024 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20121017 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120925 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120919 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120905 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120830 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120814 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120808 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120724 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120716 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120626 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120612 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120601 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120529 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120515 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120417 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120328 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120307 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120228 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120221 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120214 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120207 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120131 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20120120 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20120117 +packetLen(0x0368, 7) // CZ_REQNAME2 +#elif PACKETVER >= 20120103 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20121227 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121218 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121212 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121107 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121031 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121024 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20121017 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120925 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120919 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120905 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120830 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120814 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120808 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120724 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120716 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120626 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120612 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120601 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120529 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120523 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120515 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120502 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120424 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120404 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120328 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120320 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120314 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120307 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120228 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120221 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120214 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120131 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120117 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20120103 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20121031 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20121024 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20120925 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120919 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120905 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120830 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20120814 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120808 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120724 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120716 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120710 +packetLen(0x0436, 7) // CZ_ENTER2 +#elif PACKETVER >= 20120626 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120612 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120601 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120529 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120508 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120502 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120424 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120417 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120328 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120320 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120214 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120207 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20120131 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120120 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20120117 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20120103 +packetLen(0x0436, 4) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20121227 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121218 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121128 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121114 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121107 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121031 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121024 +packetLen(0x0437, 10) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20121017 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120925 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120919 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120905 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120830 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120822 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120814 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120808 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120724 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120716 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120626 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120612 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120601 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120529 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120515 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120502 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120424 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120404 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120328 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120307 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120228 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120221 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120214 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120131 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120120 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120117 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20120103 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20121227 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121218 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121107 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121031 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121024 +packetLen(0x0438, 12) // CZ_USE_SKILL2 +#elif PACKETVER >= 20121017 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120925 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120919 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120911 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120822 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120814 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120808 +packetLen(0x0438, 90) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120801 +packetLen(0x0438, 18) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120724 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120716 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120626 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120612 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120601 +packetLen(0x0438, 19) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120529 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120515 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120502 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120424 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120404 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120328 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120307 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120228 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120221 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120214 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120131 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120117 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20120103 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +#if PACKETVER >= 20120523 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG +#endif + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20121107 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20121031 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20121010 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120925 +packetLen(0x07e4, 4) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120919 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120814 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120808 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120724 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120710 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120626 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120612 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120601 +packetLen(0x07e4, 10) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120529 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120508 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120502 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120424 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120417 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120410 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120404 +packetLen(0x07e4, 90) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120328 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120320 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120214 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120207 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120117 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120110 +packetLen(0x07e4, 19) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20120103 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20121205 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20121128 +packetLen(0x07ec, 26) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20121107 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20121031 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120925 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120919 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120822 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120814 +packetLen(0x07ec, 12) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120808 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120724 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120716 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120626 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120612 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120601 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120529 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120508 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120502 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120424 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120417 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120328 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120320 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120307 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120228 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120214 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120207 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120131 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120120 +packetLen(0x07ec, 26) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120117 +packetLen(0x07ec, 36) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20120103 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20121205 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20121128 +packetLen(0x0802, 36) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20121107 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20121031 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120925 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120919 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120905 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120830 +packetLen(0x0802, 36) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120814 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120808 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120724 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120716 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120710 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120702 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120626 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120612 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120601 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120529 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120508 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120502 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120424 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120417 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120328 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120320 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120214 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120207 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120131 +packetLen(0x0802, 90) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120120 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20120103 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20121227 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121218 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121107 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121031 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121024 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20121017 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120925 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120919 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120905 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120830 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120814 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120808 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120724 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120716 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120710 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120626 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120612 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120601 +packetLen(0x0811, 12) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120523 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120515 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120502 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120424 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120404 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120328 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120307 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120228 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120221 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120214 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120207 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120131 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120120 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120117 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20120103 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20121227 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121218 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121212 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121205 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121121 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121114 +packetLen(0x0815, 90) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121107 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121031 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121024 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121017 +packetLen(0x0815, 8) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20121010 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120925 +packetLen(0x0815, 12) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120919 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120905 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120830 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120822 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120814 +packetLen(0x0815, 6) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120808 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120801 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120716 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120710 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120702 +packetLen(0x0815, 26) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120626 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120612 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120601 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120529 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120515 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120502 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120424 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120404 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120328 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120307 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120228 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120221 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120214 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120207 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120131 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120117 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20120103 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20121218 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121212 +packetLen(0x0817, 10) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121031 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121024 +packetLen(0x0817, 7) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121017 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20121010 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120911 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120905 +packetLen(0x0817, 36) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120523 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120515 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120508 +packetLen(0x0817, 4) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120502 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120424 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120214 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120207 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20120103 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20121227 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121218 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121107 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121031 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121024 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121017 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20121010 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120925 +packetLen(0x0819, 19) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120919 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120911 +packetLen(0x0819, 8) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120905 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120830 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120814 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120808 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120724 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120716 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120702 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120626 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120618 +packetLen(0x0819, 36) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120612 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120601 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120529 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120515 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120502 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120424 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120404 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120328 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120314 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120228 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120221 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120214 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120131 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120117 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20120103 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20121010 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120925 +packetLen(0x0835, 90) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120905 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120830 +packetLen(0x0835, 8) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120801 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120724 +packetLen(0x0835, 26) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20120103 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20121227 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121218 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121121 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121114 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121107 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121031 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121024 +packetLen(0x0838, 18) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121017 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20121010 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120925 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120919 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120905 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120830 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120814 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120808 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120724 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120716 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120702 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120626 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120612 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120601 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120529 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120515 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120502 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120424 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120404 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120328 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120307 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120228 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120221 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120214 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120207 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120131 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120120 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120117 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120110 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20120103 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20121227 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121218 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121107 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121031 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121024 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20121017 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120925 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120919 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120905 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120830 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120814 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120808 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120724 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120716 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120626 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120612 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120601 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120529 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120515 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120502 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120424 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120404 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120328 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120314 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120228 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120221 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120214 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120131 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120117 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20120103 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20121107 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20121031 +packetLen(0x085a, 26) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20121024 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120830 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120822 +packetLen(0x085a, 5) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120710 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120702 +packetLen(0x085a, 7) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120523 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120515 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120307 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120228 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120221 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120214 +packetLen(0x085a, 12) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120103 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20120716 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120710 +packetLen(0x085b, 10) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120410 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120404 +packetLen(0x085b, 4) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120103 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20121218 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20121212 +packetLen(0x085c, 7) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20121114 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20121107 +packetLen(0x085c, -1) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120830 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120822 +packetLen(0x085c, -1) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120103 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20121010 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120925 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120911 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120905 +packetLen(0x085d, 10) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120830 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120822 +packetLen(0x085d, 10) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120808 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120801 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120103 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20120822 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120814 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120103 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20120814 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120808 +packetLen(0x085f, 36) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120702 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120626 +packetLen(0x085f, 5) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120612 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120601 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120529 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120523 +packetLen(0x085f, 5) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120103 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20121227 +packetLen(0x0860, -1) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120529 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120523 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120103 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20121205 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121128 +packetLen(0x0861, 18) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121114 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121107 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120905 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120830 +packetLen(0x0861, 19) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120822 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120814 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120710 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120702 +packetLen(0x0861, 8) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120612 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120601 +packetLen(0x0861, 18) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120529 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120523 +packetLen(0x0861, 18) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120404 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120328 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120314 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120307 +packetLen(0x0861, 36) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120103 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20121121 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20121114 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120822 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120814 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120710 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120702 +packetLen(0x0862, 10) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120103 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20121212 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20121205 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20121128 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20121121 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120710 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120702 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120612 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120601 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120502 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120424 +packetLen(0x0863, 26) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120314 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120307 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120228 +packetLen(0x0863, 12) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120103 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20121212 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20121205 +packetLen(0x0864, 18) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120410 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120404 +packetLen(0x0864, 18) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120320 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120314 +packetLen(0x0864, 5) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120103 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20121114 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20121107 +packetLen(0x0865, 19) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120822 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120814 +packetLen(0x0865, 8) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120404 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120328 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120314 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120307 +packetLen(0x0865, 6) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120103 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20120801 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120724 +packetLen(0x0866, 4) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120702 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120626 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120529 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120523 +packetLen(0x0866, 8) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120404 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120328 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120103 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20121227 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121218 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121205 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121128 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120710 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120702 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120515 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120508 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120103 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20121031 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20121024 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20121017 +packetLen(0x0868, 8) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120919 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120911 +packetLen(0x0868, 6) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120822 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120814 +packetLen(0x0868, 7) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120702 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120626 +packetLen(0x0868, 5) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120515 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120508 +packetLen(0x0868, 5) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120103 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20121017 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20121010 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120925 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120702 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120626 +packetLen(0x0869, 10) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120612 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120601 +packetLen(0x0869, 10) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120529 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120523 +packetLen(0x0869, 19) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120515 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120221 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120214 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120103 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20121128 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20121121 +packetLen(0x086a, 90) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120808 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120801 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120601 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120529 +packetLen(0x086a, 36) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120523 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120410 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120404 +packetLen(0x086a, 5) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120314 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120307 +packetLen(0x086a, 19) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120221 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120214 +packetLen(0x086a, 26) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120103 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20121024 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20121017 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120830 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120822 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120808 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120801 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120103 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20121212 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121205 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121128 +packetLen(0x086c, 10) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121121 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121114 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121107 +packetLen(0x086c, 5) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121017 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121010 +packetLen(0x086c, 8) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20120417 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20120410 +packetLen(0x086c, 8) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20120103 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20121128 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20121121 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20121114 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20121107 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120702 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120626 +packetLen(0x086d, 18) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120612 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120601 +packetLen(0x086d, 5) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120103 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20121205 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121128 +packetLen(0x086e, 4) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120830 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120822 +packetLen(0x086e, 5) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120221 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120214 +packetLen(0x086e, 6) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120103 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20121128 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20121121 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120919 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120911 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120905 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120822 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120814 +packetLen(0x086f, 36) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120702 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120626 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120612 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120601 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120328 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120320 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120103 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20121227 +packetLen(0x0870, 12) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121212 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121205 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120314 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120307 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120228 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120221 +packetLen(0x0870, 6) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120103 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20121107 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20121031 +packetLen(0x0871, 5) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120702 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120626 +packetLen(0x0871, 6) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120612 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120601 +packetLen(0x0871, 36) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120502 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120424 +packetLen(0x0871, 10) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120417 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120410 +packetLen(0x0871, 5) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120307 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120228 +packetLen(0x0871, 10) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120103 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20121227 +packetLen(0x0872, 6) +#elif PACKETVER >= 20121218 +packetLen(0x0872, 4) +#elif PACKETVER >= 20121205 +packetLen(0x0872, 2) +#elif PACKETVER >= 20121128 +packetLen(0x0872, 10) +#elif PACKETVER >= 20121121 +packetLen(0x0872, 6) +#elif PACKETVER >= 20121031 +packetLen(0x0872, 2) +#elif PACKETVER >= 20121024 +packetLen(0x0872, 6) +#elif PACKETVER >= 20120905 +packetLen(0x0872, 2) +#elif PACKETVER >= 20120830 +packetLen(0x0872, 26) +#elif PACKETVER >= 20120822 +packetLen(0x0872, -1) +#elif PACKETVER >= 20120801 +packetLen(0x0872, 2) +#elif PACKETVER >= 20120724 +packetLen(0x0872, -1) +#elif PACKETVER >= 20120702 +packetLen(0x0872, 2) +#elif PACKETVER >= 20120626 +packetLen(0x0872, 6) +#elif PACKETVER >= 20120221 +packetLen(0x0872, 2) +#elif PACKETVER >= 20120214 +packetLen(0x0872, 8) +#elif PACKETVER >= 20120103 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20121114 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20121107 +packetLen(0x0873, 8) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20121010 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120925 +packetLen(0x0873, -1) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120808 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120801 +packetLen(0x0873, 10) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120417 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120410 +packetLen(0x0873, 4) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120103 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20121017 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20121010 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120702 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120626 +packetLen(0x0874, 5) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120502 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120424 +packetLen(0x0874, 90) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120404 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120328 +packetLen(0x0874, 12) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120103 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20121212 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121205 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121128 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121121 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121031 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20121024 +packetLen(0x0875, 4) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120822 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120814 +packetLen(0x0875, 5) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120808 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120801 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120702 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120626 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120404 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120328 +packetLen(0x0875, 4) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120307 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120228 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120103 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20121121 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20121114 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120919 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120905 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120404 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120328 +packetLen(0x0876, 36) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120103 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20121218 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20121212 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20121107 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20121031 +packetLen(0x0877, 19) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120919 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120911 +packetLen(0x0877, 26) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120905 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120801 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120724 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120716 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120702 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120103 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20121212 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20121205 +packetLen(0x0878, 90) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20121114 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20121107 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120911 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120905 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120716 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120710 +packetLen(0x0878, -1) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120702 +packetLen(0x0878, 12) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120103 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20121121 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20121114 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120919 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120911 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120710 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120702 +packetLen(0x0879, 18) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120103 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20121227 +packetLen(0x087a, 7) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20121218 +packetLen(0x087a, 5) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20121031 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20121024 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20121010 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120925 +packetLen(0x087a, 6) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120919 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120911 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120905 +packetLen(0x087a, 10) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120103 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20121227 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20121218 +packetLen(0x087b, 26) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20121031 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20121024 +packetLen(0x087b, -1) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120911 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120905 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120529 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120523 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120103 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20120830 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120822 +packetLen(0x087c, 90) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120801 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120724 +packetLen(0x087c, 18) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120601 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120529 +packetLen(0x087c, 26) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120523 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120515 +packetLen(0x087c, 5) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120328 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120320 +packetLen(0x087c, 36) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120103 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20121218 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121212 +packetLen(0x087d, 10) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121017 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121010 +packetLen(0x087d, 90) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120830 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120822 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120612 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120601 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120523 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120515 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120103 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20121031 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20121024 +packetLen(0x087e, 10) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20121010 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120925 +packetLen(0x087e, 26) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120911 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120905 +packetLen(0x087e, 8) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120529 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120523 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120515 +packetLen(0x087e, 12) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120103 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20121218 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121212 +packetLen(0x087f, 12) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121114 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121107 +packetLen(0x087f, 5) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120822 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120814 +packetLen(0x087f, 26) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120716 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120710 +packetLen(0x087f, 5) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120529 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120523 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120103 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20121128 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121121 +packetLen(0x0880, 5) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120103 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20120702 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120626 +packetLen(0x0881, 6) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120221 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120214 +packetLen(0x0881, 10) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120103 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20121031 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20121024 +packetLen(0x0882, 36) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120822 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120814 +packetLen(0x0882, 18) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120515 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120508 +packetLen(0x0882, 8) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120103 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20121017 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121010 +packetLen(0x0883, 5) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120710 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120702 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120404 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120328 +packetLen(0x0883, 90) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120307 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120228 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120103 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20120515 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120508 +packetLen(0x0884, 36) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120417 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120410 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120314 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120307 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20120103 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20120830 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120822 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120612 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120601 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120515 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120508 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120417 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120410 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120320 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120314 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120307 +packetLen(0x0885, 7) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120228 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120221 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120207 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120131 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120120 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120117 +packetLen(0x0885, 18) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20120103 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20121218 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120710 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120702 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120502 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120424 +packetLen(0x0886, 36) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120417 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120404 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120228 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120221 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120120 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120117 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20120103 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20121024 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20121017 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20121010 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120925 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120911 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120905 +packetLen(0x0887, 19) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120830 +packetLen(0x0887, 10) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120801 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120724 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120314 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120307 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120207 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120131 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120120 +packetLen(0x0887, 4) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120117 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20120103 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20121227 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121212 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121205 +packetLen(0x0888, 36) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121128 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121031 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121024 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121017 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20121010 +packetLen(0x0888, 4) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120905 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120830 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120801 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120724 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120228 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120214 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120207 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120131 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20120103 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20121227 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121218 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121212 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121205 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121031 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20121024 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120710 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120702 +packetLen(0x0889, 90) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120417 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120410 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120320 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120314 +packetLen(0x0889, 7) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120307 +packetLen(0x0889, 10) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120131 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120120 +packetLen(0x0889, 36) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120117 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20120103 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20121031 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20121024 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20121010 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120925 +packetLen(0x088a, 26) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120919 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120911 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120830 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120822 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120404 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120328 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120307 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120228 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120207 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120131 +packetLen(0x088a, 19) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20120103 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20121212 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121205 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20121128 +packetLen(0x088b, -1) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120822 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120814 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120808 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120801 +packetLen(0x088b, 5) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120221 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120214 +packetLen(0x088b, 18) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20120103 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20120320 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120314 +packetLen(0x088c, 4) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120221 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120214 +packetLen(0x088c, 26) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120120 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120117 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20120103 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20121010 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120925 +packetLen(0x088d, 10) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120822 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120814 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120716 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120710 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120529 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120523 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120221 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120214 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120207 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120131 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120120 +packetLen(0x088d, 18) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20120103 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20121227 +packetLen(0x088e, 5) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120801 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120724 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120612 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120601 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120502 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120424 +packetLen(0x088e, 5) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120404 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120328 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120120 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120117 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20120103 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20121114 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20121107 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20121017 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20121010 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120925 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120919 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120911 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120814 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120808 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120508 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120502 +packetLen(0x088f, 36) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120131 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120120 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120117 +packetLen(0x088f, 10) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20120103 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20121227 +packetLen(0x0890, 10) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20121218 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20121114 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20121107 +packetLen(0x0890, 10) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120905 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120830 +packetLen(0x0890, 4) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120808 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120801 +packetLen(0x0890, 7) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120529 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120523 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120314 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120307 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120221 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120214 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120207 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120131 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120120 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20120103 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20121114 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121107 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121017 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20121010 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120612 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120601 +packetLen(0x0891, 26) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120529 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120523 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120515 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120417 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120410 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120307 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120228 +packetLen(0x0891, 36) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120131 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120120 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120117 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20120103 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20121128 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20121121 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120702 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120626 +packetLen(0x0892, 36) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120120 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120117 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20120103 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20121218 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20121212 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120716 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120710 +packetLen(0x0893, 36) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20120103 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20121227 +packetLen(0x0894, 26) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20121205 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20121128 +packetLen(0x0894, 8) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120404 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120328 +packetLen(0x0894, -1) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120131 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120120 +packetLen(0x0894, 10) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20120103 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20121218 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20121212 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20121205 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20121128 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120911 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120905 +packetLen(0x0895, 5) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120822 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120814 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120808 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120801 +packetLen(0x0895, 19) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120131 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120120 +packetLen(0x0895, 7) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20120103 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20121227 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121114 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121107 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121017 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20121010 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20120103 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20121024 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20121017 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120911 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120905 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120716 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120710 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120702 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120612 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120601 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120529 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120523 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120117 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120110 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20120103 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20121121 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121114 +packetLen(0x0898, 7) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121107 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121031 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121017 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20121010 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120207 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120131 +packetLen(0x0898, 4) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20120103 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20121128 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20121121 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20121114 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120830 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120822 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120716 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120710 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120410 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120404 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120207 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120131 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120120 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20120103 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20121212 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121205 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121128 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121121 +packetLen(0x089a, 18) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121114 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121107 +packetLen(0x089a, 7) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121024 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20121017 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120523 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120515 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120508 +packetLen(0x089a, 8) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120502 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120424 +packetLen(0x089a, -1) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20120103 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20121114 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20121107 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120502 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120424 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120221 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120214 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120117 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120110 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20120103 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20121031 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20121024 +packetLen(0x089c, 26) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120808 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120801 +packetLen(0x089c, 90) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120417 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120410 +packetLen(0x089c, 26) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120404 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20120103 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20121212 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20121205 +packetLen(0x089d, 12) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20121010 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120925 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120808 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120801 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120307 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120228 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120120 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120117 +packetLen(0x089d, 90) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20120103 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20120710 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120702 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120320 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120314 +packetLen(0x089e, 26) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120120 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120117 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20120103 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20120830 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120822 +packetLen(0x089f, 19) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120808 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120801 +packetLen(0x089f, 5) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120724 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120716 +packetLen(0x089f, 36) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120710 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120702 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120221 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120214 +packetLen(0x089f, 36) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120207 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120131 +packetLen(0x089f, 36) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120120 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20120103 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20120911 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120905 +packetLen(0x08a0, 4) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120710 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120702 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120626 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120502 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120424 +packetLen(0x08a0, 5) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120404 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120328 +packetLen(0x08a0, 18) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120320 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120314 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120131 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120120 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20120103 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20121017 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20121010 +packetLen(0x08a1, 7) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120801 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120724 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120131 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120120 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20120103 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20120808 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120801 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120612 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120601 +packetLen(0x08a2, 7) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120523 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120515 +packetLen(0x08a2, 90) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120417 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120410 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120307 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120228 +packetLen(0x08a2, 4) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120207 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120131 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20120103 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20121218 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20121212 +packetLen(0x08a3, 19) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120716 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120710 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120529 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120523 +packetLen(0x08a3, 10) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120502 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120424 +packetLen(0x08a3, -1) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120410 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120404 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20120103 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20121010 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120925 +packetLen(0x08a4, 7) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120919 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120911 +packetLen(0x08a4, 18) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120702 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120626 +packetLen(0x08a4, 19) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120502 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120424 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120131 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120117 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20120103 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20120919 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120911 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120830 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120822 +packetLen(0x08a5, 8) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120523 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120515 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120221 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120214 +packetLen(0x08a5, 4) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120131 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120120 +packetLen(0x08a5, 90) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20120103 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20121227 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20121024 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20121017 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20121010 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120919 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120911 +packetLen(0x08a6, 19) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120905 +packetLen(0x08a6, 26) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120716 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120710 +packetLen(0x08a6, -1) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120417 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120410 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120404 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120328 +packetLen(0x08a6, 19) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120120 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120117 +packetLen(0x08a6, 19) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20120103 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20121218 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121212 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121128 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20121121 +packetLen(0x08a7, -1) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120919 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120911 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120515 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120508 +packetLen(0x08a7, 18) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120221 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120214 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20120103 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20121205 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20121128 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120822 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120814 +packetLen(0x08a8, 4) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120716 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120710 +packetLen(0x08a8, 19) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120523 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120515 +packetLen(0x08a8, 19) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120424 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120417 +packetLen(0x08a8, 36) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120320 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120314 +packetLen(0x08a8, 36) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120307 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120228 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120120 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120117 +packetLen(0x08a8, 12) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20120103 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20121218 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121212 +packetLen(0x08a9, 36) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121121 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121114 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121031 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121024 +packetLen(0x08a9, -1) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121017 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20121010 +packetLen(0x08a9, -1) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120801 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120724 +packetLen(0x08a9, 19) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120529 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120523 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120515 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120508 +packetLen(0x08a9, 19) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120502 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120424 +packetLen(0x08a9, 7) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120120 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120117 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20120103 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20121227 +packetLen(0x08aa, 18) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121218 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121212 +packetLen(0x08aa, 4) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121128 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121121 +packetLen(0x08aa, 7) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121031 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20121024 +packetLen(0x08aa, 5) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120808 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120801 +packetLen(0x08aa, 5) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120716 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120710 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20120103 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20121121 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20121114 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120830 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120822 +packetLen(0x08ab, 7) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120808 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120801 +packetLen(0x08ab, 8) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120724 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120529 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120523 +packetLen(0x08ab, 8) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120221 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120214 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120110 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20120103 +packetLen(0x08ab, 36) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20121218 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20121212 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120529 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120523 +packetLen(0x08ac, 7) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120515 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120328 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120320 +packetLen(0x08ac, 26) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20120103 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20121212 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121205 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121128 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121114 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20121107 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120919 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120911 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120523 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120515 +packetLen(0x08ad, 10) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120404 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120328 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120207 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120131 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120120 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20120103 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +#if PACKETVER >= 20120307 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE +#elif PACKETVER >= 20120103 +packetLen(0x08e2, 25) // ZC_NAVIGATION_ACTIVE +#endif + +// Packet: 0x08e3 +packetLen(0x08e3, 146) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08e5 +packetLen(0x08e5, 41) // CZ_PARTY_RECRUIT_REQ_REGISTER + +// Packet: 0x08e6 +packetLen(0x08e6, 4) // ZC_PARTY_RECRUIT_ACK_REGISTER + +// Packet: 0x08e7 +packetLen(0x08e7, 10) // CZ_PARTY_RECRUIT_REQ_SEARCH + +// Packet: 0x08e8 +packetLen(0x08e8, -1) + +// Packet: 0x08e9 +packetLen(0x08e9, 2) // CZ_PARTY_RECRUIT_REQ_DELETE + +// Packet: 0x08ea +packetLen(0x08ea, 4) // ZC_PARTY_RECRUIT_ACK_DELETE + +// Packet: 0x08eb +packetLen(0x08eb, 39) // CZ_PARTY_RECRUIT_REQ_UPDATE + +// Packet: 0x08ec +packetLen(0x08ec, 73) // ZC_PARTY_RECRUIT_NOTIFY_INSERT + +// Packet: 0x08ed +packetLen(0x08ed, 43) // ZC_PARTY_RECRUIT_NOTIFY_UPDATE + +// Packet: 0x08ee +packetLen(0x08ee, 6) // ZC_PARTY_RECRUIT_NOTIFY_DELETE + +// Packet: 0x08ef +packetLen(0x08ef, 6) // CZ_PARTY_RECRUIT_ADD_FILTERLINGLIST + +// Packet: 0x08f0 +packetLen(0x08f0, 6) // CZ_PARTY_RECRUIT_SUB_FILTERLINGLIST + +// Packet: 0x08f1 +packetLen(0x08f1, 6) // CZ_PARTY_RECRUIT_REQ_VOLUNTEER + +// Packet: 0x08f2 +packetLen(0x08f2, 36) // ZC_PARTY_RECRUIT_VOLUNTEER_INFO + +// Packet: 0x08f3 +packetLen(0x08f3, -1) + +// Packet: 0x08f4 +packetLen(0x08f4, 6) // CZ_PARTY_RECRUIT_SHOW_EQUIPMENT + +// Packet: 0x08f5 +packetLen(0x08f5, -1) // CZ_UNKNOWN_BOOKING_SOMMON_MEMBER_08f5 + +// Packet: 0x08f6 +packetLen(0x08f6, 22) // ZC_PARTY_RECRUIT_RECALL_COST + +// Packet: 0x08f7 +packetLen(0x08f7, 3) // CZ_PARTY_RECRUIT_ACK_RECALL + +// Packet: 0x08f8 +packetLen(0x08f8, 7) // ZC_PARTY_RECRUIT_FAILED_RECALL + +// Packet: 0x08f9 +packetLen(0x08f9, 6) // CZ_PARTY_RECRUIT_REFUSE_VOLUNTEER + +// Packet: 0x08fa +packetLen(0x08fa, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER + +// Packet: 0x08fb +packetLen(0x08fb, 6) // CZ_PARTY_RECRUIT_CANCEL_VOLUNTEER + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x0909 +packetLen(0x0909, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090b +packetLen(0x090b, 30) // ZC_PARTY_RECRUIT_ADD_FILTERLINGLIST + +// Packet: 0x090c +packetLen(0x090c, 30) // ZC_PARTY_RECRUIT_SUB_FILTERLINGLIST + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +#if PACKETVER >= 20120131 +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 +#endif + +// Packet: 0x0910 +#if PACKETVER >= 20120120 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME +#endif + +// Packet: 0x0911 +#if PACKETVER >= 20120120 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME +#endif + +// Packet: 0x0912 +#if PACKETVER >= 20120120 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME +#endif + +// Packet: 0x0913 +#if PACKETVER >= 20120120 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME +#endif + +// Packet: 0x0914 +#if PACKETVER >= 20120131 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 +#endif + +// Packet: 0x0915 +#if PACKETVER >= 20120131 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 +#endif + +// Packet: 0x0916 +#if PACKETVER >= 20120131 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 +#endif + +// Packet: 0x0917 +#if PACKETVER >= 20121218 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20121212 +packetLen(0x0917, 8) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120911 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120905 +packetLen(0x0917, -1) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120830 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120822 +packetLen(0x0917, -1) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120808 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120801 +packetLen(0x0917, 36) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120307 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120228 +packetLen(0x0917, 7) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120207 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20121024 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20121017 +packetLen(0x0918, 36) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120911 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120905 +packetLen(0x0918, -1) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120207 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20120601 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120529 +packetLen(0x0919, 5) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120307 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120228 +packetLen(0x0919, 19) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120221 +packetLen(0x0919, 4) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120207 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20121227 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121218 +packetLen(0x091a, 8) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121212 +packetLen(0x091a, -1) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121128 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121121 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121114 +packetLen(0x091a, 8) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120911 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120905 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120523 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120515 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120404 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120328 +packetLen(0x091a, -1) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120221 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120214 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120207 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20121205 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20121128 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120502 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120424 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120404 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120328 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120207 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20121227 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20121218 +packetLen(0x091c, 19) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20121212 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20121205 +packetLen(0x091c, 8) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20121128 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120801 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120724 +packetLen(0x091c, 5) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120417 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120410 +packetLen(0x091c, 26) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20120207 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20120905 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120830 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120808 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120801 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120612 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120601 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120417 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120410 +packetLen(0x091d, 18) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120404 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120328 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120207 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20121205 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20121128 +packetLen(0x091e, -1) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120529 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120523 +packetLen(0x091e, 12) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120207 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20121227 +packetLen(0x091f, 4) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20121205 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20121128 +packetLen(0x091f, 90) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120822 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120814 +packetLen(0x091f, 19) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120801 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120724 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120523 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120515 +packetLen(0x091f, 26) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120207 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20121227 +packetLen(0x0920, 90) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121218 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121212 +packetLen(0x0920, 5) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121024 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121017 +packetLen(0x0920, 4) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120822 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120814 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120702 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120626 +packetLen(0x0920, 7) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120404 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120328 +packetLen(0x0920, 5) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120221 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120214 +packetLen(0x0920, 8) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120207 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20121212 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121205 +packetLen(0x0921, 19) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121128 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121121 +packetLen(0x0921, 10) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120221 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120214 +packetLen(0x0921, -1) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120207 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20121205 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20121128 +packetLen(0x0922, 8) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20121114 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20121107 +packetLen(0x0922, 8) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120502 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120424 +packetLen(0x0922, 10) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120207 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20121010 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120925 +packetLen(0x0923, 6) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120523 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120515 +packetLen(0x0923, 7) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120502 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120424 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120207 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20120612 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120601 +packetLen(0x0924, 90) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120207 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20121017 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20121010 +packetLen(0x0925, 12) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120307 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120228 +packetLen(0x0925, -1) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120207 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20120905 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120830 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120502 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120424 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120314 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120307 +packetLen(0x0926, 18) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120207 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20121128 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20121121 +packetLen(0x0927, 19) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20121010 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120925 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120911 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120905 +packetLen(0x0927, 18) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120830 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120822 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120207 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20120801 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120724 +packetLen(0x0928, -1) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120307 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120228 +packetLen(0x0928, 26) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120207 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20121128 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121121 +packetLen(0x0929, 4) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120822 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120814 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120801 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120724 +packetLen(0x0929, 12) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120314 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120307 +packetLen(0x0929, 26) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120207 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20120808 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120801 +packetLen(0x092a, 4) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120320 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120314 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120207 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20121107 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20121031 +packetLen(0x092b, 4) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120801 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120724 +packetLen(0x092b, 90) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120523 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120515 +packetLen(0x092b, 8) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120404 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120328 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120207 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20120710 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120702 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120529 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120523 +packetLen(0x092c, 5) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120207 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20120716 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120710 +packetLen(0x092d, 12) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120307 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120228 +packetLen(0x092d, -1) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120207 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20120808 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120801 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120612 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120601 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120410 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120404 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120207 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20121205 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20121128 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120702 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120626 +packetLen(0x092f, 4) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120612 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120601 +packetLen(0x092f, -1) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120207 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20121121 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20121114 +packetLen(0x0930, 4) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120919 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120911 +packetLen(0x0930, -1) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120808 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120801 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120529 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120523 +packetLen(0x0930, 4) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120228 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120221 +packetLen(0x0930, 26) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20120207 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20121205 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20121128 +packetLen(0x0931, 7) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20121031 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20121024 +packetLen(0x0931, 6) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120320 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120314 +packetLen(0x0931, 8) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120207 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20121227 +packetLen(0x0932, 5) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121218 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121212 +packetLen(0x0932, 18) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121010 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120925 +packetLen(0x0932, 6) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120822 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120814 +packetLen(0x0932, 10) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120207 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20121227 +packetLen(0x0933, -1) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120307 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120228 +packetLen(0x0933, 18) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120221 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120214 +packetLen(0x0933, 6) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120207 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20121114 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121107 +packetLen(0x0934, 12) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121017 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121010 +packetLen(0x0934, 6) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120905 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120830 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120822 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120814 +packetLen(0x0934, 10) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120808 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120801 +packetLen(0x0934, 10) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120404 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120328 +packetLen(0x0934, 6) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120207 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20121227 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20121218 +packetLen(0x0935, 26) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20121121 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20121114 +packetLen(0x0935, 10) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120830 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120822 +packetLen(0x0935, 5) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120702 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120626 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120228 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120221 +packetLen(0x0935, -1) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20120207 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20120716 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120710 +packetLen(0x0936, 8) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120702 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120626 +packetLen(0x0936, 12) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120612 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120601 +packetLen(0x0936, 8) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120207 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20120830 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120822 +packetLen(0x0937, 10) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120307 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120228 +packetLen(0x0937, 26) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120221 +packetLen(0x0937, 8) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120207 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20121128 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20121121 +packetLen(0x0938, 12) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20121114 +packetLen(0x0938, -1) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120801 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120724 +packetLen(0x0938, 10) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120702 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120626 +packetLen(0x0938, -1) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120417 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120410 +packetLen(0x0938, 6) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120207 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20120207 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20121212 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20121205 +packetLen(0x093a, 6) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20121031 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20121024 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120702 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120626 +packetLen(0x093a, 90) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120601 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120529 +packetLen(0x093a, 19) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120320 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120314 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120207 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20121121 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121114 +packetLen(0x093b, 12) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121107 +packetLen(0x093b, 10) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120314 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120307 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120207 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20121121 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121114 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121017 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121010 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120911 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120905 +packetLen(0x093c, 12) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120808 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120801 +packetLen(0x093c, 26) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120724 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120502 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120424 +packetLen(0x093c, 5) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120228 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120221 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120207 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20120814 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120808 +packetLen(0x093d, 5) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120207 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20121212 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20121205 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120919 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120911 +packetLen(0x093e, 12) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120529 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120523 +packetLen(0x093e, 90) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120404 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120328 +packetLen(0x093e, 10) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120207 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20121212 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20121205 +packetLen(0x093f, 10) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120207 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20121227 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120830 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120822 +packetLen(0x0940, 12) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120814 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120808 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120626 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120618 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120515 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120508 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120410 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120404 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120207 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20121121 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20121114 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120822 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120814 +packetLen(0x0941, 90) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120808 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120801 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120529 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120523 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120502 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120424 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120320 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120314 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120307 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120228 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20120207 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20121031 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20121024 +packetLen(0x0942, -1) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20121017 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20121010 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120925 +packetLen(0x0942, 36) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120307 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120228 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20120207 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20120830 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120822 +packetLen(0x0943, 8) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120612 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120601 +packetLen(0x0943, 4) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20120207 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20121121 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20121114 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120911 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120905 +packetLen(0x0944, 26) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120710 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120702 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120523 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120515 +packetLen(0x0944, 18) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20120207 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20121205 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20121128 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20121114 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20121107 +packetLen(0x0945, 90) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120911 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120905 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120830 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120801 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120724 +packetLen(0x0945, 7) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120417 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120410 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120328 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120320 +packetLen(0x0945, 19) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120307 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120228 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20120207 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20121227 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121218 +packetLen(0x0946, 36) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121212 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121205 +packetLen(0x0946, 10) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121128 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121121 +packetLen(0x0946, 5) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121017 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20121010 +packetLen(0x0946, 19) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120808 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120801 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120320 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120314 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20120207 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20121227 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121218 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121212 +packetLen(0x0947, 5) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121031 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121024 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121017 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20121010 +packetLen(0x0947, 10) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120523 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120515 +packetLen(0x0947, 10) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120502 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120424 +packetLen(0x0947, 4) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120410 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120404 +packetLen(0x0947, 36) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120307 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120228 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20120207 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20121010 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120925 +packetLen(0x0948, 18) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120919 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120911 +packetLen(0x0948, 10) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120502 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120424 +packetLen(0x0948, 6) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20120207 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20121121 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20121114 +packetLen(0x0949, 18) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120919 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120911 +packetLen(0x0949, 4) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20120207 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20121121 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20121114 +packetLen(0x094a, 10) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120710 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120702 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120626 +packetLen(0x094a, -1) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20120207 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20121212 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121205 +packetLen(0x094b, 6) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121121 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20121114 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120919 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120911 +packetLen(0x094b, -1) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120905 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120830 +packetLen(0x094b, 18) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120716 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120710 +packetLen(0x094b, 5) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120523 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120515 +packetLen(0x094b, 5) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120417 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120410 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20120207 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20121017 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20121010 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120601 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120529 +packetLen(0x094c, 5) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20120207 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20121128 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20121121 +packetLen(0x094d, 8) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20121114 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20121107 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120830 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120822 +packetLen(0x094d, 36) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120529 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120523 +packetLen(0x094d, 26) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120515 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120508 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120307 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120228 +packetLen(0x094d, 8) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20120207 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20120830 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120822 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120808 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120801 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120716 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120710 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120612 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120601 +packetLen(0x094e, 5) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20120207 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20121121 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20121114 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120320 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120314 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20120207 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20121205 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20121128 +packetLen(0x0950, 12) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20121121 +packetLen(0x0950, 5) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20121010 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120925 +packetLen(0x0950, 5) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120911 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120905 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20120207 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20121218 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20121212 +packetLen(0x0951, 8) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120702 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120626 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120404 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120328 +packetLen(0x0951, 7) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20120207 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20121128 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20121121 +packetLen(0x0952, 6) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120919 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120911 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120221 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120214 +packetLen(0x0952, 19) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20120207 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20121227 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121218 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121212 +packetLen(0x0953, 6) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121205 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20121128 +packetLen(0x0953, 6) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120830 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120822 +packetLen(0x0953, 18) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120716 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120710 +packetLen(0x0953, 4) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120702 +packetLen(0x0953, 5) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120221 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120214 +packetLen(0x0953, -1) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20120207 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20121212 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121205 +packetLen(0x0954, 7) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121128 +packetLen(0x0954, 8) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121121 +packetLen(0x0954, 36) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121031 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20121024 +packetLen(0x0954, 90) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120618 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120612 +packetLen(0x0954, 36) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120404 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120328 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120307 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120228 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20120207 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20120830 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120822 +packetLen(0x0955, -1) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120502 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120424 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20120207 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20121010 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120925 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120919 +packetLen(0x0956, 36) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120716 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120710 +packetLen(0x0956, -1) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120529 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120523 +packetLen(0x0956, 6) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20120207 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20121227 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121218 +packetLen(0x0957, 18) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121212 +packetLen(0x0957, 90) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121128 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121121 +packetLen(0x0957, 26) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20121017 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120925 +packetLen(0x0957, 5) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120801 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120724 +packetLen(0x0957, 36) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120523 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120515 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120221 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120214 +packetLen(0x0957, 90) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20120207 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20121227 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20121128 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20121121 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20121010 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120925 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120919 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120911 +packetLen(0x0958, 10) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120410 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120404 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20120207 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20121212 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20121205 +packetLen(0x0959, 26) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20121017 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20121010 +packetLen(0x0959, -1) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120919 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120911 +packetLen(0x0959, 7) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120905 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120801 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120724 +packetLen(0x0959, 26) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20120207 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20120207 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20121218 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20121212 +packetLen(0x095b, 8) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120830 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120822 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120612 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120601 +packetLen(0x095b, 8) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120502 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120424 +packetLen(0x095b, -1) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20120207 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20121121 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121114 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121017 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20121010 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120314 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120307 +packetLen(0x095c, 4) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120228 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120221 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120214 +packetLen(0x095c, 10) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20120207 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20121227 +packetLen(0x095d, -1) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20121031 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20121024 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120710 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120702 +packetLen(0x095d, 36) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120404 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120328 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20120207 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20121031 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121024 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20121010 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120925 +packetLen(0x095e, 10) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120307 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120228 +packetLen(0x095e, 5) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20120207 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20120207 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20121205 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121128 +packetLen(0x0960, -1) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121114 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121107 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121024 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20121017 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120911 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120905 +packetLen(0x0960, 90) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120716 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120710 +packetLen(0x0960, 90) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120702 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20120207 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20120710 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120702 +packetLen(0x0961, 4) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120417 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120410 +packetLen(0x0961, 36) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120307 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120228 +packetLen(0x0961, 10) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20120207 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20121227 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20121024 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20121017 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120702 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120626 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20120207 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20121114 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20121107 +packetLen(0x0963, 4) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20121010 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120925 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120919 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120911 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120801 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120724 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120612 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120601 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120404 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120328 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120314 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120307 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120221 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120214 +packetLen(0x0963, 7) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20120207 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20121017 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20121010 +packetLen(0x0964, 26) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120905 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120830 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120808 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120801 +packetLen(0x0964, 12) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120523 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120515 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120320 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120314 +packetLen(0x0964, 18) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20120207 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20121218 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121212 +packetLen(0x0965, -1) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121121 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121114 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121031 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20121017 +packetLen(0x0965, 19) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120801 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120724 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120502 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120424 +packetLen(0x0965, 8) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20120207 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20121218 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121212 +packetLen(0x0966, -1) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121205 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121114 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20121107 +packetLen(0x0966, 18) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120919 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120911 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120801 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120724 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120523 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120515 +packetLen(0x0966, 4) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120328 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120320 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120221 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120214 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20120207 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20120911 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120905 +packetLen(0x0967, 7) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120822 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120814 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120404 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120328 +packetLen(0x0967, 10) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120228 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120221 +packetLen(0x0967, 36) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20120207 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20121212 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20121205 +packetLen(0x0968, 5) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120919 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120911 +packetLen(0x0968, 5) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20120207 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20121017 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20121010 +packetLen(0x0969, 18) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120822 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120814 +packetLen(0x0969, 5) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120228 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120221 +packetLen(0x0969, 19) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20120207 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20121227 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121212 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121121 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121114 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121107 +packetLen(0x096a, 26) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121031 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121024 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20121017 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120925 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120919 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120911 +packetLen(0x096a, 36) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120905 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120830 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120814 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120808 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120724 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120716 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120626 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120612 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120601 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120529 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120523 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120515 +packetLen(0x096a, -1) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120508 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120502 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120424 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120417 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120410 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120404 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120328 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120307 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120228 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120221 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120214 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20120207 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +#if PACKETVER >= 20120404 +packetLen(0x096b, 4) // ZC_PRNPC_STATE +#elif PACKETVER >= 20120207 +packetLen(0x096b, 3) // ZC_PRNPC_STATE +#endif + +// Packet: 0x096c +#if PACKETVER >= 20120207 +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x096d +#if PACKETVER >= 20120228 +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN +#elif PACKETVER >= 20120214 +packetLen(0x096d, 2) // ZC_MERGE_ITEM_OPEN +#endif + +// Packet: 0x096e +#if PACKETVER >= 20120228 +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM +#elif PACKETVER >= 20120221 +packetLen(0x096e, 6) // CZ_REQ_MERGE_ITEM +#elif PACKETVER >= 20120214 +packetLen(0x096e, 10) // CZ_REQ_MERGE_ITEM +#endif + +// Packet: 0x096f +#if PACKETVER >= 20120221 +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM +#elif PACKETVER >= 20120214 +packetLen(0x096f, 3) // ZC_ACK_MERGE_ITEM +#endif + +// Packet: 0x0970 +#if PACKETVER >= 20120214 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS +#endif + +// Packet: 0x0971 +#if PACKETVER >= 20120214 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM +#endif + +// Packet: 0x0972 +#if PACKETVER >= 20120214 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 +#endif + +// Packet: 0x0973 +#if PACKETVER >= 20120214 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 +#endif + +// Packet: 0x0974 +#if PACKETVER >= 20120221 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM +#endif + +// Packet: 0x0975 +#if PACKETVER >= 20120221 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 +#endif + +// Packet: 0x0976 +#if PACKETVER >= 20120221 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 +#endif + +// Packet: 0x0977 +#if PACKETVER >= 20120228 +packetLen(0x0977, 14) // ZC_HP_INFO +#elif PACKETVER >= 20120221 +packetLen(0x0977, 15) // ZC_HP_INFO +#endif + +// Packet: 0x0978 +#if PACKETVER >= 20120328 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO +#endif + +// Packet: 0x0979 +#if PACKETVER >= 20120328 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO +#endif + +// Packet: 0x097a +#if PACKETVER >= 20120410 +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 +#endif + +// Packet: 0x097b +#if PACKETVER >= 20120417 +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 +#endif + +// Packet: 0x097c +#if PACKETVER >= 20120502 +packetLen(0x097c, 4) // CZ_REQ_RANKING +#endif + +// Packet: 0x097d +#if PACKETVER >= 20120502 +packetLen(0x097d, 288) // ZC_ACK_RANKING +#endif + +// Packet: 0x097e +#if PACKETVER >= 20120502 +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT +#endif + +// Packet: 0x097f +#if PACKETVER >= 20120502 +packetLen(0x097f, -1) // ZC_SELECTCART +#endif + +// Packet: 0x0980 +#if PACKETVER >= 20120502 +packetLen(0x0980, 7) // CZ_SELECTCART +#endif + +// Packet: 0x0981 +#if PACKETVER >= 20120515 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN +#endif + +// Packet: 0x0982 +#if PACKETVER >= 20120523 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN +#elif PACKETVER >= 20120515 +packetLen(0x0982, 3) // ZC_FATIGUE_CHN +#endif + +// Packet: 0x0983 +#if PACKETVER >= 20120529 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 +#endif + +// Packet: 0x0984 +#if PACKETVER >= 20120529 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 +#endif + +// Packet: 0x0985 +#if PACKETVER >= 20120601 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 +#endif + +// Packet: 0x0986 +#if PACKETVER >= 20120626 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY +#elif PACKETVER >= 20120612 +packetLen(0x0986, 6) // AC_SHUTDOWN_NOTIFY +#endif + +// Packet: 0x0987 +#if PACKETVER >= 20120702 +packetLen(0x0987, 63) // CA_LOGIN6 +#endif + +// Packet: 0x0988 +#if PACKETVER >= 20120716 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO +#elif PACKETVER >= 20120702 +packetLen(0x0988, 2) // ZC_NOTIFY_CLAN_CONNECTINFO +#endif + +// Packet: 0x0989 +#if PACKETVER >= 20120716 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE +#elif PACKETVER >= 20120702 +packetLen(0x0989, 6) // ZC_ACK_CLAN_LEAVE +#endif + +// Packet: 0x098a +#if PACKETVER >= 20120702 +packetLen(0x098a, -1) // ZC_CLANINFO +#endif + +// Packet: 0x098b +#if PACKETVER >= 20120716 +packetLen(0x098b, 2) // AC_REQ_NEW_USER +#endif + +// Packet: 0x098c +#if PACKETVER >= 20120716 +packetLen(0x098c, 4) // CA_ACK_NEW_USER +#endif + +// Packet: 0x098d +#if PACKETVER >= 20120716 +packetLen(0x098d, -1) // CZ_CLAN_CHAT +#endif + +// Packet: 0x098e +#if PACKETVER >= 20120716 +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT +#endif + +// Packet: 0x098f +#if PACKETVER >= 20120724 +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT +#endif + +// Packet: 0x0990 +#if PACKETVER >= 20120925 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 +#endif + +// Packet: 0x0991 +#if PACKETVER >= 20120925 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 +#endif + +// Packet: 0x0992 +#if PACKETVER >= 20120925 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 +#endif + +// Packet: 0x0993 +#if PACKETVER >= 20120925 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 +#endif + +// Packet: 0x0994 +#if PACKETVER >= 20120925 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 +#endif + +// Packet: 0x0995 +#if PACKETVER >= 20120925 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 +#endif + +// Packet: 0x0996 +#if PACKETVER >= 20120925 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 +#endif + +// Packet: 0x0997 +#if PACKETVER >= 20120925 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 +#endif + +// Packet: 0x0998 +#if PACKETVER >= 20120925 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 +#endif + +// Packet: 0x0999 +#if PACKETVER >= 20120925 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 +#endif + +// Packet: 0x099a +#if PACKETVER >= 20120925 +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 +#endif + +// Packet: 0x099b +#if PACKETVER >= 20121010 +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 +#endif + +// Packet: 0x099c +#if PACKETVER >= 20121024 +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE +#endif + +// Packet: 0x099d +#if PACKETVER >= 20121024 +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE +#endif + +// Packet: 0x099e +#if PACKETVER >= 20121128 +packetLen(0x099e, 12) // HC_QUEUE_ORDER +#endif + +// Packet: 0x099f +#if PACKETVER >= 20121212 +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 +#endif + +// Packet: 0x09a0 +#if PACKETVER >= 20121212 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY +#endif + +// Packet: 0x09a1 +#if PACKETVER >= 20121212 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ +#endif + + +#endif /* COMMON_PACKETS2012_LEN_RE_H */ diff --git a/src/common/packets/packets2013_len_main.h b/src/common/packets/packets2013_len_main.h new file mode 100644 index 000000000..c2c7711e9 --- /dev/null +++ b/src/common/packets/packets2013_len_main.h @@ -0,0 +1,8876 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2013_LEN_MAIN_H +#define COMMON_PACKETS2013_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 146) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20131230 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131223 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131218 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131211 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131016 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131008 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131002 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130828 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130821 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130814 +packetLen(0x0202, 8) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130807 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130717 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130710 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130703 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130612 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130605 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130502 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130424 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130417 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130320 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130313 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130227 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130220 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130109 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130103 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20131230 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20131223 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20131218 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20131106 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20131030 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20131023 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20131016 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20131008 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20131002 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130814 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130807 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130731 +packetLen(0x022d, 26) // CZ_COMMAND_MER +#elif PACKETVER >= 20130717 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130703 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130612 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130605 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130515 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130508 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20130502 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130424 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130313 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130306 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20130227 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130220 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130109 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130103 +packetLen(0x022d, 4) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20131230 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20131223 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20131008 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20131002 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130904 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130828 +packetLen(0x023b, 90) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130814 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130807 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130717 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130710 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130612 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130605 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130529 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130502 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130424 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130410 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130403 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130306 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130220 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130215 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130109 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130103 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20131230 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131218 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131113 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131106 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131030 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131023 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131016 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131008 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131002 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130911 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130904 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130821 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130814 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130807 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130717 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130703 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130626 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130605 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130502 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130417 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130410 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130403 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130320 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130313 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130227 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130220 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130115 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130109 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130103 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20131230 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130724 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130717 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130626 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130618 +packetLen(0x02c4, 5) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130403 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130327 +packetLen(0x02c4, 90) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130103 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20131230 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131211 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131204 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131127 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131106 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131030 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131008 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131002 +packetLen(0x035f, 36) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130925 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130917 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130904 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130814 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130807 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130731 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130724 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130717 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130626 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130618 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130605 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130522 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130417 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130410 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130403 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130327 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130313 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130306 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130227 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130206 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130121 +packetLen(0x035f, 8) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130109 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130103 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20131230 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20131211 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20131106 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20131030 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20131008 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130925 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130911 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130904 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130828 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130821 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130814 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130807 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130717 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130710 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130703 +packetLen(0x0360, 26) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130626 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130618 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130605 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130529 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130522 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130417 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130410 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130403 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130320 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130313 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130306 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130227 +packetLen(0x0360, 19) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130220 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130215 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130206 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130130 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130121 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130109 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130103 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20131230 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131223 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131127 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131120 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131023 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131016 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131008 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131002 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130911 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130904 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130828 +packetLen(0x0361, 12) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130821 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130814 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130807 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130717 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130710 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130612 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130605 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130502 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130424 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130227 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130220 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130121 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130115 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130109 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130103 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20131230 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131218 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131211 +packetLen(0x0362, 90) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131106 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131030 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131016 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131008 +packetLen(0x0362, 19) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131002 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130911 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130904 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130814 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130807 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130717 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130703 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130618 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130605 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130529 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130522 +packetLen(0x0362, 26) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130515 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130502 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130417 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130410 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130403 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130320 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130313 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130227 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130220 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130215 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130206 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130130 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130109 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130103 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20131230 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131218 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131113 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131106 +packetLen(0x0363, 10) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131030 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131008 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131002 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130911 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130904 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130814 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130807 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130717 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130703 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130618 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130605 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130502 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130417 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130410 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130403 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130327 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130320 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130313 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130227 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130220 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130109 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130103 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20131230 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131218 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131204 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131127 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131120 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131113 +packetLen(0x0364, 90) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131106 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131030 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131023 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131016 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131008 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131002 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130917 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130911 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130828 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130814 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130807 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130717 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130703 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130618 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130605 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130502 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130417 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130410 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130403 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130320 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130313 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130227 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130220 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130109 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130103 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20131230 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131218 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131204 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131127 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131106 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131030 +packetLen(0x0365, 19) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131008 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131002 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130911 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130904 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130814 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130807 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130717 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130703 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130618 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130605 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130502 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130417 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130410 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130403 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130327 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130320 +packetLen(0x0365, 12) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130313 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130227 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130220 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130115 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130109 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130103 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20131230 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131218 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131204 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131127 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131106 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131030 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131023 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131016 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131008 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131002 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130917 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130904 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130828 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130821 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130814 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130807 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130717 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130626 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130618 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130605 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130522 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130417 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130410 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130403 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130320 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130313 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130227 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130220 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130215 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130206 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130130 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130121 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130109 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130103 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20130417 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130410 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130313 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130306 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130206 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130130 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130103 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20131230 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20131211 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20131204 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20131127 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20131120 +packetLen(0x0368, 12) // CZ_REQNAME2 +#elif PACKETVER >= 20131106 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20131030 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20131008 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130925 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130917 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130904 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130821 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130814 +packetLen(0x0368, 19) // CZ_REQNAME2 +#elif PACKETVER >= 20130807 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130717 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130626 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130618 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130605 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130529 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130417 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130410 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130403 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130320 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130313 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130306 +packetLen(0x0368, 90) // CZ_REQNAME2 +#elif PACKETVER >= 20130227 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130206 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130130 +packetLen(0x0368, 5) // CZ_REQNAME2 +#elif PACKETVER >= 20130121 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130115 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130109 +packetLen(0x0368, 10) // CZ_REQNAME2 +#elif PACKETVER >= 20130103 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20131230 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131211 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131204 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131127 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131113 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131106 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131030 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131008 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130925 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130917 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130904 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130814 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130807 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130717 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130626 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130618 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130605 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130529 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130522 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130417 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130410 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130403 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130320 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130313 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130227 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130206 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130130 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130121 +packetLen(0x0369, 18) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130109 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130103 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20131230 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20131223 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20131113 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20131106 +packetLen(0x0436, 36) // CZ_ENTER2 +#elif PACKETVER >= 20131030 +packetLen(0x0436, 18) // CZ_ENTER2 +#elif PACKETVER >= 20131008 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20131002 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130917 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130911 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20130904 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130814 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130807 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130717 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130703 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130618 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130605 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130515 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130508 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20130502 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130424 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130320 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130313 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130227 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130220 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130215 +packetLen(0x0436, 18) // CZ_ENTER2 +#elif PACKETVER >= 20130109 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130103 +packetLen(0x0436, 36) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20131230 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131211 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131204 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131127 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131106 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131030 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131008 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131002 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130925 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130917 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130904 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130828 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130821 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130814 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130731 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130724 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130717 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130626 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130618 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130605 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130522 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130417 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130410 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130403 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130320 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130313 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130306 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130206 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130130 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130121 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130115 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130109 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130103 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20131230 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131211 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131204 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131127 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131106 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131030 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131023 +packetLen(0x0438, 26) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131008 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131002 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130925 +packetLen(0x0438, 90) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130917 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130904 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130828 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130821 +packetLen(0x0438, 8) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130814 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130807 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130731 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130717 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130626 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130618 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130529 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130522 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130417 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130410 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130403 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130327 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130320 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130313 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130227 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130206 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130130 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130121 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130109 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130103 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20131230 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131218 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131211 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131204 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131127 +packetLen(0x07e4, 90) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131106 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131030 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131016 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131008 +packetLen(0x07e4, 7) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131002 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130911 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130904 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130814 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130807 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130717 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130703 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130618 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130605 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130508 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130502 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130417 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130410 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130403 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130320 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130313 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130227 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130220 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130215 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130206 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130109 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130103 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20131230 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131218 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131211 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131204 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131106 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131030 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131023 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131016 +packetLen(0x07ec, 19) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131008 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131002 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130911 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130904 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130828 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130821 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130814 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130807 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130717 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130703 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130618 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130605 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130529 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130522 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130508 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130502 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130417 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130410 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130403 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130327 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130320 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130313 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130227 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130220 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130130 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130121 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130115 +packetLen(0x07ec, 4) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130109 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130103 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20131230 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131218 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131127 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131120 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131113 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131106 +packetLen(0x0802, 5) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131030 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131023 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131016 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131008 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131002 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130911 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130904 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130814 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130807 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130717 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130703 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130618 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130605 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130502 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130417 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130410 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130403 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130320 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130313 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130306 +packetLen(0x0802, 12) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130227 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130220 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130215 +packetLen(0x0802, 90) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130130 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130121 +packetLen(0x0802, 7) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130109 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130103 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20131230 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131223 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131218 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131211 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131204 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131127 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131120 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131106 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131030 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131023 +packetLen(0x0811, 10) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131008 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130925 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130917 +packetLen(0x0811, 7) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130904 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130814 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130807 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130717 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130626 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130618 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130605 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130529 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130522 +packetLen(0x0811, 10) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130424 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130417 +packetLen(0x0811, 26) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130410 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130403 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130320 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130313 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130306 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130227 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130215 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130206 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130109 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130103 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20131230 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131211 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131204 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131127 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131106 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131030 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131008 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130925 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130917 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130911 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130904 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130828 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130821 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130814 +packetLen(0x0815, 4) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130807 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130717 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130626 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130618 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130605 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130522 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130417 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130410 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130403 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130320 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130313 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130306 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130227 +packetLen(0x0815, 18) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130206 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130130 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130121 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130109 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130103 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20131127 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20131120 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20131113 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20131106 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130904 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130828 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130703 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130626 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130313 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130306 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130227 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130130 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130121 +packetLen(0x0817, 36) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130115 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130103 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20131230 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131211 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131204 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131127 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131106 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131030 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131023 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131008 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130925 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130917 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130911 +packetLen(0x0819, 19) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130904 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130814 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130731 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130717 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130626 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130618 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130605 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130522 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130417 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130410 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130403 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130320 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130313 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130227 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130206 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130109 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130103 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20131030 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20131023 +packetLen(0x0835, 4) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130911 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130904 +packetLen(0x0835, 12) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130821 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130814 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130403 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130327 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130103 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20131230 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131211 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131204 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131127 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131106 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131030 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131008 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130925 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130917 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130911 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130904 +packetLen(0x0838, 19) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130814 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130807 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130717 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130626 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130618 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130605 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130522 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130417 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130410 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130403 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130320 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130313 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130227 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130206 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130130 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130121 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130115 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130109 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130103 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20131230 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131218 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131211 +packetLen(0x083c, 26) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131204 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131127 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131106 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131030 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131008 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130925 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130917 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130904 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130814 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130807 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130724 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130717 +packetLen(0x083c, 5) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130626 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130618 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130605 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130522 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130417 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130410 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130403 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130320 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130313 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130227 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130206 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130130 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130121 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130109 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130103 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20131211 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131204 +packetLen(0x085a, 26) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131127 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131120 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131023 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131016 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130731 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130724 +packetLen(0x085a, 18) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130605 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130529 +packetLen(0x085a, 12) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130508 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130502 +packetLen(0x085a, 4) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130327 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130320 +packetLen(0x085a, 90) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130306 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130227 +packetLen(0x085a, 10) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130130 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130121 +packetLen(0x085a, 4) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130103 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20131030 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131023 +packetLen(0x085b, 90) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130313 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130306 +packetLen(0x085b, 5) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130103 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20131223 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20131218 +packetLen(0x085c, 36) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130917 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130911 +packetLen(0x085c, 26) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130313 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130306 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130103 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20131023 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131016 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131008 +packetLen(0x085d, 8) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130327 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130320 +packetLen(0x085d, 18) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130215 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130206 +packetLen(0x085d, 8) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130130 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130121 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130103 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20131016 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20131008 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130731 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130724 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130605 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130529 +packetLen(0x085e, 90) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130103 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20131127 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20131120 +packetLen(0x085f, 10) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130206 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130130 +packetLen(0x085f, -1) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130103 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20131230 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130731 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130724 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130703 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130626 +packetLen(0x0860, 8) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130417 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130410 +packetLen(0x0860, 19) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130313 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130306 +packetLen(0x0860, 5) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130103 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20130121 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130115 +packetLen(0x0861, 8) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130103 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20131211 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131204 +packetLen(0x0862, 5) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131030 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131023 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130828 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130821 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130724 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130717 +packetLen(0x0862, 18) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130626 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130618 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130522 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130515 +packetLen(0x0862, 4) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130103 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20131023 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20131016 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20131008 +packetLen(0x0863, 26) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130925 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130917 +packetLen(0x0863, 8) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130828 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130821 +packetLen(0x0863, 7) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130807 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130731 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130724 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130717 +packetLen(0x0863, 26) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130605 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130529 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130306 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130227 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130121 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130115 +packetLen(0x0863, 7) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130103 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20131023 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20131016 +packetLen(0x0864, 36) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130626 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130618 +packetLen(0x0864, 36) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130103 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20131218 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131211 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130807 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130731 +packetLen(0x0865, 10) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130417 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130410 +packetLen(0x0865, 12) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130103 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20131113 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20131106 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130115 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130109 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130103 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20131113 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20131106 +packetLen(0x0867, 8) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20131023 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20131016 +packetLen(0x0867, 90) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130731 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130724 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130508 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130502 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130306 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130227 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130103 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20130925 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130917 +packetLen(0x0868, 26) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130911 +packetLen(0x0868, 18) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130821 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130814 +packetLen(0x0868, 12) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130515 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130508 +packetLen(0x0868, 36) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130327 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130320 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130103 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20131211 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20131204 +packetLen(0x0869, 10) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130605 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130529 +packetLen(0x0869, -1) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130306 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130227 +packetLen(0x0869, -1) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130220 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130215 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130103 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20130731 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130724 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130529 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130522 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130103 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20130917 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130911 +packetLen(0x086b, 36) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130724 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130717 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130424 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130417 +packetLen(0x086b, 19) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130206 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130130 +packetLen(0x086b, 4) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130103 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20131211 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20131204 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20131016 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20131008 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130724 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130717 +packetLen(0x086c, 4) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130417 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130410 +packetLen(0x086c, 18) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130130 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130121 +packetLen(0x086c, 19) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130103 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20131016 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20131008 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20131002 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130925 +packetLen(0x086d, 36) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130917 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130911 +packetLen(0x086d, 8) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130403 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130327 +packetLen(0x086d, 18) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130320 +packetLen(0x086d, 26) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130313 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130306 +packetLen(0x086d, 19) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130103 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20131218 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20131211 +packetLen(0x086e, -1) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20131030 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20131023 +packetLen(0x086e, -1) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20131002 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130925 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130917 +packetLen(0x086e, 90) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130828 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130821 +packetLen(0x086e, -1) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130306 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130227 +packetLen(0x086e, 4) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130103 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20130925 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130917 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130327 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130320 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130220 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130215 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130103 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20131023 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20131016 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130508 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130502 +packetLen(0x0870, 26) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130121 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130115 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130103 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20131230 +packetLen(0x0871, 7) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130121 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130115 +packetLen(0x0871, 26) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130103 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20131030 +packetLen(0x0872, 2) +#elif PACKETVER >= 20131023 +packetLen(0x0872, 18) +#elif PACKETVER >= 20130103 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20131218 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20131211 +packetLen(0x0873, 19) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130821 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130814 +packetLen(0x0873, 8) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130710 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130703 +packetLen(0x0873, 36) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130403 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130327 +packetLen(0x0873, 19) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130103 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20130821 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130814 +packetLen(0x0874, 7) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130731 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130724 +packetLen(0x0874, 5) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130605 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130529 +packetLen(0x0874, 18) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130522 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130508 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130502 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130327 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130320 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130130 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130121 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130103 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20131113 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20131106 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20131023 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20131016 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20131002 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130925 +packetLen(0x0875, 5) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130508 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130502 +packetLen(0x0875, 26) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130424 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130417 +packetLen(0x0875, 36) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130103 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20131030 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20131023 +packetLen(0x0876, 10) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20131002 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130925 +packetLen(0x0876, 8) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130731 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130724 +packetLen(0x0876, 7) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130605 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130529 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130215 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130206 +packetLen(0x0876, 4) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130103 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20131211 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20131204 +packetLen(0x0877, 19) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130605 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130529 +packetLen(0x0877, 26) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130508 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130502 +packetLen(0x0877, 8) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130121 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130115 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130103 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20130807 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130731 +packetLen(0x0878, 7) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130626 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130618 +packetLen(0x0878, 4) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130515 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130508 +packetLen(0x0878, -1) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130403 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130327 +packetLen(0x0878, 12) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130103 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20131211 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20131204 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130828 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130821 +packetLen(0x0879, 12) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130417 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130410 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130121 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130115 +packetLen(0x0879, 5) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130103 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20130925 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130917 +packetLen(0x087a, 6) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130626 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130618 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130103 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20131230 +packetLen(0x087b, 12) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20131223 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20131218 +packetLen(0x087b, 4) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130917 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130911 +packetLen(0x087b, 4) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130306 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130227 +packetLen(0x087b, 26) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130103 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20130508 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130502 +packetLen(0x087c, 19) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130417 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130410 +packetLen(0x087c, 5) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130121 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130115 +packetLen(0x087c, 6) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130103 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20131106 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131030 +packetLen(0x087d, 26) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131002 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130925 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130417 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130410 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130206 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130130 +packetLen(0x087d, 5) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130103 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20131230 +packetLen(0x087e, 4) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130925 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130917 +packetLen(0x087e, 10) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130904 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130828 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130618 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130612 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130529 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130522 +packetLen(0x087e, 8) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130103 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20131230 +packetLen(0x087f, -1) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20131211 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20131204 +packetLen(0x087f, 18) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130206 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130130 +packetLen(0x087f, -1) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130103 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20130717 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130710 +packetLen(0x0880, 36) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130103 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20131218 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131211 +packetLen(0x0881, 4) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131204 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131127 +packetLen(0x0881, 4) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130828 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130821 +packetLen(0x0881, -1) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130327 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130320 +packetLen(0x0881, 5) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130313 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130306 +packetLen(0x0881, -1) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130103 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20131211 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20131204 +packetLen(0x0882, 26) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130724 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130717 +packetLen(0x0882, 10) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130103 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20131016 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20131008 +packetLen(0x0883, 8) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130612 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130605 +packetLen(0x0883, 36) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130215 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130206 +packetLen(0x0883, 18) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130103 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20131204 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131127 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131120 +packetLen(0x0884, 10) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131016 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131008 +packetLen(0x0884, 18) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130807 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130731 +packetLen(0x0884, 36) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130410 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130403 +packetLen(0x0884, 19) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130130 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130121 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130103 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20131030 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131023 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131016 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131008 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131002 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130925 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130821 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130814 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130626 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130618 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130403 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130327 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130215 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130206 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130130 +packetLen(0x0885, 7) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130103 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20131218 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20131211 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130220 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130215 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130206 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130130 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130115 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130109 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130103 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20131113 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131106 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131030 +packetLen(0x0887, 36) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131023 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131016 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131002 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130925 +packetLen(0x0887, 19) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130821 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130814 +packetLen(0x0887, 10) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130807 +packetLen(0x0887, 36) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130626 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130618 +packetLen(0x0887, 26) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130522 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130515 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130320 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130313 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130206 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130130 +packetLen(0x0887, 90) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130103 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20131023 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20131016 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130605 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130529 +packetLen(0x0888, 4) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130508 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130502 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130327 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130320 +packetLen(0x0888, 19) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130121 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130115 +packetLen(0x0888, 12) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130109 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130103 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20130917 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130911 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130904 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130828 +packetLen(0x0889, 5) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130821 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130814 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130807 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130731 +packetLen(0x0889, 4) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130626 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130618 +packetLen(0x0889, 7) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130508 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130502 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130206 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130130 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130103 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20131030 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20131023 +packetLen(0x088a, -1) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130925 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130917 +packetLen(0x088a, 36) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130821 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130814 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130724 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130717 +packetLen(0x088a, 5) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130115 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130109 +packetLen(0x088a, 19) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130103 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20131030 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20131023 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20131016 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130807 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130731 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130703 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130626 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130515 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130508 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130121 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130115 +packetLen(0x088b, 90) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130103 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20131127 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131120 +packetLen(0x088c, 19) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131113 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130821 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130814 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130724 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130717 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130703 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130626 +packetLen(0x088c, 19) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130417 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130410 +packetLen(0x088c, 36) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130103 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20131204 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20131127 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20131120 +packetLen(0x088d, 26) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130828 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130821 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130417 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130410 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130103 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20130626 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130618 +packetLen(0x088e, 5) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130605 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130529 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130522 +packetLen(0x088e, 36) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130327 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130320 +packetLen(0x088e, 7) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130115 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130109 +packetLen(0x088e, 12) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130103 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20131120 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131113 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131030 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131023 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131002 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130925 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130828 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130821 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130703 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130626 +packetLen(0x088f, 4) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130403 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130327 +packetLen(0x088f, 10) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130103 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20131023 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20131016 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20131002 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130925 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130626 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130618 +packetLen(0x0890, 12) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130605 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130529 +packetLen(0x0890, 7) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130417 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130410 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130327 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130320 +packetLen(0x0890, 4) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130313 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130306 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130103 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20131113 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20131106 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130917 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130911 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130731 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130724 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130626 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130618 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130417 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130410 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130403 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130327 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130115 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130109 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130103 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20131218 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20131211 +packetLen(0x0892, 8) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130828 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130821 +packetLen(0x0892, 6) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130605 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130529 +packetLen(0x0892, 6) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130115 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130109 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130103 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20131113 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20131106 +packetLen(0x0893, 18) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130904 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130828 +packetLen(0x0893, 36) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130731 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130724 +packetLen(0x0893, 19) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130515 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130508 +packetLen(0x0893, 18) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130306 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130227 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130130 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130121 +packetLen(0x0893, 26) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130103 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20131204 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131127 +packetLen(0x0894, 36) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131113 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131106 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131023 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131016 +packetLen(0x0894, 12) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130807 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130731 +packetLen(0x0894, -1) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130703 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130626 +packetLen(0x0894, 18) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130121 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130115 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130103 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20131230 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130925 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130917 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130821 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130814 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130807 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130731 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130703 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130626 +packetLen(0x0895, 26) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130605 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130529 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130515 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130508 +packetLen(0x0895, 19) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130121 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130115 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130103 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20131016 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20131008 +packetLen(0x0896, 90) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130821 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130814 +packetLen(0x0896, 8) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130103 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20130807 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130731 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130724 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130717 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130605 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130529 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130515 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130508 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130327 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130320 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130103 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20131230 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130724 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130717 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130327 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130320 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130313 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130306 +packetLen(0x0898, 7) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130227 +packetLen(0x0898, 5) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130103 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20130403 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130327 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130215 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130206 +packetLen(0x0899, -1) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130103 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20131120 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20131113 +packetLen(0x089a, 19) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130206 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130130 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130103 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20130724 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130717 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130529 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130522 +packetLen(0x089b, 18) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130327 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130320 +packetLen(0x089b, 10) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130103 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20131230 +packetLen(0x089c, 19) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20131016 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20131008 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130731 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130724 +packetLen(0x089c, 10) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130529 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130522 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130417 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130410 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130103 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20130925 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130917 +packetLen(0x089d, 19) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130103 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20131204 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20131127 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20131120 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130904 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130828 +packetLen(0x089e, 10) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130417 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130410 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130220 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130215 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130103 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20130904 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130828 +packetLen(0x089f, 5) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130313 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130306 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130220 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130215 +packetLen(0x089f, 4) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130206 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130130 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130103 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20131211 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20131204 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130925 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130917 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130417 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130410 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130215 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130206 +packetLen(0x08a0, 5) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130130 +packetLen(0x08a0, 10) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130121 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130115 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130103 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20131127 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20131120 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130522 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130515 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130508 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130502 +packetLen(0x08a1, 18) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130403 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130327 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130306 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130227 +packetLen(0x08a1, 8) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130103 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20131113 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20131106 +packetLen(0x08a2, 19) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20131030 +packetLen(0x08a2, 4) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130925 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130917 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130529 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130522 +packetLen(0x08a2, 7) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130403 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130327 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130115 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130109 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130103 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20131218 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20131211 +packetLen(0x08a3, 18) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130904 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130828 +packetLen(0x08a3, -1) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130529 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130522 +packetLen(0x08a3, 8) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130508 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130502 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130103 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20131230 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131223 +packetLen(0x08a4, 36) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131218 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131211 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131204 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131127 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131120 +packetLen(0x08a4, 36) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131113 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130917 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130911 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130821 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130814 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130417 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130410 +packetLen(0x08a4, 90) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130313 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130306 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130206 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130130 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130121 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130115 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130103 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20130703 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130626 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130410 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130403 +packetLen(0x08a5, 4) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130103 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20130724 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130717 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130626 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130618 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130529 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130522 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130103 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20131211 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131204 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131030 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131023 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130626 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130618 +packetLen(0x08a7, 18) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130605 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130529 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130103 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20131127 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20131120 +packetLen(0x08a8, 7) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20131113 +packetLen(0x08a8, 8) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130925 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130917 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130605 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130529 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130103 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20131230 +packetLen(0x08a9, 26) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20131016 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20131008 +packetLen(0x08a9, 10) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130724 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130717 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130529 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130522 +packetLen(0x08a9, 19) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130206 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130130 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130103 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20130724 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130717 +packetLen(0x08aa, -1) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130522 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130515 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130115 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130109 +packetLen(0x08aa, 4) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130103 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20131223 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131218 +packetLen(0x08ab, 26) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131211 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131030 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131023 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130731 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130724 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130703 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130626 +packetLen(0x08ab, 26) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130515 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130508 +packetLen(0x08ab, 26) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130103 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20131030 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20131023 +packetLen(0x08ac, 19) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130904 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130828 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130529 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130522 +packetLen(0x08ac, 4) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130515 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130327 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130320 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130313 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130306 +packetLen(0x08ac, 4) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130215 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130206 +packetLen(0x08ac, 19) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130121 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130115 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130103 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20131211 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20131204 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130828 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130821 +packetLen(0x08ad, 4) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130220 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130215 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130103 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 146) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08e5 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e5, 41) // CZ_PARTY_RECRUIT_REQ_REGISTER +#endif + +// Packet: 0x08e6 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e6, 4) // ZC_PARTY_RECRUIT_ACK_REGISTER +#endif + +// Packet: 0x08e7 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e7, 10) // CZ_PARTY_RECRUIT_REQ_SEARCH +#endif + +// Packet: 0x08e8 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e8, -1) +#endif + +// Packet: 0x08e9 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e9, 2) // CZ_PARTY_RECRUIT_REQ_DELETE +#endif + +// Packet: 0x08ea +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ea, 4) // ZC_PARTY_RECRUIT_ACK_DELETE +#endif + +// Packet: 0x08eb +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08eb, 39) // CZ_PARTY_RECRUIT_REQ_UPDATE +#endif + +// Packet: 0x08ec +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ec, 73) // ZC_PARTY_RECRUIT_NOTIFY_INSERT +#endif + +// Packet: 0x08ed +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ed, 43) // ZC_PARTY_RECRUIT_NOTIFY_UPDATE +#endif + +// Packet: 0x08ee +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ee, 6) // ZC_PARTY_RECRUIT_NOTIFY_DELETE +#endif + +// Packet: 0x08ef +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ef, 6) // CZ_PARTY_RECRUIT_ADD_FILTERLINGLIST +#endif + +// Packet: 0x08f0 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f0, 6) // CZ_PARTY_RECRUIT_SUB_FILTERLINGLIST +#endif + +// Packet: 0x08f1 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f1, 6) // CZ_PARTY_RECRUIT_REQ_VOLUNTEER +#endif + +// Packet: 0x08f2 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f2, 36) // ZC_PARTY_RECRUIT_VOLUNTEER_INFO +#endif + +// Packet: 0x08f3 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f3, -1) +#endif + +// Packet: 0x08f4 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f4, 6) // CZ_PARTY_RECRUIT_SHOW_EQUIPMENT +#endif + +// Packet: 0x08f5 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f5, -1) // CZ_UNKNOWN_BOOKING_SOMMON_MEMBER_08f5 +#endif + +// Packet: 0x08f6 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f6, 22) // ZC_PARTY_RECRUIT_RECALL_COST +#endif + +// Packet: 0x08f7 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f7, 3) // CZ_PARTY_RECRUIT_ACK_RECALL +#endif + +// Packet: 0x08f8 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f8, 7) // ZC_PARTY_RECRUIT_FAILED_RECALL +#endif + +// Packet: 0x08f9 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f9, 6) // CZ_PARTY_RECRUIT_REFUSE_VOLUNTEER +#endif + +// Packet: 0x08fa +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08fa, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER +#endif + +// Packet: 0x08fb +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08fb, 6) // CZ_PARTY_RECRUIT_CANCEL_VOLUNTEER +#endif + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x0909 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x0909, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER +#endif + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090b +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x090b, 30) // ZC_PARTY_RECRUIT_ADD_FILTERLINGLIST +#endif + +// Packet: 0x090c +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x090c, 30) // ZC_PARTY_RECRUIT_SUB_FILTERLINGLIST +#endif + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20131127 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20131120 +packetLen(0x0917, 6) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20131016 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20131008 +packetLen(0x0917, 8) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130904 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130828 +packetLen(0x0917, 18) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130724 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130717 +packetLen(0x0917, 6) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130626 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130618 +packetLen(0x0917, 6) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130605 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130529 +packetLen(0x0917, 10) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130417 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130410 +packetLen(0x0917, 26) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130313 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130306 +packetLen(0x0917, 8) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130103 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20130925 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130917 +packetLen(0x0918, 5) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130724 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130717 +packetLen(0x0918, 7) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130605 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130529 +packetLen(0x0918, -1) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130121 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130115 +packetLen(0x0918, 10) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130109 +packetLen(0x0918, 26) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130103 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20131030 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20131023 +packetLen(0x0919, 6) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130618 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130612 +packetLen(0x0919, 19) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130605 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130529 +packetLen(0x0919, 19) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130103 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20131023 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20131016 +packetLen(0x091a, -1) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130206 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130130 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130103 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20130306 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20130227 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20130115 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20130109 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20130103 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20131120 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20131113 +packetLen(0x091c, 8) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20131016 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20131008 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20130925 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20130917 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20130103 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20131230 +packetLen(0x091d, 36) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131113 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131106 +packetLen(0x091d, 90) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131030 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131023 +packetLen(0x091d, 12) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130828 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130821 +packetLen(0x091d, 5) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130724 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130717 +packetLen(0x091d, 19) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130417 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130410 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130103 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20131230 +packetLen(0x091e, 10) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20131023 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20131016 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130925 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130917 +packetLen(0x091e, 4) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130911 +packetLen(0x091e, 5) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130904 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130828 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130724 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130717 +packetLen(0x091e, 10) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130313 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130306 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130103 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20131230 +packetLen(0x091f, 18) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131211 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131204 +packetLen(0x091f, 5) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131023 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131016 +packetLen(0x091f, 5) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130403 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130327 +packetLen(0x091f, -1) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130306 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130227 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130130 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130121 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130103 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20131120 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20131113 +packetLen(0x0920, 12) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130320 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130313 +packetLen(0x0920, 36) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130215 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130130 +packetLen(0x0920, 26) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130103 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20130925 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130917 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130731 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130724 +packetLen(0x0921, 90) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130703 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130626 +packetLen(0x0921, 8) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130103 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20130327 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130320 +packetLen(0x0922, -1) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130115 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130109 +packetLen(0x0922, 6) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130103 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20131030 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20131023 +packetLen(0x0923, 7) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130925 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130917 +packetLen(0x0923, 5) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130904 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130828 +packetLen(0x0923, 10) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130821 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130814 +packetLen(0x0923, 6) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130807 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130731 +packetLen(0x0923, 18) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130220 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130215 +packetLen(0x0923, 5) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130103 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20131030 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20131023 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130904 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130828 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130731 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130724 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130306 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130227 +packetLen(0x0924, 90) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130206 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130130 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130103 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20131106 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20131030 +packetLen(0x0925, 5) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130807 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130731 +packetLen(0x0925, 10) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130529 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130522 +packetLen(0x0925, 5) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130215 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130206 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130103 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20131230 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131127 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131120 +packetLen(0x0926, -1) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131113 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130821 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130814 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130529 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130522 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130410 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130403 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130313 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130306 +packetLen(0x0926, 36) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130103 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20131127 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131120 +packetLen(0x0927, 8) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131113 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131023 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131016 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131008 +packetLen(0x0927, 12) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130821 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130814 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130731 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130724 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130115 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130109 +packetLen(0x0927, 90) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130103 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20131211 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20131204 +packetLen(0x0928, 7) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20131120 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20131113 +packetLen(0x0928, 36) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130904 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130828 +packetLen(0x0928, -1) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130121 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130109 +packetLen(0x0928, -1) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130103 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20131120 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20131113 +packetLen(0x0929, 6) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20131106 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130904 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130828 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130424 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130417 +packetLen(0x0929, 5) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130103 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20131230 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130103 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20131218 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131211 +packetLen(0x092b, 36) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131127 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131120 +packetLen(0x092b, 5) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131113 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130807 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130731 +packetLen(0x092b, 19) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130724 +packetLen(0x092b, 26) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130403 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130327 +packetLen(0x092b, 5) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130306 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130227 +packetLen(0x092b, -1) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130103 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20131120 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20131113 +packetLen(0x092c, 26) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130103 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20131211 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20131204 +packetLen(0x092d, 10) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20131120 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20131113 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130828 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130821 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130807 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130731 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130522 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130515 +packetLen(0x092d, 18) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130508 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130403 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130327 +packetLen(0x092d, 26) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130320 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130313 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130121 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130115 +packetLen(0x092d, 19) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130103 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20131120 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20131113 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130731 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130724 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130403 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130327 +packetLen(0x092e, 4) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130121 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130115 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130103 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20131223 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131218 +packetLen(0x092f, 19) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131211 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131204 +packetLen(0x092f, 5) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131120 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131113 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130724 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130717 +packetLen(0x092f, 26) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130403 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130327 +packetLen(0x092f, 8) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130306 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130227 +packetLen(0x092f, -1) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130103 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20131204 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20131127 +packetLen(0x0930, 18) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130904 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130828 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130710 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130703 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130626 +packetLen(0x0930, 36) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130618 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130115 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130109 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130103 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20131218 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131211 +packetLen(0x0931, 8) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130522 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130515 +packetLen(0x0931, 5) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130115 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130109 +packetLen(0x0931, -1) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130103 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20131016 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20131008 +packetLen(0x0932, 10) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130626 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130618 +packetLen(0x0932, -1) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130103 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20130417 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130410 +packetLen(0x0933, 10) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130403 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130327 +packetLen(0x0933, -1) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130320 +packetLen(0x0933, 6) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130103 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20131120 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131113 +packetLen(0x0934, 18) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131016 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131008 +packetLen(0x0934, 6) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130925 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130917 +packetLen(0x0934, 12) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130313 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130306 +packetLen(0x0934, 26) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130103 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20131113 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20131106 +packetLen(0x0935, 26) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20131030 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20131023 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130807 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130731 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130103 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20131120 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20131113 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20131016 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20131008 +packetLen(0x0936, 6) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130821 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130814 +packetLen(0x0936, -1) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130626 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130618 +packetLen(0x0936, 8) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130605 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130529 +packetLen(0x0936, -1) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130306 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130227 +packetLen(0x0936, 12) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130103 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20131030 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20131023 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130911 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130904 +packetLen(0x0937, 26) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130821 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130814 +packetLen(0x0937, 6) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130605 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130529 +packetLen(0x0937, 6) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130103 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20130605 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130529 +packetLen(0x0938, 8) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130403 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130327 +packetLen(0x0938, 8) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130320 +packetLen(0x0938, -1) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130115 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130109 +packetLen(0x0938, 26) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130103 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20130417 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130410 +packetLen(0x0939, 7) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130403 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130327 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130121 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130115 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130103 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20131204 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20131127 +packetLen(0x093a, 26) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130917 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130911 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130904 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130821 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130814 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130618 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130612 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130215 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130206 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130130 +packetLen(0x093a, 36) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130103 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20131211 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20131204 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20131113 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20131106 +packetLen(0x093b, 6) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130724 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130717 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130103 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20131120 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20131113 +packetLen(0x093c, 5) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20131016 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20131008 +packetLen(0x093c, 5) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130215 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130206 +packetLen(0x093c, 26) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130103 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20131230 +packetLen(0x093d, -1) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130417 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130410 +packetLen(0x093d, 8) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130206 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130130 +packetLen(0x093d, -1) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130103 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20131230 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20131127 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20131120 +packetLen(0x093e, 90) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130828 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130821 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130529 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130522 +packetLen(0x093e, 12) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130515 +packetLen(0x093e, 36) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130115 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130109 +packetLen(0x093e, 18) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130103 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20131127 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131120 +packetLen(0x093f, -1) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130327 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130320 +packetLen(0x093f, 5) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130103 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20131204 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131127 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131120 +packetLen(0x0940, 4) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131008 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131002 +packetLen(0x0940, 5) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130925 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130917 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130911 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130618 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130612 +packetLen(0x0940, 26) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130130 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130121 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130109 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130103 +packetLen(0x0940, 19) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20131211 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20131204 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130807 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130731 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130220 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130215 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130103 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20131113 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20131106 +packetLen(0x0942, 10) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130626 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130618 +packetLen(0x0942, -1) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130410 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130403 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130103 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20131230 +packetLen(0x0943, 26) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130522 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130515 +packetLen(0x0943, 19) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130313 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130306 +packetLen(0x0943, 10) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130103 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20131030 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20131023 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130904 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130828 +packetLen(0x0944, 26) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130626 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130618 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130522 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130515 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130508 +packetLen(0x0944, 4) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130417 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130410 +packetLen(0x0944, 4) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130313 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130306 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130103 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20130626 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20130618 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20130417 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20130410 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20130103 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20131113 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20131106 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20131023 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20131016 +packetLen(0x0946, 18) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130904 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130828 +packetLen(0x0946, 4) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130313 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130306 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130227 +packetLen(0x0946, 8) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130121 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130115 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130103 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20131223 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131218 +packetLen(0x0947, 5) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131113 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131106 +packetLen(0x0947, 7) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131016 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131008 +packetLen(0x0947, 36) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130821 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130814 +packetLen(0x0947, 10) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130522 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130515 +packetLen(0x0947, 26) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130327 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130320 +packetLen(0x0947, 36) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130313 +packetLen(0x0947, 19) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130103 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20131113 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20131106 +packetLen(0x0948, 4) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130917 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130911 +packetLen(0x0948, 26) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130103 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20131230 +packetLen(0x0949, 5) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131120 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131113 +packetLen(0x0949, 10) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130103 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20131230 +packetLen(0x094a, 5) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20131030 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20131023 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130904 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130828 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130731 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130724 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130710 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130703 +packetLen(0x094a, 5) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130403 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130327 +packetLen(0x094a, 5) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130313 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130306 +packetLen(0x094a, 18) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130103 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20130403 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130327 +packetLen(0x094b, 36) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130227 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130220 +packetLen(0x094b, 36) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130121 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130115 +packetLen(0x094b, 18) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130103 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20131218 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20131211 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20131204 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20131127 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130925 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130917 +packetLen(0x094c, 18) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130904 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130828 +packetLen(0x094c, -1) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130807 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130731 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130327 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130320 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130121 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130115 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130103 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20130703 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130626 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130515 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130508 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130103 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20130925 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130917 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130327 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130320 +packetLen(0x094e, -1) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130313 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130306 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130121 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130115 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130103 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20131204 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20131127 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130904 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130828 +packetLen(0x094f, 7) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130626 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130618 +packetLen(0x094f, 90) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130403 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130327 +packetLen(0x094f, 26) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130130 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130121 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130115 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130109 +packetLen(0x094f, -1) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130103 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20131127 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131120 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131106 +packetLen(0x0950, -1) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130529 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130522 +packetLen(0x0950, 26) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130410 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130403 +packetLen(0x0950, 26) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130215 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130206 +packetLen(0x0950, 8) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130115 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130109 +packetLen(0x0950, 36) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130103 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20131211 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131204 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131030 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131023 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130626 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130618 +packetLen(0x0951, 10) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130605 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130529 +packetLen(0x0951, 5) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130313 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130306 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130227 +packetLen(0x0951, 10) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130115 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130109 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130103 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20131016 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20131008 +packetLen(0x0952, 6) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130724 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130717 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130703 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130626 +packetLen(0x0952, 6) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130529 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130522 +packetLen(0x0952, -1) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130103 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20131127 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20131120 +packetLen(0x0953, 26) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130731 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130724 +packetLen(0x0953, 5) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130626 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130618 +packetLen(0x0953, 26) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130103 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20131113 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131106 +packetLen(0x0954, 12) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131030 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131023 +packetLen(0x0954, 8) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131016 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131008 +packetLen(0x0954, -1) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130828 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130821 +packetLen(0x0954, 10) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130731 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130724 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130103 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20131127 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131120 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130417 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130410 +packetLen(0x0955, 10) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130403 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130327 +packetLen(0x0955, 7) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130103 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20131127 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20131120 +packetLen(0x0956, 5) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20131016 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20131008 +packetLen(0x0956, -1) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130911 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130904 +packetLen(0x0956, 36) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130807 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130731 +packetLen(0x0956, 26) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130724 +packetLen(0x0956, 12) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130717 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130605 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130529 +packetLen(0x0956, 36) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130220 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130215 +packetLen(0x0956, 26) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130206 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130130 +packetLen(0x0956, 19) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130121 +packetLen(0x0956, 5) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130103 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20130925 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130917 +packetLen(0x0957, 10) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130807 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130731 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130605 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130529 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130515 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130508 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130206 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130130 +packetLen(0x0957, 12) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130103 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20131211 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20131204 +packetLen(0x0958, -1) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20131002 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130925 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130821 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130814 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130807 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130731 +packetLen(0x0958, -1) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130724 +packetLen(0x0958, 10) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130717 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130605 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130529 +packetLen(0x0958, -1) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130103 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20131211 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131204 +packetLen(0x0959, 90) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130925 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130917 +packetLen(0x0959, -1) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130821 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130814 +packetLen(0x0959, 18) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130327 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130320 +packetLen(0x0959, 10) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130103 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20131002 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130925 +packetLen(0x095a, 18) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130327 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130320 +packetLen(0x095a, 8) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130121 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130115 +packetLen(0x095a, 36) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130103 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20131211 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131204 +packetLen(0x095b, 12) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131030 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131023 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131002 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130925 +packetLen(0x095b, -1) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130917 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130807 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130731 +packetLen(0x095b, 90) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130724 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130717 +packetLen(0x095b, 36) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130626 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130618 +packetLen(0x095b, 19) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130529 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130522 +packetLen(0x095b, -1) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130306 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130227 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130206 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130130 +packetLen(0x095b, 18) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130121 +packetLen(0x095b, 26) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130103 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20131204 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20131127 +packetLen(0x095c, 19) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20131002 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130925 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130731 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130724 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130529 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130522 +packetLen(0x095c, 10) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130515 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130508 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130206 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130130 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130103 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20131120 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20131113 +packetLen(0x095d, 7) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20131106 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20131016 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20131008 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130904 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130828 +packetLen(0x095d, 5) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130807 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130731 +packetLen(0x095d, 12) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130724 +packetLen(0x095d, 8) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130220 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130215 +packetLen(0x095d, 5) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130103 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20131127 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131120 +packetLen(0x095e, 18) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131023 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131016 +packetLen(0x095e, 10) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130828 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130821 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130529 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130522 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130306 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130227 +packetLen(0x095e, 36) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130115 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130109 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130103 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20131120 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20131113 +packetLen(0x095f, 10) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130821 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130814 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130807 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130731 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130103 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20131120 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20131113 +packetLen(0x0960, 8) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130724 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130717 +packetLen(0x0960, 12) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130703 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130626 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130417 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130410 +packetLen(0x0960, 26) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130403 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130327 +packetLen(0x0960, 10) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130313 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130306 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130103 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20131211 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20131204 +packetLen(0x0961, 4) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130508 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130502 +packetLen(0x0961, 8) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130403 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130327 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130103 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20131113 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20131106 +packetLen(0x0962, -1) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20131023 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20131016 +packetLen(0x0962, 7) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130828 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130821 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130814 +packetLen(0x0962, 90) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130807 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130731 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130626 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130618 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130522 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130515 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130424 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130417 +packetLen(0x0962, 5) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130313 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130306 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130220 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130215 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130103 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20130522 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130515 +packetLen(0x0963, -1) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130130 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130121 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130103 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20131120 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20131113 +packetLen(0x0964, 4) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130828 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130821 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130618 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130612 +packetLen(0x0964, 36) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130529 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130522 +packetLen(0x0964, 90) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130103 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20130731 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130724 +packetLen(0x0965, -1) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130529 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130522 +packetLen(0x0965, 8) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130103 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20131023 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20131016 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130904 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130828 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130731 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130724 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130103 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20131211 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20131204 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20131127 +packetLen(0x0967, 26) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20131113 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20131106 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130917 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130911 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130828 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130821 +packetLen(0x0967, 18) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130724 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130717 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130508 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130502 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130417 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130410 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130403 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130327 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130306 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130227 +packetLen(0x0967, 7) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130103 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20131230 +packetLen(0x0968, 8) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130103 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20131230 +packetLen(0x0969, 6) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131120 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131113 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131016 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131008 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131002 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130925 +packetLen(0x0969, 4) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130828 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130821 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130502 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130424 +packetLen(0x0969, 36) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130417 +packetLen(0x0969, 6) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130130 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130121 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130103 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20131230 +packetLen(0x096a, 90) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131211 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131204 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131127 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131106 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131030 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131008 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130925 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130917 +packetLen(0x096a, 26) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130911 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130904 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130828 +packetLen(0x096a, 19) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130814 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130807 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130717 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130626 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130618 +packetLen(0x096a, 10) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130605 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130522 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130508 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130502 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130424 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130417 +packetLen(0x096a, 4) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130403 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130320 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130313 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130227 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130206 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130130 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130121 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130109 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130103 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +#if PACKETVER >= 20130115 +packetLen(0x0987, -1) // CA_LOGIN6 +#elif PACKETVER >= 20130103 +packetLen(0x0987, 63) // CA_LOGIN6 +#endif + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +#if PACKETVER >= 20130130 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP +#endif + +// Packet: 0x09a3 +#if PACKETVER >= 20130130 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP +#endif + +// Packet: 0x09a4 +#if PACKETVER >= 20130206 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN +#endif + +// Packet: 0x09a5 +#if PACKETVER >= 20130220 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 +#endif + +// Packet: 0x09a6 +#if PACKETVER >= 20130306 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK +#endif + +// Packet: 0x09a7 +#if PACKETVER >= 20130320 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT +#elif PACKETVER >= 20130306 +packetLen(0x09a7, 14) // CZ_REQ_BANKING_DEPOSIT +#endif + +// Packet: 0x09a8 +#if PACKETVER >= 20130515 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT +#elif PACKETVER >= 20130320 +packetLen(0x09a8, 12) // ZC_ACK_BANKING_DEPOSIT +#elif PACKETVER >= 20130306 +packetLen(0x09a8, 4) // ZC_ACK_BANKING_DEPOSIT +#endif + +// Packet: 0x09a9 +#if PACKETVER >= 20130320 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW +#elif PACKETVER >= 20130306 +packetLen(0x09a9, 14) // CZ_REQ_BANKING_WITHDRAW +#endif + +// Packet: 0x09aa +#if PACKETVER >= 20130515 +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW +#elif PACKETVER >= 20130320 +packetLen(0x09aa, 12) // ZC_ACK_BANKING_WITHDRAW +#elif PACKETVER >= 20130306 +packetLen(0x09aa, 4) // ZC_ACK_BANKING_WITHDRAW +#endif + +// Packet: 0x09ab +#if PACKETVER >= 20130320 +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK +#elif PACKETVER >= 20130313 +packetLen(0x09ab, -1) // CZ_REQ_BANKING_CHECK +#endif + +// Packet: 0x09ac +#if PACKETVER >= 20130327 +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09ac, 20) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO +#endif + +// Packet: 0x09ad +#if PACKETVER >= 20130327 +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09ad, 6) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#endif + +// Packet: 0x09ae +#if PACKETVER >= 20130327 +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09ae, -1) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09af +#if PACKETVER >= 20130327 +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09af, -1) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09b0 +#if PACKETVER >= 20130327 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09b1 +#if PACKETVER >= 20130327 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09b1, 6) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09b2 +#if PACKETVER >= 20130605 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#elif PACKETVER >= 20130327 +packetLen(0x09b2, 6) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09b2, -1) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#endif + +// Packet: 0x09b3 +#if PACKETVER >= 20130605 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#elif PACKETVER >= 20130327 +packetLen(0x09b3, 6) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#endif + +// Packet: 0x09b4 +#if PACKETVER >= 20130417 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL +#endif + +// Packet: 0x09b5 +#if PACKETVER >= 20130417 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL +#endif + +// Packet: 0x09b6 +#if PACKETVER >= 20130417 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING +#endif + +// Packet: 0x09b7 +#if PACKETVER >= 20130417 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING +#endif + +// Packet: 0x09b8 +#if PACKETVER >= 20130417 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING +#endif + +// Packet: 0x09b9 +#if PACKETVER >= 20130417 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING +#endif + +// Packet: 0x09ba +#if PACKETVER >= 20130828 +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE +#elif PACKETVER >= 20130424 +packetLen(0x09ba, 6) // CZ_REQ_OPEN_GUILD_STORAGE +#endif + +// Packet: 0x09bb +#if PACKETVER >= 20130502 +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE +#elif PACKETVER >= 20130424 +packetLen(0x09bb, 4) // ZC_ACK_OPEN_GUILD_STORAGE +#endif + +// Packet: 0x09bc +#if PACKETVER >= 20130424 +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL +#endif + +// Packet: 0x09bd +#if PACKETVER >= 20130424 +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL +#endif + +// Packet: 0x09be +#if PACKETVER >= 20130828 +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE +#elif PACKETVER >= 20130502 +packetLen(0x09be, 6) // CZ_REQ_CLOSE_GUILD_STORAGE +#endif + +// Packet: 0x09bf +#if PACKETVER >= 20130502 +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE +#endif + +// Packet: 0x09c0 +#if PACKETVER >= 20130618 +// removed +#elif PACKETVER >= 20130515 +packetLen(0x09c0, 11) // ZC_ACTION_MOVE +#endif + +// Packet: 0x09c1 +#if PACKETVER >= 20130717 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO +#elif PACKETVER >= 20130515 +packetLen(0x09c1, 11) // ZC_C_MARKERINFO +#endif + +// Packet: 0x09c2 +#if PACKETVER >= 20130522 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA +#endif + +// Packet: 0x09c3 +#if PACKETVER >= 20130529 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c4 +#if PACKETVER >= 20130605 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c5 +#if PACKETVER >= 20130605 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY +#endif + +// Packet: 0x09c6 +#if PACKETVER >= 20130605 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER +#endif + +// Packet: 0x09c7 +#if PACKETVER >= 20130612 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR +#elif PACKETVER >= 20130605 +packetLen(0x09c7, 10) // SC_LOGIN_ERROR +#endif + +// Packet: 0x09c8 +#if PACKETVER >= 20130605 +packetLen(0x09c8, -1) // CA_LOGIN_OTP +#endif + +// Packet: 0x09c9 +#if PACKETVER >= 20130612 +packetLen(0x09c9, -1) // SC_SOCT +#endif + +// Packet: 0x09ca +#if PACKETVER >= 20130828 +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 +#elif PACKETVER >= 20130618 +packetLen(0x09ca, 23) // ZC_SKILL_ENTRY5 +#endif + +// Packet: 0x09cb +#if PACKETVER >= 20130717 +packetLen(0x09cb, 17) // ZC_USE_SKILL2 +#endif + +// Packet: 0x09cc +#if PACKETVER >= 20130717 +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA +#endif + +// Packet: 0x09cd +#if PACKETVER >= 20130807 +packetLen(0x09cd, 8) // ZC_MSG_COLOR +#endif + +// Packet: 0x09ce +#if PACKETVER >= 20130814 +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX +#endif + +// Packet: 0x09cf +#if PACKETVER >= 20130814 +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH +#endif + +// Packet: 0x09d0 +#if PACKETVER >= 20130814 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH +#endif + +// Packet: 0x09d1 +#if PACKETVER >= 20130821 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR +#endif + +// Packet: 0x09d2 +#if PACKETVER >= 20130828 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 +#endif + +// Packet: 0x09d3 +#if PACKETVER >= 20130828 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 +#endif + +// Packet: 0x09d4 +#if PACKETVER >= 20130911 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT +#endif + +// Packet: 0x09d5 +#if PACKETVER >= 20130911 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN +#endif + +// Packet: 0x09d6 +#if PACKETVER >= 20130911 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE +#endif + +// Packet: 0x09d7 +#if PACKETVER >= 20130911 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT +#endif + +// Packet: 0x09d8 +#if PACKETVER >= 20130911 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE +#endif + +// Packet: 0x09d9 +#if PACKETVER >= 20131023 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG +#elif PACKETVER >= 20131016 +packetLen(0x09d9, 6) // CZ_REQ_GUILDSTORAGE_LOG +#elif PACKETVER >= 20131002 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG +#elif PACKETVER >= 20130911 +packetLen(0x09d9, 2) // CZ_REQ_GUILDSTORAGE_LOG +#endif + +// Packet: 0x09da +#if PACKETVER >= 20131002 +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG +#elif PACKETVER >= 20130925 +packetLen(0x09da, 10) // ZC_ACK_GUILDSTORAGE_LOG +#elif PACKETVER >= 20130911 +packetLen(0x09da, 2) // ZC_ACK_GUILDSTORAGE_LOG +#endif + +// Packet: 0x09db +#if PACKETVER >= 20131023 +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 +#endif + +// Packet: 0x09dc +#if PACKETVER >= 20131023 +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 +#endif + +// Packet: 0x09dd +#if PACKETVER >= 20131023 +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 +#endif + +// Packet: 0x09de +#if PACKETVER >= 20131030 +packetLen(0x09de, -1) // ZC_WHISPER02 +#endif + +// Packet: 0x09df +#if PACKETVER >= 20131030 +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 +#endif + +// Packet: 0x09e0 +#if PACKETVER >= 20131030 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID +#endif + +// Packet: 0x09e1 +#if PACKETVER >= 20131106 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE +#endif + +// Packet: 0x09e2 +#if PACKETVER >= 20131106 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY +#endif + +// Packet: 0x09e3 +#if PACKETVER >= 20131106 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE +#endif + +// Packet: 0x09e4 +#if PACKETVER >= 20131106 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART +#endif + +// Packet: 0x09e5 +#if PACKETVER >= 20131127 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 +#elif PACKETVER >= 20131120 +packetLen(0x09e5, 14) // ZC_DELETEITEM_FROM_MCSTORE2 +#endif + +// Packet: 0x09e6 +#if PACKETVER >= 20131127 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#elif PACKETVER >= 20131120 +packetLen(0x09e6, 18) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#endif + +// Packet: 0x09e7 +#if PACKETVER >= 20131211 +packetLen(0x09e7, 2) // ZC_NOTIFY_UNREAD_RODEX +#endif + +// Packet: 0x09e8 +#if PACKETVER >= 20131218 +packetLen(0x09e8, 10) // CZ_OPEN_RODEXBOX +#elif PACKETVER >= 20131211 +packetLen(0x09e8, 18) // CZ_OPEN_RODEXBOX +#endif + +// Packet: 0x09e9 +#if PACKETVER >= 20131211 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX +#endif + +// Packet: 0x09ea +#if PACKETVER >= 20131223 +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX +#elif PACKETVER >= 20131218 +packetLen(0x09ea, 10) // CZ_REQ_READ_RODEX +#endif + +// Packet: 0x09eb +#if PACKETVER >= 20131230 +packetLen(0x09eb, 23) // ZC_ACK_READ_RODEX +#elif PACKETVER >= 20131223 +packetLen(0x09eb, 24) // ZC_ACK_READ_RODEX +#elif PACKETVER >= 20131218 +packetLen(0x09eb, 14) // ZC_ACK_READ_RODEX +#endif + +// Packet: 0x09ec +#if PACKETVER >= 20131230 +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX +#endif + +// Packet: 0x09ed +#if PACKETVER >= 20131230 +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX +#elif PACKETVER >= 20131218 +// removed +#elif PACKETVER >= 20131211 +packetLen(0x09ed, -1) // ZC_ACK_SEND_RODEX +#endif + +// Packet: 0x09ee +#if PACKETVER >= 20131218 +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX +#elif PACKETVER >= 20131211 +packetLen(0x09ee, -1) // CZ_REQ_NEXT_RODEX +#endif + +// Packet: 0x09ef +#if PACKETVER >= 20131218 +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX +#endif + +// Packet: 0x09f0 +#if PACKETVER >= 20131218 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST +#endif + +// Packet: 0x09f5 +#if PACKETVER >= 20131218 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX +#endif + +// Packet: 0x09f6 +#if PACKETVER >= 20131218 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX +#endif + +// Packet: 0x09f7 +#if PACKETVER >= 20131230 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 +#endif + + +#endif /* COMMON_PACKETS2013_LEN_MAIN_H */ diff --git a/src/common/packets/packets2013_len_re.h b/src/common/packets/packets2013_len_re.h new file mode 100644 index 000000000..6f3714e0f --- /dev/null +++ b/src/common/packets/packets2013_len_re.h @@ -0,0 +1,8941 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2013_LEN_RE_H +#define COMMON_PACKETS2013_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 146) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20131230 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131223 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20131218 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131211 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131016 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131008 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20131002 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130828 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130821 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130814 +packetLen(0x0202, 8) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130807 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130717 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130710 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130703 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130612 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130605 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130502 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130424 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130417 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130320 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130313 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130227 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130220 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130109 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20130103 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20131230 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20131223 +packetLen(0x022d, 19) // CZ_COMMAND_MER +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131218 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20131106 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20131030 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20131023 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20131016 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20131008 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20131002 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130814 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130807 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130731 +packetLen(0x022d, 26) // CZ_COMMAND_MER +#elif PACKETVER >= 20130717 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130703 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130612 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130605 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130515 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130508 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20130502 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130424 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130313 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130306 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20130227 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130220 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20130109 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20130103 +packetLen(0x022d, 4) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20131230 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20131223 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20131008 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20131002 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130904 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130828 +packetLen(0x023b, 90) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130814 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130807 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130717 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130710 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130612 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130605 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130529 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130502 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130424 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130410 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130403 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130306 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130220 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130215 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130109 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20130103 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20131230 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131223 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20131218 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131113 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131106 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131030 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131023 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131016 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131008 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20131002 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130911 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130904 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130821 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130814 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130807 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130717 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130703 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130626 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130605 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130502 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130417 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130410 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130403 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130320 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130313 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130227 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130220 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130115 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130109 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20130103 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20131230 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20131223 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20130724 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130717 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130626 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130618 +packetLen(0x02c4, 5) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130403 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130327 +packetLen(0x02c4, 90) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20130103 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20131230 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131223 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131211 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131204 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131127 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131106 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131030 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131008 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20131002 +packetLen(0x035f, 36) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130925 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130917 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130904 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130814 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130807 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130731 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130724 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130717 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130626 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130618 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130605 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130522 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130417 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130410 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130403 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130327 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130313 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130306 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130227 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130206 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130121 +packetLen(0x035f, 8) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130109 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20130103 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20131230 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20131211 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20131106 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20131030 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20131008 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130925 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130911 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130904 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130828 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130821 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130814 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130807 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130717 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130710 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130703 +packetLen(0x0360, 26) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130626 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130618 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130605 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130529 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130522 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130417 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130410 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130403 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130320 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130313 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130306 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130227 +packetLen(0x0360, 19) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130220 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130215 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130206 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130130 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130121 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130109 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20130103 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20131230 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131223 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131127 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131120 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131023 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131016 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131008 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20131002 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130911 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130904 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130828 +packetLen(0x0361, 12) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130821 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130814 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130807 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130717 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130710 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130612 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130605 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130502 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130424 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130227 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130220 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130121 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130115 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130109 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20130103 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20131230 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131218 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131211 +packetLen(0x0362, 90) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131106 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131030 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131016 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131008 +packetLen(0x0362, 19) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20131002 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130911 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130904 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130814 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130807 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130717 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130703 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130618 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130605 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130529 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130522 +packetLen(0x0362, 26) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130515 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130502 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130417 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130410 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130403 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130320 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130313 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130227 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130220 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130215 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130206 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130130 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130109 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20130103 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20131230 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131223 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131218 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131113 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131106 +packetLen(0x0363, 10) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131030 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131008 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20131002 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130911 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130904 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130814 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130807 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130717 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130703 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130618 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130605 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130502 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130417 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130410 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130403 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130327 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130320 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130313 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130227 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130220 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130109 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20130103 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20131230 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131218 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131204 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131127 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131120 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131113 +packetLen(0x0364, 90) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131106 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131030 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131023 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131016 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131008 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20131002 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130917 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130911 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130828 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130814 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130807 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130717 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130703 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130618 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130605 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130502 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130417 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130410 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130403 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130320 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130313 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130227 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130220 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130109 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20130103 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20131230 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131223 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131218 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131204 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131127 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131106 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131030 +packetLen(0x0365, 19) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131008 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20131002 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130911 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130904 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130814 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130807 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130717 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130703 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130618 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130605 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130502 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130417 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130410 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130403 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130327 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130320 +packetLen(0x0365, 12) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130313 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130227 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130220 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130115 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130109 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20130103 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20131230 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131223 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131218 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131204 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131127 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131106 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131030 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131023 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131016 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131008 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20131002 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130917 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130904 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130828 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130821 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130814 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130807 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130717 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130626 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130618 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130605 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130522 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130417 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130410 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130403 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130320 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130313 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130227 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130220 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130215 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130206 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130130 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130121 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130109 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20130103 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20131223 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20130417 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130410 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130313 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130306 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130206 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130130 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20130103 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20131230 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20131211 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20131204 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20131127 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20131120 +packetLen(0x0368, 12) // CZ_REQNAME2 +#elif PACKETVER >= 20131106 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20131030 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20131008 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130925 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130917 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130904 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130821 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130814 +packetLen(0x0368, 19) // CZ_REQNAME2 +#elif PACKETVER >= 20130807 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130717 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130626 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130618 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130605 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130529 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130417 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130410 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130403 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130320 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130313 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130306 +packetLen(0x0368, 90) // CZ_REQNAME2 +#elif PACKETVER >= 20130227 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130206 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130130 +packetLen(0x0368, 5) // CZ_REQNAME2 +#elif PACKETVER >= 20130121 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20130115 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20130109 +packetLen(0x0368, 10) // CZ_REQNAME2 +#elif PACKETVER >= 20130103 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20131230 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131223 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131211 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131204 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131127 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131113 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131106 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131030 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20131008 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130925 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130917 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130904 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130814 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130807 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130717 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130626 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130618 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130605 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130529 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130522 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130417 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130410 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130403 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130320 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130313 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130227 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130206 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130130 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130121 +packetLen(0x0369, 18) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130109 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20130103 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20131230 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20131223 +packetLen(0x0436, 19) // CZ_ENTER2 +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20131113 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20131106 +packetLen(0x0436, 36) // CZ_ENTER2 +#elif PACKETVER >= 20131030 +packetLen(0x0436, 18) // CZ_ENTER2 +#elif PACKETVER >= 20131008 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20131002 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130917 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130911 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20130904 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130814 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130807 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130717 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130703 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130618 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130605 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130515 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130508 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20130502 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130424 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130320 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130313 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130227 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130220 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20130215 +packetLen(0x0436, 18) // CZ_ENTER2 +#elif PACKETVER >= 20130109 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20130103 +packetLen(0x0436, 36) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20131230 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131223 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20131211 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131204 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131127 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131106 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131030 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131008 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20131002 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130925 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130917 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130904 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130828 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130821 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130814 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130731 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130724 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130717 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130626 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130618 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130605 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130522 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130417 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130410 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130403 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130320 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130313 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130306 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130206 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130130 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130121 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130115 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130109 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20130103 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20131230 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131211 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131204 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131127 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131106 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131030 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131023 +packetLen(0x0438, 26) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131008 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20131002 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130925 +packetLen(0x0438, 90) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130917 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130904 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130828 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130821 +packetLen(0x0438, 8) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130814 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130807 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130731 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130717 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130626 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130618 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130529 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130522 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130417 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130410 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130403 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130327 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130320 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130313 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130227 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130206 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130130 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130121 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130109 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20130103 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20131230 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131223 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131218 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131211 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131204 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131127 +packetLen(0x07e4, 90) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131106 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131030 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131016 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131008 +packetLen(0x07e4, 7) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20131002 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130911 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130904 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130814 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130807 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130717 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130703 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130618 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130605 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130508 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130502 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130417 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130410 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130403 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130320 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130313 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130227 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130220 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130215 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130206 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130109 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20130103 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20131230 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131218 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131211 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131204 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131106 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131030 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131023 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131016 +packetLen(0x07ec, 19) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131008 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20131002 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130911 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130904 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130828 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130821 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130814 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130807 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130717 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130703 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130618 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130605 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130529 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130522 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130508 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130502 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130417 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130410 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130403 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130327 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130320 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130313 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130227 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130220 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130130 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130121 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130115 +packetLen(0x07ec, 4) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130109 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20130103 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20131230 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131223 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131218 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131127 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131120 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131113 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131106 +packetLen(0x0802, 5) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131030 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131023 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131016 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131008 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20131002 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130911 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130904 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130814 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130807 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130717 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130703 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130618 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130605 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130502 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130417 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130410 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130403 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130320 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130313 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130306 +packetLen(0x0802, 12) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130227 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130220 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130215 +packetLen(0x0802, 90) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130130 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130121 +packetLen(0x0802, 7) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130109 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20130103 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20131230 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131223 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131218 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131211 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131204 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131127 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131120 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131106 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131030 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131023 +packetLen(0x0811, 10) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20131008 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130925 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130917 +packetLen(0x0811, 7) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130904 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130814 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130807 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130717 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130626 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130618 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130605 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130529 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130522 +packetLen(0x0811, 10) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130424 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130417 +packetLen(0x0811, 26) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130410 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130403 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130320 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130313 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130306 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130227 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130215 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130206 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130109 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20130103 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20131230 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131223 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20131211 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131204 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131127 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131106 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131030 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20131008 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130925 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130917 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130911 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130904 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130828 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130821 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130814 +packetLen(0x0815, 4) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130807 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130717 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130626 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130618 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130605 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130522 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130417 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130410 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130403 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130320 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130313 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130306 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130227 +packetLen(0x0815, 18) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130206 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130130 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130121 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130109 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20130103 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20131223 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20131127 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20131120 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20131113 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20131106 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130904 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130828 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130703 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130626 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130313 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130306 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130227 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130130 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130121 +packetLen(0x0817, 36) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130115 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20130103 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20131230 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131211 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131204 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131127 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131106 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131030 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131023 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20131008 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130925 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130917 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130911 +packetLen(0x0819, 19) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130904 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130814 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130731 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130717 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130626 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130618 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130605 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130522 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130417 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130410 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130403 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130320 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130313 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130227 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130206 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130109 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20130103 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20131223 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131030 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20131023 +packetLen(0x0835, 4) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130911 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130904 +packetLen(0x0835, 12) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130821 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130814 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130403 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130327 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20130103 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20131230 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131223 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131211 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131204 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131127 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131106 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131030 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20131008 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130925 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130917 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130911 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130904 +packetLen(0x0838, 19) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130814 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130807 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130717 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130626 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130618 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130605 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130522 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130417 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130410 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130403 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130320 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130313 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130227 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130206 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130130 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130121 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130115 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130109 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20130103 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20131230 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131223 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +// ignored packet from 2013-12-23bRagexeRE +#elif PACKETVER >= 20131218 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131211 +packetLen(0x083c, 26) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131204 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131127 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131106 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131030 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20131008 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130925 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130917 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130904 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130814 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130807 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130724 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130717 +packetLen(0x083c, 5) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130626 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130618 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130605 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130522 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130417 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130410 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130403 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130320 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130313 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130227 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130206 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130130 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130121 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130109 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20130103 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20131211 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131204 +packetLen(0x085a, 26) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131127 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131120 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131023 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131016 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130731 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130724 +packetLen(0x085a, 18) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130605 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130529 +packetLen(0x085a, 12) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130508 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130502 +packetLen(0x085a, 4) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130327 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130320 +packetLen(0x085a, 90) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130306 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130227 +packetLen(0x085a, 10) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130130 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130121 +packetLen(0x085a, 4) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130103 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20131030 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131023 +packetLen(0x085b, 90) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130313 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130306 +packetLen(0x085b, 5) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130103 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20131223 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20131218 +packetLen(0x085c, 36) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130917 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130911 +packetLen(0x085c, 26) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130313 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130306 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130103 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20131023 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131016 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131008 +packetLen(0x085d, 8) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130327 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130320 +packetLen(0x085d, 18) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130215 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130206 +packetLen(0x085d, 8) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130130 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130121 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130103 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20131016 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20131008 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130731 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130724 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130605 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130529 +packetLen(0x085e, 90) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130103 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20131127 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20131120 +packetLen(0x085f, 10) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130206 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130130 +packetLen(0x085f, -1) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130103 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20131230 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130731 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130724 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130703 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130626 +packetLen(0x0860, 8) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130417 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130410 +packetLen(0x0860, 19) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130313 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130306 +packetLen(0x0860, 5) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130103 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20130121 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130115 +packetLen(0x0861, 8) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130103 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20131211 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131204 +packetLen(0x0862, 5) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131030 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131023 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130828 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130821 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130724 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130717 +packetLen(0x0862, 18) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130626 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130618 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130522 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130515 +packetLen(0x0862, 4) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130103 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20131023 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20131016 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20131008 +packetLen(0x0863, 26) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130925 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130917 +packetLen(0x0863, 8) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130828 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130821 +packetLen(0x0863, 7) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130807 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130731 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130724 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130717 +packetLen(0x0863, 26) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130605 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130529 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130306 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130227 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130121 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130115 +packetLen(0x0863, 7) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130103 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20131023 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20131016 +packetLen(0x0864, 36) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130626 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130618 +packetLen(0x0864, 36) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130103 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20131218 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131211 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130807 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130731 +packetLen(0x0865, 10) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130417 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130410 +packetLen(0x0865, 12) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130103 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20131113 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20131106 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130115 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130109 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130103 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20131113 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20131106 +packetLen(0x0867, 8) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20131023 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20131016 +packetLen(0x0867, 90) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130731 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130724 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130508 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130502 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130306 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130227 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130103 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20130925 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130917 +packetLen(0x0868, 26) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130911 +packetLen(0x0868, 18) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130821 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130814 +packetLen(0x0868, 12) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130515 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130508 +packetLen(0x0868, 36) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130327 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130320 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130103 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20131211 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20131204 +packetLen(0x0869, 10) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130605 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130529 +packetLen(0x0869, -1) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130306 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130227 +packetLen(0x0869, -1) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130220 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130215 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130103 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20130731 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130724 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130529 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130522 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130103 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20130917 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130911 +packetLen(0x086b, 36) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130724 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130717 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130424 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130417 +packetLen(0x086b, 19) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130206 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130130 +packetLen(0x086b, 4) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130103 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20131211 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20131204 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20131016 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20131008 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130724 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130717 +packetLen(0x086c, 4) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130417 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130410 +packetLen(0x086c, 18) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130130 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130121 +packetLen(0x086c, 19) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130103 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20131016 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20131008 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20131002 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130925 +packetLen(0x086d, 36) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130917 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130911 +packetLen(0x086d, 8) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130403 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130327 +packetLen(0x086d, 18) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130320 +packetLen(0x086d, 26) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130313 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130306 +packetLen(0x086d, 19) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130103 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20131218 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20131211 +packetLen(0x086e, -1) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20131030 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20131023 +packetLen(0x086e, -1) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20131002 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130925 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130917 +packetLen(0x086e, 90) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130828 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130821 +packetLen(0x086e, -1) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130306 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130227 +packetLen(0x086e, 4) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130103 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20130925 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130917 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130327 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130320 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130220 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130215 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130103 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20131023 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20131016 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130508 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130502 +packetLen(0x0870, 26) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130121 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130115 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130103 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20131230 +packetLen(0x0871, 7) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130121 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130115 +packetLen(0x0871, 26) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130103 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20131030 +packetLen(0x0872, 2) +#elif PACKETVER >= 20131023 +packetLen(0x0872, 18) +#elif PACKETVER >= 20130103 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20131218 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20131211 +packetLen(0x0873, 19) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130821 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130814 +packetLen(0x0873, 8) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130710 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130703 +packetLen(0x0873, 36) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130403 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130327 +packetLen(0x0873, 19) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130103 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20130821 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130814 +packetLen(0x0874, 7) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130731 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130724 +packetLen(0x0874, 5) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130605 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130529 +packetLen(0x0874, 18) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130522 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130508 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130502 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130327 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130320 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130130 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130121 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130103 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20131113 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20131106 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20131023 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20131016 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20131002 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130925 +packetLen(0x0875, 5) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130508 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130502 +packetLen(0x0875, 26) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130424 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130417 +packetLen(0x0875, 36) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130103 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20131030 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20131023 +packetLen(0x0876, 10) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20131002 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130925 +packetLen(0x0876, 8) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130731 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130724 +packetLen(0x0876, 7) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130605 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130529 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130215 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130206 +packetLen(0x0876, 4) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130103 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20131211 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20131204 +packetLen(0x0877, 19) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130605 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130529 +packetLen(0x0877, 26) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130508 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130502 +packetLen(0x0877, 8) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130121 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130115 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130103 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20130807 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130731 +packetLen(0x0878, 7) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130626 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130618 +packetLen(0x0878, 4) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130515 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130508 +packetLen(0x0878, -1) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130403 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130327 +packetLen(0x0878, 12) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130103 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20131211 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20131204 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130828 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130821 +packetLen(0x0879, 12) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130417 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130410 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130121 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130115 +packetLen(0x0879, 5) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130103 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20130925 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130917 +packetLen(0x087a, 6) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130626 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130618 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130103 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20131230 +packetLen(0x087b, 12) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20131223 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20131218 +packetLen(0x087b, 4) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130917 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130911 +packetLen(0x087b, 4) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130306 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130227 +packetLen(0x087b, 26) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130103 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20130508 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130502 +packetLen(0x087c, 19) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130417 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130410 +packetLen(0x087c, 5) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130121 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130115 +packetLen(0x087c, 6) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130103 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20131106 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131030 +packetLen(0x087d, 26) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131002 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130925 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130417 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130410 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130206 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130130 +packetLen(0x087d, 5) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130103 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20131230 +packetLen(0x087e, 4) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130925 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130917 +packetLen(0x087e, 10) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130904 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130828 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130618 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130612 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130529 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130522 +packetLen(0x087e, 8) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130103 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20131230 +packetLen(0x087f, -1) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20131211 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20131204 +packetLen(0x087f, 18) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130206 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130130 +packetLen(0x087f, -1) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130103 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20130717 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130710 +packetLen(0x0880, 36) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130103 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20131218 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131211 +packetLen(0x0881, 4) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131204 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131127 +packetLen(0x0881, 4) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130828 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130821 +packetLen(0x0881, -1) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130327 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130320 +packetLen(0x0881, 5) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130313 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130306 +packetLen(0x0881, -1) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130103 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20131211 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20131204 +packetLen(0x0882, 26) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130724 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130717 +packetLen(0x0882, 10) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130103 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20131016 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20131008 +packetLen(0x0883, 8) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130612 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130605 +packetLen(0x0883, 36) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130215 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130206 +packetLen(0x0883, 18) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130103 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20131204 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131127 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131120 +packetLen(0x0884, 10) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131016 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20131008 +packetLen(0x0884, 18) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130807 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130731 +packetLen(0x0884, 36) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130410 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130403 +packetLen(0x0884, 19) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130130 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130121 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20130103 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20131030 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131023 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131016 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131008 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20131002 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130925 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130821 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130814 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130626 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130618 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130403 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130327 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130215 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130206 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130130 +packetLen(0x0885, 7) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20130103 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20131218 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20131211 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130220 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130215 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130206 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130130 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130115 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130109 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20130103 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20131113 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131106 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131030 +packetLen(0x0887, 36) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131023 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131016 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20131002 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130925 +packetLen(0x0887, 19) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130821 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130814 +packetLen(0x0887, 10) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130807 +packetLen(0x0887, 36) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130626 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130618 +packetLen(0x0887, 26) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130522 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130515 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130320 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130313 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130206 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130130 +packetLen(0x0887, 90) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20130103 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20131023 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20131016 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130605 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130529 +packetLen(0x0888, 4) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130508 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130502 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130327 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130320 +packetLen(0x0888, 19) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130121 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130115 +packetLen(0x0888, 12) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130109 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20130103 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20130917 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130911 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130904 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130828 +packetLen(0x0889, 5) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130821 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130814 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130807 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130731 +packetLen(0x0889, 4) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130626 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130618 +packetLen(0x0889, 7) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130508 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130502 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130206 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130130 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20130103 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20131030 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20131023 +packetLen(0x088a, -1) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130925 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130917 +packetLen(0x088a, 36) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130821 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130814 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130724 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130717 +packetLen(0x088a, 5) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130115 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130109 +packetLen(0x088a, 19) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20130103 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20131030 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20131023 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20131016 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130807 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130731 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130703 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130626 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130515 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130508 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130121 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130115 +packetLen(0x088b, 90) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20130103 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20131127 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131120 +packetLen(0x088c, 19) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20131113 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130821 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130814 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130724 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130717 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130703 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130626 +packetLen(0x088c, 19) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130417 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130410 +packetLen(0x088c, 36) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20130103 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20131204 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20131127 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20131120 +packetLen(0x088d, 26) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130828 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130821 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130417 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130410 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20130103 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20130626 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130618 +packetLen(0x088e, 5) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130605 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130529 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130522 +packetLen(0x088e, 36) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130327 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130320 +packetLen(0x088e, 7) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130115 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130109 +packetLen(0x088e, 12) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20130103 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20131120 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131113 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131030 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131023 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20131002 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130925 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130828 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130821 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130703 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130626 +packetLen(0x088f, 4) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130403 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130327 +packetLen(0x088f, 10) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20130103 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20131023 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20131016 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20131002 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130925 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130626 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130618 +packetLen(0x0890, 12) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130605 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130529 +packetLen(0x0890, 7) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130417 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130410 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130327 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130320 +packetLen(0x0890, 4) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130313 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130306 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20130103 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20131113 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20131106 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130917 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130911 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130731 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130724 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130626 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130618 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130417 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130410 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130403 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130327 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130115 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130109 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20130103 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20131218 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20131211 +packetLen(0x0892, 8) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130828 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130821 +packetLen(0x0892, 6) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130605 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130529 +packetLen(0x0892, 6) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130115 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130109 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20130103 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20131113 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20131106 +packetLen(0x0893, 18) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130904 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130828 +packetLen(0x0893, 36) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130731 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130724 +packetLen(0x0893, 19) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130515 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130508 +packetLen(0x0893, 18) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130306 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130227 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130130 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130121 +packetLen(0x0893, 26) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20130103 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20131204 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131127 +packetLen(0x0894, 36) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131113 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131106 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131023 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20131016 +packetLen(0x0894, 12) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130807 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130731 +packetLen(0x0894, -1) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130703 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130626 +packetLen(0x0894, 18) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130121 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130115 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20130103 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20131230 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130925 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130917 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130821 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130814 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130807 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130731 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130703 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130626 +packetLen(0x0895, 26) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130605 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130529 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130515 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130508 +packetLen(0x0895, 19) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130121 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130115 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20130103 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20131016 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20131008 +packetLen(0x0896, 90) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130821 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130814 +packetLen(0x0896, 8) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20130103 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20130807 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130731 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130724 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130717 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130605 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130529 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130515 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130508 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130327 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130320 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20130103 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20131230 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130724 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130717 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130327 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130320 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130313 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130306 +packetLen(0x0898, 7) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130227 +packetLen(0x0898, 5) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20130103 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20130403 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130327 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130215 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130206 +packetLen(0x0899, -1) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20130103 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20131120 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20131113 +packetLen(0x089a, 19) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130206 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130130 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20130103 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20130724 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130717 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130529 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130522 +packetLen(0x089b, 18) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130327 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130320 +packetLen(0x089b, 10) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20130103 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20131230 +packetLen(0x089c, 19) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20131016 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20131008 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130731 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130724 +packetLen(0x089c, 10) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130529 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130522 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130417 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130410 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20130103 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20130925 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130917 +packetLen(0x089d, 19) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20130103 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20131204 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20131127 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20131120 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130904 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130828 +packetLen(0x089e, 10) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130417 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130410 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130220 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130215 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20130103 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20130904 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130828 +packetLen(0x089f, 5) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130313 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130306 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130220 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130215 +packetLen(0x089f, 4) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130206 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130130 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20130103 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20131211 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20131204 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130925 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130917 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130417 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130410 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130215 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130206 +packetLen(0x08a0, 5) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130130 +packetLen(0x08a0, 10) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130121 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130115 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20130103 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20131127 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20131120 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130522 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130515 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130508 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130502 +packetLen(0x08a1, 18) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130403 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130327 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130306 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130227 +packetLen(0x08a1, 8) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20130103 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20131113 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20131106 +packetLen(0x08a2, 19) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20131030 +packetLen(0x08a2, 4) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130925 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130917 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130529 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130522 +packetLen(0x08a2, 7) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130403 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130327 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130115 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130109 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20130103 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20131218 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20131211 +packetLen(0x08a3, 18) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130904 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130828 +packetLen(0x08a3, -1) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130529 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130522 +packetLen(0x08a3, 8) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130508 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130502 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20130103 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20131230 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131223 +packetLen(0x08a4, 36) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131218 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131211 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131204 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131127 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131120 +packetLen(0x08a4, 36) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20131113 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130917 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130911 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130821 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130814 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130417 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130410 +packetLen(0x08a4, 90) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130313 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130306 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130206 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130130 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130121 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130115 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20130103 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20130703 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130626 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130410 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130403 +packetLen(0x08a5, 4) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20130103 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20130724 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130717 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130626 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130618 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130529 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130522 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20130103 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20131211 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131204 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131030 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20131023 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130626 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130618 +packetLen(0x08a7, 18) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130605 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130529 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20130103 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20131127 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20131120 +packetLen(0x08a8, 7) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20131113 +packetLen(0x08a8, 8) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130925 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130917 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130605 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130529 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20130103 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20131230 +packetLen(0x08a9, 26) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20131016 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20131008 +packetLen(0x08a9, 10) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130724 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130717 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130529 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130522 +packetLen(0x08a9, 19) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130206 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130130 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20130103 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20130724 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130717 +packetLen(0x08aa, -1) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130522 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130515 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130115 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130109 +packetLen(0x08aa, 4) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20130103 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20131223 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131218 +packetLen(0x08ab, 26) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131211 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131030 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20131023 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130731 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130724 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130703 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130626 +packetLen(0x08ab, 26) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130515 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130508 +packetLen(0x08ab, 26) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20130103 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20131030 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20131023 +packetLen(0x08ac, 19) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130904 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130828 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130529 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130522 +packetLen(0x08ac, 4) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130515 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130327 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130320 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130313 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130306 +packetLen(0x08ac, 4) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130215 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130206 +packetLen(0x08ac, 19) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130121 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130115 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20130103 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20131211 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20131204 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130828 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130821 +packetLen(0x08ad, 4) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130220 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130215 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20130103 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 146) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08e5 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e5, 41) // CZ_PARTY_RECRUIT_REQ_REGISTER +#endif + +// Packet: 0x08e6 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e6, 4) // ZC_PARTY_RECRUIT_ACK_REGISTER +#endif + +// Packet: 0x08e7 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e7, 10) // CZ_PARTY_RECRUIT_REQ_SEARCH +#endif + +// Packet: 0x08e8 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e8, -1) +#endif + +// Packet: 0x08e9 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08e9, 2) // CZ_PARTY_RECRUIT_REQ_DELETE +#endif + +// Packet: 0x08ea +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ea, 4) // ZC_PARTY_RECRUIT_ACK_DELETE +#endif + +// Packet: 0x08eb +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08eb, 39) // CZ_PARTY_RECRUIT_REQ_UPDATE +#endif + +// Packet: 0x08ec +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ec, 73) // ZC_PARTY_RECRUIT_NOTIFY_INSERT +#endif + +// Packet: 0x08ed +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ed, 43) // ZC_PARTY_RECRUIT_NOTIFY_UPDATE +#endif + +// Packet: 0x08ee +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ee, 6) // ZC_PARTY_RECRUIT_NOTIFY_DELETE +#endif + +// Packet: 0x08ef +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08ef, 6) // CZ_PARTY_RECRUIT_ADD_FILTERLINGLIST +#endif + +// Packet: 0x08f0 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f0, 6) // CZ_PARTY_RECRUIT_SUB_FILTERLINGLIST +#endif + +// Packet: 0x08f1 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f1, 6) // CZ_PARTY_RECRUIT_REQ_VOLUNTEER +#endif + +// Packet: 0x08f2 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f2, 36) // ZC_PARTY_RECRUIT_VOLUNTEER_INFO +#endif + +// Packet: 0x08f3 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f3, -1) +#endif + +// Packet: 0x08f4 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f4, 6) // CZ_PARTY_RECRUIT_SHOW_EQUIPMENT +#endif + +// Packet: 0x08f5 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f5, -1) // CZ_UNKNOWN_BOOKING_SOMMON_MEMBER_08f5 +#endif + +// Packet: 0x08f6 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f6, 22) // ZC_PARTY_RECRUIT_RECALL_COST +#endif + +// Packet: 0x08f7 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f7, 3) // CZ_PARTY_RECRUIT_ACK_RECALL +#endif + +// Packet: 0x08f8 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f8, 7) // ZC_PARTY_RECRUIT_FAILED_RECALL +#endif + +// Packet: 0x08f9 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08f9, 6) // CZ_PARTY_RECRUIT_REFUSE_VOLUNTEER +#endif + +// Packet: 0x08fa +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08fa, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER +#endif + +// Packet: 0x08fb +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x08fb, 6) // CZ_PARTY_RECRUIT_CANCEL_VOLUNTEER +#endif + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x0909 +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x0909, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER +#endif + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090b +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x090b, 30) // ZC_PARTY_RECRUIT_ADD_FILTERLINGLIST +#endif + +// Packet: 0x090c +#if PACKETVER >= 20130502 +// removed +#elif PACKETVER >= 20130103 +packetLen(0x090c, 30) // ZC_PARTY_RECRUIT_SUB_FILTERLINGLIST +#endif + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20131127 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20131120 +packetLen(0x0917, 6) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20131016 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20131008 +packetLen(0x0917, 8) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130904 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130828 +packetLen(0x0917, 18) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130724 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130717 +packetLen(0x0917, 6) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130626 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130618 +packetLen(0x0917, 6) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130605 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130529 +packetLen(0x0917, 10) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130417 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130410 +packetLen(0x0917, 26) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130313 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130306 +packetLen(0x0917, 8) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130103 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20130925 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130917 +packetLen(0x0918, 5) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130724 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130717 +packetLen(0x0918, 7) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130605 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130529 +packetLen(0x0918, -1) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130121 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130115 +packetLen(0x0918, 10) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130109 +packetLen(0x0918, 26) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130103 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20131030 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20131023 +packetLen(0x0919, 6) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130618 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130612 +packetLen(0x0919, 19) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130605 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130529 +packetLen(0x0919, 19) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130103 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20131023 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20131016 +packetLen(0x091a, -1) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130206 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130130 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130103 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20130306 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20130227 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20130115 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20130109 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20130103 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20131120 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20131113 +packetLen(0x091c, 8) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20131016 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20131008 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20130925 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20130917 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20130103 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20131230 +packetLen(0x091d, 36) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131113 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131106 +packetLen(0x091d, 90) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131030 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131023 +packetLen(0x091d, 12) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130828 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130821 +packetLen(0x091d, 5) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130724 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130717 +packetLen(0x091d, 19) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130417 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130410 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130103 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20131230 +packetLen(0x091e, 10) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20131023 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20131016 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130925 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130917 +packetLen(0x091e, 4) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130911 +packetLen(0x091e, 5) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130904 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130828 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130724 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130717 +packetLen(0x091e, 10) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130313 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130306 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130103 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20131230 +packetLen(0x091f, 18) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131211 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131204 +packetLen(0x091f, 5) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131023 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131016 +packetLen(0x091f, 5) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130403 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130327 +packetLen(0x091f, -1) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130306 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130227 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130130 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130121 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130103 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20131120 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20131113 +packetLen(0x0920, 12) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130320 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130313 +packetLen(0x0920, 36) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130215 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130130 +packetLen(0x0920, 26) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130103 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20130925 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130917 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130731 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130724 +packetLen(0x0921, 90) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130703 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130626 +packetLen(0x0921, 8) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130103 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20130327 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130320 +packetLen(0x0922, -1) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130115 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130109 +packetLen(0x0922, 6) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130103 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20131030 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20131023 +packetLen(0x0923, 7) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130925 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130917 +packetLen(0x0923, 5) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130904 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130828 +packetLen(0x0923, 10) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130821 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130814 +packetLen(0x0923, 6) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130807 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130731 +packetLen(0x0923, 18) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130220 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130215 +packetLen(0x0923, 5) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130103 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20131030 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20131023 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130904 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130828 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130731 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130724 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130306 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130227 +packetLen(0x0924, 90) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130206 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130130 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130103 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20131106 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20131030 +packetLen(0x0925, 5) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130807 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130731 +packetLen(0x0925, 10) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130529 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130522 +packetLen(0x0925, 5) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130215 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130206 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130103 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20131230 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131127 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131120 +packetLen(0x0926, -1) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131113 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130821 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130814 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130529 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130522 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130410 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130403 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130313 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130306 +packetLen(0x0926, 36) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130103 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20131127 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131120 +packetLen(0x0927, 8) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131113 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131023 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131016 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131008 +packetLen(0x0927, 12) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130821 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130814 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130731 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130724 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130115 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130109 +packetLen(0x0927, 90) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130103 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20131211 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20131204 +packetLen(0x0928, 7) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20131120 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20131113 +packetLen(0x0928, 36) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130904 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130828 +packetLen(0x0928, -1) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130121 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130109 +packetLen(0x0928, -1) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130103 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20131120 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20131113 +packetLen(0x0929, 6) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20131106 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130904 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130828 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130424 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130417 +packetLen(0x0929, 5) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130103 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20131230 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130103 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20131218 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131211 +packetLen(0x092b, 36) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131127 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131120 +packetLen(0x092b, 5) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131113 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130807 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130731 +packetLen(0x092b, 19) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130724 +packetLen(0x092b, 26) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130403 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130327 +packetLen(0x092b, 5) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130306 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130227 +packetLen(0x092b, -1) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130103 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20131120 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20131113 +packetLen(0x092c, 26) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130103 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20131211 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20131204 +packetLen(0x092d, 10) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20131120 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20131113 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130828 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130821 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130807 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130731 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130522 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130515 +packetLen(0x092d, 18) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130508 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130403 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130327 +packetLen(0x092d, 26) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130320 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130313 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130121 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130115 +packetLen(0x092d, 19) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130103 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20131120 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20131113 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130731 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130724 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130403 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130327 +packetLen(0x092e, 4) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130121 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130115 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130103 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20131223 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131218 +packetLen(0x092f, 19) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131211 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131204 +packetLen(0x092f, 5) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131120 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131113 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130724 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130717 +packetLen(0x092f, 26) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130403 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130327 +packetLen(0x092f, 8) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130306 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130227 +packetLen(0x092f, -1) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130103 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20131204 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20131127 +packetLen(0x0930, 18) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130904 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130828 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130710 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130703 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130626 +packetLen(0x0930, 36) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130618 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130115 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130109 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130103 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20131218 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131211 +packetLen(0x0931, 8) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130522 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130515 +packetLen(0x0931, 5) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130115 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130109 +packetLen(0x0931, -1) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130103 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20131016 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20131008 +packetLen(0x0932, 10) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130626 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130618 +packetLen(0x0932, -1) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130103 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20130417 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130410 +packetLen(0x0933, 10) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130403 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130327 +packetLen(0x0933, -1) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130320 +packetLen(0x0933, 6) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130103 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20131120 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131113 +packetLen(0x0934, 18) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131016 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131008 +packetLen(0x0934, 6) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130925 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130917 +packetLen(0x0934, 12) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130313 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130306 +packetLen(0x0934, 26) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130103 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20131113 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20131106 +packetLen(0x0935, 26) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20131030 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20131023 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130807 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130731 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130103 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20131120 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20131113 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20131016 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20131008 +packetLen(0x0936, 6) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130821 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130814 +packetLen(0x0936, -1) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130626 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130618 +packetLen(0x0936, 8) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130605 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130529 +packetLen(0x0936, -1) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130306 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130227 +packetLen(0x0936, 12) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130103 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20131030 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20131023 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130911 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130904 +packetLen(0x0937, 26) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130821 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130814 +packetLen(0x0937, 6) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130605 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130529 +packetLen(0x0937, 6) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130103 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20130605 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130529 +packetLen(0x0938, 8) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130403 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130327 +packetLen(0x0938, 8) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130320 +packetLen(0x0938, -1) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130115 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130109 +packetLen(0x0938, 26) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130103 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20130417 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130410 +packetLen(0x0939, 7) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130403 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130327 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130121 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130115 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130103 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20131204 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20131127 +packetLen(0x093a, 26) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130917 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130911 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130904 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130821 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130814 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130618 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130612 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130215 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130206 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130130 +packetLen(0x093a, 36) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130103 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20131211 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20131204 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20131113 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20131106 +packetLen(0x093b, 6) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130724 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130717 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130103 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20131120 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20131113 +packetLen(0x093c, 5) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20131016 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20131008 +packetLen(0x093c, 5) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130215 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130206 +packetLen(0x093c, 26) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130103 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20131230 +packetLen(0x093d, -1) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130417 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130410 +packetLen(0x093d, 8) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130206 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130130 +packetLen(0x093d, -1) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130103 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20131230 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20131127 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20131120 +packetLen(0x093e, 90) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130828 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130821 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130529 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130522 +packetLen(0x093e, 12) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130515 +packetLen(0x093e, 36) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130115 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130109 +packetLen(0x093e, 18) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130103 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20131127 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131120 +packetLen(0x093f, -1) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130327 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130320 +packetLen(0x093f, 5) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130103 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20131204 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131127 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131120 +packetLen(0x0940, 4) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131008 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131002 +packetLen(0x0940, 5) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130925 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130917 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130911 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130618 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130612 +packetLen(0x0940, 26) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130130 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130121 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130109 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130103 +packetLen(0x0940, 19) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20131211 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20131204 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130807 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130731 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130220 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130215 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20130103 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20131113 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20131106 +packetLen(0x0942, 10) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130626 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130618 +packetLen(0x0942, -1) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130410 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130403 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20130103 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20131230 +packetLen(0x0943, 26) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130522 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130515 +packetLen(0x0943, 19) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130313 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130306 +packetLen(0x0943, 10) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20130103 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20131030 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20131023 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130904 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130828 +packetLen(0x0944, 26) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130626 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130618 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130522 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130515 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130508 +packetLen(0x0944, 4) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130417 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130410 +packetLen(0x0944, 4) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130313 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130306 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20130103 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20130626 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20130618 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20130417 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20130410 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20130103 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20131113 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20131106 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20131023 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20131016 +packetLen(0x0946, 18) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130904 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130828 +packetLen(0x0946, 4) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130313 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130306 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130227 +packetLen(0x0946, 8) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130121 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130115 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20130103 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20131223 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131218 +packetLen(0x0947, 5) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131113 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131106 +packetLen(0x0947, 7) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131016 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20131008 +packetLen(0x0947, 36) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130821 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130814 +packetLen(0x0947, 10) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130522 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130515 +packetLen(0x0947, 26) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130327 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130320 +packetLen(0x0947, 36) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130313 +packetLen(0x0947, 19) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20130103 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20131113 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20131106 +packetLen(0x0948, 4) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130917 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130911 +packetLen(0x0948, 26) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20130103 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20131230 +packetLen(0x0949, 5) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131120 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20131113 +packetLen(0x0949, 10) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20130103 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20131230 +packetLen(0x094a, 5) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20131030 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20131023 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130904 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130828 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130731 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130724 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130710 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130703 +packetLen(0x094a, 5) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130403 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130327 +packetLen(0x094a, 5) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130313 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130306 +packetLen(0x094a, 18) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20130103 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20130403 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130327 +packetLen(0x094b, 36) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130227 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130220 +packetLen(0x094b, 36) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130121 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130115 +packetLen(0x094b, 18) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20130103 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20131218 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20131211 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20131204 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20131127 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130925 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130917 +packetLen(0x094c, 18) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130904 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130828 +packetLen(0x094c, -1) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130807 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130731 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130327 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130320 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130121 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130115 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20130103 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20130703 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130626 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130515 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130508 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20130103 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20130925 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130917 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130327 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130320 +packetLen(0x094e, -1) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130313 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130306 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130121 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130115 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20130103 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20131204 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20131127 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130904 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130828 +packetLen(0x094f, 7) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130626 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130618 +packetLen(0x094f, 90) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130403 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130327 +packetLen(0x094f, 26) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130130 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130121 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130115 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130109 +packetLen(0x094f, -1) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20130103 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20131127 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131120 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20131106 +packetLen(0x0950, -1) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130529 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130522 +packetLen(0x0950, 26) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130410 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130403 +packetLen(0x0950, 26) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130215 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130206 +packetLen(0x0950, 8) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130115 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130109 +packetLen(0x0950, 36) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20130103 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20131211 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131204 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131030 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20131023 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130626 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130618 +packetLen(0x0951, 10) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130605 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130529 +packetLen(0x0951, 5) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130313 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130306 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130227 +packetLen(0x0951, 10) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130115 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130109 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20130103 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20131016 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20131008 +packetLen(0x0952, 6) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130724 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130717 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130703 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130626 +packetLen(0x0952, 6) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130529 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130522 +packetLen(0x0952, -1) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20130103 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20131127 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20131120 +packetLen(0x0953, 26) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130731 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130724 +packetLen(0x0953, 5) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130626 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130618 +packetLen(0x0953, 26) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20130103 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20131113 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131106 +packetLen(0x0954, 12) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131030 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131023 +packetLen(0x0954, 8) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131016 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20131008 +packetLen(0x0954, -1) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130828 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130821 +packetLen(0x0954, 10) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130731 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130724 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20130103 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20131127 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20131120 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130417 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130410 +packetLen(0x0955, 10) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130403 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130327 +packetLen(0x0955, 7) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20130103 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20131127 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20131120 +packetLen(0x0956, 5) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20131016 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20131008 +packetLen(0x0956, -1) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130911 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130904 +packetLen(0x0956, 36) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130807 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130731 +packetLen(0x0956, 26) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130724 +packetLen(0x0956, 12) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130717 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130605 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130529 +packetLen(0x0956, 36) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130220 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130215 +packetLen(0x0956, 26) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130206 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130130 +packetLen(0x0956, 19) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130121 +packetLen(0x0956, 5) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20130103 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20130925 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130917 +packetLen(0x0957, 10) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130807 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130731 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130605 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130529 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130515 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130508 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130206 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130130 +packetLen(0x0957, 12) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20130103 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20131211 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20131204 +packetLen(0x0958, -1) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20131002 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130925 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130821 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130814 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130807 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130731 +packetLen(0x0958, -1) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130724 +packetLen(0x0958, 10) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130717 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130605 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130529 +packetLen(0x0958, -1) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20130103 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20131211 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20131204 +packetLen(0x0959, 90) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130925 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130917 +packetLen(0x0959, -1) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130821 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130814 +packetLen(0x0959, 18) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130327 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130320 +packetLen(0x0959, 10) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20130103 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20131002 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130925 +packetLen(0x095a, 18) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130327 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130320 +packetLen(0x095a, 8) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130121 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130115 +packetLen(0x095a, 36) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20130103 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20131211 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131204 +packetLen(0x095b, 12) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131030 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131023 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20131002 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130925 +packetLen(0x095b, -1) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130917 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130807 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130731 +packetLen(0x095b, 90) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130724 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130717 +packetLen(0x095b, 36) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130626 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130618 +packetLen(0x095b, 19) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130529 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130522 +packetLen(0x095b, -1) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130306 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130227 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130206 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130130 +packetLen(0x095b, 18) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130121 +packetLen(0x095b, 26) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20130103 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20131204 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20131127 +packetLen(0x095c, 19) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20131002 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130925 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130731 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130724 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130529 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130522 +packetLen(0x095c, 10) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130515 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130508 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130206 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130130 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20130103 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20131120 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20131113 +packetLen(0x095d, 7) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20131106 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20131016 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20131008 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130904 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130828 +packetLen(0x095d, 5) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130807 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130731 +packetLen(0x095d, 12) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130724 +packetLen(0x095d, 8) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130220 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130215 +packetLen(0x095d, 5) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20130103 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20131127 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131120 +packetLen(0x095e, 18) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131023 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20131016 +packetLen(0x095e, 10) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130828 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130821 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130529 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130522 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130306 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130227 +packetLen(0x095e, 36) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130115 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130109 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20130103 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20131120 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20131113 +packetLen(0x095f, 10) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130821 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130814 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130807 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130731 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20130103 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20131120 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20131113 +packetLen(0x0960, 8) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130724 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130717 +packetLen(0x0960, 12) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130703 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130626 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130417 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130410 +packetLen(0x0960, 26) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130403 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130327 +packetLen(0x0960, 10) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130313 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130306 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20130103 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20131211 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20131204 +packetLen(0x0961, 4) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130508 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130502 +packetLen(0x0961, 8) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130403 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130327 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20130103 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20131113 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20131106 +packetLen(0x0962, -1) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20131023 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20131016 +packetLen(0x0962, 7) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130828 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130821 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130814 +packetLen(0x0962, 90) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130807 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130731 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130626 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130618 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130522 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130515 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130424 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130417 +packetLen(0x0962, 5) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130313 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130306 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130220 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130215 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20130103 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20130522 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130515 +packetLen(0x0963, -1) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130130 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130121 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20130103 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20131120 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20131113 +packetLen(0x0964, 4) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130828 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130821 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130618 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130612 +packetLen(0x0964, 36) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130529 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130522 +packetLen(0x0964, 90) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20130103 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20130731 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130724 +packetLen(0x0965, -1) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130529 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130522 +packetLen(0x0965, 8) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20130103 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20131023 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20131016 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130904 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130828 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130731 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130724 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20130103 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20131211 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20131204 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20131127 +packetLen(0x0967, 26) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20131113 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20131106 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130917 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130911 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130828 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130821 +packetLen(0x0967, 18) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130724 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130717 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130508 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130502 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130417 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130410 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130403 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130327 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130306 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130227 +packetLen(0x0967, 7) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20130103 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20131230 +packetLen(0x0968, 8) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20130103 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20131230 +packetLen(0x0969, 6) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131120 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131113 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131016 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131008 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20131002 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130925 +packetLen(0x0969, 4) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130828 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130821 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130502 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130424 +packetLen(0x0969, 36) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130417 +packetLen(0x0969, 6) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130130 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130121 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20130103 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20131230 +packetLen(0x096a, 90) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131223 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +// ignored packet from 2013-12-23aRagexeRE +#elif PACKETVER >= 20131211 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131204 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131127 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131106 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131030 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20131008 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130925 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130917 +packetLen(0x096a, 26) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130911 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130904 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130828 +packetLen(0x096a, 19) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130814 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130807 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130717 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130626 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130618 +packetLen(0x096a, 10) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130605 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130522 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130508 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130502 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130424 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130417 +packetLen(0x096a, 4) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130403 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130320 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130313 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130227 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130206 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130130 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130121 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130109 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20130103 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +#if PACKETVER >= 20130115 +packetLen(0x0987, -1) // CA_LOGIN6 +#elif PACKETVER >= 20130103 +packetLen(0x0987, 63) // CA_LOGIN6 +#endif + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +#if PACKETVER >= 20130327 +packetLen(0x09a0, 10) // HC_CHARLIST_NOTIFY +#elif PACKETVER >= 20130103 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY +#endif + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +#if PACKETVER >= 20130130 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP +#endif + +// Packet: 0x09a3 +#if PACKETVER >= 20130130 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP +#endif + +// Packet: 0x09a4 +#if PACKETVER >= 20130206 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN +#endif + +// Packet: 0x09a5 +#if PACKETVER >= 20130220 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 +#endif + +// Packet: 0x09a6 +#if PACKETVER >= 20130306 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK +#endif + +// Packet: 0x09a7 +#if PACKETVER >= 20130320 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT +#elif PACKETVER >= 20130306 +packetLen(0x09a7, 14) // CZ_REQ_BANKING_DEPOSIT +#endif + +// Packet: 0x09a8 +#if PACKETVER >= 20130515 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT +#elif PACKETVER >= 20130320 +packetLen(0x09a8, 12) // ZC_ACK_BANKING_DEPOSIT +#elif PACKETVER >= 20130306 +packetLen(0x09a8, 4) // ZC_ACK_BANKING_DEPOSIT +#endif + +// Packet: 0x09a9 +#if PACKETVER >= 20130320 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW +#elif PACKETVER >= 20130306 +packetLen(0x09a9, 14) // CZ_REQ_BANKING_WITHDRAW +#endif + +// Packet: 0x09aa +#if PACKETVER >= 20130515 +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW +#elif PACKETVER >= 20130320 +packetLen(0x09aa, 12) // ZC_ACK_BANKING_WITHDRAW +#elif PACKETVER >= 20130306 +packetLen(0x09aa, 4) // ZC_ACK_BANKING_WITHDRAW +#endif + +// Packet: 0x09ab +#if PACKETVER >= 20130320 +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK +#elif PACKETVER >= 20130313 +packetLen(0x09ab, -1) // CZ_REQ_BANKING_CHECK +#endif + +// Packet: 0x09ac +#if PACKETVER >= 20130327 +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09ac, 20) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO +#endif + +// Packet: 0x09ad +#if PACKETVER >= 20130327 +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09ad, 6) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#endif + +// Packet: 0x09ae +#if PACKETVER >= 20130327 +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09ae, -1) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09af +#if PACKETVER >= 20130327 +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09af, -1) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09b0 +#if PACKETVER >= 20130327 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09b1 +#if PACKETVER >= 20130327 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09b1, 6) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09b2 +#if PACKETVER >= 20130605 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#elif PACKETVER >= 20130327 +packetLen(0x09b2, 6) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#elif PACKETVER >= 20130320 +// removed +#elif PACKETVER >= 20130313 +packetLen(0x09b2, -1) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#endif + +// Packet: 0x09b3 +#if PACKETVER >= 20130605 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#elif PACKETVER >= 20130327 +packetLen(0x09b3, 6) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#endif + +// Packet: 0x09b4 +#if PACKETVER >= 20130417 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL +#endif + +// Packet: 0x09b5 +#if PACKETVER >= 20130417 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL +#endif + +// Packet: 0x09b6 +#if PACKETVER >= 20130417 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING +#endif + +// Packet: 0x09b7 +#if PACKETVER >= 20130417 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING +#endif + +// Packet: 0x09b8 +#if PACKETVER >= 20130417 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING +#endif + +// Packet: 0x09b9 +#if PACKETVER >= 20130417 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING +#endif + +// Packet: 0x09ba +#if PACKETVER >= 20130828 +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE +#elif PACKETVER >= 20130424 +packetLen(0x09ba, 6) // CZ_REQ_OPEN_GUILD_STORAGE +#endif + +// Packet: 0x09bb +#if PACKETVER >= 20130502 +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE +#elif PACKETVER >= 20130424 +packetLen(0x09bb, 4) // ZC_ACK_OPEN_GUILD_STORAGE +#endif + +// Packet: 0x09bc +#if PACKETVER >= 20130424 +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL +#endif + +// Packet: 0x09bd +#if PACKETVER >= 20130424 +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL +#endif + +// Packet: 0x09be +#if PACKETVER >= 20130828 +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE +#elif PACKETVER >= 20130502 +packetLen(0x09be, 6) // CZ_REQ_CLOSE_GUILD_STORAGE +#endif + +// Packet: 0x09bf +#if PACKETVER >= 20130502 +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE +#endif + +// Packet: 0x09c0 +#if PACKETVER >= 20130618 +// removed +#elif PACKETVER >= 20130515 +packetLen(0x09c0, 11) // ZC_ACTION_MOVE +#endif + +// Packet: 0x09c1 +#if PACKETVER >= 20130717 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO +#elif PACKETVER >= 20130515 +packetLen(0x09c1, 11) // ZC_C_MARKERINFO +#endif + +// Packet: 0x09c2 +#if PACKETVER >= 20130522 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA +#endif + +// Packet: 0x09c3 +#if PACKETVER >= 20130529 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c4 +#if PACKETVER >= 20130605 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c5 +#if PACKETVER >= 20130605 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY +#endif + +// Packet: 0x09c6 +#if PACKETVER >= 20130605 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER +#endif + +// Packet: 0x09c7 +#if PACKETVER >= 20130612 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR +#elif PACKETVER >= 20130605 +packetLen(0x09c7, 10) // SC_LOGIN_ERROR +#endif + +// Packet: 0x09c8 +#if PACKETVER >= 20130605 +packetLen(0x09c8, -1) // CA_LOGIN_OTP +#endif + +// Packet: 0x09c9 +#if PACKETVER >= 20130612 +packetLen(0x09c9, -1) // SC_SOCT +#endif + +// Packet: 0x09ca +#if PACKETVER >= 20130828 +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 +#elif PACKETVER >= 20130618 +packetLen(0x09ca, 23) // ZC_SKILL_ENTRY5 +#endif + +// Packet: 0x09cb +#if PACKETVER >= 20130717 +packetLen(0x09cb, 17) // ZC_USE_SKILL2 +#endif + +// Packet: 0x09cc +#if PACKETVER >= 20130717 +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA +#endif + +// Packet: 0x09cd +#if PACKETVER >= 20130807 +packetLen(0x09cd, 8) // ZC_MSG_COLOR +#endif + +// Packet: 0x09ce +#if PACKETVER >= 20130814 +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX +#endif + +// Packet: 0x09cf +#if PACKETVER >= 20130814 +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH +#endif + +// Packet: 0x09d0 +#if PACKETVER >= 20130814 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH +#endif + +// Packet: 0x09d1 +#if PACKETVER >= 20130821 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR +#endif + +// Packet: 0x09d2 +#if PACKETVER >= 20130828 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 +#endif + +// Packet: 0x09d3 +#if PACKETVER >= 20130828 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 +#endif + +// Packet: 0x09d4 +#if PACKETVER >= 20130911 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT +#endif + +// Packet: 0x09d5 +#if PACKETVER >= 20130911 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN +#endif + +// Packet: 0x09d6 +#if PACKETVER >= 20130911 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE +#endif + +// Packet: 0x09d7 +#if PACKETVER >= 20130911 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT +#endif + +// Packet: 0x09d8 +#if PACKETVER >= 20130911 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE +#endif + +// Packet: 0x09d9 +#if PACKETVER >= 20131023 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG +#elif PACKETVER >= 20131016 +packetLen(0x09d9, 6) // CZ_REQ_GUILDSTORAGE_LOG +#elif PACKETVER >= 20131002 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG +#elif PACKETVER >= 20130911 +packetLen(0x09d9, 2) // CZ_REQ_GUILDSTORAGE_LOG +#endif + +// Packet: 0x09da +#if PACKETVER >= 20131002 +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG +#elif PACKETVER >= 20130925 +packetLen(0x09da, 10) // ZC_ACK_GUILDSTORAGE_LOG +#elif PACKETVER >= 20130911 +packetLen(0x09da, 2) // ZC_ACK_GUILDSTORAGE_LOG +#endif + +// Packet: 0x09db +#if PACKETVER >= 20131023 +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 +#endif + +// Packet: 0x09dc +#if PACKETVER >= 20131023 +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 +#endif + +// Packet: 0x09dd +#if PACKETVER >= 20131023 +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 +#endif + +// Packet: 0x09de +#if PACKETVER >= 20131030 +packetLen(0x09de, -1) // ZC_WHISPER02 +#endif + +// Packet: 0x09df +#if PACKETVER >= 20131030 +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 +#endif + +// Packet: 0x09e0 +#if PACKETVER >= 20131030 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID +#endif + +// Packet: 0x09e1 +#if PACKETVER >= 20131106 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE +#endif + +// Packet: 0x09e2 +#if PACKETVER >= 20131106 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY +#endif + +// Packet: 0x09e3 +#if PACKETVER >= 20131106 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE +#endif + +// Packet: 0x09e4 +#if PACKETVER >= 20131106 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART +#endif + +// Packet: 0x09e5 +#if PACKETVER >= 20131127 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 +#elif PACKETVER >= 20131120 +packetLen(0x09e5, 14) // ZC_DELETEITEM_FROM_MCSTORE2 +#endif + +// Packet: 0x09e6 +#if PACKETVER >= 20131127 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#elif PACKETVER >= 20131120 +packetLen(0x09e6, 18) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#endif + +// Packet: 0x09e7 +#if PACKETVER >= 20131211 +packetLen(0x09e7, 2) // ZC_NOTIFY_UNREAD_RODEX +#endif + +// Packet: 0x09e8 +#if PACKETVER >= 20131218 +packetLen(0x09e8, 10) // CZ_OPEN_RODEXBOX +#elif PACKETVER >= 20131211 +packetLen(0x09e8, 18) // CZ_OPEN_RODEXBOX +#endif + +// Packet: 0x09e9 +#if PACKETVER >= 20131211 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX +#endif + +// Packet: 0x09ea +#if PACKETVER >= 20131223 +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX +#elif PACKETVER >= 20131218 +packetLen(0x09ea, 10) // CZ_REQ_READ_RODEX +#endif + +// Packet: 0x09eb +#if PACKETVER >= 20131230 +packetLen(0x09eb, 23) // ZC_ACK_READ_RODEX +#elif PACKETVER >= 20131223 +packetLen(0x09eb, 24) // ZC_ACK_READ_RODEX +#elif PACKETVER >= 20131218 +packetLen(0x09eb, 14) // ZC_ACK_READ_RODEX +#endif + +// Packet: 0x09ec +#if PACKETVER >= 20131230 +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX +#endif + +// Packet: 0x09ed +#if PACKETVER >= 20131230 +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX +#elif PACKETVER >= 20131218 +// removed +#elif PACKETVER >= 20131211 +packetLen(0x09ed, -1) // ZC_ACK_SEND_RODEX +#endif + +// Packet: 0x09ee +#if PACKETVER >= 20131218 +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX +#elif PACKETVER >= 20131211 +packetLen(0x09ee, -1) // CZ_REQ_NEXT_RODEX +#endif + +// Packet: 0x09ef +#if PACKETVER >= 20131218 +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX +#endif + +// Packet: 0x09f0 +#if PACKETVER >= 20131218 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST +#endif + +// Packet: 0x09f5 +#if PACKETVER >= 20131218 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX +#endif + +// Packet: 0x09f6 +#if PACKETVER >= 20131218 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX +#endif + +// Packet: 0x09f7 +#if PACKETVER >= 20131230 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 +#endif + + +#endif /* COMMON_PACKETS2013_LEN_RE_H */ diff --git a/src/common/packets/packets2014_len_main.h b/src/common/packets/packets2014_len_main.h new file mode 100644 index 000000000..3faede09f --- /dev/null +++ b/src/common/packets/packets2014_len_main.h @@ -0,0 +1,9079 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2014_LEN_MAIN_H +#define COMMON_PACKETS2014_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20140820 +packetLen(0x006d, 149) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20140108 +packetLen(0x006d, 146) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20141231 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141210 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141203 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141126 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141119 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141105 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141029 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141015 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141008 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140903 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140827 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140813 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140806 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140702 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140625 +packetLen(0x0202, 8) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140611 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +// ignored packet from 2014-06-11hRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140528 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140508 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140423 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140416 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140319 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140312 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140305 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140226 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140219 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140212 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140205 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140115 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140108 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20141231 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20141112 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20141105 +packetLen(0x022d, 4) // CZ_COMMAND_MER +#elif PACKETVER >= 20141029 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20141022 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20141015 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20141008 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140924 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140917 +packetLen(0x022d, 26) // CZ_COMMAND_MER +#elif PACKETVER >= 20140903 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140827 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140813 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140806 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140730 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20140709 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140702 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20140611 +packetLen(0x022d, 5) // CZ_COMMAND_MER +// ignored packet from 2014-06-11hRagexe +#elif PACKETVER >= 20140514 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140508 +packetLen(0x022d, 6) // CZ_COMMAND_MER +// ignored packet from 2014-05-08aRagexe +#elif PACKETVER >= 20140430 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140423 +packetLen(0x022d, 18) // CZ_COMMAND_MER +#elif PACKETVER >= 20140416 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140212 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140205 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140115 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140108 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20141231 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141105 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141029 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141022 +packetLen(0x023b, 10) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141015 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141008 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140903 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140827 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140813 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140806 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140709 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140702 +packetLen(0x023b, -1) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140625 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140611 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +// ignored packet from 2014-06-11hRagexe +#elif PACKETVER >= 20140508 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140430 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140423 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140416 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140409 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140402 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140319 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140312 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140212 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140205 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140115 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140108 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20141231 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20141210 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20141203 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20141105 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20141008 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140917 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140827 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140813 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140806 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140611 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140528 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140521 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140508 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140423 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140416 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140312 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140305 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140212 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140205 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140129 +packetLen(0x0281, 10) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140115 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140108 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20140730 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140723 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140611 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +// ignored packet from 2014-06-11hRagexe +#elif PACKETVER >= 20140514 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140508 +packetLen(0x02c4, 90) // CZ_PARTY_JOIN_REQ +// ignored packet from 2014-05-08aRagexe +#elif PACKETVER >= 20140326 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140319 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140108 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20141231 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141217 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141210 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141203 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141126 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141112 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141105 +packetLen(0x035f, 10) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141001 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140917 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140827 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140820 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140806 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140709 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140702 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140611 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140528 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140521 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140514 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140508 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +// ignored packet from 2014-05-08aRagexe +#elif PACKETVER >= 20140430 +packetLen(0x035f, 36) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140423 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140416 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140312 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140226 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140212 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140129 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140122 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140108 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20141231 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141224 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141217 +packetLen(0x0360, 8) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141210 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141203 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141126 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141112 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141105 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141001 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140917 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140827 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140820 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140806 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140709 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140702 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140611 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140528 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140521 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140514 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140430 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140423 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140416 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140409 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140402 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140312 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140226 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140219 +packetLen(0x0360, 4) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140212 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140129 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140122 +packetLen(0x0360, 7) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140108 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20141231 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141224 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141105 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141029 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141015 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141008 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141001 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140903 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140827 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140813 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140806 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140611 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +// ignored packet from 2014-06-11hRagexe +#elif PACKETVER >= 20140514 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140508 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140423 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140416 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140312 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140226 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140212 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140205 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140129 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140122 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140115 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140108 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20141231 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141210 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141203 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141119 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141112 +packetLen(0x0362, 26) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141105 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141029 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141022 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141008 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140917 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140827 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140813 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140806 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140723 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140716 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140611 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140528 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140521 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140508 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140423 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140416 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140402 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140326 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140312 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140305 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140226 +packetLen(0x0362, 26) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140212 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140205 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140115 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140108 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20141231 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20141105 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20141029 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20141022 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20141008 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140917 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140827 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140813 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140806 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140611 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140528 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140521 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140508 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140430 +packetLen(0x0363, 10) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140423 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140416 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140312 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140305 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140212 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140205 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140115 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140108 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20141231 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141105 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141029 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141022 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141015 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141008 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140917 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140827 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140813 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140806 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140730 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140723 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140716 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140702 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140611 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140528 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140521 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140508 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140423 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140416 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140409 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140402 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140312 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140305 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140226 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140219 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140212 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140205 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140115 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140108 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20141231 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141105 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141029 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141022 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141008 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141001 +packetLen(0x0365, 12) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140924 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140917 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140827 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140820 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140813 +packetLen(0x0365, 36) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140806 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140611 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140528 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140521 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140508 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140423 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140416 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140402 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140326 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140312 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140305 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140212 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140205 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140115 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140108 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20141231 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141217 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141210 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141203 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141126 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141105 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141001 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140924 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140917 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140827 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140820 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140806 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140730 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140709 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140702 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140611 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140528 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140521 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140514 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140508 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +// ignored packet from 2014-05-08aRagexe +#elif PACKETVER >= 20140430 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140423 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140416 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140319 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140312 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140226 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140212 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140129 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140122 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140108 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20141210 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20141203 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20141126 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20141001 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140924 +packetLen(0x0367, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140917 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140806 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140730 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140611 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +// ignored packet from 2014-06-11hRagexe +#elif PACKETVER >= 20140508 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140205 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140129 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140122 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140115 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140108 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20141231 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20141217 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20141210 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20141203 +packetLen(0x0368, 8) // CZ_REQNAME2 +#elif PACKETVER >= 20141126 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20141105 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20141001 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140917 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140827 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140820 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140806 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140730 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140723 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140709 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140702 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140611 +packetLen(0x0368, 6) // CZ_REQNAME2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0368, 7) // CZ_REQNAME2 +#elif PACKETVER >= 20140528 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140521 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140514 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140508 +packetLen(0x0368, 6) // CZ_REQNAME2 +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140423 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140416 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140312 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140226 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140212 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140129 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140122 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140108 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20141231 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141217 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141210 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141203 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141126 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141105 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141029 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141001 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140924 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140917 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140827 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140820 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140806 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140709 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140702 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140611 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0369, 19) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140528 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140521 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140514 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140508 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +// ignored packet from 2014-05-08aRagexe +#elif PACKETVER >= 20140430 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140423 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140416 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140312 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140226 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140219 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140212 +packetLen(0x0369, 18) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140129 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140122 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140108 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20141231 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20141217 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20141210 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20141105 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20141029 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20141015 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20141008 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140903 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140827 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140813 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140806 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140730 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140723 +packetLen(0x0436, 12) // CZ_ENTER2 +#elif PACKETVER >= 20140611 +packetLen(0x0436, 19) // CZ_ENTER2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140508 +packetLen(0x0436, 19) // CZ_ENTER2 +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140430 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140423 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20140416 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140312 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140305 +packetLen(0x0436, 10) // CZ_ENTER2 +#elif PACKETVER >= 20140212 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140205 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140115 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140108 +packetLen(0x0436, 4) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20141231 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141217 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141210 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141203 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141126 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141105 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141029 +packetLen(0x0437, 36) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141001 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140917 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140827 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140820 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140806 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140730 +packetLen(0x0437, 19) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140716 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140709 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140702 +packetLen(0x0437, 26) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140611 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140528 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140521 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140514 +packetLen(0x0437, 12) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140508 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140430 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140423 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140416 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140312 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140226 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140212 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140129 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140122 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140108 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20141231 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141224 +packetLen(0x0438, 26) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141217 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141210 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141203 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141126 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141119 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141112 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141105 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141029 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141022 +packetLen(0x0438, 36) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141001 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140917 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140827 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140820 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140806 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140709 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140702 +packetLen(0x0438, 8) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140618 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140611 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140528 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140521 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140514 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140430 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140423 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140416 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140312 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140305 +packetLen(0x0438, 19) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140226 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140219 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140212 +packetLen(0x0438, 90) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140129 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140122 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140108 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20141231 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141217 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141210 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141105 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141029 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141022 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141008 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141001 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140924 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140917 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140820 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140813 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140806 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140723 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140716 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140709 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140702 +packetLen(0x07e4, 10) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140618 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140611 +packetLen(0x07e4, 8) // CZ_ITEMLISTWIN_RES +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140605 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140528 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140521 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140514 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140508 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +// ignored packet from 2014-05-08aRagexe +#elif PACKETVER >= 20140430 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140416 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140326 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140319 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140312 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140305 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140212 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140205 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140115 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140108 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20141231 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20141105 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20141029 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20141022 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20141008 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140917 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140827 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140813 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140806 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140730 +packetLen(0x07ec, 4) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140611 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140528 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140521 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140508 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140423 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140416 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140409 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140326 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140312 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140305 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140212 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140205 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140129 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140122 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140115 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140108 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20141231 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141210 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141203 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141126 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141105 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141029 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141022 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141008 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141001 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140924 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140917 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140827 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140820 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140813 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140806 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140730 +packetLen(0x0802, 8) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140611 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140528 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140521 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140514 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140508 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140423 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140416 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140312 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140305 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140226 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140219 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140212 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140205 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140129 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140122 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140115 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140108 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20141231 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20141203 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20141126 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20141105 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20141001 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140917 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140827 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140820 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140806 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140723 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140716 +packetLen(0x0811, 7) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140709 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140702 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140611 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140528 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140521 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140514 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140430 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140423 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140416 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140326 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140319 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140312 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140305 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140226 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140212 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140129 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140115 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140108 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20141231 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141217 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141210 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141203 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141126 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141105 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141001 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140924 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140917 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140827 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140820 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140806 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140730 +packetLen(0x0815, 26) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140709 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140702 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140625 +packetLen(0x0815, 4) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140611 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140605 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140528 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140521 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140514 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140508 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140430 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140423 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140416 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140326 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140319 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140312 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140305 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140226 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140212 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140129 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140122 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140108 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20140806 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140730 +packetLen(0x0817, 7) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140702 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140625 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140611 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140521 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140514 +packetLen(0x0817, 4) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140508 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140108 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20141231 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141217 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141210 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141203 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141126 +packetLen(0x0819, 18) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141105 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141001 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140917 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140827 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140820 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140806 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140730 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140723 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140709 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140702 +packetLen(0x0819, 5) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140611 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140528 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140521 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140514 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140430 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140423 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140416 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140409 +packetLen(0x0819, 8) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140312 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140219 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140212 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140129 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140122 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140108 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20141231 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141224 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141119 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141112 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141029 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141022 +packetLen(0x0835, 12) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140827 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140820 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140709 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140702 +packetLen(0x0835, 12) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140625 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140611 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140508 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +// ignored packet from 2014-05-08aRagexe +#elif PACKETVER >= 20140108 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20141231 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141217 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141210 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141203 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141126 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141105 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141029 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141022 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141008 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141001 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140924 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140917 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140827 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140820 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140806 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140730 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140723 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140618 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140611 +packetLen(0x0838, 90) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140528 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140521 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140514 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140508 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +// ignored packet from 2014-05-08aRagexe +#elif PACKETVER >= 20140430 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140423 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140416 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140312 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140305 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140226 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140219 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140212 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140129 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140122 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140108 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20141231 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141217 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141210 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141203 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141126 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141119 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141112 +packetLen(0x083c, 8) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141105 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141001 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140917 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140827 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140820 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140806 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140709 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140702 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140611 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140528 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140521 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140514 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140508 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +// ignored packet from 2014-05-08bRagexe +#elif PACKETVER >= 20140430 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140423 +packetLen(0x083c, 5) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140416 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140402 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140326 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140312 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140226 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140212 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140205 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140129 +packetLen(0x083c, 4) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140122 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140108 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20141231 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141224 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141126 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141119 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140709 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140702 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140625 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140326 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140319 +packetLen(0x085a, 5) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140108 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20140430 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140423 +packetLen(0x085b, 5) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140416 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140409 +packetLen(0x085b, 6) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140402 +packetLen(0x085b, 8) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140226 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140219 +packetLen(0x085b, 6) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140108 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20141112 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20141105 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140723 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140716 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140226 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140219 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140108 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20140625 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140618 +packetLen(0x085d, 8) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140226 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140219 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140108 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20140806 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140730 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140319 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140312 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140108 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20141119 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20141112 +packetLen(0x085f, -1) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140730 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140723 +packetLen(0x085f, 5) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140716 +packetLen(0x085f, 19) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140605 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140528 +packetLen(0x085f, 18) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140226 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140219 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140108 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20141224 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20141217 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140716 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140709 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140625 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140618 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140508 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140430 +packetLen(0x0860, 26) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140226 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140219 +packetLen(0x0860, 5) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140108 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20141210 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20141203 +packetLen(0x0861, 8) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20141126 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20141119 +packetLen(0x0861, 26) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140827 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140820 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140702 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140625 +packetLen(0x0861, 10) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140618 +packetLen(0x0861, 90) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140514 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140508 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140108 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20141001 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140924 +packetLen(0x0862, 4) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140605 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140528 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140430 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140423 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140108 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20141119 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20141112 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20141105 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140430 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140423 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140129 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140122 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140108 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20141112 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20141105 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20141001 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140924 +packetLen(0x0864, -1) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140917 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140827 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140820 +packetLen(0x0864, 19) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140618 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140611 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140326 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140319 +packetLen(0x0864, 7) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140108 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20141231 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141224 +packetLen(0x0865, 90) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141126 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141119 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141112 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141105 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141001 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140924 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140521 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140514 +packetLen(0x0865, 7) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140402 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140319 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140122 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140115 +packetLen(0x0865, 36) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140108 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20141126 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20141119 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140716 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140709 +packetLen(0x0866, 4) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140430 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140423 +packetLen(0x0866, 19) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140326 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140319 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140108 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20141231 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20141224 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20141001 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140924 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140618 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140611 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140521 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140514 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140402 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140326 +packetLen(0x0867, 12) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140305 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140226 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140108 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20140820 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140813 +packetLen(0x0868, 5) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140723 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140716 +packetLen(0x0868, 26) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140521 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140514 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140416 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140409 +packetLen(0x0868, 12) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140402 +packetLen(0x0868, 10) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140226 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140219 +packetLen(0x0868, 36) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140108 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20141119 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20141112 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140827 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140820 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140730 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140723 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140716 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140709 +packetLen(0x0869, 5) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140528 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140521 +packetLen(0x0869, 36) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140402 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140326 +packetLen(0x0869, 18) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140108 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20140416 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140409 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140108 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20140702 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140625 +packetLen(0x086b, 26) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140430 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140423 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140402 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140326 +packetLen(0x086b, 8) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140108 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20141231 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141224 +packetLen(0x086c, 6) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141217 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141210 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141203 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141119 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141112 +packetLen(0x086c, 18) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140827 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140820 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140709 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140702 +packetLen(0x086c, 18) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140625 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140618 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140611 +packetLen(0x086c, 4) // ZC_REASSEMBLY_AUTH19 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140108 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20141231 +packetLen(0x086d, 36) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20141210 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20141203 +packetLen(0x086d, 8) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20141001 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140924 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140917 +packetLen(0x086d, 90) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140730 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140723 +packetLen(0x086d, 90) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140416 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140409 +packetLen(0x086d, -1) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140108 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20141210 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141203 +packetLen(0x086e, 6) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141126 +packetLen(0x086e, 19) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141022 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141015 +packetLen(0x086e, 19) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141001 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140924 +packetLen(0x086e, 5) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140827 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140820 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140326 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140319 +packetLen(0x086e, 4) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140219 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140212 +packetLen(0x086e, 10) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140108 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20140430 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140423 +packetLen(0x086f, 90) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140319 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140312 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140226 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140219 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140108 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20141231 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20141224 +packetLen(0x0870, 5) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140508 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140430 +packetLen(0x0870, 26) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140129 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140122 +packetLen(0x0870, 18) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140108 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20141203 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141126 +packetLen(0x0871, 8) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141119 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141112 +packetLen(0x0871, -1) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141105 +packetLen(0x0871, 36) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140723 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140716 +packetLen(0x0871, 8) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140508 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140430 +packetLen(0x0871, 5) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140129 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140122 +packetLen(0x0871, 19) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140108 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20141126 +packetLen(0x0872, 2) +#elif PACKETVER >= 20141119 +packetLen(0x0872, 7) +#elif PACKETVER >= 20140827 +packetLen(0x0872, 2) +#elif PACKETVER >= 20140820 +packetLen(0x0872, 90) +#elif PACKETVER >= 20140605 +packetLen(0x0872, 2) +#elif PACKETVER >= 20140528 +packetLen(0x0872, 5) +#elif PACKETVER >= 20140326 +packetLen(0x0872, 2) +#elif PACKETVER >= 20140319 +packetLen(0x0872, 12) +#elif PACKETVER >= 20140129 +packetLen(0x0872, 2) +#elif PACKETVER >= 20140122 +packetLen(0x0872, 26) +#elif PACKETVER >= 20140108 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20141126 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20141119 +packetLen(0x0873, 10) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140430 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140423 +packetLen(0x0873, -1) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140108 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20141112 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20141105 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140618 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140611 +packetLen(0x0874, 26) // ZC_REASSEMBLY_AUTH27 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140219 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140212 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140108 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20141224 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141217 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141126 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141119 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141112 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141105 +packetLen(0x0875, 7) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140716 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140709 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140702 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140625 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140605 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140528 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140508 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140430 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140416 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140409 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140108 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20140827 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140820 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140521 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140514 +packetLen(0x0876, 10) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140108 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20141112 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20141105 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140716 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140709 +packetLen(0x0877, 10) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140605 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140528 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140521 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140514 +packetLen(0x0877, 8) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140305 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140226 +packetLen(0x0877, 19) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140219 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140212 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140108 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20141224 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20141217 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20141029 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20141022 +packetLen(0x0878, 8) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140820 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140813 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140625 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140618 +packetLen(0x0878, -1) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140611 +packetLen(0x0878, 6) // ZC_REASSEMBLY_AUTH31 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140312 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140305 +packetLen(0x0878, 4) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140219 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140212 +packetLen(0x0878, 12) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140108 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20141224 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20141217 +packetLen(0x0879, 5) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20141112 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20141105 +packetLen(0x0879, 12) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140716 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140709 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140605 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140528 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140108 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20141231 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20141224 +packetLen(0x087a, 6) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140108 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20141231 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141224 +packetLen(0x087b, 4) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141217 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141210 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141203 +packetLen(0x087b, 5) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140702 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140625 +packetLen(0x087b, 10) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140108 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20141126 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20141119 +packetLen(0x087c, 6) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20141008 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20141001 +packetLen(0x087c, 8) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140820 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140813 +packetLen(0x087c, 26) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140402 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140326 +packetLen(0x087c, 5) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140226 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140219 +packetLen(0x087c, 8) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140108 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20141029 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20141022 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140806 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140730 +packetLen(0x087d, 8) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140723 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140625 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140618 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140521 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140514 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140108 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20141210 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141203 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140806 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140730 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140605 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140528 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140416 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140409 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140402 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140326 +packetLen(0x087e, 26) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140219 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140212 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140108 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20140806 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140730 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140508 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140430 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140402 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140326 +packetLen(0x087f, 10) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140108 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20141210 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141203 +packetLen(0x0880, 5) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140108 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20140723 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140716 +packetLen(0x0881, 10) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140108 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20140820 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140813 +packetLen(0x0882, 18) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140409 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140402 +packetLen(0x0882, 6) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140108 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20141224 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141217 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140416 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140409 +packetLen(0x0883, 5) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140402 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140326 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140319 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140108 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20141203 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141126 +packetLen(0x0884, 4) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141008 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141001 +packetLen(0x0884, 26) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140625 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140618 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140508 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140430 +packetLen(0x0884, 18) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140416 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140409 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140205 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140129 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140108 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20141217 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141210 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141126 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141119 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141112 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141008 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141001 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140702 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140625 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140618 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140521 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140514 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140205 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140129 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140108 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20141119 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20141112 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20141001 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140924 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140702 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140625 +packetLen(0x0886, 90) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140618 +packetLen(0x0886, 18) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140521 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140514 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140508 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140108 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20141119 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20141112 +packetLen(0x0887, 26) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20141105 +packetLen(0x0887, 90) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140716 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140709 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140702 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140402 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140326 +packetLen(0x0887, 4) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140305 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140226 +packetLen(0x0887, 12) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140122 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140115 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140108 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20141126 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20141119 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140730 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140723 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140716 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140709 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140702 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140625 +packetLen(0x0888, 12) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140219 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140212 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140108 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20141224 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20141217 +packetLen(0x0889, 12) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20141210 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20141203 +packetLen(0x0889, 26) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140924 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140917 +packetLen(0x0889, 7) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140806 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140730 +packetLen(0x0889, 18) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140319 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140312 +packetLen(0x0889, 19) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140226 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140219 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140205 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140129 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140108 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20140702 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140625 +packetLen(0x088a, -1) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140605 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140528 +packetLen(0x088a, 12) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140521 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140514 +packetLen(0x088a, 5) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140416 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140409 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140402 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140122 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140115 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140108 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20141001 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140924 +packetLen(0x088b, -1) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140806 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140730 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140716 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140709 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140528 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140521 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140514 +packetLen(0x088b, 90) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140430 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140423 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140108 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20140618 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140611 +packetLen(0x088c, 10) // CZ_REASSEMBLY_AUTH09 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140409 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140402 +packetLen(0x088c, 4) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140319 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140312 +packetLen(0x088c, 10) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140219 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140212 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140129 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140122 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140108 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20141126 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20141119 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20141112 +packetLen(0x088d, 90) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140806 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140730 +packetLen(0x088d, 12) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140723 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140716 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140528 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140521 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140319 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140312 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140108 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20141224 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20141217 +packetLen(0x088e, 18) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140702 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140625 +packetLen(0x088e, 19) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140326 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140319 +packetLen(0x088e, 26) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140312 +packetLen(0x088e, 7) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140122 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140115 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140108 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20140917 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140903 +packetLen(0x088f, 19) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140723 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140716 +packetLen(0x088f, 10) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140605 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140528 +packetLen(0x088f, 90) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140108 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20140625 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140618 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140430 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140423 +packetLen(0x0890, 10) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140416 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140409 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140402 +packetLen(0x0890, 26) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140326 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140319 +packetLen(0x0890, 90) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140129 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140122 +packetLen(0x0890, 90) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140108 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20140827 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140820 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140618 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140611 +packetLen(0x0891, 7) // CZ_REASSEMBLY_AUTH14 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140319 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140312 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140108 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20141112 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20141105 +packetLen(0x0892, 6) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140806 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140730 +packetLen(0x0892, 8) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140709 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140702 +packetLen(0x0892, 8) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140625 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140618 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140108 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20140618 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140611 +packetLen(0x0893, 5) // CZ_REASSEMBLY_AUTH16 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140416 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140409 +packetLen(0x0893, 7) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140326 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140319 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140129 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140122 +packetLen(0x0893, 26) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140108 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20141001 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140924 +packetLen(0x0894, 7) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140618 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140611 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140528 +packetLen(0x0894, 8) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140319 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140312 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140305 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140226 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140108 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20141126 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20141119 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140924 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140917 +packetLen(0x0895, 5) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140820 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140813 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140709 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140702 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140521 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140514 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140430 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140423 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140305 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140226 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140108 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20141203 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141126 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141029 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141022 +packetLen(0x0896, 26) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140730 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140723 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140716 +packetLen(0x0896, 90) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140605 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140528 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140430 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140423 +packetLen(0x0896, 7) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140416 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140409 +packetLen(0x0896, 10) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140402 +packetLen(0x0896, 5) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140108 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20140924 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140917 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140820 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140813 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140716 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140709 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140702 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140625 +packetLen(0x0897, 18) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140430 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140423 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140416 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140409 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140226 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140219 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140108 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20141210 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141203 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141112 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141105 +packetLen(0x0898, 8) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141001 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140924 +packetLen(0x0898, 90) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140917 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140730 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140723 +packetLen(0x0898, 8) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140716 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140709 +packetLen(0x0898, 19) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140430 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140423 +packetLen(0x0898, 10) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140402 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140326 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140226 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140219 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140108 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20141029 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20141022 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140827 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140820 +packetLen(0x0899, 10) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140813 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140508 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140430 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140416 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140409 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140129 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140122 +packetLen(0x0899, -1) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140108 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20141231 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20141224 +packetLen(0x089a, 5) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140827 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140820 +packetLen(0x089a, -1) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140723 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140716 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140521 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140514 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140409 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140402 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140108 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20141231 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141224 +packetLen(0x089b, 18) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140917 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140903 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140827 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140820 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140618 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140611 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140514 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140508 +packetLen(0x089b, 19) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140430 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140423 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140319 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140312 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140122 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140115 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140108 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20141210 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20141203 +packetLen(0x089c, 10) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20141008 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20141001 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140924 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140917 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140528 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140514 +packetLen(0x089c, 26) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140108 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20141210 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20141203 +packetLen(0x089d, 12) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20141008 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20141001 +packetLen(0x089d, 26) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140605 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140528 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140430 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140423 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140319 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140312 +packetLen(0x089d, 12) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140219 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140212 +packetLen(0x089d, 10) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140129 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140122 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140108 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20140730 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140723 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140319 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140312 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140219 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140212 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140108 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20141224 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141217 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140723 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140716 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140326 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140319 +packetLen(0x089f, 10) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140226 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140219 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140108 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20141119 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20141112 +packetLen(0x08a0, 5) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20141105 +packetLen(0x08a0, 19) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140806 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140730 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140709 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140702 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140219 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140212 +packetLen(0x08a0, 36) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140108 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20141224 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20141217 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20141119 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20141112 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140702 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140625 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140618 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140611 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140508 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140430 +packetLen(0x08a1, 8) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140219 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140212 +packetLen(0x08a1, 26) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140108 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20141224 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20141217 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140730 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140723 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140709 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140702 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140625 +packetLen(0x08a2, 5) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140618 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140611 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140416 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140409 +packetLen(0x08a2, 4) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140326 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140319 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140129 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140122 +packetLen(0x08a2, 4) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140108 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20141231 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20141224 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140827 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140820 +packetLen(0x08a3, 5) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140813 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140108 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20141231 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20141224 +packetLen(0x08a4, 36) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20141203 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20141126 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140723 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140716 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140605 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140528 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140416 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140409 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140108 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20141210 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141203 +packetLen(0x08a5, 7) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141112 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141105 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141001 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140924 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140521 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140514 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140108 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20140806 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140730 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140625 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140618 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140319 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140312 +packetLen(0x08a6, 4) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140226 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140219 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140108 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20141001 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140924 +packetLen(0x08a7, 10) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140827 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140820 +packetLen(0x08a7, -1) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140813 +packetLen(0x08a7, 8) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140806 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140730 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140625 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140618 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140416 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140409 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140219 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140212 +packetLen(0x08a7, -1) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140122 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140115 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140108 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20141231 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141224 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141217 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141126 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141119 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140924 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140917 +packetLen(0x08a8, 36) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140430 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140423 +packetLen(0x08a8, 5) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140108 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20140806 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140730 +packetLen(0x08a9, 90) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140416 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140409 +packetLen(0x08a9, 36) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140319 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140312 +packetLen(0x08a9, 26) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140108 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20141210 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141203 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141126 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141119 +packetLen(0x08aa, 12) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141029 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141022 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140402 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140326 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140226 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140219 +packetLen(0x08aa, 12) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140129 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140122 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140108 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20141224 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141217 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141119 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141112 +packetLen(0x08ab, 36) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141029 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141022 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140820 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140813 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140605 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140528 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140514 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140508 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140108 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20141231 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20141224 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20141217 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20141210 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140723 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140716 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140625 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140618 +packetLen(0x08ac, 4) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140528 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140521 +packetLen(0x08ac, 19) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140409 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140402 +packetLen(0x08ac, 18) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140326 +packetLen(0x08ac, 90) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140226 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140212 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140108 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20141203 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141126 +packetLen(0x08ad, 36) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141112 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141105 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141029 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141022 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141008 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141001 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140806 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140730 +packetLen(0x08ad, 36) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140723 +packetLen(0x08ad, 18) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140716 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140709 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140430 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140423 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140402 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140326 +packetLen(0x08ad, 19) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140319 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140312 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140219 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140212 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140108 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +#if PACKETVER >= 20140820 +packetLen(0x08e3, 149) // HC_UPDATE_CHARINFO +#elif PACKETVER >= 20140108 +packetLen(0x08e3, 146) // HC_UPDATE_CHARINFO +#endif + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20141217 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20141210 +packetLen(0x0917, 26) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140625 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140618 +packetLen(0x0917, 10) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140129 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140122 +packetLen(0x0917, 6) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140108 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20141126 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141119 +packetLen(0x0918, 10) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141001 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140924 +packetLen(0x0918, 19) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140723 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140716 +packetLen(0x0918, 5) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140521 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140514 +packetLen(0x0918, 18) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140416 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140409 +packetLen(0x0918, 6) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140402 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140326 +packetLen(0x0918, 6) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140108 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20141224 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20141217 +packetLen(0x0919, 5) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20141119 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20141112 +packetLen(0x0919, 12) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140924 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140917 +packetLen(0x0919, -1) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140219 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140212 +packetLen(0x0919, 5) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140108 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20141029 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20141022 +packetLen(0x091a, 26) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140716 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140709 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140702 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140625 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140430 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140423 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140305 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140226 +packetLen(0x091a, 8) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140129 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140122 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140108 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20140219 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20140212 +packetLen(0x091b, 26) // ZC_PRNPC_STATE +#elif PACKETVER >= 20140108 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20141210 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20141203 +packetLen(0x091c, 18) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20141008 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20141001 +packetLen(0x091c, 4) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140416 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140409 +packetLen(0x091c, 90) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140319 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140312 +packetLen(0x091c, 26) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140108 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20141210 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20141203 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20141112 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20141105 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140827 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140820 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140605 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140528 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140521 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140514 +packetLen(0x091d, 19) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140108 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20141112 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20141105 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140806 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140730 +packetLen(0x091e, 26) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140319 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140312 +packetLen(0x091e, 5) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140108 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20141224 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20141217 +packetLen(0x091f, 10) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140723 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140716 +packetLen(0x091f, 18) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140625 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140618 +packetLen(0x091f, -1) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140409 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140402 +packetLen(0x091f, -1) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140326 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140319 +packetLen(0x091f, -1) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140108 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20141203 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20141126 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20141119 +packetLen(0x0920, 5) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140430 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140423 +packetLen(0x0920, 26) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140409 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140402 +packetLen(0x0920, 19) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140108 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20141126 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141119 +packetLen(0x0921, 19) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140611 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140605 +packetLen(0x0921, 36) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140305 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140226 +packetLen(0x0921, 26) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140219 +packetLen(0x0921, 7) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140205 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140129 +packetLen(0x0921, 18) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140108 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20141022 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20141015 +packetLen(0x0922, 4) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140108 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20140326 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140319 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140108 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20141224 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20141217 +packetLen(0x0924, 7) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140618 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140611 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140205 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140129 +packetLen(0x0924, -1) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140108 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20141001 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140924 +packetLen(0x0925, 8) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140716 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140709 +packetLen(0x0925, 90) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140702 +packetLen(0x0925, 5) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140521 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140514 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140129 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140122 +packetLen(0x0925, 5) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140108 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20141119 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141112 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141001 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140924 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140723 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140716 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140409 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140402 +packetLen(0x0926, 36) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140108 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20141217 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20141210 +packetLen(0x0927, 8) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140730 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140723 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140514 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140508 +packetLen(0x0927, 36) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140226 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140219 +packetLen(0x0927, 90) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140108 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20141210 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141203 +packetLen(0x0928, 6) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141001 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140924 +packetLen(0x0928, 8) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140219 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140212 +packetLen(0x0928, 6) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140108 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20141126 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20141119 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20141112 +packetLen(0x0929, 7) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140625 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140618 +packetLen(0x0929, 12) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140605 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140528 +packetLen(0x0929, 7) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140108 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20141210 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20141203 +packetLen(0x092a, 4) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20141008 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20141001 +packetLen(0x092a, 36) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140924 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140917 +packetLen(0x092a, 12) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140806 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140730 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140402 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140326 +packetLen(0x092a, 36) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140319 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140312 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140108 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20141217 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141210 +packetLen(0x092b, 18) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141112 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141105 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141029 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141022 +packetLen(0x092b, 8) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141001 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140924 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140108 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20140723 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140716 +packetLen(0x092c, 26) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140709 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140702 +packetLen(0x092c, 19) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140521 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140514 +packetLen(0x092c, 8) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140205 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140129 +packetLen(0x092c, 36) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140108 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20141001 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140924 +packetLen(0x092d, 12) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140409 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140402 +packetLen(0x092d, 90) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140122 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140115 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140108 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20140416 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140409 +packetLen(0x092e, 26) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140108 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20141126 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20141119 +packetLen(0x092f, 8) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140827 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140820 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140730 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140723 +packetLen(0x092f, 19) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140716 +packetLen(0x092f, 12) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140709 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140521 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140514 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140129 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140122 +packetLen(0x092f, 8) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140108 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20141231 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20141224 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140924 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140917 +packetLen(0x0930, 8) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140605 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140528 +packetLen(0x0930, -1) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140514 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140508 +packetLen(0x0930, 8) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140219 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140212 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140108 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20140917 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140903 +packetLen(0x0931, 5) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140716 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140709 +packetLen(0x0931, 6) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140611 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140605 +packetLen(0x0931, 5) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140305 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140226 +packetLen(0x0931, 4) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140108 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20141231 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20141224 +packetLen(0x0932, 8) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20141217 +packetLen(0x0932, -1) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140514 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140508 +packetLen(0x0932, 6) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140108 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20141224 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20141217 +packetLen(0x0933, 26) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20141126 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20141119 +packetLen(0x0933, 36) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140709 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140702 +packetLen(0x0933, 4) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140409 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140402 +packetLen(0x0933, -1) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140108 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20141001 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140924 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140806 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140730 +packetLen(0x0934, -1) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140723 +packetLen(0x0934, 26) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140716 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140709 +packetLen(0x0934, 6) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140514 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140508 +packetLen(0x0934, 8) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140312 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140305 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140219 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140212 +packetLen(0x0934, 7) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140108 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20140730 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140723 +packetLen(0x0935, 26) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140625 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140618 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140108 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20141224 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141217 +packetLen(0x0936, 6) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141210 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141203 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141022 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141015 +packetLen(0x0936, 36) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140827 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140820 +packetLen(0x0936, 12) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140618 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140611 +packetLen(0x0936, 12) // ZC_REASSEMBLY_AUTH74 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140219 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140212 +packetLen(0x0936, 4) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140115 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140108 +packetLen(0x0936, 36) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20141008 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20141001 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140827 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140820 +packetLen(0x0937, 5) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140108 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20141126 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20141119 +packetLen(0x0938, 6) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140723 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140716 +packetLen(0x0938, 8) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140625 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140618 +packetLen(0x0938, 26) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140212 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140205 +packetLen(0x0938, 36) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140108 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20141224 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141217 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141008 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141001 +packetLen(0x0939, 8) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140730 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140723 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140716 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140709 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140226 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140219 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140108 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20140827 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140820 +packetLen(0x093a, 36) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140605 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140528 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140108 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20141029 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20141022 +packetLen(0x093b, 19) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140723 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140716 +packetLen(0x093b, 6) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140625 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140618 +packetLen(0x093b, 7) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140508 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140430 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140108 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 + +// Packet: 0x093d +#if PACKETVER >= 20140730 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140723 +packetLen(0x093d, 6) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140402 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140326 +packetLen(0x093d, 7) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140219 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140212 +packetLen(0x093d, 19) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140108 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20141112 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20141105 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140827 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140820 +packetLen(0x093e, 6) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140108 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20141008 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20141001 +packetLen(0x093f, 6) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140716 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140709 +packetLen(0x093f, 12) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140605 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140528 +packetLen(0x093f, 26) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140409 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140402 +packetLen(0x093f, 5) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140108 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20141224 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141217 +packetLen(0x0940, 19) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141105 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141029 +packetLen(0x0940, 7) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140806 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140730 +packetLen(0x0940, 5) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140716 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140709 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140702 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140625 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140611 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140605 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140508 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140430 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140129 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140122 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140115 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140108 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20141126 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20141119 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140917 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140903 +packetLen(0x0941, 36) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140618 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140611 +packetLen(0x0941, 36) // CZ_REASSEMBLY_AUTH43 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140305 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140226 +packetLen(0x0941, 18) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140129 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140122 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140108 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20141203 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141126 +packetLen(0x0942, 26) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141119 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141015 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141008 +packetLen(0x0942, 36) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140416 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140409 +packetLen(0x0942, 8) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140402 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140326 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140319 +packetLen(0x0942, 36) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140129 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140122 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140108 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20141119 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20141112 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140917 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140903 +packetLen(0x0943, 4) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140827 +packetLen(0x0943, 36) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140108 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20141224 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20141217 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20141112 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20141105 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140409 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140402 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140326 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140319 +packetLen(0x0944, 10) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140219 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140212 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140108 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20141231 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20141224 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20141217 +packetLen(0x0945, 90) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140917 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140903 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140730 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140723 +packetLen(0x0945, 10) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140625 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140618 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140402 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140326 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140108 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20141231 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20141224 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140806 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140730 +packetLen(0x0946, 5) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140702 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140625 +packetLen(0x0946, 5) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140409 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140402 +packetLen(0x0946, 7) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140326 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140226 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140219 +packetLen(0x0946, 19) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140108 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20141217 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20141210 +packetLen(0x0947, 4) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140730 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140723 +packetLen(0x0947, 7) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140716 +packetLen(0x0947, 4) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140416 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140409 +packetLen(0x0947, 5) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140326 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140319 +packetLen(0x0947, 8) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140108 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20141224 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20141217 +packetLen(0x0948, 6) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20141126 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20141119 +packetLen(0x0948, 5) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140813 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140806 +packetLen(0x0948, 36) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140730 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140723 +packetLen(0x0948, 5) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140108 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20141231 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20141224 +packetLen(0x0949, 12) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20141001 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140924 +packetLen(0x0949, 6) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140917 +packetLen(0x0949, 10) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140226 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140219 +packetLen(0x0949, 18) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140108 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20140827 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140820 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140618 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140611 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +// ignored packet from 2014-06-11hRagexe +// ignored packet from 2014-06-11cRagexe +#elif PACKETVER >= 20140605 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140528 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140319 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140312 +packetLen(0x094a, 18) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140108 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20141119 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141112 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141022 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141015 +packetLen(0x094b, 26) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141008 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141001 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140605 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140528 +packetLen(0x094b, 5) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140508 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140430 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140319 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140312 +packetLen(0x094b, 90) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140108 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20141126 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20141119 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20141112 +packetLen(0x094c, 4) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140611 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140605 +packetLen(0x094c, 26) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140416 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140409 +packetLen(0x094c, 18) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140402 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140326 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140319 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140312 +packetLen(0x094c, 5) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140129 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140122 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140108 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20140716 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140709 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140205 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140129 +packetLen(0x094d, 8) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140108 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20141029 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20141022 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140716 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140709 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140702 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140625 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140521 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140514 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140508 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140219 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140212 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140108 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20141231 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20141224 +packetLen(0x094f, 19) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20141119 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20141112 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140924 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140917 +packetLen(0x094f, 10) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140716 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140709 +packetLen(0x094f, 26) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140618 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140611 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140430 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140423 +packetLen(0x094f, 12) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140108 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20141231 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141224 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141112 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141105 +packetLen(0x0950, 26) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140618 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140611 +packetLen(0x0950, 18) // CZ_REASSEMBLY_AUTH58 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140409 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140402 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140129 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140122 +packetLen(0x0950, 10) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140108 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20140924 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140917 +packetLen(0x0951, 18) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140827 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140820 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140618 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140611 +packetLen(0x0951, 5) // CZ_REASSEMBLY_AUTH59 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140108 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20141210 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141203 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141008 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141001 +packetLen(0x0952, 5) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140924 +packetLen(0x0952, 26) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140827 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140820 +packetLen(0x0952, 7) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140723 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140716 +packetLen(0x0952, 5) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140618 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140611 +packetLen(0x0952, 8) // CZ_REASSEMBLY_AUTH60 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140219 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140212 +packetLen(0x0952, 6) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140129 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140122 +packetLen(0x0952, -1) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140108 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20141231 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20141224 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140508 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140430 +packetLen(0x0953, 4) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140219 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140212 +packetLen(0x0953, 6) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140108 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20141217 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20141210 +packetLen(0x0954, 19) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140625 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140618 +packetLen(0x0954, 26) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140326 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140319 +packetLen(0x0954, 26) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140108 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20141217 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141210 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141119 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141112 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141029 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141022 +packetLen(0x0955, 18) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140924 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140917 +packetLen(0x0955, 26) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140326 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140319 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140129 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140122 +packetLen(0x0955, 36) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140108 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20141231 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20141224 +packetLen(0x0956, 10) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140924 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140917 +packetLen(0x0956, -1) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140827 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140820 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140508 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140430 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140402 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140326 +packetLen(0x0956, 5) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140108 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20141112 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20141105 +packetLen(0x0957, 5) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140924 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140917 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140625 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140618 +packetLen(0x0957, 36) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140611 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140319 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140312 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140129 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140122 +packetLen(0x0957, 12) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140108 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20141217 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20141210 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140827 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140820 +packetLen(0x0958, 4) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140723 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140716 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140618 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140611 +packetLen(0x0958, 19) // CZ_REASSEMBLY_AUTH66 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140521 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140514 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140409 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140402 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140205 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140129 +packetLen(0x0958, 26) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140108 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20140723 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140716 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140702 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140625 +packetLen(0x0959, 7) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140402 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140326 +packetLen(0x0959, 8) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140108 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20141203 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20141126 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140924 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140917 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140416 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140409 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140402 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140326 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140108 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20141231 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20141224 +packetLen(0x095b, 10) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20141203 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20141126 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140122 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140115 +packetLen(0x095b, 4) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140108 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20141210 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20141203 +packetLen(0x095c, 6) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140924 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140917 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140423 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140416 +packetLen(0x095c, 36) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140409 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140402 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140326 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140108 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20141119 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20141112 +packetLen(0x095d, 6) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140625 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140618 +packetLen(0x095d, 6) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140319 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140312 +packetLen(0x095d, -1) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140129 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140122 +packetLen(0x095d, -1) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140115 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140108 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20140924 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140917 +packetLen(0x095e, 5) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140625 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140618 +packetLen(0x095e, 19) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140430 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140423 +packetLen(0x095e, 4) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140416 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140409 +packetLen(0x095e, 19) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140319 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140305 +packetLen(0x095e, 36) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140108 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20141231 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141224 +packetLen(0x095f, 7) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141203 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141126 +packetLen(0x095f, 8) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141112 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141105 +packetLen(0x095f, -1) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140730 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140723 +packetLen(0x095f, 4) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140716 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140709 +packetLen(0x095f, 18) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140605 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140528 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140521 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140514 +packetLen(0x095f, 5) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140129 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140122 +packetLen(0x095f, -1) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140108 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20141224 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141217 +packetLen(0x0960, 4) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141119 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141112 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140730 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140723 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140702 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140625 +packetLen(0x0960, 36) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140108 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20141217 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20141210 +packetLen(0x0961, 26) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140827 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140820 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140716 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140709 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140326 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140319 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140226 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140219 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140205 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140129 +packetLen(0x0961, 26) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140108 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20141210 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20141203 +packetLen(0x0962, 10) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20141119 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20141112 +packetLen(0x0962, 10) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140625 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140618 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140521 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140514 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140305 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140226 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140108 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20141217 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141210 +packetLen(0x0963, 36) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141126 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141119 +packetLen(0x0963, 90) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140618 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140611 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140605 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140528 +packetLen(0x0963, 10) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140108 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20140605 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140528 +packetLen(0x0964, 19) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140326 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140319 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140305 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140226 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140108 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20141203 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20141126 +packetLen(0x0965, 26) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140618 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140611 +packetLen(0x0965, 5) // CZ_REASSEMBLY_AUTH79 +// ignored packet from 2014-06-11cRagexe +// ignored packet from 2014-06-11eRagexe +#elif PACKETVER >= 20140521 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140514 +packetLen(0x0965, -1) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140409 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140402 +packetLen(0x0965, 12) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140122 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140115 +packetLen(0x0965, -1) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140108 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20140924 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140917 +packetLen(0x0966, 4) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140605 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140528 +packetLen(0x0966, -1) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140319 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140312 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140122 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140115 +packetLen(0x0966, 19) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140108 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20141217 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20141210 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20141022 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20141015 +packetLen(0x0967, 5) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140820 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140813 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140625 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140618 +packetLen(0x0967, 5) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140108 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20141112 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20141105 +packetLen(0x0968, 18) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140702 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140625 +packetLen(0x0968, 6) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140528 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140521 +packetLen(0x0968, 5) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140108 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20140723 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140716 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140702 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140625 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140402 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140326 +packetLen(0x0969, 10) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140305 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140226 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140108 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20141231 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141217 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141210 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141203 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141126 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141105 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141008 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140917 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140827 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140820 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140806 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140709 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140625 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140611 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140605 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140528 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140514 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140508 +packetLen(0x096a, 18) // CZ_REASSEMBLY_AUTH84 +// ignored packet from 2014-05-08aRagexe +#elif PACKETVER >= 20140430 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140423 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140416 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140326 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140319 +packetLen(0x096a, -1) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140312 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140226 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140212 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140129 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140122 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140115 +packetLen(0x096a, 18) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140108 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ae +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING + +// Packet: 0x09b3 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c4 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 + +// Packet: 0x09e7 +#if PACKETVER >= 20140716 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX +#elif PACKETVER >= 20140108 +packetLen(0x09e7, 2) // ZC_NOTIFY_UNREAD_RODEX +#endif + +// Packet: 0x09e8 +#if PACKETVER >= 20140212 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX +#elif PACKETVER >= 20140108 +packetLen(0x09e8, 10) // CZ_OPEN_RODEXBOX +#endif + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +#if PACKETVER >= 20140115 +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX +#elif PACKETVER >= 20140108 +packetLen(0x09eb, 23) // ZC_ACK_READ_RODEX +#endif + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +#if PACKETVER >= 20140326 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX +#elif PACKETVER >= 20140115 +packetLen(0x09f1, 10) // CZ_REQ_ZENY_FROM_RODEX +#endif + +// Packet: 0x09f2 +#if PACKETVER >= 20140409 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX +#elif PACKETVER >= 20140326 +packetLen(0x09f2, 4) // ZC_ACK_ZENY_FROM_RODEX +#elif PACKETVER >= 20140115 +packetLen(0x09f2, 3) // ZC_ACK_ZENY_FROM_RODEX +#endif + +// Packet: 0x09f3 +#if PACKETVER >= 20140326 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX +#elif PACKETVER >= 20140305 +packetLen(0x09f3, 10) // CZ_REQ_ITEM_FROM_RODEX +#elif PACKETVER >= 20140115 +packetLen(0x09f3, 15) // CZ_REQ_ITEM_FROM_RODEX +#endif + +// Packet: 0x09f4 +#if PACKETVER >= 20140409 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX +#elif PACKETVER >= 20140326 +packetLen(0x09f4, 4) // ZC_ACK_ITEM_FROM_RODEX +#elif PACKETVER >= 20140305 +packetLen(0x09f4, 3) // ZC_ACK_ITEM_FROM_RODEX +#elif PACKETVER >= 20140115 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX +#endif + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 + +// Packet: 0x09f8 +#if PACKETVER >= 20140115 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 +#endif + +// Packet: 0x09f9 +#if PACKETVER >= 20140122 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX +#elif PACKETVER >= 20140115 +packetLen(0x09f9, 131) // ZC_ADD_QUEST_EX +#endif + +// Packet: 0x09fa +#if PACKETVER >= 20140115 +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX +#endif + +// Packet: 0x09fb +#if PACKETVER >= 20140122 +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION +#endif + +// Packet: 0x09fc +#if PACKETVER >= 20140122 +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT +#endif + +// Packet: 0x09fd +#if PACKETVER >= 20140122 +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 +#endif + +// Packet: 0x09fe +#if PACKETVER >= 20140122 +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 +#endif + +// Packet: 0x09ff +#if PACKETVER >= 20140122 +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 +#endif + +// Packet: 0x0a00 +#if PACKETVER >= 20140129 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 +#endif + +// Packet: 0x0a01 +#if PACKETVER >= 20140129 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE +#endif + +// Packet: 0x0a02 +#if PACKETVER >= 20140212 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN +#endif + +// Packet: 0x0a03 +#if PACKETVER >= 20140326 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX +#elif PACKETVER >= 20140226 +packetLen(0x0a03, 14) // CZ_REQ_CANCEL_WRITE_RODEX +#endif + +// Packet: 0x0a04 +#if PACKETVER >= 20140416 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX +#elif PACKETVER >= 20140326 +// removed +#elif PACKETVER >= 20140226 +packetLen(0x0a04, 11) // CZ_REQ_ADD_ITEM_RODEX +#endif + +// Packet: 0x0a05 +#if PACKETVER >= 20141119 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX +#elif PACKETVER >= 20141008 +packetLen(0x0a05, 49) // ZC_ACK_ADD_ITEM_RODEX +#elif PACKETVER >= 20140416 +packetLen(0x0a05, 48) // ZC_ACK_ADD_ITEM_RODEX +#elif PACKETVER >= 20140226 +packetLen(0x0a05, 6) // ZC_ACK_ADD_ITEM_RODEX +#endif + +// Packet: 0x0a06 +#if PACKETVER >= 20140416 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM +#elif PACKETVER >= 20140226 +packetLen(0x0a06, 5) // CZ_REQ_REMOVE_RODEX_ITEM +#endif + +// Packet: 0x0a07 +#if PACKETVER >= 20140521 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM +#elif PACKETVER >= 20140416 +packetLen(0x0a07, 7) // ZC_ACK_REMOVE_RODEX_ITEM +#elif PACKETVER >= 20140326 +packetLen(0x0a07, 6) // ZC_ACK_REMOVE_RODEX_ITEM +#elif PACKETVER >= 20140305 +packetLen(0x0a07, 4) // ZC_ACK_REMOVE_RODEX_ITEM +#endif + +// Packet: 0x0a08 +#if PACKETVER >= 20140416 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX +#elif PACKETVER >= 20140326 +packetLen(0x0a08, 7) // CZ_REQ_OPEN_WRITE_RODEX +#elif PACKETVER >= 20140305 +packetLen(0x0a08, 5) // CZ_REQ_OPEN_WRITE_RODEX +#endif + +// Packet: 0x0a09 +#if PACKETVER >= 20140312 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 +#elif PACKETVER >= 20140305 +packetLen(0x0a09, 50) // ZC_ADD_EXCHANGE_ITEM3 +#endif + +// Packet: 0x0a0a +#if PACKETVER >= 20140312 +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 +#elif PACKETVER >= 20140305 +packetLen(0x0a0a, 52) // ZC_ADD_ITEM_TO_STORE3 +#endif + +// Packet: 0x0a0b +#if PACKETVER >= 20140312 +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 +#elif PACKETVER >= 20140305 +packetLen(0x0a0b, 52) // ZC_ADD_ITEM_TO_CART3 +#endif + +// Packet: 0x0a0c +#if PACKETVER >= 20140312 +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 +#elif PACKETVER >= 20140305 +packetLen(0x0a0c, 61) // ZC_ITEM_PICKUP_ACK_V6 +#endif + +// Packet: 0x0a0d +#if PACKETVER >= 20140312 +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 +#elif PACKETVER >= 20140305 +packetLen(0x0a0d, 4) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0a0e +#if PACKETVER >= 20140312 +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 +#endif + +// Packet: 0x0a0f +#if PACKETVER >= 20140402 +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0a10 +#if PACKETVER >= 20140402 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0a11 +#if PACKETVER >= 20140402 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0a12 +#if PACKETVER >= 20140416 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX +#endif + +// Packet: 0x0a13 +#if PACKETVER >= 20140423 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME +#elif PACKETVER >= 20140416 +packetLen(0x0a13, 2) // CZ_CHECK_RECEIVE_CHARACTER_NAME +#endif + +// Packet: 0x0a14 +#if PACKETVER >= 20140521 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME +#elif PACKETVER >= 20140423 +packetLen(0x0a14, 6) // ZC_CHECK_RECEIVE_CHARACTER_NAME +#endif + +// Packet: 0x0a15 +#if PACKETVER >= 20140508 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT +#elif PACKETVER >= 20140430 +packetLen(0x0a15, 11) // ZC_GOLDPCCAFE_POINT +#endif + +// Packet: 0x0a16 +#if PACKETVER >= 20140430 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST +#endif + +// Packet: 0x0a17 +#if PACKETVER >= 20140430 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT +#endif + +// Packet: 0x0a18 +#if PACKETVER >= 20140611 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 +#elif PACKETVER >= 20140605 +packetLen(0x0a18, 2) // ZC_ACCEPT_ENTER3 +#endif + +// Packet: 0x0a19 +#if PACKETVER >= 20140611 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE +#elif PACKETVER >= 20140605 +packetLen(0x0a19, -1) // CZ_REQ_OPEN_ROULETTE +#endif + +// Packet: 0x0a1a +#if PACKETVER >= 20140611 +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE +#elif PACKETVER >= 20140605 +packetLen(0x0a1a, 10) // ZC_ACK_OPEN_ROULETTE +#endif + +// Packet: 0x0a1b +#if PACKETVER >= 20140605 +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO +#endif + +// Packet: 0x0a1c +#if PACKETVER >= 20140611 +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO +#elif PACKETVER >= 20140605 +packetLen(0x0a1c, 6) // ZC_ACK_ROULEITTE_INFO +#endif + +// Packet: 0x0a1d +#if PACKETVER >= 20140611 +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE +#elif PACKETVER >= 20140605 +packetLen(0x0a1d, 14) // CZ_REQ_CLOSE_ROULETTE +#endif + +// Packet: 0x0a1e +#if PACKETVER >= 20140611 +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE +#endif + +// Packet: 0x0a1f +#if PACKETVER >= 20140611 +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE +#endif + +// Packet: 0x0a20 +#if PACKETVER >= 20140611 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE +#endif + +// Packet: 0x0a21 +#if PACKETVER >= 20140618 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM +#elif PACKETVER >= 20140611 +packetLen(0x0a21, 6) // CZ_RECV_ROULETTE_ITEM +#endif + +// Packet: 0x0a22 +#if PACKETVER >= 20140618 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM +#elif PACKETVER >= 20140611 +packetLen(0x0a22, 3) // ZC_RECV_ROULETTE_ITEM +#endif + +// Packet: 0x0a23 +#if PACKETVER >= 20140611 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST +#endif + +// Packet: 0x0a24 +#if PACKETVER >= 20141001 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE +#elif PACKETVER >= 20140723 +packetLen(0x0a24, 56) // ZC_ACH_UPDATE +#elif PACKETVER >= 20140625 +packetLen(0x0a24, 36) // ZC_ACH_UPDATE +#elif PACKETVER >= 20140611 +packetLen(0x0a24, 35) // ZC_ACH_UPDATE +#endif + +// Packet: 0x0a25 +#if PACKETVER >= 20140611 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD +#endif + +// Packet: 0x0a26 +#if PACKETVER >= 20140611 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK +#endif + +// Packet: 0x0a27 +#if PACKETVER >= 20140625 +packetLen(0x0a27, 8) // ZC_RECOVERY2 +#endif + +// Packet: 0x0a28 +#if PACKETVER >= 20140625 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 +#endif + +// Packet: 0x0a29 +#if PACKETVER >= 20140702 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT +#endif + +// Packet: 0x0a2a +#if PACKETVER >= 20140702 +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT +#endif + +// Packet: 0x0a2b +#if PACKETVER >= 20140723 +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 +#endif + +// Packet: 0x0a2c +#if PACKETVER >= 20140723 +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT +#endif + +// Packet: 0x0a2d +#if PACKETVER >= 20140820 +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 +#endif + +// Packet: 0x0a2e +#if PACKETVER >= 20140827 +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE +#endif + +// Packet: 0x0a2f +#if PACKETVER >= 20140827 +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE +#endif + +// Packet: 0x0a30 +#if PACKETVER >= 20140917 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 +#endif + +// Packet: 0x0a31 +#if PACKETVER >= 20140917 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST +#endif + +// Packet: 0x0a32 +#if PACKETVER >= 20140924 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY +#endif + +// Packet: 0x0a33 +#if PACKETVER >= 20140924 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN +#endif + +// Packet: 0x0a34 +#if PACKETVER >= 20140924 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH +#endif + +// Packet: 0x0a35 +#if PACKETVER >= 20141119 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY +#endif + +// Packet: 0x0a36 +#if PACKETVER >= 20141126 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY +#endif + +// Packet: 0x0a37 +#if PACKETVER >= 20141126 +packetLen(0x0a37, 57) // ZC_ITEM_PICKUP_ACK_V7 +#endif + + +#endif /* COMMON_PACKETS2014_LEN_MAIN_H */ diff --git a/src/common/packets/packets2014_len_re.h b/src/common/packets/packets2014_len_re.h new file mode 100644 index 000000000..016aae42d --- /dev/null +++ b/src/common/packets/packets2014_len_re.h @@ -0,0 +1,9014 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2014_LEN_RE_H +#define COMMON_PACKETS2014_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20140625 +packetLen(0x006d, 149) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20140108 +packetLen(0x006d, 146) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +#if PACKETVER >= 20140226 +packetLen(0x01c4, 53) // ZC_ADD_ITEM_TO_STORE2 +// ignored packet from 2014-02-26bRagexeRE +#elif PACKETVER >= 20140219 +packetLen(0x01c4, 53) // ZC_ADD_ITEM_TO_STORE2 +// ignored packet from 2014-02-19bRagexeRE +#elif PACKETVER >= 20140129 +packetLen(0x01c4, 43) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20140108 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#endif + +// Packet: 0x01c5 +#if PACKETVER >= 20140226 +packetLen(0x01c5, 53) // ZC_ADD_ITEM_TO_CART2 +// ignored packet from 2014-02-26bRagexeRE +#elif PACKETVER >= 20140219 +packetLen(0x01c5, 53) // ZC_ADD_ITEM_TO_CART2 +// ignored packet from 2014-02-19bRagexeRE +#elif PACKETVER >= 20140129 +packetLen(0x01c5, 43) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20140108 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +#endif + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20141231 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141210 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141203 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141126 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141119 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141105 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141029 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141015 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20141008 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140903 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140827 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140813 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140806 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140702 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140625 +packetLen(0x0202, 8) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140605 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140528 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140508 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140423 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140416 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140319 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140312 +packetLen(0x0202, 10) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140305 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140226 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140219 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140212 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140205 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140115 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20140108 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20141231 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20141112 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20141105 +packetLen(0x022d, 4) // CZ_COMMAND_MER +#elif PACKETVER >= 20141029 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20141022 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20141015 +packetLen(0x022d, 8) // CZ_COMMAND_MER +#elif PACKETVER >= 20141008 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140924 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140917 +packetLen(0x022d, 26) // CZ_COMMAND_MER +#elif PACKETVER >= 20140903 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140827 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140813 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140806 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140730 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20140709 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140702 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20140514 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140508 +packetLen(0x022d, 6) // CZ_COMMAND_MER +// ignored packet from 2014-05-08aRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140423 +packetLen(0x022d, 18) // CZ_COMMAND_MER +#elif PACKETVER >= 20140416 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140212 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140205 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20140115 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20140108 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20141231 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141105 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141029 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141022 +packetLen(0x023b, 10) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141015 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20141008 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140903 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140827 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140813 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140806 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140709 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140702 +packetLen(0x023b, -1) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140625 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140508 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140423 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140416 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140409 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140402 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140319 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140312 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140212 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140205 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140115 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20140108 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20141231 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20141210 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20141203 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20141105 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20141008 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140917 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140827 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140813 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140806 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140611 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140605 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140528 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140521 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140508 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140423 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140416 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140312 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140305 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140212 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140205 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140129 +packetLen(0x0281, 10) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140115 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20140108 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20140730 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140723 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140514 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140508 +packetLen(0x02c4, 90) // CZ_PARTY_JOIN_REQ +// ignored packet from 2014-05-08aRagexeRE +#elif PACKETVER >= 20140326 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140319 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20140108 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20141231 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141217 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141210 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141203 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141126 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141112 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141105 +packetLen(0x035f, 10) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20141001 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140917 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140827 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140820 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140806 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140709 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140702 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140611 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140605 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140528 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140521 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140514 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140508 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +// ignored packet from 2014-05-08aRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x035f, 36) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140423 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140416 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140312 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140226 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140212 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140129 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140122 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20140108 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20141231 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141223 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141217 +packetLen(0x0360, 8) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141210 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141203 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141126 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141112 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141105 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20141001 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140917 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140827 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140820 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140806 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140709 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140702 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140611 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140605 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140528 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140521 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140514 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140430 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140423 +packetLen(0x0360, 36) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140416 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140409 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140402 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140312 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140226 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140219 +packetLen(0x0360, 4) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140212 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140129 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140122 +packetLen(0x0360, 7) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20140108 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20141231 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141223 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141105 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141029 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141015 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141008 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20141001 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140903 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140827 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140813 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140806 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140514 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140508 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140423 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140416 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140312 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140226 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140212 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140205 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140129 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140122 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140115 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20140108 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20141231 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141210 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141203 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141119 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141112 +packetLen(0x0362, 26) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141105 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141029 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141022 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20141008 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140917 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140827 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140813 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140806 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140723 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140716 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140611 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140605 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140528 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140521 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140508 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140423 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140416 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140402 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140326 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140312 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140305 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140226 +packetLen(0x0362, 26) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140212 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140205 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140115 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20140108 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20141231 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20141105 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20141029 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20141022 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20141008 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140917 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140827 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140813 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140806 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140611 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140605 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140528 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140521 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140508 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x0363, 10) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140423 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140416 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140312 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140305 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140212 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140205 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140115 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20140108 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20141231 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141105 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141029 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141022 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141015 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20141008 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140917 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140827 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140813 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140806 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140730 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140723 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140716 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140702 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140611 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140605 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140528 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140521 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140508 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140423 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140416 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140409 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140402 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140312 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140305 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140226 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140219 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140212 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140205 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140115 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20140108 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20141231 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141105 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141029 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141022 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141008 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20141001 +packetLen(0x0365, 12) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140924 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140917 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140827 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140820 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140813 +packetLen(0x0365, 36) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140806 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140611 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140605 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140528 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140521 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140508 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140423 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140416 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140402 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140326 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140312 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140305 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140212 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140205 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140115 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20140108 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20141231 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141217 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141210 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141203 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141126 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141105 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20141001 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140924 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140917 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140827 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140820 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140806 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140730 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140709 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140702 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140611 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140605 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140528 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140521 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140514 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140508 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +// ignored packet from 2014-05-08aRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140423 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140416 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140319 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140312 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140226 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140212 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140129 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140122 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20140108 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20141210 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20141203 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20141126 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20141001 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140924 +packetLen(0x0367, 26) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140917 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140806 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140730 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140508 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140205 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140129 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140122 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140115 +packetLen(0x0367, 8) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20140108 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20141231 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20141217 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20141210 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20141203 +packetLen(0x0368, 8) // CZ_REQNAME2 +#elif PACKETVER >= 20141126 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20141105 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20141001 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140917 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140827 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140820 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140806 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140730 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140723 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140709 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140702 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140611 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140605 +packetLen(0x0368, 7) // CZ_REQNAME2 +#elif PACKETVER >= 20140528 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140521 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140514 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140508 +packetLen(0x0368, 6) // CZ_REQNAME2 +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140423 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140416 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140312 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140226 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140212 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140129 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20140122 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20140108 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20141231 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141217 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141210 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141203 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141126 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141105 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141029 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20141001 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140924 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140917 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140827 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140820 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140806 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140709 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140702 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140611 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140605 +packetLen(0x0369, 19) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140528 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140521 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140514 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140508 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +// ignored packet from 2014-05-08aRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140423 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140416 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140312 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140226 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140219 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140212 +packetLen(0x0369, 18) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140129 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140122 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20140108 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20141231 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20141217 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20141210 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20141105 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20141029 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20141015 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20141008 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140903 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140827 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140813 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140806 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140730 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140723 +packetLen(0x0436, 12) // CZ_ENTER2 +#elif PACKETVER >= 20140611 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140605 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140508 +packetLen(0x0436, 19) // CZ_ENTER2 +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140423 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20140416 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140312 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140305 +packetLen(0x0436, 10) // CZ_ENTER2 +#elif PACKETVER >= 20140212 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140205 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20140115 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20140108 +packetLen(0x0436, 4) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20141231 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141217 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141210 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141203 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141126 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141105 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141029 +packetLen(0x0437, 36) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20141001 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140917 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140827 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140820 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140806 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140730 +packetLen(0x0437, 19) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140716 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140709 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140702 +packetLen(0x0437, 26) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140611 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140605 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140528 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140521 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140514 +packetLen(0x0437, 12) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140508 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140423 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140416 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140312 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140226 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140212 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140129 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140122 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20140108 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20141231 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141223 +packetLen(0x0438, 26) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141217 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141210 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141203 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141126 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141119 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141112 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141105 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141029 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141022 +packetLen(0x0438, 36) // CZ_USE_SKILL2 +#elif PACKETVER >= 20141001 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140917 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140827 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140820 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140806 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140709 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140702 +packetLen(0x0438, 8) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140618 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140611 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140605 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140528 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140521 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140514 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140430 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140423 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140416 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140312 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140305 +packetLen(0x0438, 19) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140226 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140219 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140212 +packetLen(0x0438, 90) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140129 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140122 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20140108 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20141231 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141217 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141210 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141105 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141029 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141022 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141008 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20141001 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140924 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140917 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140820 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140813 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140806 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140723 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140716 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140709 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140702 +packetLen(0x07e4, 10) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140618 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140611 +packetLen(0x07e4, 8) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140605 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140528 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140521 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140514 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140508 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +// ignored packet from 2014-05-08aRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140416 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140326 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140319 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140312 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140305 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140212 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140205 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140115 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20140108 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20141231 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20141105 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20141029 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20141022 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20141008 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140917 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140827 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140813 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140806 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140730 +packetLen(0x07ec, 4) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140611 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140605 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140528 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140521 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140508 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140423 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140416 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140409 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140326 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140312 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140305 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140212 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140205 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140129 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140122 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140115 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20140108 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20141231 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141210 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141203 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141126 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141105 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141029 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141022 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141008 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20141001 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140924 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140917 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140827 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140820 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140813 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140806 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140730 +packetLen(0x0802, 8) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140611 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140605 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140528 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140521 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140514 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140508 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140423 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140416 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140312 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140305 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140226 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140219 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140212 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140205 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140129 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140122 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140115 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20140108 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +#if PACKETVER >= 20140226 +packetLen(0x080f, 51) // ZC_ADD_EXCHANGE_ITEM2 +// ignored packet from 2014-02-26bRagexeRE +#elif PACKETVER >= 20140219 +packetLen(0x080f, 51) // ZC_ADD_EXCHANGE_ITEM2 +// ignored packet from 2014-02-19bRagexeRE +#elif PACKETVER >= 20140129 +packetLen(0x080f, 41) // ZC_ADD_EXCHANGE_ITEM2 +#elif PACKETVER >= 20140108 +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 +#endif + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20141231 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20141203 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20141126 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20141105 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20141001 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140917 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140827 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140820 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140806 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140723 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140716 +packetLen(0x0811, 7) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140709 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140702 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140611 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140605 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140528 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140521 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140514 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140430 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140423 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140416 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140326 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140319 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140312 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140305 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140226 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140212 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140129 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140115 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20140108 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20141231 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141217 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141210 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141203 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141126 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141105 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20141001 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140924 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140917 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140827 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140820 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140806 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140730 +packetLen(0x0815, 26) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140709 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140702 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140625 +packetLen(0x0815, 4) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140611 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140605 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140528 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140521 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140514 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140508 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140423 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140416 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140326 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140319 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140312 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140305 +packetLen(0x0815, 5) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140226 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140212 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140129 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140122 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20140108 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20140806 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140730 +packetLen(0x0817, 7) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140702 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140625 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140611 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140605 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140521 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140514 +packetLen(0x0817, 4) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20140508 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140108 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20141231 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141217 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141210 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141203 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141126 +packetLen(0x0819, 18) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141105 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20141001 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140917 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140827 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140820 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140806 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140730 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140723 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140709 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140702 +packetLen(0x0819, 5) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140611 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140605 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140528 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140521 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140514 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140430 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140423 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140416 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140409 +packetLen(0x0819, 8) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140312 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140219 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140212 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140129 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140122 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20140108 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20141231 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141223 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141119 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141112 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141029 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20141022 +packetLen(0x0835, 12) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140827 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140820 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140709 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140702 +packetLen(0x0835, 12) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140625 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20140508 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +// ignored packet from 2014-05-08aRagexeRE +#elif PACKETVER >= 20140108 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20141231 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141217 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141210 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141203 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141126 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141105 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141029 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141022 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141008 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20141001 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140924 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140917 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140827 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140820 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140806 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140730 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140723 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140618 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140611 +packetLen(0x0838, 90) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140605 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140528 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140521 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140514 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140508 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +// ignored packet from 2014-05-08aRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140423 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140416 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140312 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140305 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140226 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140219 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140212 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140129 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140122 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20140108 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20141231 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141217 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141210 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141203 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141126 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141119 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141112 +packetLen(0x083c, 8) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141105 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20141001 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140917 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140827 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140820 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140806 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140709 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140702 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140611 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140605 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140528 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140521 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140514 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140508 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +// ignored packet from 2014-05-08bRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140423 +packetLen(0x083c, 5) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140416 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140402 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140326 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140312 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140226 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140212 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140205 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140129 +packetLen(0x083c, 4) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140122 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20140108 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20141231 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141223 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141126 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141119 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140709 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140702 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140625 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140326 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140319 +packetLen(0x085a, 5) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140108 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20140430 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140423 +packetLen(0x085b, 5) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140416 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140409 +packetLen(0x085b, 6) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140402 +packetLen(0x085b, 8) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140226 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140219 +packetLen(0x085b, 6) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140108 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20141112 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20141105 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140723 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140716 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140226 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140219 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140108 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20140625 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140618 +packetLen(0x085d, 8) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140226 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140219 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140108 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20140806 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140730 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140319 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140312 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140108 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20141119 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20141112 +packetLen(0x085f, -1) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140730 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140723 +packetLen(0x085f, 5) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140716 +packetLen(0x085f, 19) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140605 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140528 +packetLen(0x085f, 18) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140226 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140219 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140108 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20141223 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20141217 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140716 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140709 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140625 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140618 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140508 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140430 +packetLen(0x0860, 26) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140226 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140219 +packetLen(0x0860, 5) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140108 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20141210 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20141203 +packetLen(0x0861, 8) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20141126 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20141119 +packetLen(0x0861, 26) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140827 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140820 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140702 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140625 +packetLen(0x0861, 10) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140618 +packetLen(0x0861, 90) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140514 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140508 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140108 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20141001 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140924 +packetLen(0x0862, 4) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140605 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140528 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140430 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140423 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140108 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20141119 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20141112 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20141105 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140430 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140423 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140129 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140122 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140108 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20141112 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20141105 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20141001 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140924 +packetLen(0x0864, -1) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140917 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140827 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140820 +packetLen(0x0864, 19) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140618 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140611 +packetLen(0x0864, -1) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140326 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140319 +packetLen(0x0864, 7) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140108 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20141231 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141223 +packetLen(0x0865, 90) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141126 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141119 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141112 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141105 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20141001 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140924 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140521 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140514 +packetLen(0x0865, 7) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140402 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140319 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140122 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140115 +packetLen(0x0865, 36) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140108 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20141126 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20141119 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140716 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140709 +packetLen(0x0866, 4) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140430 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140423 +packetLen(0x0866, 19) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140326 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140319 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140108 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20141231 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20141223 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20141001 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140924 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140618 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140611 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140521 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140514 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140402 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140326 +packetLen(0x0867, 12) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140305 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140226 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140108 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20140820 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140813 +packetLen(0x0868, 5) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140723 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140716 +packetLen(0x0868, 26) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140521 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140514 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140416 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140409 +packetLen(0x0868, 12) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140402 +packetLen(0x0868, 10) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140226 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140219 +packetLen(0x0868, 36) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140108 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20141119 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20141112 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140827 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140820 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140730 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140723 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140716 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140709 +packetLen(0x0869, 5) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140528 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140521 +packetLen(0x0869, 36) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140402 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140326 +packetLen(0x0869, 18) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140108 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20140416 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140409 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140108 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20140702 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140625 +packetLen(0x086b, 26) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140430 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140423 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140402 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140326 +packetLen(0x086b, 8) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140108 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20141231 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141223 +packetLen(0x086c, 6) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141217 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141210 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141203 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141119 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141112 +packetLen(0x086c, 18) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140827 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140820 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140709 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140702 +packetLen(0x086c, 18) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140625 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140618 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140611 +packetLen(0x086c, 4) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140108 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20141231 +packetLen(0x086d, 36) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20141210 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20141203 +packetLen(0x086d, 8) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20141001 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140924 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140917 +packetLen(0x086d, 90) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140730 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140723 +packetLen(0x086d, 90) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140416 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140409 +packetLen(0x086d, -1) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140108 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20141210 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141203 +packetLen(0x086e, 6) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141126 +packetLen(0x086e, 19) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141022 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141015 +packetLen(0x086e, 19) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141001 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140924 +packetLen(0x086e, 5) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140827 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140820 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140326 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140319 +packetLen(0x086e, 4) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140219 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140212 +packetLen(0x086e, 10) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140108 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20140430 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140423 +packetLen(0x086f, 90) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140319 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140312 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140226 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140219 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140108 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20141231 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20141223 +packetLen(0x0870, 5) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140508 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140430 +packetLen(0x0870, 26) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140129 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140122 +packetLen(0x0870, 18) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140108 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20141203 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141126 +packetLen(0x0871, 8) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141119 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141112 +packetLen(0x0871, -1) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141105 +packetLen(0x0871, 36) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140723 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140716 +packetLen(0x0871, 8) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140508 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140430 +packetLen(0x0871, 5) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140129 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140122 +packetLen(0x0871, 19) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140108 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20141126 +packetLen(0x0872, 2) +#elif PACKETVER >= 20141119 +packetLen(0x0872, 7) +#elif PACKETVER >= 20140827 +packetLen(0x0872, 2) +#elif PACKETVER >= 20140820 +packetLen(0x0872, 90) +#elif PACKETVER >= 20140605 +packetLen(0x0872, 2) +#elif PACKETVER >= 20140528 +packetLen(0x0872, 5) +#elif PACKETVER >= 20140326 +packetLen(0x0872, 2) +#elif PACKETVER >= 20140319 +packetLen(0x0872, 12) +#elif PACKETVER >= 20140129 +packetLen(0x0872, 2) +#elif PACKETVER >= 20140122 +packetLen(0x0872, 26) +#elif PACKETVER >= 20140108 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20141126 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20141119 +packetLen(0x0873, 10) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140430 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140423 +packetLen(0x0873, -1) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140108 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20141112 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20141105 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140618 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140611 +packetLen(0x0874, 26) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140219 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140212 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140108 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20141223 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141217 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141126 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141119 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141112 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141105 +packetLen(0x0875, 7) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140716 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140709 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140702 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140625 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140605 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140528 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140508 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140430 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140416 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140409 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140108 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20140827 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140820 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140521 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140514 +packetLen(0x0876, 10) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140108 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20141112 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20141105 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140716 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140709 +packetLen(0x0877, 10) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140605 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140528 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140521 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140514 +packetLen(0x0877, 8) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140305 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140226 +packetLen(0x0877, 19) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140219 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140212 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140108 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20141223 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20141217 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20141029 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20141022 +packetLen(0x0878, 8) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140820 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140813 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140625 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140618 +packetLen(0x0878, -1) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140611 +packetLen(0x0878, 6) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140312 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140305 +packetLen(0x0878, 4) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140219 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140212 +packetLen(0x0878, 12) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140108 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20141223 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20141217 +packetLen(0x0879, 5) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20141112 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20141105 +packetLen(0x0879, 12) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140716 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140709 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140605 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140528 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140108 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20141231 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20141223 +packetLen(0x087a, 6) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140108 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20141231 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141223 +packetLen(0x087b, 4) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141217 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141210 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141203 +packetLen(0x087b, 5) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140702 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140625 +packetLen(0x087b, 10) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140108 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20141126 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20141119 +packetLen(0x087c, 6) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20141008 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20141001 +packetLen(0x087c, 8) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140820 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140813 +packetLen(0x087c, 26) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140402 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140326 +packetLen(0x087c, 5) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140226 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140219 +packetLen(0x087c, 8) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140108 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20141029 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20141022 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140806 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140730 +packetLen(0x087d, 8) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140723 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140625 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140618 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140521 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140514 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140108 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20141210 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141203 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140806 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140730 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140605 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140528 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140416 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140409 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140402 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140326 +packetLen(0x087e, 26) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140219 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140212 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140108 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20140806 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140730 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140508 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140430 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140402 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140326 +packetLen(0x087f, 10) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140108 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20141210 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141203 +packetLen(0x0880, 5) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140108 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20140723 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140716 +packetLen(0x0881, 10) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140108 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20140820 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140813 +packetLen(0x0882, 18) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140409 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140402 +packetLen(0x0882, 6) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140108 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20141223 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141217 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140416 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140409 +packetLen(0x0883, 5) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140402 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140326 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140319 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140108 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20141203 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141126 +packetLen(0x0884, 4) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141008 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20141001 +packetLen(0x0884, 26) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140625 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140618 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140508 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140430 +packetLen(0x0884, 18) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140416 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140409 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140205 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140129 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20140108 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20141217 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141210 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141126 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141119 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141112 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141008 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20141001 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140702 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140625 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140618 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140521 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140514 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140205 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140129 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20140108 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20141119 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20141112 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20141001 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140924 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140702 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140625 +packetLen(0x0886, 90) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140618 +packetLen(0x0886, 18) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140521 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140514 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140508 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20140108 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20141119 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20141112 +packetLen(0x0887, 26) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20141105 +packetLen(0x0887, 90) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140716 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140709 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140702 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140402 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140326 +packetLen(0x0887, 4) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140305 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140226 +packetLen(0x0887, 12) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140122 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140115 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20140108 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20141126 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20141119 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140730 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140723 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140716 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140709 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140702 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140625 +packetLen(0x0888, 12) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140219 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140212 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20140108 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20141223 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20141217 +packetLen(0x0889, 12) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20141210 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20141203 +packetLen(0x0889, 26) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140924 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140917 +packetLen(0x0889, 7) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140806 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140730 +packetLen(0x0889, 18) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140319 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140312 +packetLen(0x0889, 19) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140226 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140219 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140205 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140129 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20140108 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20140702 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140625 +packetLen(0x088a, -1) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140605 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140528 +packetLen(0x088a, 12) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140521 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140514 +packetLen(0x088a, 5) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140416 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140409 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140402 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140122 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140115 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20140108 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20141001 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140924 +packetLen(0x088b, -1) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140806 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140730 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140716 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140709 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140528 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140521 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140514 +packetLen(0x088b, 90) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140430 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140423 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20140108 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20140618 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140611 +packetLen(0x088c, 10) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140409 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140402 +packetLen(0x088c, 4) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140319 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140312 +packetLen(0x088c, 10) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140219 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140212 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140129 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140122 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20140108 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20141126 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20141119 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20141112 +packetLen(0x088d, 90) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140806 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140730 +packetLen(0x088d, 12) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140723 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140716 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140528 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140521 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140319 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140312 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20140108 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20141223 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20141217 +packetLen(0x088e, 18) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140702 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140625 +packetLen(0x088e, 19) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140326 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140319 +packetLen(0x088e, 26) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140312 +packetLen(0x088e, 7) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140122 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140115 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20140108 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20140917 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140903 +packetLen(0x088f, 19) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140723 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140716 +packetLen(0x088f, 10) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140605 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140528 +packetLen(0x088f, 90) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20140108 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20140625 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140618 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140430 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140423 +packetLen(0x0890, 10) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140416 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140409 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140402 +packetLen(0x0890, 26) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140326 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140319 +packetLen(0x0890, 90) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140129 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140122 +packetLen(0x0890, 90) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20140108 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20140827 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140820 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140618 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140611 +packetLen(0x0891, 7) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140319 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140312 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20140108 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20141112 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20141105 +packetLen(0x0892, 6) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140806 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140730 +packetLen(0x0892, 8) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140709 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140702 +packetLen(0x0892, 8) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140625 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140618 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20140108 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20140618 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140611 +packetLen(0x0893, 5) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140416 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140409 +packetLen(0x0893, 7) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140326 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140319 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140129 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140122 +packetLen(0x0893, 26) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20140108 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20141001 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140924 +packetLen(0x0894, 7) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140618 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140611 +packetLen(0x0894, -1) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140605 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140528 +packetLen(0x0894, 8) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140319 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140312 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140305 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140226 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20140108 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20141126 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20141119 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140924 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140917 +packetLen(0x0895, 5) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140820 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140813 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140709 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140702 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140521 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140514 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140430 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140423 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140305 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140226 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20140108 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20141203 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141126 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141029 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20141022 +packetLen(0x0896, 26) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140730 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140723 +packetLen(0x0896, 6) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140716 +packetLen(0x0896, 90) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140605 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140528 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140430 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140423 +packetLen(0x0896, 7) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140416 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140409 +packetLen(0x0896, 10) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140402 +packetLen(0x0896, 5) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20140108 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20140924 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140917 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140820 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140813 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140716 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140709 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140702 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140625 +packetLen(0x0897, 18) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140430 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140423 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140416 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140409 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140226 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140219 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20140108 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20141210 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141203 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141112 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141105 +packetLen(0x0898, 8) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20141001 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140924 +packetLen(0x0898, 90) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140917 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140730 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140723 +packetLen(0x0898, 8) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140716 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140709 +packetLen(0x0898, 19) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140430 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140423 +packetLen(0x0898, 10) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140402 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140326 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140226 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140219 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20140108 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20141029 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20141022 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140827 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140820 +packetLen(0x0899, 10) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140813 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140508 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140430 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140416 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140409 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140129 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140122 +packetLen(0x0899, -1) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20140108 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20141231 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20141223 +packetLen(0x089a, 5) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140827 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140820 +packetLen(0x089a, -1) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140723 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140716 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140521 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140514 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140409 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140402 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20140108 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20141231 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20141223 +packetLen(0x089b, 18) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140917 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140903 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140827 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140820 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140618 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140611 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140514 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140508 +packetLen(0x089b, 19) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140430 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140423 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140319 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140312 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140122 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140115 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20140108 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20141210 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20141203 +packetLen(0x089c, 10) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20141008 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20141001 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140924 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140917 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140528 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140514 +packetLen(0x089c, 26) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20140108 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20141210 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20141203 +packetLen(0x089d, 12) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20141008 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20141001 +packetLen(0x089d, 26) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140605 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140528 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140430 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140423 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140319 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140312 +packetLen(0x089d, 12) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140219 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140212 +packetLen(0x089d, 10) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140129 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140122 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20140108 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20140730 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140723 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140319 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140312 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140219 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140212 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20140108 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20141223 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20141217 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140723 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140716 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140326 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140319 +packetLen(0x089f, 10) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140226 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140219 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20140108 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20141119 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20141112 +packetLen(0x08a0, 5) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20141105 +packetLen(0x08a0, 19) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140806 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140730 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140709 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140702 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140219 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140212 +packetLen(0x08a0, 36) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20140108 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20141223 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20141217 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20141119 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20141112 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140702 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140625 +packetLen(0x08a1, 6) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140618 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140611 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140508 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140430 +packetLen(0x08a1, 8) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140219 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140212 +packetLen(0x08a1, 26) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20140108 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20141223 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20141217 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140730 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140723 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140709 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140702 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140625 +packetLen(0x08a2, 5) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140618 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140611 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140416 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140409 +packetLen(0x08a2, 4) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140326 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140319 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140129 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140122 +packetLen(0x08a2, 4) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20140108 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20141231 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20141223 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140827 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140820 +packetLen(0x08a3, 5) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140813 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20140108 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20141231 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20141223 +packetLen(0x08a4, 36) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20141203 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20141126 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140723 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140716 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140605 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140528 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140416 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140409 +packetLen(0x08a4, 10) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20140108 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20141210 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141203 +packetLen(0x08a5, 7) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141112 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141105 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20141001 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140924 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140521 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140514 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20140108 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20140806 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140730 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140625 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140618 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140319 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140312 +packetLen(0x08a6, 4) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140226 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140219 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20140108 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20141001 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140924 +packetLen(0x08a7, 10) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140827 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140820 +packetLen(0x08a7, -1) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140813 +packetLen(0x08a7, 8) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140806 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140730 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140625 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140618 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140416 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140409 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140219 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140212 +packetLen(0x08a7, -1) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140122 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140115 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20140108 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20141231 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141223 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141217 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141126 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20141119 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140924 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140917 +packetLen(0x08a8, 36) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140430 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140423 +packetLen(0x08a8, 5) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20140108 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20140806 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140730 +packetLen(0x08a9, 90) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140416 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140409 +packetLen(0x08a9, 36) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140319 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140312 +packetLen(0x08a9, 26) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20140108 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20141210 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141203 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141126 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141119 +packetLen(0x08aa, 12) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141029 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20141022 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140402 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140326 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140226 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140219 +packetLen(0x08aa, 12) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140129 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140122 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20140108 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20141223 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141217 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141119 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141112 +packetLen(0x08ab, 36) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141029 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20141022 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140820 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140813 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140605 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140528 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140514 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140508 +packetLen(0x08ab, 4) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20140108 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20141231 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20141223 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20141217 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20141210 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140723 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140716 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140625 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140618 +packetLen(0x08ac, 4) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140528 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140521 +packetLen(0x08ac, 19) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140409 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140402 +packetLen(0x08ac, 18) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140326 +packetLen(0x08ac, 90) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140226 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140212 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20140108 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20141203 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141126 +packetLen(0x08ad, 36) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141112 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141105 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141029 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141022 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141008 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20141001 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140806 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140730 +packetLen(0x08ad, 36) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140723 +packetLen(0x08ad, 18) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140716 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140709 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140430 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140423 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140402 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140326 +packetLen(0x08ad, 19) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140319 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140312 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140219 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140212 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20140108 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +#if PACKETVER >= 20140625 +packetLen(0x08e3, 149) // HC_UPDATE_CHARINFO +#elif PACKETVER >= 20140108 +packetLen(0x08e3, 146) // HC_UPDATE_CHARINFO +#endif + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20141217 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20141210 +packetLen(0x0917, 26) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140625 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140618 +packetLen(0x0917, 10) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140129 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140122 +packetLen(0x0917, 6) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140108 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20141126 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141119 +packetLen(0x0918, 10) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141001 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140924 +packetLen(0x0918, 19) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140723 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140716 +packetLen(0x0918, 5) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140521 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140514 +packetLen(0x0918, 18) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140416 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140409 +packetLen(0x0918, 6) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140402 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140326 +packetLen(0x0918, 6) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140108 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20141223 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20141217 +packetLen(0x0919, 5) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20141119 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20141112 +packetLen(0x0919, 12) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140924 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140917 +packetLen(0x0919, -1) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140219 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140212 +packetLen(0x0919, 5) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140108 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20141029 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20141022 +packetLen(0x091a, 26) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140716 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140709 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140702 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140625 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140430 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140423 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140305 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140226 +packetLen(0x091a, 8) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140129 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140122 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140108 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20140219 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20140212 +packetLen(0x091b, 26) // ZC_PRNPC_STATE +#elif PACKETVER >= 20140108 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20141210 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20141203 +packetLen(0x091c, 18) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20141008 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20141001 +packetLen(0x091c, 4) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140416 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140409 +packetLen(0x091c, 90) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140319 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140312 +packetLen(0x091c, 26) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20140108 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20141210 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20141203 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20141112 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20141105 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140827 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140820 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140605 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140528 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140521 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140514 +packetLen(0x091d, 19) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140108 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20141112 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20141105 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140806 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140730 +packetLen(0x091e, 26) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140319 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140312 +packetLen(0x091e, 5) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140108 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20141223 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20141217 +packetLen(0x091f, 10) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140723 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140716 +packetLen(0x091f, 18) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140625 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140618 +packetLen(0x091f, -1) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140409 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140402 +packetLen(0x091f, -1) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140326 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140319 +packetLen(0x091f, -1) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140108 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20141203 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20141126 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20141119 +packetLen(0x0920, 5) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140430 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140423 +packetLen(0x0920, 26) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140409 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140402 +packetLen(0x0920, 19) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140108 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20141126 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141119 +packetLen(0x0921, 19) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140611 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140605 +packetLen(0x0921, 36) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140305 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140226 +packetLen(0x0921, 26) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140219 +packetLen(0x0921, 7) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140205 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140129 +packetLen(0x0921, 18) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140108 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20141022 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20141015 +packetLen(0x0922, 4) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140108 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20140326 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140319 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140108 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20141223 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20141217 +packetLen(0x0924, 7) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140618 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140611 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140205 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140129 +packetLen(0x0924, -1) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140108 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20141001 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140924 +packetLen(0x0925, 8) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140716 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140709 +packetLen(0x0925, 90) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140702 +packetLen(0x0925, 5) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140521 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140514 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140129 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140122 +packetLen(0x0925, 5) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140108 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20141119 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141112 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141001 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140924 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140723 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140716 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140409 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140402 +packetLen(0x0926, 36) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140108 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20141217 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20141210 +packetLen(0x0927, 8) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140730 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140723 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140514 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140508 +packetLen(0x0927, 36) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140226 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140219 +packetLen(0x0927, 90) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140108 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20141210 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141203 +packetLen(0x0928, 6) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141001 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140924 +packetLen(0x0928, 8) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140219 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140212 +packetLen(0x0928, 6) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140108 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20141126 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20141119 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20141112 +packetLen(0x0929, 7) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140625 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140618 +packetLen(0x0929, 12) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140605 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140528 +packetLen(0x0929, 7) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140108 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20141210 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20141203 +packetLen(0x092a, 4) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20141008 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20141001 +packetLen(0x092a, 36) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140924 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140917 +packetLen(0x092a, 12) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140806 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140730 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140402 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140326 +packetLen(0x092a, 36) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140319 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140312 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140108 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20141217 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141210 +packetLen(0x092b, 18) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141112 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141105 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141029 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141022 +packetLen(0x092b, 8) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141001 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140924 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140108 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20140723 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140716 +packetLen(0x092c, 26) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140709 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140702 +packetLen(0x092c, 19) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140521 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140514 +packetLen(0x092c, 8) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140205 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140129 +packetLen(0x092c, 36) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140108 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20141001 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140924 +packetLen(0x092d, 12) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140409 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140402 +packetLen(0x092d, 90) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140122 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140115 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140108 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20140416 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140409 +packetLen(0x092e, 26) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140108 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20141126 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20141119 +packetLen(0x092f, 8) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140827 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140820 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140730 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140723 +packetLen(0x092f, 19) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140716 +packetLen(0x092f, 12) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140709 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140521 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140514 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140129 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140122 +packetLen(0x092f, 8) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140108 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20141231 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20141223 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140924 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140917 +packetLen(0x0930, 8) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140605 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140528 +packetLen(0x0930, -1) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140514 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140508 +packetLen(0x0930, 8) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140219 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140212 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140108 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20140917 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140903 +packetLen(0x0931, 5) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140716 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140709 +packetLen(0x0931, 6) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140611 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140605 +packetLen(0x0931, 5) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140305 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140226 +packetLen(0x0931, 4) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140108 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20141231 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20141223 +packetLen(0x0932, 8) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20141217 +packetLen(0x0932, -1) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140514 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140508 +packetLen(0x0932, 6) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140108 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20141223 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20141217 +packetLen(0x0933, 26) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20141126 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20141119 +packetLen(0x0933, 36) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140709 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140702 +packetLen(0x0933, 4) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140409 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140402 +packetLen(0x0933, -1) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140108 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20141001 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140924 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140806 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140730 +packetLen(0x0934, -1) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140723 +packetLen(0x0934, 26) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140716 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140709 +packetLen(0x0934, 6) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140514 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140508 +packetLen(0x0934, 8) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140312 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140305 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140219 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140212 +packetLen(0x0934, 7) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140108 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20140730 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140723 +packetLen(0x0935, 26) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140625 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140618 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140108 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20141223 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141217 +packetLen(0x0936, 6) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141210 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141203 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141022 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141015 +packetLen(0x0936, 36) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140827 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140820 +packetLen(0x0936, 12) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140618 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140611 +packetLen(0x0936, 12) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140219 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140212 +packetLen(0x0936, 4) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140115 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140108 +packetLen(0x0936, 36) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20141008 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20141001 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140827 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140820 +packetLen(0x0937, 5) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140108 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20141126 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20141119 +packetLen(0x0938, 6) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140723 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140716 +packetLen(0x0938, 8) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140625 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140618 +packetLen(0x0938, 26) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140212 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140205 +packetLen(0x0938, 36) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140108 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20141223 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141217 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141008 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141001 +packetLen(0x0939, 8) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140730 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140723 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140716 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140709 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140226 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140219 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140108 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20140827 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140820 +packetLen(0x093a, 36) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140605 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140528 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140108 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20141029 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20141022 +packetLen(0x093b, 19) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140723 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140716 +packetLen(0x093b, 6) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140625 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140618 +packetLen(0x093b, 7) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140508 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140430 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140108 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 + +// Packet: 0x093d +#if PACKETVER >= 20140730 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140723 +packetLen(0x093d, 6) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140402 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140326 +packetLen(0x093d, 7) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140219 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140212 +packetLen(0x093d, 19) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140108 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20141112 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20141105 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140827 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140820 +packetLen(0x093e, 6) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140108 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20141008 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20141001 +packetLen(0x093f, 6) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140716 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140709 +packetLen(0x093f, 12) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140605 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140528 +packetLen(0x093f, 26) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140409 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140402 +packetLen(0x093f, 5) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140108 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20141223 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141217 +packetLen(0x0940, 19) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141105 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141029 +packetLen(0x0940, 7) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140806 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140730 +packetLen(0x0940, 5) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140716 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140709 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140702 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140625 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140611 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140605 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140508 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140430 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140129 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140122 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140115 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140108 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20141126 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20141119 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140917 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140903 +packetLen(0x0941, 36) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140618 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140611 +packetLen(0x0941, 36) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140305 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140226 +packetLen(0x0941, 18) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140129 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140122 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20140108 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20141203 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141126 +packetLen(0x0942, 26) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141119 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141015 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20141008 +packetLen(0x0942, 36) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140416 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140409 +packetLen(0x0942, 8) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140402 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140326 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140319 +packetLen(0x0942, 36) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140129 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140122 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20140108 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20141119 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20141112 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140917 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140903 +packetLen(0x0943, 4) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140827 +packetLen(0x0943, 36) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20140108 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20141223 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20141217 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20141112 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20141105 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140409 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140402 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140326 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140319 +packetLen(0x0944, 10) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140219 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140212 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20140108 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20141231 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20141223 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20141217 +packetLen(0x0945, 90) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140917 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140903 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140730 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140723 +packetLen(0x0945, 10) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140625 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140618 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140402 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140326 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20140108 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20141231 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20141223 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140806 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140730 +packetLen(0x0946, 5) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140702 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140625 +packetLen(0x0946, 5) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140409 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140402 +packetLen(0x0946, 7) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140326 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140226 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140219 +packetLen(0x0946, 19) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20140108 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20141217 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20141210 +packetLen(0x0947, 4) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140730 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140723 +packetLen(0x0947, 7) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140716 +packetLen(0x0947, 4) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140416 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140409 +packetLen(0x0947, 5) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140326 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140319 +packetLen(0x0947, 8) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20140108 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20141223 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20141217 +packetLen(0x0948, 6) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20141126 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20141119 +packetLen(0x0948, 5) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140813 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140806 +packetLen(0x0948, 36) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140730 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140723 +packetLen(0x0948, 5) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20140108 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20141231 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20141223 +packetLen(0x0949, 12) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20141001 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140924 +packetLen(0x0949, 6) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140917 +packetLen(0x0949, 10) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140226 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140219 +packetLen(0x0949, 18) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20140108 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20140827 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140820 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140618 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140611 +packetLen(0x094a, -1) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140605 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140528 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140319 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140312 +packetLen(0x094a, 18) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20140108 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20141119 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141112 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141022 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141015 +packetLen(0x094b, 26) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141008 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20141001 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140605 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140528 +packetLen(0x094b, 5) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140508 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140430 +packetLen(0x094b, 19) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140319 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140312 +packetLen(0x094b, 90) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20140108 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20141126 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20141119 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20141112 +packetLen(0x094c, 4) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140611 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140605 +packetLen(0x094c, 26) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140416 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140409 +packetLen(0x094c, 18) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140402 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140326 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140319 +packetLen(0x094c, 6) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140312 +packetLen(0x094c, 5) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140129 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140122 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20140108 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20140716 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140709 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140205 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140129 +packetLen(0x094d, 8) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20140108 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20141029 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20141022 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140716 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140709 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140702 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140625 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140521 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140514 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140508 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140219 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140212 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20140108 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20141231 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20141223 +packetLen(0x094f, 19) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20141119 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20141112 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140924 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140917 +packetLen(0x094f, 10) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140716 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140709 +packetLen(0x094f, 26) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140618 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140611 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140430 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140423 +packetLen(0x094f, 12) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20140108 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20141231 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141223 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141112 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20141105 +packetLen(0x0950, 26) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140618 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140611 +packetLen(0x0950, 18) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140409 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140402 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140129 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140122 +packetLen(0x0950, 10) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20140108 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20140924 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140917 +packetLen(0x0951, 18) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140827 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140820 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140618 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140611 +packetLen(0x0951, 5) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20140108 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20141210 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141203 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141008 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20141001 +packetLen(0x0952, 5) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140924 +packetLen(0x0952, 26) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140827 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140820 +packetLen(0x0952, 7) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140723 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140716 +packetLen(0x0952, 5) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140618 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140611 +packetLen(0x0952, 8) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140219 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140212 +packetLen(0x0952, 6) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140129 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140122 +packetLen(0x0952, -1) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20140108 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20141231 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20141223 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140508 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140430 +packetLen(0x0953, 4) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140219 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140212 +packetLen(0x0953, 6) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20140108 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20141217 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20141210 +packetLen(0x0954, 19) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140625 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140618 +packetLen(0x0954, 26) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140326 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140319 +packetLen(0x0954, 26) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20140108 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20141217 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141210 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141119 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141112 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141029 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20141022 +packetLen(0x0955, 18) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140924 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140917 +packetLen(0x0955, 26) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140326 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140319 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140129 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140122 +packetLen(0x0955, 36) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20140108 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20141231 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20141223 +packetLen(0x0956, 10) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140924 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140917 +packetLen(0x0956, -1) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140827 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140820 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140508 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140430 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140402 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140326 +packetLen(0x0956, 5) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20140108 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20141112 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20141105 +packetLen(0x0957, 5) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140924 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140917 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140625 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140618 +packetLen(0x0957, 36) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140611 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140319 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140312 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140129 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140122 +packetLen(0x0957, 12) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20140108 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20141217 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20141210 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140827 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140820 +packetLen(0x0958, 4) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140723 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140716 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140618 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140611 +packetLen(0x0958, 19) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140521 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140514 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140409 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140402 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140205 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140129 +packetLen(0x0958, 26) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20140108 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20140723 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140716 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140702 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140625 +packetLen(0x0959, 7) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140402 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140326 +packetLen(0x0959, 8) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20140108 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20141203 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20141126 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140924 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140917 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140416 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140409 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140402 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140326 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20140108 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20141231 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20141223 +packetLen(0x095b, 10) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20141203 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20141126 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140122 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140115 +packetLen(0x095b, 4) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20140108 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20141210 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20141203 +packetLen(0x095c, 6) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140924 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140917 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140423 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140416 +packetLen(0x095c, 36) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140409 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140402 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140326 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20140108 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20141119 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20141112 +packetLen(0x095d, 6) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140625 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140618 +packetLen(0x095d, 6) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140319 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140312 +packetLen(0x095d, -1) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140129 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140122 +packetLen(0x095d, -1) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140115 +packetLen(0x095d, 26) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20140108 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20140924 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140917 +packetLen(0x095e, 5) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140625 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140618 +packetLen(0x095e, 19) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140430 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140423 +packetLen(0x095e, 4) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140416 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140409 +packetLen(0x095e, 19) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140319 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140305 +packetLen(0x095e, 36) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20140108 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20141231 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141223 +packetLen(0x095f, 7) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141203 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141126 +packetLen(0x095f, 8) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141112 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20141105 +packetLen(0x095f, -1) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140730 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140723 +packetLen(0x095f, 4) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140716 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140709 +packetLen(0x095f, 18) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140605 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140528 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140521 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140514 +packetLen(0x095f, 5) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140129 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140122 +packetLen(0x095f, -1) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20140108 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20141223 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141217 +packetLen(0x0960, 4) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141119 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20141112 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140730 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140723 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140702 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140625 +packetLen(0x0960, 36) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20140108 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20141217 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20141210 +packetLen(0x0961, 26) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140827 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140820 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140716 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140709 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140326 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140319 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140226 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140219 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140205 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140129 +packetLen(0x0961, 26) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20140108 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20141210 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20141203 +packetLen(0x0962, 10) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20141119 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20141112 +packetLen(0x0962, 10) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140625 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140618 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140521 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140514 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140305 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140226 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20140108 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20141217 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141210 +packetLen(0x0963, 36) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141126 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20141119 +packetLen(0x0963, 90) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140618 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140611 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140605 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140528 +packetLen(0x0963, 10) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20140108 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20140605 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140528 +packetLen(0x0964, 19) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140326 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140319 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140305 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140226 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20140108 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20141203 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20141126 +packetLen(0x0965, 26) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140618 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140611 +packetLen(0x0965, 5) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140521 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140514 +packetLen(0x0965, -1) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140409 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140402 +packetLen(0x0965, 12) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140122 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140115 +packetLen(0x0965, -1) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20140108 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20140924 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140917 +packetLen(0x0966, 4) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140605 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140528 +packetLen(0x0966, -1) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140319 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140312 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140122 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140115 +packetLen(0x0966, 19) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20140108 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20141217 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20141210 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20141022 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20141015 +packetLen(0x0967, 5) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140820 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140813 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140625 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140618 +packetLen(0x0967, 5) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20140108 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20141112 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20141105 +packetLen(0x0968, 18) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140702 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140625 +packetLen(0x0968, 6) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140528 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140521 +packetLen(0x0968, 5) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20140108 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20140723 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140716 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140702 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140625 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140402 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140326 +packetLen(0x0969, 10) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140305 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140226 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20140108 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20141231 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141217 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141210 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141203 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141126 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141105 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20141008 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140917 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140827 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140820 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140806 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140709 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140625 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140611 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140605 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140528 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140514 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140508 +packetLen(0x096a, 18) // CZ_REASSEMBLY_AUTH84 +// ignored packet from 2014-05-08aRagexeRE +#elif PACKETVER >= 20140430 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140423 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140416 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140326 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140319 +packetLen(0x096a, -1) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140312 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140226 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140212 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140129 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140122 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140115 +packetLen(0x096a, 18) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20140108 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +#if PACKETVER >= 20140226 +packetLen(0x0990, 62) // ZC_ITEM_PICKUP_ACK_V5 +// ignored packet from 2014-02-26bRagexeRE +#elif PACKETVER >= 20140219 +packetLen(0x0990, 62) // ZC_ITEM_PICKUP_ACK_V5 +// ignored packet from 2014-02-19bRagexeRE +#elif PACKETVER >= 20140129 +packetLen(0x0990, 52) // ZC_ITEM_PICKUP_ACK_V5 +#elif PACKETVER >= 20140108 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 +#endif + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 10) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ae +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING + +// Packet: 0x09b3 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c4 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 + +// Packet: 0x09e7 +#if PACKETVER >= 20140716 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX +#elif PACKETVER >= 20140108 +packetLen(0x09e7, 2) // ZC_NOTIFY_UNREAD_RODEX +#endif + +// Packet: 0x09e8 +#if PACKETVER >= 20140212 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX +#elif PACKETVER >= 20140108 +packetLen(0x09e8, 10) // CZ_OPEN_RODEXBOX +#endif + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +#if PACKETVER >= 20140115 +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX +#elif PACKETVER >= 20140108 +packetLen(0x09eb, 23) // ZC_ACK_READ_RODEX +#endif + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +#if PACKETVER >= 20140326 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX +#elif PACKETVER >= 20140115 +packetLen(0x09f1, 10) // CZ_REQ_ZENY_FROM_RODEX +#endif + +// Packet: 0x09f2 +#if PACKETVER >= 20140409 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX +#elif PACKETVER >= 20140326 +packetLen(0x09f2, 4) // ZC_ACK_ZENY_FROM_RODEX +#elif PACKETVER >= 20140115 +packetLen(0x09f2, 3) // ZC_ACK_ZENY_FROM_RODEX +#endif + +// Packet: 0x09f3 +#if PACKETVER >= 20140326 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX +#elif PACKETVER >= 20140305 +packetLen(0x09f3, 10) // CZ_REQ_ITEM_FROM_RODEX +#elif PACKETVER >= 20140115 +packetLen(0x09f3, 15) // CZ_REQ_ITEM_FROM_RODEX +#endif + +// Packet: 0x09f4 +#if PACKETVER >= 20140409 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX +#elif PACKETVER >= 20140326 +packetLen(0x09f4, 4) // ZC_ACK_ITEM_FROM_RODEX +#elif PACKETVER >= 20140305 +packetLen(0x09f4, 3) // ZC_ACK_ITEM_FROM_RODEX +#elif PACKETVER >= 20140115 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX +#endif + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 + +// Packet: 0x09f8 +#if PACKETVER >= 20140115 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 +#endif + +// Packet: 0x09f9 +#if PACKETVER >= 20140122 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX +#elif PACKETVER >= 20140115 +packetLen(0x09f9, 131) // ZC_ADD_QUEST_EX +#endif + +// Packet: 0x09fa +#if PACKETVER >= 20140115 +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX +#endif + +// Packet: 0x09fb +#if PACKETVER >= 20140122 +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION +#endif + +// Packet: 0x09fc +#if PACKETVER >= 20140122 +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT +#endif + +// Packet: 0x09fd +#if PACKETVER >= 20140122 +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 +#endif + +// Packet: 0x09fe +#if PACKETVER >= 20140122 +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 +#endif + +// Packet: 0x09ff +#if PACKETVER >= 20140122 +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 +#endif + +// Packet: 0x0a00 +#if PACKETVER >= 20140129 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 +#endif + +// Packet: 0x0a01 +#if PACKETVER >= 20140129 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE +#endif + +// Packet: 0x0a02 +#if PACKETVER >= 20140212 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN +#endif + +// Packet: 0x0a03 +#if PACKETVER >= 20140326 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX +#elif PACKETVER >= 20140226 +packetLen(0x0a03, 14) // CZ_REQ_CANCEL_WRITE_RODEX +#endif + +// Packet: 0x0a04 +#if PACKETVER >= 20140416 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX +#elif PACKETVER >= 20140326 +// removed +#elif PACKETVER >= 20140226 +packetLen(0x0a04, 11) // CZ_REQ_ADD_ITEM_RODEX +#endif + +// Packet: 0x0a05 +#if PACKETVER >= 20141119 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX +#elif PACKETVER >= 20141008 +packetLen(0x0a05, 49) // ZC_ACK_ADD_ITEM_RODEX +#elif PACKETVER >= 20140416 +packetLen(0x0a05, 48) // ZC_ACK_ADD_ITEM_RODEX +#elif PACKETVER >= 20140226 +packetLen(0x0a05, 6) // ZC_ACK_ADD_ITEM_RODEX +#endif + +// Packet: 0x0a06 +#if PACKETVER >= 20140416 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM +#elif PACKETVER >= 20140226 +packetLen(0x0a06, 5) // CZ_REQ_REMOVE_RODEX_ITEM +#endif + +// Packet: 0x0a07 +#if PACKETVER >= 20140521 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM +#elif PACKETVER >= 20140416 +packetLen(0x0a07, 7) // ZC_ACK_REMOVE_RODEX_ITEM +#elif PACKETVER >= 20140326 +packetLen(0x0a07, 6) // ZC_ACK_REMOVE_RODEX_ITEM +#elif PACKETVER >= 20140305 +packetLen(0x0a07, 4) // ZC_ACK_REMOVE_RODEX_ITEM +#endif + +// Packet: 0x0a08 +#if PACKETVER >= 20140416 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX +#elif PACKETVER >= 20140326 +packetLen(0x0a08, 7) // CZ_REQ_OPEN_WRITE_RODEX +#elif PACKETVER >= 20140305 +packetLen(0x0a08, 5) // CZ_REQ_OPEN_WRITE_RODEX +#endif + +// Packet: 0x0a09 +#if PACKETVER >= 20140312 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 +#elif PACKETVER >= 20140305 +packetLen(0x0a09, 50) // ZC_ADD_EXCHANGE_ITEM3 +#endif + +// Packet: 0x0a0a +#if PACKETVER >= 20140312 +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 +#elif PACKETVER >= 20140305 +packetLen(0x0a0a, 52) // ZC_ADD_ITEM_TO_STORE3 +#endif + +// Packet: 0x0a0b +#if PACKETVER >= 20140312 +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 +#elif PACKETVER >= 20140305 +packetLen(0x0a0b, 52) // ZC_ADD_ITEM_TO_CART3 +#endif + +// Packet: 0x0a0c +#if PACKETVER >= 20140312 +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 +#elif PACKETVER >= 20140305 +packetLen(0x0a0c, 61) // ZC_ITEM_PICKUP_ACK_V6 +#endif + +// Packet: 0x0a0d +#if PACKETVER >= 20140312 +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 +#elif PACKETVER >= 20140305 +packetLen(0x0a0d, 4) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0a0e +#if PACKETVER >= 20140312 +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 +#endif + +// Packet: 0x0a0f +#if PACKETVER >= 20140402 +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0a10 +#if PACKETVER >= 20140402 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0a11 +#if PACKETVER >= 20140402 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0a12 +#if PACKETVER >= 20140416 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX +#endif + +// Packet: 0x0a13 +#if PACKETVER >= 20140423 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME +#elif PACKETVER >= 20140416 +packetLen(0x0a13, 2) // CZ_CHECK_RECEIVE_CHARACTER_NAME +#endif + +// Packet: 0x0a14 +#if PACKETVER >= 20140521 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME +#elif PACKETVER >= 20140423 +packetLen(0x0a14, 6) // ZC_CHECK_RECEIVE_CHARACTER_NAME +#endif + +// Packet: 0x0a15 +#if PACKETVER >= 20140508 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT +#elif PACKETVER >= 20140430 +packetLen(0x0a15, 11) // ZC_GOLDPCCAFE_POINT +#endif + +// Packet: 0x0a16 +#if PACKETVER >= 20140430 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST +#endif + +// Packet: 0x0a17 +#if PACKETVER >= 20140430 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT +#endif + +// Packet: 0x0a18 +#if PACKETVER >= 20140611 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 +#elif PACKETVER >= 20140605 +packetLen(0x0a18, 2) // ZC_ACCEPT_ENTER3 +#endif + +// Packet: 0x0a19 +#if PACKETVER >= 20140611 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE +#elif PACKETVER >= 20140605 +packetLen(0x0a19, -1) // CZ_REQ_OPEN_ROULETTE +#endif + +// Packet: 0x0a1a +#if PACKETVER >= 20140611 +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE +#elif PACKETVER >= 20140605 +packetLen(0x0a1a, 10) // ZC_ACK_OPEN_ROULETTE +#endif + +// Packet: 0x0a1b +#if PACKETVER >= 20140605 +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO +#endif + +// Packet: 0x0a1c +#if PACKETVER >= 20140611 +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO +#elif PACKETVER >= 20140605 +packetLen(0x0a1c, 6) // ZC_ACK_ROULEITTE_INFO +#endif + +// Packet: 0x0a1d +#if PACKETVER >= 20140611 +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE +#elif PACKETVER >= 20140605 +packetLen(0x0a1d, 14) // CZ_REQ_CLOSE_ROULETTE +#endif + +// Packet: 0x0a1e +#if PACKETVER >= 20140611 +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE +#endif + +// Packet: 0x0a1f +#if PACKETVER >= 20140611 +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE +#endif + +// Packet: 0x0a20 +#if PACKETVER >= 20140611 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE +#endif + +// Packet: 0x0a21 +#if PACKETVER >= 20140618 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM +#elif PACKETVER >= 20140611 +packetLen(0x0a21, 6) // CZ_RECV_ROULETTE_ITEM +#endif + +// Packet: 0x0a22 +#if PACKETVER >= 20140618 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM +#elif PACKETVER >= 20140611 +packetLen(0x0a22, 3) // ZC_RECV_ROULETTE_ITEM +#endif + +// Packet: 0x0a23 +#if PACKETVER >= 20140611 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST +#endif + +// Packet: 0x0a24 +#if PACKETVER >= 20141001 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE +#elif PACKETVER >= 20140723 +packetLen(0x0a24, 56) // ZC_ACH_UPDATE +#elif PACKETVER >= 20140625 +packetLen(0x0a24, 36) // ZC_ACH_UPDATE +#elif PACKETVER >= 20140611 +packetLen(0x0a24, 35) // ZC_ACH_UPDATE +#endif + +// Packet: 0x0a25 +#if PACKETVER >= 20140611 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD +#endif + +// Packet: 0x0a26 +#if PACKETVER >= 20140611 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK +#endif + +// Packet: 0x0a27 +#if PACKETVER >= 20140625 +packetLen(0x0a27, 8) // ZC_RECOVERY2 +#endif + +// Packet: 0x0a28 +#if PACKETVER >= 20140625 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 +#endif + +// Packet: 0x0a29 +#if PACKETVER >= 20140702 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT +#endif + +// Packet: 0x0a2a +#if PACKETVER >= 20140702 +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT +#endif + +// Packet: 0x0a2b +#if PACKETVER >= 20140723 +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 +#endif + +// Packet: 0x0a2c +#if PACKETVER >= 20140723 +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT +#endif + +// Packet: 0x0a2d +#if PACKETVER >= 20140820 +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 +#endif + +// Packet: 0x0a2e +#if PACKETVER >= 20140827 +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE +#endif + +// Packet: 0x0a2f +#if PACKETVER >= 20140827 +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE +#endif + +// Packet: 0x0a30 +#if PACKETVER >= 20140917 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 +#endif + +// Packet: 0x0a31 +#if PACKETVER >= 20140917 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST +#endif + +// Packet: 0x0a32 +#if PACKETVER >= 20140924 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY +#endif + +// Packet: 0x0a33 +#if PACKETVER >= 20140924 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN +#endif + +// Packet: 0x0a34 +#if PACKETVER >= 20140924 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH +#endif + +// Packet: 0x0a35 +#if PACKETVER >= 20141119 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY +#endif + +// Packet: 0x0a36 +#if PACKETVER >= 20141126 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY +#endif + +// Packet: 0x0a37 +#if PACKETVER >= 20141126 +packetLen(0x0a37, 57) // ZC_ITEM_PICKUP_ACK_V7 +#endif + + +#endif /* COMMON_PACKETS2014_LEN_RE_H */ diff --git a/src/common/packets/packets2015_len_main.h b/src/common/packets/packets2015_len_main.h new file mode 100644 index 000000000..dfc2caeb2 --- /dev/null +++ b/src/common/packets/packets2015_len_main.h @@ -0,0 +1,8641 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2015_LEN_MAIN_H +#define COMMON_PACKETS2015_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 149) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20151209 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151202 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151104 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151028 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151021 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151014 +packetLen(0x0202, 18) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151007 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151001 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150826 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150819 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150805 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150603 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150527 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150520 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150429 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150422 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150401 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150325 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150318 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150225 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150211 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150204 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150128 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150107 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20151223 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151216 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20151209 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151202 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20151125 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151118 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20151104 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151028 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20151007 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151001 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150923 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150916 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20150826 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150819 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20150805 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150715 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150708 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20150701 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150624 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150603 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150527 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150429 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150422 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150225 +packetLen(0x022d, 5) // CZ_COMMAND_MER +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150211 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150204 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150107 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20151209 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151202 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151111 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151104 +packetLen(0x023b, -1) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151028 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151021 +packetLen(0x023b, 19) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151007 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151001 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150916 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150909 +packetLen(0x023b, 7) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150902 +packetLen(0x023b, 18) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150819 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150805 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150729 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150722 +packetLen(0x023b, 90) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150715 +packetLen(0x023b, -1) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150708 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150701 +packetLen(0x023b, 19) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150603 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150527 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150513 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150507 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150429 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150422 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150325 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150318 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150311 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150225 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150211 +packetLen(0x023b, 4) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150204 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150128 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150107 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20151209 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151202 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151104 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151021 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151014 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151001 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150826 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150819 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150805 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150729 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150722 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150701 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150624 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150603 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150527 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150429 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150422 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150325 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150318 +packetLen(0x0281, 8) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150225 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150211 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150204 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150128 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150121 +packetLen(0x0281, 18) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150107 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20151223 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20151118 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20151111 +packetLen(0x02c4, -1) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20151028 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20151021 +packetLen(0x02c4, 36) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150715 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150708 +packetLen(0x02c4, 90) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150520 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150513 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150304 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150225 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150107 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20151230 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151209 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151202 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151125 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151118 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151111 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151104 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151021 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151014 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151001 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150916 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150909 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150826 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150805 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150715 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150708 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150701 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150617 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150603 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150527 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150520 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150422 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150311 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150225 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150211 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150107 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20151230 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151209 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151202 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151125 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151111 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151104 +packetLen(0x0360, 19) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151021 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151014 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151001 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150909 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150902 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150826 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150805 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150729 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150722 +packetLen(0x0360, 7) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150715 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150708 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150701 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150617 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150603 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150527 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150520 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150422 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150311 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150304 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150225 +packetLen(0x0360, 26) // CZ_REQUEST_TIME2 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150211 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150204 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150128 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150107 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20151223 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151216 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151209 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151202 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151104 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151028 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151021 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151007 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151001 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150923 +packetLen(0x0361, 18) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150916 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150909 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150819 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150805 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150729 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150722 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150610 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150603 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150527 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150520 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150429 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150422 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150415 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150225 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150211 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150204 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150107 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20151230 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151223 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151216 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151209 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151202 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151118 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151111 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151104 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151021 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151014 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151001 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150902 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150826 +packetLen(0x0362, 36) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150819 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150805 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150722 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150715 +packetLen(0x0362, 10) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150701 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150617 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150603 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150527 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150429 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150422 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150408 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150401 +packetLen(0x0362, 7) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150311 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150304 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150225 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150211 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150204 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150121 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150107 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20151209 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151202 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151111 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151104 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151021 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151014 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151001 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150819 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150805 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150701 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150624 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150617 +packetLen(0x0363, 36) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150603 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150527 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150520 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150513 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150507 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150429 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150422 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150401 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150325 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150311 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150304 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150225 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150211 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150204 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150121 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150107 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20151230 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151223 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151216 +packetLen(0x0364, 4) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151209 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151202 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151111 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151021 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151014 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151001 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150819 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150805 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150722 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150715 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150701 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150624 +packetLen(0x0364, 18) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150603 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150527 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150429 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150422 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150415 +packetLen(0x0364, 90) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150225 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150211 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150204 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150121 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150107 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20151230 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151223 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151216 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151209 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151202 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151125 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151118 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151104 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151021 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151014 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151001 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150916 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150909 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150819 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150805 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150701 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150624 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150617 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150603 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150527 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150429 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150422 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150401 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150325 +packetLen(0x0365, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150225 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150211 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150204 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150128 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150121 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150107 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20151230 +packetLen(0x0366, 8) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151209 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151202 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151125 +packetLen(0x0366, 8) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151021 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151014 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151001 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150923 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150916 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150909 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150826 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150805 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150715 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150708 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150701 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150617 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150603 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150527 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150520 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150422 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150415 +packetLen(0x0366, 5) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150311 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150225 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150211 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150204 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150128 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150107 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20150909 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150902 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150408 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150401 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150325 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150318 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150225 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +// ignored packet from 2015-02-25iRagexe +#elif PACKETVER >= 20150107 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20151230 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20151209 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20151202 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20151125 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20151021 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20151014 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20151001 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150916 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150909 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150902 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150826 +packetLen(0x0368, 8) // CZ_REQNAME2 +#elif PACKETVER >= 20150805 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150729 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150722 +packetLen(0x0368, 26) // CZ_REQNAME2 +#elif PACKETVER >= 20150715 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150708 +packetLen(0x0368, 5) // CZ_REQNAME2 +#elif PACKETVER >= 20150701 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150617 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150603 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150527 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150520 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150415 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150311 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150217 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150211 +packetLen(0x0368, 5) // CZ_REQNAME2 +#elif PACKETVER >= 20150204 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150128 +packetLen(0x0368, 8) // CZ_REQNAME2 +#elif PACKETVER >= 20150107 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20151230 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151216 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151209 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151202 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151125 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151118 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151111 +packetLen(0x0369, 8) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151021 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151014 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151001 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150916 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150909 +packetLen(0x0369, 36) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150826 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150805 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150715 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150708 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150701 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150617 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150603 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150527 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150520 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150422 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150311 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150225 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150211 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150204 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150128 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150107 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20151230 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20151223 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20151216 +packetLen(0x0436, 12) // CZ_ENTER2 +#elif PACKETVER >= 20151209 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20151202 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20151111 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20151104 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20151021 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20151007 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20151001 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150902 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150826 +packetLen(0x0436, 18) // CZ_ENTER2 +#elif PACKETVER >= 20150805 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150729 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150722 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20150715 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20150708 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20150701 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150624 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150617 +packetLen(0x0436, 19) // CZ_ENTER2 +#elif PACKETVER >= 20150603 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150527 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150429 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150422 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150318 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150311 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20150304 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150225 +packetLen(0x0436, 19) // CZ_ENTER2 +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150211 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150204 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150121 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150114 +packetLen(0x0436, 10) // CZ_ENTER2 +#elif PACKETVER >= 20150107 +packetLen(0x0436, 4) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20151230 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151209 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151202 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151125 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151111 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151104 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151021 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151014 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151001 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150916 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150909 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150826 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150805 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150729 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150722 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150715 +packetLen(0x0437, 10) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150701 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150617 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150610 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150603 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150527 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150520 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150422 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150408 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150401 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150311 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150225 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +// ignored packet from 2015-02-25iRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150211 +packetLen(0x0437, 12) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150204 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150128 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150107 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20151209 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151202 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151125 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151021 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151014 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151001 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150916 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150909 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150826 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150805 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150729 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150722 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150715 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150708 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150701 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150617 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150610 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150603 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150527 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150520 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150422 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150318 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150311 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150217 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150211 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150204 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150128 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150107 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20151216 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151209 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151202 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151104 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151021 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151014 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151001 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150923 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150819 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150805 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150708 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150701 +packetLen(0x07e4, 8) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150624 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150617 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150610 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150603 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150527 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150429 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150422 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150325 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150318 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150225 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150204 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150128 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150121 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150107 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20151230 +packetLen(0x07ec, 90) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151216 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151209 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151202 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151111 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151104 +packetLen(0x07ec, 26) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151028 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151021 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151014 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151001 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150902 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150826 +packetLen(0x07ec, 7) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150819 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150805 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150701 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150624 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150617 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150603 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150527 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150429 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150422 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150225 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150211 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150204 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150121 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150107 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20151230 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151223 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151209 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151202 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151125 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151118 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151111 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151104 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151028 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151014 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151001 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150909 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150902 +packetLen(0x0802, 36) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150819 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150805 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150708 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150701 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150624 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150603 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150527 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150429 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150422 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150401 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150325 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150318 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150311 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150304 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150225 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150211 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150204 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150121 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150107 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20151230 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151216 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151209 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151202 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151125 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151111 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151104 +packetLen(0x0811, 18) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151021 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151014 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151007 +packetLen(0x0811, 26) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151001 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150916 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150909 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150826 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150805 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150715 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150708 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150701 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150624 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150617 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150610 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150603 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150527 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150520 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150422 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150325 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150318 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150311 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150217 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150211 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150204 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150128 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150107 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20151230 +packetLen(0x0815, 19) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151223 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151209 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151202 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151125 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151118 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151111 +packetLen(0x0815, 26) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151021 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151014 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151001 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150916 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150909 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150826 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150805 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150715 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150708 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150701 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150617 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150603 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150527 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150520 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150422 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150318 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150311 +packetLen(0x0815, 19) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150225 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +// ignored packet from 2015-02-25iRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150211 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150204 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150128 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150107 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20151021 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20151014 +packetLen(0x0817, 26) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20151001 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150923 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150729 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150722 +packetLen(0x0817, 19) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150520 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150513 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150507 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150422 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150415 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150304 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150225 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150217 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150211 +packetLen(0x0817, 10) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150107 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20151230 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151209 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151202 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151125 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151021 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151014 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151001 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150916 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150909 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150902 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150826 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150805 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150715 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150708 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150701 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150617 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150610 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150603 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150527 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150520 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150422 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150415 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150408 +packetLen(0x0819, 8) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150401 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150325 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150311 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150304 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150225 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150211 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150204 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150128 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150107 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20150923 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150916 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150722 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150715 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150617 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150610 +packetLen(0x0835, 8) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150422 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150415 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150225 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150211 +packetLen(0x0835, 8) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150107 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20151230 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151209 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151202 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151125 +packetLen(0x0838, 18) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151021 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151014 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151001 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150916 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150909 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150826 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150805 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150715 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150708 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150701 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150617 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150603 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150527 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150520 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150422 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150318 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150311 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150225 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150211 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150204 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150128 +packetLen(0x0838, 7) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150107 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20151230 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151209 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151202 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151125 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151021 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151014 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151001 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150916 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150909 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150902 +packetLen(0x083c, -1) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150819 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150805 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150722 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150715 +packetLen(0x083c, 7) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150708 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150701 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150617 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150603 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150527 +packetLen(0x083c, 36) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150520 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150422 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150408 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150401 +packetLen(0x083c, -1) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150311 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150225 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +// ignored packet from 2015-02-25iRagexe +#elif PACKETVER >= 20150217 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150211 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150204 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150128 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150121 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150114 +packetLen(0x083c, 19) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150107 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20151021 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151014 +packetLen(0x085a, 10) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150513 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150507 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150415 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150408 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150204 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150128 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150107 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20151230 +packetLen(0x085b, -1) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151223 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151216 +packetLen(0x085b, 6) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151209 +packetLen(0x085b, 36) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150909 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150902 +packetLen(0x085b, 7) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150805 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150729 +packetLen(0x085b, 8) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150225 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150217 +packetLen(0x085b, 36) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150107 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20151021 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151014 +packetLen(0x085c, 7) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151001 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150923 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150722 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150715 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150415 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150408 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150107 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20151216 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151209 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151118 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151111 +packetLen(0x085d, -1) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151001 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150923 +packetLen(0x085d, 26) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150909 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150902 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150826 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150819 +packetLen(0x085d, 8) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150401 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150325 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150107 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20151216 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20151209 +packetLen(0x085e, -1) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20151202 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20151125 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150923 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150916 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150715 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150708 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150527 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150520 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150422 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150415 +packetLen(0x085e, 4) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150408 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150401 +packetLen(0x085e, 12) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150107 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20151202 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20151125 +packetLen(0x085f, 8) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150107 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20151104 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20151028 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20151021 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20151014 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150805 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150729 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150610 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150603 +packetLen(0x0860, 90) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150107 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20151230 +packetLen(0x0861, 26) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151216 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151209 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150916 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150909 +packetLen(0x0861, 4) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150902 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150826 +packetLen(0x0861, 8) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150107 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20151118 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20151111 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20151014 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20151007 +packetLen(0x0862, 4) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150826 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150819 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150325 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150318 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150311 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150304 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150217 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150211 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150107 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20151021 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151014 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150909 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150902 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150422 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150415 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150325 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150318 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150217 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150211 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150107 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20151230 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151223 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151216 +packetLen(0x0864, 8) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151001 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150923 +packetLen(0x0864, 5) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150610 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150603 +packetLen(0x0864, 26) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150520 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150513 +packetLen(0x0864, 8) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150507 +packetLen(0x0864, 26) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150204 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150128 +packetLen(0x0864, 10) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150107 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20151223 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20151216 +packetLen(0x0865, 10) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150902 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150826 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150819 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150527 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150520 +packetLen(0x0865, 19) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150415 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150408 +packetLen(0x0865, 7) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150107 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20151230 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20151223 +packetLen(0x0866, 19) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20151216 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20151209 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20150107 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20151021 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20151014 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150610 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150603 +packetLen(0x0867, 8) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150507 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150429 +packetLen(0x0867, 36) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150422 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150415 +packetLen(0x0867, 26) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150304 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150225 +packetLen(0x0867, 18) // ZC_REASSEMBLY_AUTH14 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150107 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20150527 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150520 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150422 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150415 +packetLen(0x0868, 10) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150408 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150121 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150114 +packetLen(0x0868, 26) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150107 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20151230 +packetLen(0x0869, 5) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150923 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150916 +packetLen(0x0869, 7) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150729 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150722 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150624 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150617 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150422 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150415 +packetLen(0x0869, 5) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150107 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20151223 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20151216 +packetLen(0x086a, 8) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20151028 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20151021 +packetLen(0x086a, 26) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150624 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150617 +packetLen(0x086a, 18) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150610 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150603 +packetLen(0x086a, 8) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150507 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150429 +packetLen(0x086a, 19) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150318 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150311 +packetLen(0x086a, 6) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150107 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20151125 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20151118 +packetLen(0x086b, 8) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150902 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150826 +packetLen(0x086b, 10) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150624 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150617 +packetLen(0x086b, 5) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150415 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150408 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150107 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20150805 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150729 +packetLen(0x086c, 8) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150422 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150415 +packetLen(0x086c, 7) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150318 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150311 +packetLen(0x086c, 36) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150107 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20150805 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150729 +packetLen(0x086d, 18) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150708 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150701 +packetLen(0x086d, -1) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150311 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150304 +packetLen(0x086d, -1) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150204 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150128 +packetLen(0x086d, 8) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150107 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20151230 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20151223 +packetLen(0x086e, 10) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20151216 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150805 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150729 +packetLen(0x086e, 5) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150415 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150408 +packetLen(0x086e, 10) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150107 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20151001 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150923 +packetLen(0x086f, 10) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150909 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150902 +packetLen(0x086f, 10) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150805 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150729 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150722 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150715 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150408 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150401 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150325 +packetLen(0x086f, -1) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150107 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20151223 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151216 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151209 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151202 +packetLen(0x0870, 36) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151001 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150923 +packetLen(0x0870, 5) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150902 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150826 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150805 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150729 +packetLen(0x0870, 6) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150701 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150624 +packetLen(0x0870, 36) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150610 +packetLen(0x0870, 26) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150217 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150211 +packetLen(0x0870, 6) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150204 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150128 +packetLen(0x0870, 5) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150107 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20151118 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20151111 +packetLen(0x0871, 26) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150916 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150909 +packetLen(0x0871, -1) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150826 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150819 +packetLen(0x0871, 18) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150107 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20151230 +packetLen(0x0872, 2) +#elif PACKETVER >= 20151223 +packetLen(0x0872, 18) +#elif PACKETVER >= 20151021 +packetLen(0x0872, 2) +#elif PACKETVER >= 20151014 +packetLen(0x0872, 5) +#elif PACKETVER >= 20150715 +packetLen(0x0872, 2) +#elif PACKETVER >= 20150708 +packetLen(0x0872, 6) +#elif PACKETVER >= 20150617 +packetLen(0x0872, 2) +#elif PACKETVER >= 20150610 +packetLen(0x0872, 6) +#elif PACKETVER >= 20150107 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20150923 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150916 +packetLen(0x0873, 90) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150722 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150715 +packetLen(0x0873, 6) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150610 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150603 +packetLen(0x0873, 7) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150325 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150318 +packetLen(0x0873, 36) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150217 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150211 +packetLen(0x0873, 5) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150107 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20151223 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20151216 +packetLen(0x0874, 90) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20151021 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20151014 +packetLen(0x0874, 10) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150204 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150128 +packetLen(0x0874, 6) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150107 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20151230 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151223 +packetLen(0x0875, 10) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150408 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150401 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150204 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150128 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150107 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20151230 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20151223 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150204 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150128 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150107 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20150923 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150916 +packetLen(0x0877, 5) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150617 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150610 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150603 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150107 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20150729 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150722 +packetLen(0x0878, 10) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150415 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150408 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150107 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20151001 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150923 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150722 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150715 +packetLen(0x0879, 19) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150520 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150513 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150311 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150304 +packetLen(0x0879, 5) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150107 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20151216 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20151209 +packetLen(0x087a, 12) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150624 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150617 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150107 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20150916 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150909 +packetLen(0x087b, 18) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150902 +packetLen(0x087b, 5) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150826 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150729 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150722 +packetLen(0x087b, 18) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150318 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150311 +packetLen(0x087b, 18) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150217 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150211 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150107 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20150722 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150715 +packetLen(0x087c, 6) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150401 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150325 +packetLen(0x087c, 8) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150128 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150121 +packetLen(0x087c, 4) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150114 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150107 +packetLen(0x087c, 26) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20150729 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150722 +packetLen(0x087d, 5) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150708 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150701 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150527 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150520 +packetLen(0x087d, 12) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150204 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150128 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150107 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20150729 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150722 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150708 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150701 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150617 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150610 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150415 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150408 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150401 +packetLen(0x087e, 8) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150325 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150311 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150304 +packetLen(0x087e, 19) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150107 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20151216 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20151209 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150923 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150916 +packetLen(0x087f, 12) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150909 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150902 +packetLen(0x087f, 4) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150819 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150812 +packetLen(0x087f, 36) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150715 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150708 +packetLen(0x087f, 4) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150415 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150408 +packetLen(0x087f, 90) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150217 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150211 +packetLen(0x087f, 36) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150107 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20150805 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150729 +packetLen(0x0880, 12) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150722 +packetLen(0x0880, 6) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150527 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150520 +packetLen(0x0880, 26) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150422 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150415 +packetLen(0x0880, 8) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150107 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20151230 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20151223 +packetLen(0x0881, 7) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20151021 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20151014 +packetLen(0x0881, 8) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150923 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150916 +packetLen(0x0881, -1) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150805 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150729 +packetLen(0x0881, 7) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150610 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150603 +packetLen(0x0881, 6) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150107 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20150527 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150520 +packetLen(0x0882, -1) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150217 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150211 +packetLen(0x0882, -1) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150107 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20151202 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20151125 +packetLen(0x0883, 5) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20151021 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20151014 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150916 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150909 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150708 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150701 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150520 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150513 +packetLen(0x0883, 18) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150401 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150325 +packetLen(0x0883, 12) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150318 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150311 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150217 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150211 +packetLen(0x0883, 8) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150107 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20151230 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151223 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151202 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151125 +packetLen(0x0884, 36) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151021 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151014 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150729 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150722 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150715 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150708 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150617 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150610 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150603 +packetLen(0x0884, 4) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150107 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20151223 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151216 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151202 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151125 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151118 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151111 +packetLen(0x0885, 7) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150617 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150610 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150520 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150513 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150401 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150325 +packetLen(0x0885, 10) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150304 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150225 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150211 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150107 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20151230 +packetLen(0x0886, 10) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151223 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151111 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151104 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151001 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150923 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150916 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150909 +packetLen(0x0886, 19) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150902 +packetLen(0x0886, 12) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150805 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150729 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150722 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150715 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150624 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150617 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150507 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150429 +packetLen(0x0886, 26) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150318 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150311 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150217 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150211 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150107 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20151111 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151104 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150909 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150902 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150513 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150507 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150107 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20150826 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150819 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150617 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150610 +packetLen(0x0888, 19) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150415 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150408 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150204 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150128 +packetLen(0x0888, -1) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150107 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20151021 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20151014 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150513 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150507 +packetLen(0x0889, 18) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150415 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150408 +packetLen(0x0889, 36) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150325 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150318 +packetLen(0x0889, 7) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150107 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20150812 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150805 +packetLen(0x088a, 36) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150107 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20151223 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151216 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151125 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151118 +packetLen(0x088b, 36) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151111 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151104 +packetLen(0x088b, 8) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150902 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150826 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150610 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150603 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150128 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150121 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150107 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20151202 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20151125 +packetLen(0x088c, 6) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150617 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150610 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150527 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150520 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150408 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150401 +packetLen(0x088c, 6) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150325 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150318 +packetLen(0x088c, 12) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150107 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20151230 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151223 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151202 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151125 +packetLen(0x088d, 19) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151111 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151104 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150909 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150902 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150826 +packetLen(0x088d, 26) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150729 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150722 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150617 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150610 +packetLen(0x088d, 18) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150107 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20151230 +packetLen(0x088e, 26) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151216 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151209 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151021 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151014 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151001 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150923 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150422 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150415 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150107 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20151216 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20151209 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150916 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150909 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150617 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150610 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150507 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150429 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150408 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150401 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150107 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20151230 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20151223 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20150107 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20151230 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20151223 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150902 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150826 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150422 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150415 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150408 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150401 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150325 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150107 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20151001 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150923 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150909 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150902 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150311 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150304 +packetLen(0x0892, 36) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150107 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20150708 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150701 +packetLen(0x0893, 4) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150401 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150325 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150107 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20151216 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20151209 +packetLen(0x0894, 10) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150624 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150617 +packetLen(0x0894, 4) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150507 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150429 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150107 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20151001 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150923 +packetLen(0x0895, 4) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150916 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150909 +packetLen(0x0895, 26) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150722 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150715 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150408 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150401 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150114 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150107 +packetLen(0x0895, 36) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20150722 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150715 +packetLen(0x0896, 90) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150318 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150311 +packetLen(0x0896, 7) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150304 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150225 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150107 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20151230 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150909 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150902 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150722 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150715 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150617 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150610 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150603 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150401 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150325 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150107 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20151230 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20151223 +packetLen(0x0898, 90) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150422 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150415 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150408 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150401 +packetLen(0x0898, 5) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150107 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20151202 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20151125 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150909 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150902 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150729 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150722 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150507 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150429 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150401 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150325 +packetLen(0x0899, 18) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150121 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150114 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150107 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20151021 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151014 +packetLen(0x089a, 4) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150805 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150729 +packetLen(0x089a, 10) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150722 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150715 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150610 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150603 +packetLen(0x089a, 12) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150311 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150304 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150204 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150128 +packetLen(0x089a, 18) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150107 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20151001 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150923 +packetLen(0x089b, 10) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150916 +packetLen(0x089b, 18) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150805 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150729 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150304 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150225 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150107 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20151202 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20151125 +packetLen(0x089c, 7) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20151118 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20151111 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150923 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150916 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150527 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150520 +packetLen(0x089c, 36) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150415 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150408 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150401 +packetLen(0x089c, 36) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150325 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150318 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150304 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150225 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150211 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150107 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20151223 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20151216 +packetLen(0x089d, 7) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150715 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150708 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150610 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150603 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150128 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150121 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150107 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20151223 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20151216 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150923 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150916 +packetLen(0x089e, 26) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150610 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150603 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150527 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150520 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150128 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150121 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150107 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20151202 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151125 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151021 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151014 +packetLen(0x089f, 5) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151001 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150923 +packetLen(0x089f, 8) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150507 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150429 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150107 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20151001 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150923 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150902 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150826 +packetLen(0x08a0, 12) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150708 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150701 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150617 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150610 +packetLen(0x08a0, 36) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150422 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150415 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150217 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150211 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150107 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20151216 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20151209 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150902 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150826 +packetLen(0x08a1, 8) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150610 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150603 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150401 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150325 +packetLen(0x08a1, 7) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150318 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150311 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150107 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20151223 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20151216 +packetLen(0x08a2, 5) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20151001 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150923 +packetLen(0x08a2, 19) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150527 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150520 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150415 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150408 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150107 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20151111 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20151104 +packetLen(0x08a3, 4) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150805 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150729 +packetLen(0x08a3, 4) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150318 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150311 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150107 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20150902 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150826 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150805 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150729 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150722 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150715 +packetLen(0x08a4, 4) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150708 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150701 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150415 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150408 +packetLen(0x08a4, 26) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150325 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150318 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150304 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150225 +packetLen(0x08a4, 36) // CZ_REASSEMBLY_AUTH33 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150211 +packetLen(0x08a4, 19) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150107 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20151111 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20151104 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20151001 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150923 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150715 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150708 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150701 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150408 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150401 +packetLen(0x08a5, 8) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150318 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150311 +packetLen(0x08a5, 12) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150107 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20151001 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150923 +packetLen(0x08a6, 12) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150708 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150701 +packetLen(0x08a6, 10) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150507 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150429 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150318 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150311 +packetLen(0x08a6, 26) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150107 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20150401 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150325 +packetLen(0x08a7, 90) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150107 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20150902 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150826 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150729 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150722 +packetLen(0x08a8, 5) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150520 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150513 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150507 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150429 +packetLen(0x08a8, 4) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150107 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20151223 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20151216 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20151202 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20151125 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150909 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150902 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150107 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20151230 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20151223 +packetLen(0x08aa, 26) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20151021 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20151014 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150217 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150211 +packetLen(0x08aa, 7) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150107 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20151125 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20151118 +packetLen(0x08ab, 8) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150204 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150128 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150121 +packetLen(0x08ab, 36) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150107 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20151223 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20151216 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150923 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150916 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150805 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150729 +packetLen(0x08ac, 26) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150722 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150715 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150617 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150610 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150107 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20151202 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20151125 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150805 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150729 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150715 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150708 +packetLen(0x08ad, 36) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150701 +packetLen(0x08ad, 10) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150610 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150603 +packetLen(0x08ad, 19) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150527 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150520 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150507 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150429 +packetLen(0x08ad, 18) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150107 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 149) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20150722 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150715 +packetLen(0x0917, 12) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150107 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20150128 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150121 +packetLen(0x0918, 8) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150107 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20150826 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150819 +packetLen(0x0919, 8) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150729 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150722 +packetLen(0x0919, 4) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150708 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150701 +packetLen(0x0919, 36) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150401 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150325 +packetLen(0x0919, 36) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150217 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150211 +packetLen(0x0919, 90) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150128 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150121 +packetLen(0x0919, 6) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150107 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20151230 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20151223 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150107 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20151230 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20151223 +packetLen(0x091b, 26) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150610 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150603 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150415 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150408 +packetLen(0x091b, 4) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150401 +packetLen(0x091b, 26) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150107 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20151021 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20151014 +packetLen(0x091c, 26) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150527 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150520 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150408 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150401 +packetLen(0x091c, 90) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150318 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150311 +packetLen(0x091c, 90) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150107 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20151230 +packetLen(0x091d, 8) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151223 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151216 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151028 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151021 +packetLen(0x091d, 5) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151014 +packetLen(0x091d, 36) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150527 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150520 +packetLen(0x091d, 7) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150325 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150318 +packetLen(0x091d, 8) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150128 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150121 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150107 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20151001 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150923 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150826 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150819 +packetLen(0x091e, 36) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150415 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150408 +packetLen(0x091e, -1) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150107 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20150715 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150708 +packetLen(0x091f, 18) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150204 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150128 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150107 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20151230 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151223 +packetLen(0x0920, 5) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151216 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151209 +packetLen(0x0920, -1) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151202 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151125 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150923 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150916 +packetLen(0x0920, -1) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150325 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150318 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150217 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150211 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150107 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20151125 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20151118 +packetLen(0x0921, 26) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150729 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150722 +packetLen(0x0921, 8) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150107 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20150610 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150603 +packetLen(0x0922, 36) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150422 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150415 +packetLen(0x0922, 8) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150408 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150401 +packetLen(0x0922, -1) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150107 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20151230 +packetLen(0x0923, 36) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20151223 +packetLen(0x0923, 5) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150909 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150902 +packetLen(0x0923, 26) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150708 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150701 +packetLen(0x0923, 8) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150520 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150513 +packetLen(0x0923, 36) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150107 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20151230 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20151223 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150923 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150916 +packetLen(0x0924, 26) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150902 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150826 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150527 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150520 +packetLen(0x0924, 8) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150513 +packetLen(0x0924, 5) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150507 +packetLen(0x0924, 19) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150408 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150401 +packetLen(0x0924, 18) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150107 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20151125 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20151118 +packetLen(0x0925, 19) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150729 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150722 +packetLen(0x0925, -1) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150617 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150610 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150107 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 + +// Packet: 0x0927 +#if PACKETVER >= 20150826 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150819 +packetLen(0x0927, 19) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150520 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150513 +packetLen(0x0927, 4) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150325 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150318 +packetLen(0x0927, 5) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150204 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150128 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150107 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20151111 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20151104 +packetLen(0x0928, 5) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150916 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150909 +packetLen(0x0928, 8) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150902 +packetLen(0x0928, 6) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150708 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150701 +packetLen(0x0928, 8) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150325 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150318 +packetLen(0x0928, 6) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150311 +packetLen(0x0928, 5) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150107 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20150507 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150429 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150204 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150128 +packetLen(0x0929, 36) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150107 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20151202 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20151125 +packetLen(0x092a, 10) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150909 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150902 +packetLen(0x092a, 5) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150715 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150708 +packetLen(0x092a, 8) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150415 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150408 +packetLen(0x092a, 8) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150318 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150311 +packetLen(0x092a, 8) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150107 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20151001 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150923 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150805 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150729 +packetLen(0x092b, 90) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150617 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150610 +packetLen(0x092b, -1) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150527 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150520 +packetLen(0x092b, 5) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150107 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20150708 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150701 +packetLen(0x092c, 5) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150617 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150610 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150401 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150325 +packetLen(0x092c, 6) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150107 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20151216 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20151209 +packetLen(0x092d, 8) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150909 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150902 +packetLen(0x092d, 26) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150610 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150603 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150114 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150107 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20151202 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20151125 +packetLen(0x092e, 10) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20151118 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150902 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150826 +packetLen(0x092e, 90) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150729 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150722 +packetLen(0x092e, 26) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150617 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150610 +packetLen(0x092e, 4) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150513 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150507 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150422 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150415 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150318 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150311 +packetLen(0x092e, 8) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150107 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20151125 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20151118 +packetLen(0x092f, 8) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150923 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150916 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150805 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150729 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150107 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20151216 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20151209 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20151021 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20151014 +packetLen(0x0930, 90) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20151001 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20150923 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20150107 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20150527 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150520 +packetLen(0x0931, 90) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150401 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150325 +packetLen(0x0931, -1) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150107 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20151216 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20151209 +packetLen(0x0932, -1) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150401 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150325 +packetLen(0x0932, 5) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150107 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 + +// Packet: 0x0934 +#if PACKETVER >= 20151021 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20151014 +packetLen(0x0934, -1) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150923 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150916 +packetLen(0x0934, 8) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150107 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 + +// Packet: 0x0936 +#if PACKETVER >= 20151001 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150923 +packetLen(0x0936, 90) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150916 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150527 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150520 +packetLen(0x0936, 10) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150325 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150318 +packetLen(0x0936, 10) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150107 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20150325 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150318 +packetLen(0x0937, 10) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150107 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20150923 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150916 +packetLen(0x0938, 4) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150401 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150325 +packetLen(0x0938, 5) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150318 +packetLen(0x0938, 26) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150204 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150128 +packetLen(0x0938, 4) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150107 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20151202 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20151125 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20151111 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20151104 +packetLen(0x0939, 8) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150408 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150401 +packetLen(0x0939, 19) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150107 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20151230 +packetLen(0x093a, 4) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151111 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151104 +packetLen(0x093a, -1) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150805 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150729 +packetLen(0x093a, 6) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150408 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150401 +packetLen(0x093a, 10) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150325 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150318 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150311 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150304 +packetLen(0x093a, 18) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150204 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150128 +packetLen(0x093a, 10) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150107 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20151216 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20151209 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20151001 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150923 +packetLen(0x093b, 26) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150902 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150826 +packetLen(0x093b, 6) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150513 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150507 +packetLen(0x093b, 5) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150408 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150401 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150318 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150311 +packetLen(0x093b, 26) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150107 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20151125 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20151118 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150729 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150722 +packetLen(0x093c, -1) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150715 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150708 +packetLen(0x093c, 26) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150422 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150415 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150325 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150318 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150107 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20150729 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150722 +packetLen(0x093d, 12) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150527 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150520 +packetLen(0x093d, 26) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150507 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150429 +packetLen(0x093d, 26) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150107 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20151202 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20151125 +packetLen(0x093e, 12) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150923 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150916 +packetLen(0x093e, 10) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150722 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150715 +packetLen(0x093e, 5) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150708 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150701 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150617 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150610 +packetLen(0x093e, 7) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150422 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150415 +packetLen(0x093e, 12) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150107 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20151014 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20151007 +packetLen(0x093f, 5) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150805 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150729 +packetLen(0x093f, -1) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150708 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150701 +packetLen(0x093f, 12) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150610 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150603 +packetLen(0x093f, 18) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150107 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20151111 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151104 +packetLen(0x0940, 36) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151028 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151021 +packetLen(0x0940, 26) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150916 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150909 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150826 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150819 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150805 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150729 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150701 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150624 +packetLen(0x0940, 8) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150617 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150610 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150603 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150527 +packetLen(0x0940, 12) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150520 +packetLen(0x0940, 8) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150401 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150325 +packetLen(0x0940, 26) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150304 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150225 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +// ignored packet from 2015-02-25iRagexe +// ignored packet from 2015-02-25eRagexe +#elif PACKETVER >= 20150107 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20150923 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150916 +packetLen(0x0941, 36) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150902 +packetLen(0x0941, 5) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150701 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150624 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150513 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150507 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150422 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150415 +packetLen(0x0941, 19) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150107 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20151118 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20151111 +packetLen(0x0942, 18) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150923 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150916 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150513 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150507 +packetLen(0x0942, 4) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150107 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20151125 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20151118 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150507 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150429 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150318 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150311 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150114 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150107 +packetLen(0x0943, 5) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20151223 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20151216 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20151021 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20151014 +packetLen(0x0944, 12) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150722 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150715 +packetLen(0x0944, 26) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150217 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150211 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150204 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150128 +packetLen(0x0944, 19) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150107 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20150902 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20150826 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20150527 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20150520 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20150107 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20151125 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20151118 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150708 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150701 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150617 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150610 +packetLen(0x0946, 90) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150408 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150401 +packetLen(0x0946, 4) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150318 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150311 +packetLen(0x0946, 4) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150304 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150225 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150121 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150114 +packetLen(0x0946, 36) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150107 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20151223 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151216 +packetLen(0x0947, 19) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150909 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150902 +packetLen(0x0947, 90) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150311 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150304 +packetLen(0x0947, 8) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150114 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150107 +packetLen(0x0947, 19) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20151216 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20151209 +packetLen(0x0948, 19) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150923 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150916 +packetLen(0x0948, -1) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150304 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150225 +packetLen(0x0948, 6) // CZ_REASSEMBLY_AUTH50 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150107 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20151230 +packetLen(0x0949, 5) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20151223 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20151216 +packetLen(0x0949, -1) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150617 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150610 +packetLen(0x0949, 10) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150408 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150401 +packetLen(0x0949, 6) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150107 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20151216 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151209 +packetLen(0x094a, 18) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151118 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151111 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150520 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150513 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150401 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150325 +packetLen(0x094a, 19) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150107 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20150408 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150401 +packetLen(0x094b, 10) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150107 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20150729 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150722 +packetLen(0x094c, 10) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150325 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150318 +packetLen(0x094c, 5) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150107 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20150422 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150415 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150107 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20151230 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150708 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150701 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150624 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150617 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150527 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150520 +packetLen(0x094e, 10) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150204 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150128 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150107 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20150923 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150916 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150909 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150902 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150826 +packetLen(0x094f, 5) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150805 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150729 +packetLen(0x094f, 19) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150722 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150415 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150408 +packetLen(0x094f, 18) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150304 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150225 +packetLen(0x094f, 5) // CZ_REASSEMBLY_AUTH57 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150107 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20150722 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20150715 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20150401 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20150325 +packetLen(0x0950, -1) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20150107 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20151202 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20151125 +packetLen(0x0951, 5) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20151001 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150923 +packetLen(0x0951, 7) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150902 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150826 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150729 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150722 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150325 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150318 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150217 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150211 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150107 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20150304 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150225 +packetLen(0x0952, 8) // CZ_REASSEMBLY_AUTH60 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150204 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150128 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150107 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20150909 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150902 +packetLen(0x0953, -1) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150513 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150507 +packetLen(0x0953, 36) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150422 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150415 +packetLen(0x0953, -1) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150408 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150401 +packetLen(0x0953, 26) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150107 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20151223 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20151216 +packetLen(0x0954, -1) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150708 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150701 +packetLen(0x0954, 5) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150401 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150325 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150107 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20150805 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150729 +packetLen(0x0955, -1) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150610 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150603 +packetLen(0x0955, 5) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150513 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150507 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150429 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150422 +packetLen(0x0955, 36) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150415 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150408 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150304 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150225 +packetLen(0x0955, 5) // CZ_REASSEMBLY_AUTH63 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150128 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150121 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150114 +packetLen(0x0955, 4) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150107 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20151216 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151209 +packetLen(0x0956, 90) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151202 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151125 +packetLen(0x0956, 26) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151021 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151014 +packetLen(0x0956, 6) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150722 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150715 +packetLen(0x0956, 36) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150708 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150701 +packetLen(0x0956, 90) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150107 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20151202 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20151125 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20151118 +packetLen(0x0957, 4) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150617 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150610 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150415 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150408 +packetLen(0x0957, 19) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150318 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150311 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150217 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150211 +packetLen(0x0957, 26) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150121 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150114 +packetLen(0x0957, 5) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150107 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20151118 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20151111 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150729 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150722 +packetLen(0x0958, 36) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150708 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150701 +packetLen(0x0958, 7) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150520 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150513 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150507 +packetLen(0x0958, 26) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150318 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150311 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150217 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150211 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150107 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20151202 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20151125 +packetLen(0x0959, 90) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150902 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150826 +packetLen(0x0959, -1) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150415 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150408 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150325 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150318 +packetLen(0x0959, -1) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150128 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150121 +packetLen(0x0959, 19) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150107 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20150923 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20150916 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20150107 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20150909 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150902 +packetLen(0x095b, 19) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150715 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150708 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150527 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150520 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150318 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150311 +packetLen(0x095b, -1) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150107 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20151216 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20151209 +packetLen(0x095c, 4) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20151125 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20151118 +packetLen(0x095c, 18) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150422 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150415 +packetLen(0x095c, 26) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150107 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20150617 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20150610 +packetLen(0x095d, 12) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20150311 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20150304 +packetLen(0x095d, 8) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20150107 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20151230 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20151223 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20151021 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20151014 +packetLen(0x095e, 8) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150916 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150909 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150805 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150729 +packetLen(0x095e, -1) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150415 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150408 +packetLen(0x095e, 12) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150107 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20151014 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20151007 +packetLen(0x095f, 5) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150708 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150701 +packetLen(0x095f, 26) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150408 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150401 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150107 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20151007 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20151001 +packetLen(0x0960, 36) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150923 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150916 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150708 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150701 +packetLen(0x0960, 18) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150610 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150603 +packetLen(0x0960, 10) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150527 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150520 +packetLen(0x0960, 4) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150513 +packetLen(0x0960, -1) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150422 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150415 +packetLen(0x0960, 36) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150325 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150318 +packetLen(0x0960, 18) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150311 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150304 +packetLen(0x0960, 26) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150107 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20151216 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151209 +packetLen(0x0961, 7) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151021 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151014 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151007 +packetLen(0x0961, 19) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151001 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150916 +packetLen(0x0961, -1) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150826 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150819 +packetLen(0x0961, 26) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150805 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150729 +packetLen(0x0961, 36) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150722 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150715 +packetLen(0x0961, 8) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150527 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150520 +packetLen(0x0961, 8) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150422 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150415 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150311 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150304 +packetLen(0x0961, 5) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150107 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20150916 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150909 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150715 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150708 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150107 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20150318 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150311 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150204 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150128 +packetLen(0x0963, 26) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150121 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150107 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20151216 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151209 +packetLen(0x0964, 26) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151111 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151104 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151021 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151014 +packetLen(0x0964, 19) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150902 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150826 +packetLen(0x0964, 19) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150617 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150610 +packetLen(0x0964, 5) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150408 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150401 +packetLen(0x0964, 5) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150318 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150311 +packetLen(0x0964, 8) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150107 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20151230 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20151223 +packetLen(0x0965, 36) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150722 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150715 +packetLen(0x0965, 18) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150107 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20151223 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20151216 +packetLen(0x0966, 6) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20151118 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20151111 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150701 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150624 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150211 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150204 +packetLen(0x0966, 36) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150107 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20151230 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151223 +packetLen(0x0967, 12) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151118 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151111 +packetLen(0x0967, 19) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151014 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151007 +packetLen(0x0967, 36) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150826 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150819 +packetLen(0x0967, 5) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150128 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150121 +packetLen(0x0967, 26) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150107 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20151223 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20151216 +packetLen(0x0968, 10) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150902 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150826 +packetLen(0x0968, 4) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150708 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150701 +packetLen(0x0968, 5) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150204 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150128 +packetLen(0x0968, 6) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150107 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20151118 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20151111 +packetLen(0x0969, 36) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150923 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150916 +packetLen(0x0969, 19) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150902 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150826 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150610 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150603 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150401 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150325 +packetLen(0x0969, 8) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150107 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20151230 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151209 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151202 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151125 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151111 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151104 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151021 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151014 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151001 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150916 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150909 +packetLen(0x096a, 5) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150826 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150805 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150715 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150708 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150701 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150617 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150610 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150603 +packetLen(0x096a, 5) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150527 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150520 +packetLen(0x096a, 18) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150422 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150311 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150304 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150225 +packetLen(0x096a, 19) // CZ_REASSEMBLY_AUTH84 +// ignored packet from 2015-02-25eRagexe +// ignored packet from 2015-02-25hRagexe +#elif PACKETVER >= 20150217 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150211 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150204 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150128 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150107 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ae +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING + +// Packet: 0x09b3 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c4 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 + +// Packet: 0x0a0a +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 + +// Packet: 0x0a0b +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 + +// Packet: 0x0a0c +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +packetLen(0x0a37, 57) // ZC_ITEM_PICKUP_ACK_V7 + +// Packet: 0x0a38 +#if PACKETVER >= 20150128 +packetLen(0x0a38, 3) // ZC_OPEN_UI +#endif + +// Packet: 0x0a39 +#if PACKETVER >= 20150415 +packetLen(0x0a39, 36) // CH_MAKE_CHAR +#elif PACKETVER >= 20150211 +packetLen(0x0a39, 35) // CH_MAKE_CHAR +#endif + +// Packet: 0x0a3a +#if PACKETVER >= 20150311 +packetLen(0x0a3a, 12) +#endif + +// Packet: 0x0a3b +#if PACKETVER >= 20150422 +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT +#endif + +// Packet: 0x0a3c +#if PACKETVER >= 20150520 +packetLen(0x0a3c, -1) +#endif + +// Packet: 0x0a3d +#if PACKETVER >= 20150520 +packetLen(0x0a3d, 18) +#endif + +// Packet: 0x0a3e +#if PACKETVER >= 20150603 +packetLen(0x0a3e, -1) +#endif + +// Packet: 0x0a3f +#if PACKETVER >= 20150624 +packetLen(0x0a3f, 9) +#endif + +// Packet: 0x0a40 +#if PACKETVER >= 20150812 +packetLen(0x0a40, 11) +#endif + +// Packet: 0x0a41 +#if PACKETVER >= 20150909 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL +#endif + +// Packet: 0x0a42 +#if PACKETVER >= 20150916 +packetLen(0x0a42, 43) +#endif + +// Packet: 0x0a43 +#if PACKETVER >= 20151007 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0a44 +#if PACKETVER >= 20151007 +packetLen(0x0a44, -1) // ZC_GROUP_LIST +#endif + +// Packet: 0x0a45 +#if PACKETVER >= 20151125 +// removed +#elif PACKETVER >= 20151104 +packetLen(0x0a45, 2) +#elif PACKETVER >= 20151028 +packetLen(0x0a45, -1) +#endif + +// Packet: 0x0a46 +#if PACKETVER >= 20151104 +packetLen(0x0a46, 14) +#endif + +// Packet: 0x0a47 +#if PACKETVER >= 20151104 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES +#endif + +// Packet: 0x0a48 +#if PACKETVER >= 20151104 +packetLen(0x0a48, 2) +#endif + +// Packet: 0x0a49 +#if PACKETVER >= 20151118 +packetLen(0x0a49, 22) // CZ_PRIVATE_AIRSHIP_REQUEST +#endif + +// Packet: 0x0a4a +#if PACKETVER >= 20151118 +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE +#endif + +// Packet: 0x0a4b +#if PACKETVER >= 20151118 +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE +#endif + +// Packet: 0x0a4c +#if PACKETVER >= 20151118 +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE +#endif + + +#endif /* COMMON_PACKETS2015_LEN_MAIN_H */ diff --git a/src/common/packets/packets2015_len_re.h b/src/common/packets/packets2015_len_re.h new file mode 100644 index 000000000..16db2c94e --- /dev/null +++ b/src/common/packets/packets2015_len_re.h @@ -0,0 +1,8562 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2015_LEN_RE_H +#define COMMON_PACKETS2015_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 149) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20151209 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151202 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151104 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151028 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151021 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151014 +packetLen(0x0202, 18) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151007 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20151001 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150826 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150819 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150805 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150603 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150527 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150520 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150429 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150422 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150401 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150325 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150318 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150225 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150217 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150211 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150204 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150128 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20150107 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20151223 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151216 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20151209 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151202 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20151125 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151118 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20151104 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151028 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20151007 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20151001 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150923 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150916 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20150826 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150819 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20150805 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150715 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150708 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20150701 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150624 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150603 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150527 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150429 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150422 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150225 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150217 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150211 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20150204 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20150107 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20151209 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151202 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151111 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151104 +packetLen(0x023b, -1) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151028 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151021 +packetLen(0x023b, 19) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151007 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20151001 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150916 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150909 +packetLen(0x023b, 7) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150902 +packetLen(0x023b, 18) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150819 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150805 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150729 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150722 +packetLen(0x023b, 90) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150715 +packetLen(0x023b, -1) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150708 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150701 +packetLen(0x023b, 19) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150603 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150527 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150513 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150507 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150429 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150422 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150325 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150318 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150311 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150225 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150217 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150211 +packetLen(0x023b, 4) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150204 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150128 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20150107 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20151209 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151202 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151104 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151021 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151014 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20151001 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150826 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150819 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150805 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150729 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150722 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150701 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150624 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150603 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150527 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150429 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150422 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150325 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150318 +packetLen(0x0281, 8) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150225 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150217 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150211 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150204 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150128 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150121 +packetLen(0x0281, 18) // CZ_GANGSI_RANK +#elif PACKETVER >= 20150107 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20151223 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20151118 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20151111 +packetLen(0x02c4, -1) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20151028 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20151021 +packetLen(0x02c4, 36) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150715 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150708 +packetLen(0x02c4, 90) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150520 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150513 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150304 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150225 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20150107 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20151230 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151209 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151202 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151125 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151118 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151111 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151104 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151021 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151014 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20151001 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150916 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150909 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150826 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150805 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150715 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150708 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150701 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150617 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150603 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150527 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150520 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150422 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150311 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150217 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150211 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20150107 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20151230 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151209 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151202 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151125 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151111 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151104 +packetLen(0x0360, 19) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151021 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151014 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20151001 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150909 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150902 +packetLen(0x0360, -1) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150826 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150805 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150729 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150722 +packetLen(0x0360, 7) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150715 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150708 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150701 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150617 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150603 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150527 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150520 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150422 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150311 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150304 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150225 +packetLen(0x0360, 26) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150217 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150211 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150204 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150128 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20150107 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20151223 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151216 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151209 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151202 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151104 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151028 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151021 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151007 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20151001 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150923 +packetLen(0x0361, 18) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150916 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150909 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150819 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150805 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150729 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150722 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150610 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150603 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150527 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150520 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150429 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150422 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150415 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150225 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150217 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150211 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150204 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20150107 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20151230 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151223 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151216 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151209 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151202 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151118 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151111 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151104 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151021 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151014 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20151001 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150902 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150826 +packetLen(0x0362, 36) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150819 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150805 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150722 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150715 +packetLen(0x0362, 10) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150701 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150617 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150603 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150527 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150429 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150422 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150408 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150401 +packetLen(0x0362, 7) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150311 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150304 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150225 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150217 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150211 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150204 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150121 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20150107 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20151209 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151202 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151111 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151104 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151021 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151014 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20151001 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150819 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150805 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150701 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150624 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150617 +packetLen(0x0363, 36) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150603 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150527 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150520 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150513 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150507 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150429 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150422 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150401 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150325 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150311 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150304 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150225 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150217 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150211 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150204 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150121 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20150107 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20151230 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151223 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151216 +packetLen(0x0364, 4) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151209 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151202 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151111 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151021 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151014 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20151001 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150819 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150805 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150722 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150715 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150701 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150624 +packetLen(0x0364, 18) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150603 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150527 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150429 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150422 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150415 +packetLen(0x0364, 90) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150225 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150217 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150211 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150204 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150121 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20150107 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20151230 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151223 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151216 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151209 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151202 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151125 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151118 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151104 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151021 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151014 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20151001 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150916 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150909 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150819 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150805 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150701 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150624 +packetLen(0x0365, 5) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150617 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150603 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150527 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150429 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150422 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150401 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150325 +packetLen(0x0365, 10) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150225 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150217 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150211 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150204 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150128 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150121 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20150107 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20151230 +packetLen(0x0366, 8) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151209 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151202 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151125 +packetLen(0x0366, 8) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151021 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151014 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20151001 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150923 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150916 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150909 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150826 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150805 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150715 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150708 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150701 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150617 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150603 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150527 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150520 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150422 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150415 +packetLen(0x0366, 5) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150311 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150217 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150211 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150204 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150128 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20150107 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20150909 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150902 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150408 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150401 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150325 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150318 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20150107 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20151230 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20151209 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20151202 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20151125 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20151021 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20151014 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20151001 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150916 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150909 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150902 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150826 +packetLen(0x0368, 8) // CZ_REQNAME2 +#elif PACKETVER >= 20150805 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150729 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150722 +packetLen(0x0368, 26) // CZ_REQNAME2 +#elif PACKETVER >= 20150715 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150708 +packetLen(0x0368, 5) // CZ_REQNAME2 +#elif PACKETVER >= 20150701 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150617 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150603 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150527 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150520 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150415 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150311 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20150217 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150211 +packetLen(0x0368, 5) // CZ_REQNAME2 +#elif PACKETVER >= 20150204 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20150128 +packetLen(0x0368, 8) // CZ_REQNAME2 +#elif PACKETVER >= 20150107 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20151230 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151216 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151209 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151202 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151125 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151118 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151111 +packetLen(0x0369, 8) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151021 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151014 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20151001 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150916 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150909 +packetLen(0x0369, 36) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150826 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150805 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150715 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150708 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150701 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150617 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150603 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150527 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150520 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150422 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150311 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150217 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150211 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150204 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150128 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20150107 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20151230 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20151223 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20151216 +packetLen(0x0436, 12) // CZ_ENTER2 +#elif PACKETVER >= 20151209 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20151202 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20151111 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20151104 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20151021 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20151007 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20151001 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150902 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150826 +packetLen(0x0436, 18) // CZ_ENTER2 +#elif PACKETVER >= 20150805 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150729 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150722 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20150715 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20150708 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20150701 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150624 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150617 +packetLen(0x0436, 19) // CZ_ENTER2 +#elif PACKETVER >= 20150603 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150527 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150429 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150422 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150318 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150311 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20150304 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150225 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20150217 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150211 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150204 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20150121 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20150114 +packetLen(0x0436, 10) // CZ_ENTER2 +#elif PACKETVER >= 20150107 +packetLen(0x0436, 4) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20151230 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151209 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151202 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151125 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151111 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151104 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151021 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151014 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20151001 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150916 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150909 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150826 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150805 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150729 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150722 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150715 +packetLen(0x0437, 10) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150701 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150617 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150610 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150603 +packetLen(0x0437, 8) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150527 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150520 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150422 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150408 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150401 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150311 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150217 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150211 +packetLen(0x0437, 12) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150204 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150128 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20150107 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20151209 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151202 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151125 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151021 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151014 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20151001 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150916 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150909 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150826 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150805 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150729 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150722 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150715 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150708 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150701 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150617 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150610 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150603 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150527 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150520 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150422 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150318 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150311 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150217 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150211 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150204 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150128 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20150107 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20151216 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151209 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151202 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151104 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151021 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151014 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20151001 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150923 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150819 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150805 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150708 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150701 +packetLen(0x07e4, 8) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150624 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150617 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150610 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150603 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150527 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150429 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150422 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150325 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150318 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150225 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150204 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150128 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150121 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20150107 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20151230 +packetLen(0x07ec, 90) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151216 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151209 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151202 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151111 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151104 +packetLen(0x07ec, 26) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151028 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151021 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151014 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20151001 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150902 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150826 +packetLen(0x07ec, 7) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150819 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150805 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150701 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150624 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150617 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150603 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150527 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150429 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150422 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150225 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150217 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150211 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150204 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150121 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20150107 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20151230 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151223 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151209 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151202 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151125 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151118 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151111 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151104 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151028 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151014 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20151001 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150909 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150902 +packetLen(0x0802, 36) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150819 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150805 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150708 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150701 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150624 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150603 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150527 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150429 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150422 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150401 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150325 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150318 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150311 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150304 +packetLen(0x0802, 4) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150225 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150217 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150211 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150204 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150121 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20150107 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20151230 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151216 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151209 +packetLen(0x0811, 6) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151202 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151125 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151111 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151104 +packetLen(0x0811, 18) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151021 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151014 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151007 +packetLen(0x0811, 26) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20151001 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150916 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150909 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150826 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150805 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150715 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150708 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150701 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150624 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150617 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150610 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150603 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150527 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150520 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150422 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150325 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150318 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150311 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150217 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150211 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150204 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150128 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20150107 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20151230 +packetLen(0x0815, 19) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151223 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151209 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151202 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151125 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151118 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151111 +packetLen(0x0815, 26) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151021 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151014 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20151001 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150916 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150909 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150826 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150805 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150715 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150708 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150701 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150617 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150603 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150527 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150520 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150422 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150318 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150311 +packetLen(0x0815, 19) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150217 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150211 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150204 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150128 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20150107 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20151021 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20151014 +packetLen(0x0817, 26) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20151001 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150923 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150729 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150722 +packetLen(0x0817, 19) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150520 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150513 +packetLen(0x0817, 5) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150507 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150422 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150415 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150304 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150225 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150217 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150211 +packetLen(0x0817, 10) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20150107 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20151230 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151209 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151202 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151125 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151021 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151014 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20151001 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150916 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150909 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150902 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150826 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150805 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150715 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150708 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150701 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150617 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150610 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150603 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150527 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150520 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150422 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150415 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150408 +packetLen(0x0819, 8) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150401 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150325 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150311 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150304 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150225 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150217 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150211 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150204 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150128 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20150107 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20150923 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150916 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150722 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150715 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150617 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150610 +packetLen(0x0835, 8) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150422 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150415 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150217 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150211 +packetLen(0x0835, 8) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20150107 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20151230 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151209 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151202 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151125 +packetLen(0x0838, 18) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151021 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151014 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20151001 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150916 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150909 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150826 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150805 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150715 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150708 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150701 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150617 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150603 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150527 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150520 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150422 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150318 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150311 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150217 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150211 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150204 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150128 +packetLen(0x0838, 7) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20150107 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20151230 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151209 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151202 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151125 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151021 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151014 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20151001 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150916 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150909 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150902 +packetLen(0x083c, -1) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150819 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150805 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150722 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150715 +packetLen(0x083c, 7) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150708 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150701 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150617 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150603 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150527 +packetLen(0x083c, 36) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150520 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150422 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150408 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150401 +packetLen(0x083c, -1) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150311 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150217 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150211 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150204 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150128 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150121 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150114 +packetLen(0x083c, 19) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20150107 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20151021 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151014 +packetLen(0x085a, 10) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150513 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150507 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150415 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150408 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150204 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150128 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150107 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20151230 +packetLen(0x085b, -1) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151223 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151216 +packetLen(0x085b, 6) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151209 +packetLen(0x085b, 36) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150909 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150902 +packetLen(0x085b, 7) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150805 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150729 +packetLen(0x085b, 8) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150225 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150217 +packetLen(0x085b, 36) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150107 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20151021 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151014 +packetLen(0x085c, 7) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151001 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150923 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150722 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150715 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150415 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150408 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150107 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20151216 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151209 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151118 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151111 +packetLen(0x085d, -1) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151001 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150923 +packetLen(0x085d, 26) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150909 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150902 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150826 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150819 +packetLen(0x085d, 8) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150401 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150325 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150107 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20151216 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20151209 +packetLen(0x085e, -1) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20151202 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20151125 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150923 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150916 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150715 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150708 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150527 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150520 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150422 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150415 +packetLen(0x085e, 4) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150408 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150401 +packetLen(0x085e, 12) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150107 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20151202 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20151125 +packetLen(0x085f, 8) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150107 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20151104 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20151028 +packetLen(0x0860, 36) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20151021 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20151014 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150805 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150729 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150610 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150603 +packetLen(0x0860, 90) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150107 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20151230 +packetLen(0x0861, 26) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151216 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151209 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150916 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150909 +packetLen(0x0861, 4) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150902 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150826 +packetLen(0x0861, 8) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150107 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20151118 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20151111 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20151014 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20151007 +packetLen(0x0862, 4) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150826 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150819 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150325 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150318 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150311 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150304 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150217 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150211 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150107 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20151021 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151014 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150909 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150902 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150422 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150415 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150325 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150318 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150217 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150211 +packetLen(0x0863, 10) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150107 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20151230 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151223 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151216 +packetLen(0x0864, 8) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151001 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150923 +packetLen(0x0864, 5) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150610 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150603 +packetLen(0x0864, 26) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150520 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150513 +packetLen(0x0864, 8) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150507 +packetLen(0x0864, 26) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150204 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150128 +packetLen(0x0864, 10) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150107 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20151223 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20151216 +packetLen(0x0865, 10) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150902 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150826 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150819 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150527 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150520 +packetLen(0x0865, 19) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150415 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150408 +packetLen(0x0865, 7) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150107 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20151230 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20151223 +packetLen(0x0866, 19) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20151216 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20151209 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20150107 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20151021 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20151014 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150610 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150603 +packetLen(0x0867, 8) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150507 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150429 +packetLen(0x0867, 36) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150422 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150415 +packetLen(0x0867, 26) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150304 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150225 +packetLen(0x0867, 18) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150107 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20150527 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150520 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150422 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150415 +packetLen(0x0868, 10) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150408 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150121 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150114 +packetLen(0x0868, 26) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150107 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20151230 +packetLen(0x0869, 5) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150923 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150916 +packetLen(0x0869, 7) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150729 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150722 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150624 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150617 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150422 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150415 +packetLen(0x0869, 5) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150107 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20151223 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20151216 +packetLen(0x086a, 8) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20151028 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20151021 +packetLen(0x086a, 26) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150624 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150617 +packetLen(0x086a, 18) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150610 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150603 +packetLen(0x086a, 8) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150507 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150429 +packetLen(0x086a, 19) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150318 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150311 +packetLen(0x086a, 6) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150107 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20151125 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20151118 +packetLen(0x086b, 8) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150902 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150826 +packetLen(0x086b, 10) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150624 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150617 +packetLen(0x086b, 5) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150415 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150408 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150107 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20150805 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150729 +packetLen(0x086c, 8) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150422 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150415 +packetLen(0x086c, 7) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150318 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150311 +packetLen(0x086c, 36) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150107 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20150805 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150729 +packetLen(0x086d, 18) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150708 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150701 +packetLen(0x086d, -1) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150311 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150304 +packetLen(0x086d, -1) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150204 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150128 +packetLen(0x086d, 8) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150107 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20151230 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20151223 +packetLen(0x086e, 10) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20151216 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150805 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150729 +packetLen(0x086e, 5) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150415 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150408 +packetLen(0x086e, 10) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150107 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20151001 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150923 +packetLen(0x086f, 10) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150909 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150902 +packetLen(0x086f, 10) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150805 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150729 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150722 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150715 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150408 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150401 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150325 +packetLen(0x086f, -1) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150107 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20151223 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151216 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151209 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151202 +packetLen(0x0870, 36) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151001 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150923 +packetLen(0x0870, 5) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150902 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150826 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150805 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150729 +packetLen(0x0870, 6) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150701 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150624 +packetLen(0x0870, 36) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150610 +packetLen(0x0870, 26) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150217 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150211 +packetLen(0x0870, 6) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150204 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150128 +packetLen(0x0870, 5) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150107 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20151118 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20151111 +packetLen(0x0871, 26) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150916 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150909 +packetLen(0x0871, -1) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150826 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150819 +packetLen(0x0871, 18) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150107 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20151230 +packetLen(0x0872, 2) +#elif PACKETVER >= 20151223 +packetLen(0x0872, 18) +#elif PACKETVER >= 20151021 +packetLen(0x0872, 2) +#elif PACKETVER >= 20151014 +packetLen(0x0872, 5) +#elif PACKETVER >= 20150715 +packetLen(0x0872, 2) +#elif PACKETVER >= 20150708 +packetLen(0x0872, 6) +#elif PACKETVER >= 20150617 +packetLen(0x0872, 2) +#elif PACKETVER >= 20150610 +packetLen(0x0872, 6) +#elif PACKETVER >= 20150107 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20150923 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150916 +packetLen(0x0873, 90) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150722 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150715 +packetLen(0x0873, 6) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150610 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150603 +packetLen(0x0873, 7) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150325 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150318 +packetLen(0x0873, 36) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150217 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150211 +packetLen(0x0873, 5) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150107 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20151223 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20151216 +packetLen(0x0874, 90) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20151021 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20151014 +packetLen(0x0874, 10) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150204 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150128 +packetLen(0x0874, 6) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150107 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20151230 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151223 +packetLen(0x0875, 10) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150408 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150401 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150204 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150128 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150107 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20151230 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20151223 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150204 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150128 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150107 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20150923 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150916 +packetLen(0x0877, 5) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150617 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150610 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150603 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150107 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20150729 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150722 +packetLen(0x0878, 10) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150415 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150408 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150107 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20151001 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150923 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150722 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150715 +packetLen(0x0879, 19) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150520 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150513 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150311 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150304 +packetLen(0x0879, 5) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150107 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20151216 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20151209 +packetLen(0x087a, 12) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150624 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150617 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150107 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20150916 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150909 +packetLen(0x087b, 18) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150902 +packetLen(0x087b, 5) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150826 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150729 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150722 +packetLen(0x087b, 18) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150318 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150311 +packetLen(0x087b, 18) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150217 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150211 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150107 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20150722 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150715 +packetLen(0x087c, 6) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150401 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150325 +packetLen(0x087c, 8) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150128 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150121 +packetLen(0x087c, 4) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150114 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150107 +packetLen(0x087c, 26) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20150729 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150722 +packetLen(0x087d, 5) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150708 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150701 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150527 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150520 +packetLen(0x087d, 12) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150204 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150128 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150107 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20150729 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150722 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150708 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150701 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150617 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150610 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150415 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150408 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150401 +packetLen(0x087e, 8) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150325 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150311 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150304 +packetLen(0x087e, 19) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150107 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20151216 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20151209 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150923 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150916 +packetLen(0x087f, 12) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150909 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150902 +packetLen(0x087f, 4) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150819 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150812 +packetLen(0x087f, 36) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150715 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150708 +packetLen(0x087f, 4) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150415 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150408 +packetLen(0x087f, 90) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150217 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150211 +packetLen(0x087f, 36) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150107 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20150805 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150729 +packetLen(0x0880, 12) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150722 +packetLen(0x0880, 6) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150527 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150520 +packetLen(0x0880, 26) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150422 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150415 +packetLen(0x0880, 8) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150107 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20151230 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20151223 +packetLen(0x0881, 7) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20151021 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20151014 +packetLen(0x0881, 8) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150923 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150916 +packetLen(0x0881, -1) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150805 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150729 +packetLen(0x0881, 7) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150610 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150603 +packetLen(0x0881, 6) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150107 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20150527 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150520 +packetLen(0x0882, -1) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150217 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150211 +packetLen(0x0882, -1) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150107 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20151202 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20151125 +packetLen(0x0883, 5) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20151021 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20151014 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150916 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150909 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150708 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150701 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150520 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150513 +packetLen(0x0883, 18) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150401 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150325 +packetLen(0x0883, 12) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150318 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150311 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150217 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150211 +packetLen(0x0883, 8) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150107 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20151230 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151223 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151202 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151125 +packetLen(0x0884, 36) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151021 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20151014 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150729 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150722 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150715 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150708 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150617 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150610 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150603 +packetLen(0x0884, 4) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20150107 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20151223 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151216 +packetLen(0x0885, 36) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151202 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151125 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151118 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20151111 +packetLen(0x0885, 7) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150617 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150610 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150520 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150513 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150401 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150325 +packetLen(0x0885, 10) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150304 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150225 +packetLen(0x0885, 4) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150217 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150211 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20150107 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20151230 +packetLen(0x0886, 10) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151223 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151111 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151104 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20151001 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150923 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150916 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150909 +packetLen(0x0886, 19) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150902 +packetLen(0x0886, 12) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150805 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150729 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150722 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150715 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150624 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150617 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150507 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150429 +packetLen(0x0886, 26) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150318 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150311 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150217 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150211 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20150107 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20151111 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20151104 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150909 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150902 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150513 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150507 +packetLen(0x0887, 8) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20150107 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20150826 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150819 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150617 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150610 +packetLen(0x0888, 19) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150415 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150408 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150204 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150128 +packetLen(0x0888, -1) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20150107 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20151021 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20151014 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150513 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150507 +packetLen(0x0889, 18) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150415 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150408 +packetLen(0x0889, 36) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150325 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150318 +packetLen(0x0889, 7) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20150107 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20150812 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150805 +packetLen(0x088a, 36) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20150107 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20151223 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151216 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151125 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151118 +packetLen(0x088b, 36) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151111 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20151104 +packetLen(0x088b, 8) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150902 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150826 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150610 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150603 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150128 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150121 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20150107 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20151202 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20151125 +packetLen(0x088c, 6) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150617 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150610 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150527 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150520 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150408 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150401 +packetLen(0x088c, 6) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150325 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150318 +packetLen(0x088c, 12) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20150107 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20151230 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151223 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151202 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151125 +packetLen(0x088d, 19) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151111 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20151104 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150909 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150902 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150826 +packetLen(0x088d, 26) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150729 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150722 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150617 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150610 +packetLen(0x088d, 18) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20150107 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20151230 +packetLen(0x088e, 26) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151216 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151209 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151021 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151014 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20151001 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150923 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150422 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150415 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20150107 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20151216 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20151209 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150916 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150909 +packetLen(0x088f, 26) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150617 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150610 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150507 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150429 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150408 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150401 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20150107 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20151230 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20151223 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20150107 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20151230 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20151223 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150902 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150826 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150422 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150415 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150408 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150401 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150325 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20150107 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20151001 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150923 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150909 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150902 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150311 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150304 +packetLen(0x0892, 36) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20150107 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20150708 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150701 +packetLen(0x0893, 4) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150401 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150325 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20150107 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20151216 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20151209 +packetLen(0x0894, 10) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150624 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150617 +packetLen(0x0894, 4) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150507 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150429 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20150107 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20151001 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150923 +packetLen(0x0895, 4) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150916 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150909 +packetLen(0x0895, 26) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150722 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150715 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150408 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150401 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150114 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20150107 +packetLen(0x0895, 36) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20150722 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150715 +packetLen(0x0896, 90) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150318 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150311 +packetLen(0x0896, 7) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150304 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150225 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20150107 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20151230 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150909 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150902 +packetLen(0x0897, 8) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150722 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150715 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150617 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150610 +packetLen(0x0897, 26) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150603 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150401 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150325 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20150107 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20151230 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20151223 +packetLen(0x0898, 90) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150422 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150415 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150408 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150401 +packetLen(0x0898, 5) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20150107 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20151202 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20151125 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150909 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150902 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150729 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150722 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150507 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150429 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150401 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150325 +packetLen(0x0899, 18) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150121 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150114 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20150107 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20151021 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20151014 +packetLen(0x089a, 4) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150805 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150729 +packetLen(0x089a, 10) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150722 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150715 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150610 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150603 +packetLen(0x089a, 12) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150311 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150304 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150204 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150128 +packetLen(0x089a, 18) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20150107 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20151001 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150923 +packetLen(0x089b, 10) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150916 +packetLen(0x089b, 18) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150805 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150729 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150304 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150225 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20150107 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20151202 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20151125 +packetLen(0x089c, 7) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20151118 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20151111 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150923 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150916 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150527 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150520 +packetLen(0x089c, 36) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150415 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150408 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150401 +packetLen(0x089c, 36) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150325 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150318 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150304 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150225 +packetLen(0x089c, 8) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150217 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150211 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20150107 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20151223 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20151216 +packetLen(0x089d, 7) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150715 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150708 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150610 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150603 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150128 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150121 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20150107 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20151223 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20151216 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150923 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150916 +packetLen(0x089e, 26) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150610 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150603 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150527 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150520 +packetLen(0x089e, 6) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150128 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150121 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20150107 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20151202 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151125 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151021 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151014 +packetLen(0x089f, 5) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20151001 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150923 +packetLen(0x089f, 8) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150507 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150429 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20150107 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20151001 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150923 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150902 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150826 +packetLen(0x08a0, 12) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150708 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150701 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150617 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150610 +packetLen(0x08a0, 36) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150422 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150415 +packetLen(0x08a0, -1) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150217 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150211 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20150107 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20151216 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20151209 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150902 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150826 +packetLen(0x08a1, 8) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150610 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150603 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150401 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150325 +packetLen(0x08a1, 7) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150318 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150311 +packetLen(0x08a1, 10) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20150107 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20151223 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20151216 +packetLen(0x08a2, 5) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20151001 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150923 +packetLen(0x08a2, 19) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150527 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150520 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150415 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150408 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20150107 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20151111 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20151104 +packetLen(0x08a3, 4) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150805 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150729 +packetLen(0x08a3, 4) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150318 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150311 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20150107 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20150902 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150826 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150805 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150729 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150722 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150715 +packetLen(0x08a4, 4) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150708 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150701 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150415 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150408 +packetLen(0x08a4, 26) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150325 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150318 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150304 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150225 +packetLen(0x08a4, 36) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150217 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150211 +packetLen(0x08a4, 19) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20150107 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20151111 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20151104 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20151001 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150923 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150715 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150708 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150701 +packetLen(0x08a5, 26) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150408 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150401 +packetLen(0x08a5, 8) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150318 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150311 +packetLen(0x08a5, 12) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20150107 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20151001 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150923 +packetLen(0x08a6, 12) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150708 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150701 +packetLen(0x08a6, 10) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150507 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150429 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150318 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150311 +packetLen(0x08a6, 26) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20150107 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20150401 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150325 +packetLen(0x08a7, 90) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20150107 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20150902 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150826 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150729 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150722 +packetLen(0x08a8, 5) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150520 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150513 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150507 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150429 +packetLen(0x08a8, 4) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20150107 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20151223 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20151216 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20151202 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20151125 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150909 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150902 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20150107 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20151230 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20151223 +packetLen(0x08aa, 26) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20151021 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20151014 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150217 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150211 +packetLen(0x08aa, 7) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20150107 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20151125 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20151118 +packetLen(0x08ab, 8) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150204 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150128 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150121 +packetLen(0x08ab, 36) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20150107 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20151223 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20151216 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150923 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150916 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150805 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150729 +packetLen(0x08ac, 26) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150722 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150715 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150617 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150610 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20150107 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20151202 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20151125 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150805 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150729 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150715 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150708 +packetLen(0x08ad, 36) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150701 +packetLen(0x08ad, 10) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150610 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150603 +packetLen(0x08ad, 19) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150527 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150520 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150507 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150429 +packetLen(0x08ad, 18) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20150107 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 149) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20150722 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150715 +packetLen(0x0917, 12) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150107 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20150128 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150121 +packetLen(0x0918, 8) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150107 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20150826 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150819 +packetLen(0x0919, 8) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150729 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150722 +packetLen(0x0919, 4) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150708 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150701 +packetLen(0x0919, 36) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150401 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150325 +packetLen(0x0919, 36) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150217 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150211 +packetLen(0x0919, 90) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150128 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150121 +packetLen(0x0919, 6) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150107 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20151230 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20151223 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150107 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20151230 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20151223 +packetLen(0x091b, 26) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150610 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150603 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150415 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150408 +packetLen(0x091b, 4) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150401 +packetLen(0x091b, 26) // ZC_PRNPC_STATE +#elif PACKETVER >= 20150107 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20151021 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20151014 +packetLen(0x091c, 26) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150527 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150520 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150408 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150401 +packetLen(0x091c, 90) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150318 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150311 +packetLen(0x091c, 90) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20150107 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20151230 +packetLen(0x091d, 8) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151223 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151216 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151028 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151021 +packetLen(0x091d, 5) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151014 +packetLen(0x091d, 36) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150527 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150520 +packetLen(0x091d, 7) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150325 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150318 +packetLen(0x091d, 8) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150128 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150121 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150107 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20151001 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150923 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150826 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150819 +packetLen(0x091e, 36) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150415 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150408 +packetLen(0x091e, -1) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150107 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20150715 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150708 +packetLen(0x091f, 18) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150204 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150128 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150107 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20151230 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151223 +packetLen(0x0920, 5) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151216 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151209 +packetLen(0x0920, -1) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151202 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151125 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150923 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150916 +packetLen(0x0920, -1) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150325 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150318 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150217 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150211 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150107 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20151125 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20151118 +packetLen(0x0921, 26) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150729 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150722 +packetLen(0x0921, 8) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150107 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20150610 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150603 +packetLen(0x0922, 36) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150422 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150415 +packetLen(0x0922, 8) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150408 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150401 +packetLen(0x0922, -1) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150107 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20151230 +packetLen(0x0923, 36) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20151223 +packetLen(0x0923, 5) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150909 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150902 +packetLen(0x0923, 26) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150708 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150701 +packetLen(0x0923, 8) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150520 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150513 +packetLen(0x0923, 36) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150107 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20151230 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20151223 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150923 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150916 +packetLen(0x0924, 26) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150902 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150826 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150527 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150520 +packetLen(0x0924, 8) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150513 +packetLen(0x0924, 5) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150507 +packetLen(0x0924, 19) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150408 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150401 +packetLen(0x0924, 18) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150107 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20151125 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20151118 +packetLen(0x0925, 19) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150729 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150722 +packetLen(0x0925, -1) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150617 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150610 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150107 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 + +// Packet: 0x0927 +#if PACKETVER >= 20150826 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150819 +packetLen(0x0927, 19) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150520 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150513 +packetLen(0x0927, 4) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150325 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150318 +packetLen(0x0927, 5) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150204 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150128 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150107 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20151111 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20151104 +packetLen(0x0928, 5) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150916 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150909 +packetLen(0x0928, 8) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150902 +packetLen(0x0928, 6) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150708 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150701 +packetLen(0x0928, 8) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150325 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150318 +packetLen(0x0928, 6) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150311 +packetLen(0x0928, 5) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150107 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20150507 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150429 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150204 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150128 +packetLen(0x0929, 36) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150107 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20151202 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20151125 +packetLen(0x092a, 10) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150909 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150902 +packetLen(0x092a, 5) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150715 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150708 +packetLen(0x092a, 8) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150415 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150408 +packetLen(0x092a, 8) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150318 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150311 +packetLen(0x092a, 8) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150107 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20151001 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150923 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150805 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150729 +packetLen(0x092b, 90) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150617 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150610 +packetLen(0x092b, -1) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150527 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150520 +packetLen(0x092b, 5) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150107 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20150708 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150701 +packetLen(0x092c, 5) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150617 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150610 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150401 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150325 +packetLen(0x092c, 6) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150107 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20151216 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20151209 +packetLen(0x092d, 8) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150909 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150902 +packetLen(0x092d, 26) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150610 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150603 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150114 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150107 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20151202 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20151125 +packetLen(0x092e, 10) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20151118 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150902 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150826 +packetLen(0x092e, 90) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150729 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150722 +packetLen(0x092e, 26) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150617 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150610 +packetLen(0x092e, 4) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150513 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150507 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150422 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150415 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150318 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150311 +packetLen(0x092e, 8) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150107 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20151125 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20151118 +packetLen(0x092f, 8) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150923 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150916 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150805 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150729 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150107 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20151216 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20151209 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20151021 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20151014 +packetLen(0x0930, 90) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20151001 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20150923 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20150107 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20150527 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150520 +packetLen(0x0931, 90) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150401 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150325 +packetLen(0x0931, -1) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150107 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20151216 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20151209 +packetLen(0x0932, -1) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150401 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150325 +packetLen(0x0932, 5) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150107 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 + +// Packet: 0x0934 +#if PACKETVER >= 20151021 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20151014 +packetLen(0x0934, -1) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150923 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150916 +packetLen(0x0934, 8) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150107 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 + +// Packet: 0x0936 +#if PACKETVER >= 20151001 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150923 +packetLen(0x0936, 90) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150916 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150527 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150520 +packetLen(0x0936, 10) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150325 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150318 +packetLen(0x0936, 10) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150107 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20150325 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150318 +packetLen(0x0937, 10) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150107 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20150923 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150916 +packetLen(0x0938, 4) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150401 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150325 +packetLen(0x0938, 5) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150318 +packetLen(0x0938, 26) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150204 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150128 +packetLen(0x0938, 4) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150107 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20151202 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20151125 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20151111 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20151104 +packetLen(0x0939, 8) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150408 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150401 +packetLen(0x0939, 19) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150107 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20151230 +packetLen(0x093a, 4) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151111 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151104 +packetLen(0x093a, -1) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150805 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150729 +packetLen(0x093a, 6) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150408 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150401 +packetLen(0x093a, 10) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150325 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150318 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150311 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150304 +packetLen(0x093a, 18) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150204 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150128 +packetLen(0x093a, 10) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150107 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20151216 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20151209 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20151001 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150923 +packetLen(0x093b, 26) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150902 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150826 +packetLen(0x093b, 6) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150513 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150507 +packetLen(0x093b, 5) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150408 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150401 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150318 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150311 +packetLen(0x093b, 26) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150107 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20151125 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20151118 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150729 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150722 +packetLen(0x093c, -1) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150715 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150708 +packetLen(0x093c, 26) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150422 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150415 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150325 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150318 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150107 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20150729 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150722 +packetLen(0x093d, 12) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150527 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150520 +packetLen(0x093d, 26) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150507 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150429 +packetLen(0x093d, 26) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150107 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20151202 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20151125 +packetLen(0x093e, 12) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150923 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150916 +packetLen(0x093e, 10) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150722 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150715 +packetLen(0x093e, 5) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150708 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150701 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150617 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150610 +packetLen(0x093e, 7) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150422 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150415 +packetLen(0x093e, 12) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150107 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20151014 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20151007 +packetLen(0x093f, 5) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150805 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150729 +packetLen(0x093f, -1) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150708 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150701 +packetLen(0x093f, 12) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150610 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150603 +packetLen(0x093f, 18) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150107 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20151111 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151104 +packetLen(0x0940, 36) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151028 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151021 +packetLen(0x0940, 26) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150916 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150909 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150826 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150819 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150805 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150729 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150701 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150624 +packetLen(0x0940, 8) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150617 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150610 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150603 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150527 +packetLen(0x0940, 12) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150520 +packetLen(0x0940, 8) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150401 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150325 +packetLen(0x0940, 26) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150304 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150225 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150107 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20150923 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150916 +packetLen(0x0941, 36) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150902 +packetLen(0x0941, 5) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150701 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150624 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150513 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150507 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150422 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150415 +packetLen(0x0941, 19) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20150107 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20151118 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20151111 +packetLen(0x0942, 18) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150923 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150916 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150513 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150507 +packetLen(0x0942, 4) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20150107 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20151125 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20151118 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150507 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150429 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150318 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150311 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150114 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20150107 +packetLen(0x0943, 5) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20151223 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20151216 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20151021 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20151014 +packetLen(0x0944, 12) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150722 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150715 +packetLen(0x0944, 26) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150217 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150211 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150204 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150128 +packetLen(0x0944, 19) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20150107 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20150902 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20150826 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20150527 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20150520 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20150107 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20151125 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20151118 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150708 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150701 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150617 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150610 +packetLen(0x0946, 90) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150408 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150401 +packetLen(0x0946, 4) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150318 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150311 +packetLen(0x0946, 4) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150304 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150225 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150121 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150114 +packetLen(0x0946, 36) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20150107 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20151223 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20151216 +packetLen(0x0947, 19) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150909 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150902 +packetLen(0x0947, 90) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150311 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150304 +packetLen(0x0947, 8) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150114 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20150107 +packetLen(0x0947, 19) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20151216 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20151209 +packetLen(0x0948, 19) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150923 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150916 +packetLen(0x0948, -1) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150304 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150225 +packetLen(0x0948, 6) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20150107 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20151230 +packetLen(0x0949, 5) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20151223 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20151216 +packetLen(0x0949, -1) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150617 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150610 +packetLen(0x0949, 10) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150408 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150401 +packetLen(0x0949, 6) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20150107 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20151216 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151209 +packetLen(0x094a, 18) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151118 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20151111 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150520 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150513 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150401 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150325 +packetLen(0x094a, 19) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20150107 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20150408 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150401 +packetLen(0x094b, 10) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20150107 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20150729 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150722 +packetLen(0x094c, 10) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150325 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150318 +packetLen(0x094c, 5) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20150107 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20150422 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150415 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20150107 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20151230 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150708 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150701 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150624 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150617 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150527 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150520 +packetLen(0x094e, 10) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150204 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150128 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20150107 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20150923 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150916 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150909 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150902 +packetLen(0x094f, 6) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150826 +packetLen(0x094f, 5) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150805 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150729 +packetLen(0x094f, 19) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150722 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150415 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150408 +packetLen(0x094f, 18) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150304 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150225 +packetLen(0x094f, 5) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20150107 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20150722 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20150715 +packetLen(0x0950, 6) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20150401 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20150325 +packetLen(0x0950, -1) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20150107 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20151202 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20151125 +packetLen(0x0951, 5) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20151001 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150923 +packetLen(0x0951, 7) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150902 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150826 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150729 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150722 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150325 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150318 +packetLen(0x0951, 6) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150217 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150211 +packetLen(0x0951, -1) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20150107 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20150304 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150225 +packetLen(0x0952, 8) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150204 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150128 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20150107 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20150909 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150902 +packetLen(0x0953, -1) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150513 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150507 +packetLen(0x0953, 36) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150422 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150415 +packetLen(0x0953, -1) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150408 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150401 +packetLen(0x0953, 26) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20150107 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20151223 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20151216 +packetLen(0x0954, -1) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150708 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150701 +packetLen(0x0954, 5) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150401 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150325 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20150107 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20150805 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150729 +packetLen(0x0955, -1) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150610 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150603 +packetLen(0x0955, 5) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150513 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150507 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150429 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150422 +packetLen(0x0955, 36) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150415 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150408 +packetLen(0x0955, 6) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150304 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150225 +packetLen(0x0955, 5) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150128 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150121 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150114 +packetLen(0x0955, 4) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20150107 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20151216 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151209 +packetLen(0x0956, 90) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151202 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151125 +packetLen(0x0956, 26) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151021 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20151014 +packetLen(0x0956, 6) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150722 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150715 +packetLen(0x0956, 36) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150708 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150701 +packetLen(0x0956, 90) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20150107 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20151202 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20151125 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20151118 +packetLen(0x0957, 4) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150617 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150610 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150415 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150408 +packetLen(0x0957, 19) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150318 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150311 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150217 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150211 +packetLen(0x0957, 26) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150121 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150114 +packetLen(0x0957, 5) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20150107 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20151118 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20151111 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150729 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150722 +packetLen(0x0958, 36) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150708 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150701 +packetLen(0x0958, 7) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150520 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150513 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150507 +packetLen(0x0958, 26) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150318 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150311 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150217 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150211 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20150107 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20151202 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20151125 +packetLen(0x0959, 90) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150902 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150826 +packetLen(0x0959, -1) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150415 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150408 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150325 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150318 +packetLen(0x0959, -1) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150128 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150121 +packetLen(0x0959, 19) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20150107 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20150923 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20150916 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20150107 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20150909 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150902 +packetLen(0x095b, 19) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150715 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150708 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150527 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150520 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150318 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150311 +packetLen(0x095b, -1) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20150107 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20151216 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20151209 +packetLen(0x095c, 4) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20151125 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20151118 +packetLen(0x095c, 18) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150422 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150415 +packetLen(0x095c, 26) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20150107 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20150617 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20150610 +packetLen(0x095d, 12) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20150311 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20150304 +packetLen(0x095d, 8) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20150107 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20151230 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20151223 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20151021 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20151014 +packetLen(0x095e, 8) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150916 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150909 +packetLen(0x095e, 6) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150805 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150729 +packetLen(0x095e, -1) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150415 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150408 +packetLen(0x095e, 12) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20150107 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20151014 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20151007 +packetLen(0x095f, 5) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150708 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150701 +packetLen(0x095f, 26) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150408 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150401 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20150107 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20151007 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20151001 +packetLen(0x0960, 36) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150923 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150916 +packetLen(0x0960, 5) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150708 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150701 +packetLen(0x0960, 18) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150610 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150603 +packetLen(0x0960, 10) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150527 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150520 +packetLen(0x0960, 4) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150513 +packetLen(0x0960, -1) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150422 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150415 +packetLen(0x0960, 36) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150325 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150318 +packetLen(0x0960, 18) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150311 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150304 +packetLen(0x0960, 26) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20150107 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20151216 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151209 +packetLen(0x0961, 7) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151021 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151014 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151007 +packetLen(0x0961, 19) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20151001 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150916 +packetLen(0x0961, -1) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150826 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150819 +packetLen(0x0961, 26) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150805 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150729 +packetLen(0x0961, 36) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150722 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150715 +packetLen(0x0961, 8) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150527 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150520 +packetLen(0x0961, 8) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150422 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150415 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150311 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150304 +packetLen(0x0961, 5) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20150107 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20150916 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150909 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150715 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150708 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20150107 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20150318 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150311 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150204 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150128 +packetLen(0x0963, 26) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150121 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20150107 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20151216 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151209 +packetLen(0x0964, 26) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151111 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151104 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151021 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20151014 +packetLen(0x0964, 19) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150902 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150826 +packetLen(0x0964, 19) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150617 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150610 +packetLen(0x0964, 5) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150408 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150401 +packetLen(0x0964, 5) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150318 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150311 +packetLen(0x0964, 8) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20150107 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20151230 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20151223 +packetLen(0x0965, 36) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150722 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150715 +packetLen(0x0965, 18) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20150107 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20151223 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20151216 +packetLen(0x0966, 6) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20151118 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20151111 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150701 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150624 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150211 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150204 +packetLen(0x0966, 36) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20150107 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20151230 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151223 +packetLen(0x0967, 12) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151118 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151111 +packetLen(0x0967, 19) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151014 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20151007 +packetLen(0x0967, 36) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150826 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150819 +packetLen(0x0967, 5) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150128 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150121 +packetLen(0x0967, 26) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20150107 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20151223 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20151216 +packetLen(0x0968, 10) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150902 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150826 +packetLen(0x0968, 4) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150708 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150701 +packetLen(0x0968, 5) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150204 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150128 +packetLen(0x0968, 6) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20150107 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20151118 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20151111 +packetLen(0x0969, 36) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150923 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150916 +packetLen(0x0969, 19) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150902 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150826 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150610 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150603 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150401 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150325 +packetLen(0x0969, 8) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20150107 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20151230 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151209 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151202 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151125 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151111 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151104 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151021 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151014 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20151001 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150916 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150909 +packetLen(0x096a, 5) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150826 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150805 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150715 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150708 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150701 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150617 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150610 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150603 +packetLen(0x096a, 5) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150527 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150520 +packetLen(0x096a, 18) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150422 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150311 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150304 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150225 +packetLen(0x096a, 19) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150217 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150211 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150204 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150128 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20150107 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 10) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ae +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING + +// Packet: 0x09b3 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c4 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 + +// Packet: 0x0a0a +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 + +// Packet: 0x0a0b +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 + +// Packet: 0x0a0c +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +packetLen(0x0a37, 57) // ZC_ITEM_PICKUP_ACK_V7 + +// Packet: 0x0a38 +#if PACKETVER >= 20150128 +packetLen(0x0a38, 3) // ZC_OPEN_UI +#endif + +// Packet: 0x0a39 +#if PACKETVER >= 20150415 +packetLen(0x0a39, 36) // CH_MAKE_CHAR +#elif PACKETVER >= 20150211 +packetLen(0x0a39, 35) // CH_MAKE_CHAR +#endif + +// Packet: 0x0a3a +#if PACKETVER >= 20150311 +packetLen(0x0a3a, 12) +#endif + +// Packet: 0x0a3b +#if PACKETVER >= 20150422 +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT +#endif + +// Packet: 0x0a3c +#if PACKETVER >= 20150520 +packetLen(0x0a3c, -1) +#endif + +// Packet: 0x0a3d +#if PACKETVER >= 20150520 +packetLen(0x0a3d, 18) +#endif + +// Packet: 0x0a3e +#if PACKETVER >= 20150603 +packetLen(0x0a3e, -1) +#endif + +// Packet: 0x0a3f +#if PACKETVER >= 20150624 +packetLen(0x0a3f, 9) +#endif + +// Packet: 0x0a40 +#if PACKETVER >= 20150812 +packetLen(0x0a40, 11) +#endif + +// Packet: 0x0a41 +#if PACKETVER >= 20150909 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL +#endif + +// Packet: 0x0a42 +#if PACKETVER >= 20150916 +packetLen(0x0a42, 43) +#endif + +// Packet: 0x0a43 +#if PACKETVER >= 20151007 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0a44 +#if PACKETVER >= 20151007 +packetLen(0x0a44, -1) // ZC_GROUP_LIST +#endif + +// Packet: 0x0a45 +#if PACKETVER >= 20151125 +// removed +#elif PACKETVER >= 20151104 +packetLen(0x0a45, 2) +#elif PACKETVER >= 20151028 +packetLen(0x0a45, -1) +#endif + +// Packet: 0x0a46 +#if PACKETVER >= 20151104 +packetLen(0x0a46, 14) +#endif + +// Packet: 0x0a47 +#if PACKETVER >= 20151104 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES +#endif + +// Packet: 0x0a48 +#if PACKETVER >= 20151104 +packetLen(0x0a48, 2) +#endif + +// Packet: 0x0a49 +#if PACKETVER >= 20151118 +packetLen(0x0a49, 22) // CZ_PRIVATE_AIRSHIP_REQUEST +#endif + +// Packet: 0x0a4a +#if PACKETVER >= 20151118 +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE +#endif + +// Packet: 0x0a4b +#if PACKETVER >= 20151118 +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE +#endif + +// Packet: 0x0a4c +#if PACKETVER >= 20151118 +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE +#endif + + +#endif /* COMMON_PACKETS2015_LEN_RE_H */ diff --git a/src/common/packets/packets2016_len_main.h b/src/common/packets/packets2016_len_main.h new file mode 100644 index 000000000..09b8e153f --- /dev/null +++ b/src/common/packets/packets2016_len_main.h @@ -0,0 +1,9134 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2016_LEN_MAIN_H +#define COMMON_PACKETS2016_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 149) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20161012 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20161005 +packetLen(0x0202, 90) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160928 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160921 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160913 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160907 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160831 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160824 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160803 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160727 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160706 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160629 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160511 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160427 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160323 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160316 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160224 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160217 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160211 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160203 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160127 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160120 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160106 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20161221 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20161214 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20161026 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20161019 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20160928 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160921 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160913 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160907 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160831 +packetLen(0x022d, 90) // CZ_COMMAND_MER +#elif PACKETVER >= 20160824 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160720 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160713 +packetLen(0x022d, 36) // CZ_COMMAND_MER +#elif PACKETVER >= 20160706 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160629 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20160615 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160608 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20160504 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160427 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160420 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20160323 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160316 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160309 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160302 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20160224 +packetLen(0x022d, 26) // CZ_COMMAND_MER +#elif PACKETVER >= 20160217 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160211 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160203 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160120 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160113 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20160106 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20161214 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20161207 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160928 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160921 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160913 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160907 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160831 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160824 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160803 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160727 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160629 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160622 +packetLen(0x023b, 10) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160504 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160427 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160323 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160316 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160309 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160217 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160211 +packetLen(0x023b, 18) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160127 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160120 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160113 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160106 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20161221 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161214 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161207 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161123 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161026 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161019 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160928 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160921 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160913 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160907 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160831 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160824 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160622 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160615 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160525 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160511 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160504 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160427 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160323 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160316 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160309 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160217 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160211 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160203 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160120 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160106 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20161221 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20161214 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20161116 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20161109 +packetLen(0x02c4, 18) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160615 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160608 +packetLen(0x02c4, 18) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160601 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160427 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160420 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160106 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20161228 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161207 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161130 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161123 +packetLen(0x035f, 18) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161026 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161019 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161005 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160921 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160913 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160907 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160831 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160824 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160706 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160629 +packetLen(0x035f, 4) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160622 +packetLen(0x035f, 8) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160615 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160608 +packetLen(0x035f, 26) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160511 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160504 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160427 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160420 +packetLen(0x035f, 26) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160414 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160406 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160316 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160302 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160224 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160217 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160211 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160203 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160120 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160113 +packetLen(0x035f, 18) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160106 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20161221 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20161214 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20161130 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20161026 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20161019 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160928 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160921 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160913 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160907 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160831 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160824 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160615 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160511 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160504 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160414 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160406 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160316 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160217 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160120 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160113 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160106 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20161214 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161207 +packetLen(0x0361, 19) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161130 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161109 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161102 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161026 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161019 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160928 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160921 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160913 +packetLen(0x0361, 18) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160907 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160831 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160824 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160817 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160810 +packetLen(0x0361, 36) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160629 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160622 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160504 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160427 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160323 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160316 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160309 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160211 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160203 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160127 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160120 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160106 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20161228 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161221 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161207 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161130 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161123 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161116 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161109 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161026 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161012 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160928 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160921 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160913 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160907 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160831 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160824 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160803 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160727 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160720 +packetLen(0x0362, 90) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160713 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160706 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160525 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160511 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160504 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160427 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160420 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160414 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160323 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160316 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160224 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160217 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160211 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160203 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160120 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160106 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20161207 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20161130 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20161102 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20161026 +packetLen(0x0363, 36) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20161019 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160928 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160921 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160913 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160907 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160831 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160824 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160803 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160727 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160720 +packetLen(0x0363, 10) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160713 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160706 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160629 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160622 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160615 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160525 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160511 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160504 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160427 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160420 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160414 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160323 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160316 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160217 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160211 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160203 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160120 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160106 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20161221 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161214 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161207 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161130 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161026 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161019 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161012 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160928 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160921 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160913 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160907 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160831 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160824 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160817 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160810 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160803 +packetLen(0x0364, 19) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160720 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160713 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160622 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160615 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160525 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160511 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160504 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160427 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160414 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160406 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160323 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160316 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160309 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160302 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160224 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160217 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160211 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160203 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160120 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160106 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20161207 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161130 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161116 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161109 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161026 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161019 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161012 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160928 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160921 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160913 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160907 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160831 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160824 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160727 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160720 +packetLen(0x0365, 7) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160525 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160511 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160504 +packetLen(0x0365, 4) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160427 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160406 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160330 +packetLen(0x0365, 36) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160323 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160316 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160224 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160217 +packetLen(0x0365, 12) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160211 +packetLen(0x0365, 36) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160203 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160120 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160106 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20161228 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161221 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161130 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161116 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161109 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161026 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161019 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161005 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160928 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160921 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160913 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160907 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160831 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160824 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160629 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160622 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160608 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160511 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160504 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160414 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160330 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160316 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160302 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160224 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160217 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160120 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160113 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160106 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20161109 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20161102 +packetLen(0x0367, 4) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20160309 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20160302 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20160106 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20161221 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20161130 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20161123 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20161116 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20161026 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20161019 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20161012 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20161005 +packetLen(0x0368, 7) // CZ_REQNAME2 +#elif PACKETVER >= 20160928 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160921 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160913 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160907 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160831 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160824 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160706 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160629 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20160615 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160511 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160504 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160414 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160406 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160309 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160302 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160224 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160217 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160120 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160113 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160106 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20161221 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161214 +packetLen(0x0369, 19) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161207 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161130 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161123 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161116 +packetLen(0x0369, 8) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161026 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161019 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161012 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160928 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160921 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160913 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160907 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160831 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160824 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160622 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160615 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160511 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160504 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160414 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160406 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160316 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160302 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160224 +packetLen(0x0369, 8) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160217 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160120 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160113 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160106 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20161221 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20161214 +packetLen(0x0436, 7) // CZ_ENTER2 +#elif PACKETVER >= 20161109 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20161102 +packetLen(0x0436, 7) // CZ_ENTER2 +#elif PACKETVER >= 20161005 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160928 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20160921 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160913 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160907 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160831 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160824 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160803 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160727 +packetLen(0x0436, 90) // CZ_ENTER2 +#elif PACKETVER >= 20160713 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160706 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20160615 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160608 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20160525 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160518 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160504 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160427 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160323 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160316 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160302 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160224 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20160217 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160211 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160203 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20160120 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160106 +packetLen(0x0436, 2) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20161221 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20161130 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20161123 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20161026 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20161019 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160928 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160921 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160913 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160907 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160831 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160824 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160817 +packetLen(0x0437, 26) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160629 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160622 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160615 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160608 +packetLen(0x0437, 19) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160511 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160504 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160414 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160406 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160316 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160217 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160211 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160203 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160120 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160113 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160106 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20161228 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161221 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161130 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161102 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161026 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161019 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160928 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160921 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160913 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160907 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160831 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160824 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160803 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160727 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160615 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160511 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160504 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160414 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160406 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160316 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160302 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160224 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160217 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160120 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160113 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160106 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20161207 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20161130 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20161026 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20161019 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160928 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160921 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160913 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160907 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160831 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160817 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160727 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160720 +packetLen(0x07e4, 19) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160629 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160622 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160525 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160511 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160504 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160427 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160414 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160406 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160323 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160316 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160217 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160211 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160203 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160120 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160106 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20161207 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20161130 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20161026 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20161019 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20161012 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160928 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160921 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160913 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160907 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160831 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160824 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160803 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160727 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160615 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160608 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160525 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160511 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160504 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160427 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160323 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160316 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160217 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160211 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160203 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160120 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160113 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160106 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20161207 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161130 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161109 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161102 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161026 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161019 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160928 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160921 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160913 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160907 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160831 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160824 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160615 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160608 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160525 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160511 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160504 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160427 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160323 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160316 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160309 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160302 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160217 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160211 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160203 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160120 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160106 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20161221 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20161130 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20161026 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20161019 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20161005 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160928 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160921 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160913 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160907 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160831 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160824 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160817 +packetLen(0x0811, 4) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160608 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160511 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160504 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160414 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160406 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160316 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160302 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160224 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160217 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160211 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160203 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160120 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160113 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160106 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20161221 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20161130 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20161026 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20161019 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160928 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160921 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160913 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160907 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160831 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160824 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160615 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160511 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160504 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160414 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160406 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160316 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160302 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160224 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160217 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160120 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160113 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160106 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20161228 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20161221 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160921 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160913 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160608 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160601 +packetLen(0x0817, 26) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160106 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20161221 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161214 +packetLen(0x0819, 4) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161130 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161026 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161019 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161012 +packetLen(0x0819, 26) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160928 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160921 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160913 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160907 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160831 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160824 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160817 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160810 +packetLen(0x0819, 10) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160727 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160720 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160615 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160511 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160427 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160420 +packetLen(0x0819, 5) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160414 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160406 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160316 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160309 +packetLen(0x0819, 10) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160302 +packetLen(0x0819, 5) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160224 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160217 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160211 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160203 +packetLen(0x0819, 19) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160120 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160113 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160106 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20161123 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20161116 +packetLen(0x0835, 26) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20161109 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160907 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160831 +packetLen(0x0835, 19) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160504 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160427 +packetLen(0x0835, 36) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160211 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160203 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160106 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20161221 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161130 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161109 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161102 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161026 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161019 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161012 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161005 +packetLen(0x0838, 36) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160928 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160921 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160913 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160907 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160831 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160824 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160817 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160810 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160727 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160720 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160713 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160615 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160511 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160504 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160414 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160406 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160316 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160309 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160302 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160224 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160217 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160120 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160113 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160106 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20161221 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161130 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161109 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161102 +packetLen(0x083c, 18) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161026 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161019 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160928 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160921 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160913 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160907 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160831 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160824 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160817 +packetLen(0x083c, -1) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160622 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160615 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160511 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160504 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160414 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160406 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160316 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160309 +packetLen(0x083c, 26) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160302 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160224 +packetLen(0x083c, 8) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160217 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160120 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160113 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160106 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20161228 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161221 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161214 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161102 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161026 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160601 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160525 +packetLen(0x085a, 4) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160414 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160406 +packetLen(0x085a, 18) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160316 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160309 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160106 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20161228 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161221 +packetLen(0x085b, 90) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161019 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161012 +packetLen(0x085b, 4) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160921 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160913 +packetLen(0x085b, 12) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160309 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160302 +packetLen(0x085b, 26) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160120 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160113 +packetLen(0x085b, 5) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160106 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20161130 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161123 +packetLen(0x085c, 90) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160824 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160817 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160706 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160629 +packetLen(0x085c, 90) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160615 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160608 +packetLen(0x085c, 8) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160414 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160406 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160106 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20160817 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160810 +packetLen(0x085d, 12) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160803 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160106 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20161228 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20161116 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20161109 +packetLen(0x085e, 90) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160817 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160810 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160706 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160629 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160601 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160525 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160518 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160511 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160203 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160127 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160106 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20161123 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161116 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161109 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161102 +packetLen(0x085f, 10) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161026 +packetLen(0x085f, 7) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160817 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160810 +packetLen(0x085f, 18) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160713 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160706 +packetLen(0x085f, 26) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160511 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160504 +packetLen(0x085f, 7) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160316 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160309 +packetLen(0x085f, 10) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160106 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20160817 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160810 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160720 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160713 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160706 +packetLen(0x0860, 7) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160629 +packetLen(0x0860, -1) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160106 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20161130 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161123 +packetLen(0x0861, 5) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161102 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161026 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160706 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160629 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160622 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160302 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160224 +packetLen(0x0861, 19) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160113 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160106 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20161221 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20161214 +packetLen(0x0862, 26) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20161102 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20161026 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160420 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160414 +packetLen(0x0862, 19) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160106 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20161019 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20161012 +packetLen(0x0863, 7) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20161005 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160706 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160629 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160608 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160601 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160106 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20161123 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161116 +packetLen(0x0864, 26) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161005 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160928 +packetLen(0x0864, 8) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160427 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160420 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160309 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160302 +packetLen(0x0864, -1) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160224 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160217 +packetLen(0x0864, 8) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160120 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160113 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160106 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20161228 +packetLen(0x0865, 90) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161116 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161109 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160921 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160913 +packetLen(0x0865, 6) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160907 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160831 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160720 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160713 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160629 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160622 +packetLen(0x0865, 4) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160309 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160302 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160127 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160120 +packetLen(0x0865, 36) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160106 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20161228 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161221 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160803 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160727 +packetLen(0x0866, 4) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160622 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160615 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160106 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20161214 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161207 +packetLen(0x0867, 26) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160824 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160817 +packetLen(0x0867, 12) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160706 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160629 +packetLen(0x0867, 36) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160622 +packetLen(0x0867, 8) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160601 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160525 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160406 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160330 +packetLen(0x0867, 26) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160323 +packetLen(0x0867, 8) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160309 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160302 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160106 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20161214 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161207 +packetLen(0x0868, 8) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161019 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161012 +packetLen(0x0868, 6) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160803 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160727 +packetLen(0x0868, 26) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160309 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160302 +packetLen(0x0868, 5) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160106 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20161109 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161102 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160803 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160727 +packetLen(0x0869, 12) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160720 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160706 +packetLen(0x0869, -1) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160414 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160406 +packetLen(0x0869, -1) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160330 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160323 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160106 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20161228 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20161116 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20161109 +packetLen(0x086a, 7) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160601 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160525 +packetLen(0x086a, 19) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160330 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160323 +packetLen(0x086a, 8) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160316 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160309 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160113 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160106 +packetLen(0x086a, 6) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20160824 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160817 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160713 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160706 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160511 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160504 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160302 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160224 +packetLen(0x086b, 8) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160106 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20161228 +packetLen(0x086c, 6) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20161102 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20161026 +packetLen(0x086c, 12) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160525 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160518 +packetLen(0x086c, 5) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160217 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160211 +packetLen(0x086c, 5) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160203 +packetLen(0x086c, 18) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160113 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160106 +packetLen(0x086c, 4) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20161228 +packetLen(0x086d, 19) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161221 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161214 +packetLen(0x086d, 26) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161116 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161109 +packetLen(0x086d, 10) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161019 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161012 +packetLen(0x086d, 19) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161005 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160928 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160727 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160720 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160406 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160330 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160120 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160113 +packetLen(0x086d, 5) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160106 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20161102 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20161026 +packetLen(0x086e, 8) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160106 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20161130 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161116 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161109 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161102 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160817 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160810 +packetLen(0x086f, -1) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160106 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20161228 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161116 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161109 +packetLen(0x0870, 19) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160907 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160831 +packetLen(0x0870, 18) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160622 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160615 +packetLen(0x0870, 4) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160608 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160601 +packetLen(0x0870, 8) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160427 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160420 +packetLen(0x0870, 4) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160224 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160211 +packetLen(0x0870, 26) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160106 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20161228 +packetLen(0x0871, 5) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161130 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161123 +packetLen(0x0871, 4) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160106 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20161019 +packetLen(0x0872, 2) +#elif PACKETVER >= 20161012 +packetLen(0x0872, 12) +#elif PACKETVER >= 20161005 +packetLen(0x0872, 2) +#elif PACKETVER >= 20160928 +packetLen(0x0872, 5) +#elif PACKETVER >= 20160427 +packetLen(0x0872, 2) +#elif PACKETVER >= 20160420 +packetLen(0x0872, 5) +#elif PACKETVER >= 20160330 +packetLen(0x0872, 2) +#elif PACKETVER >= 20160323 +packetLen(0x0872, 36) +#elif PACKETVER >= 20160211 +packetLen(0x0872, 2) +#elif PACKETVER >= 20160203 +packetLen(0x0872, 5) +#elif PACKETVER >= 20160106 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20160316 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160309 +packetLen(0x0873, 8) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160302 +packetLen(0x0873, 12) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160224 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160217 +packetLen(0x0873, 5) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160211 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160203 +packetLen(0x0873, 36) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160120 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160113 +packetLen(0x0873, 4) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160106 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20161109 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20161102 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160921 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160913 +packetLen(0x0874, 6) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160907 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160831 +packetLen(0x0874, 26) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160803 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160727 +packetLen(0x0874, 6) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160525 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160518 +packetLen(0x0874, 19) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160427 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160420 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160106 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20161214 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161207 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161019 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161012 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160921 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160913 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160824 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160817 +packetLen(0x0875, 19) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160810 +packetLen(0x0875, 5) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160106 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20161228 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161221 +packetLen(0x0876, 12) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161116 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161109 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160907 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160831 +packetLen(0x0876, 8) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160106 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20160803 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160727 +packetLen(0x0877, 18) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160720 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160713 +packetLen(0x0877, 10) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160414 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160406 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160106 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20161005 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160928 +packetLen(0x0878, 6) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160907 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160831 +packetLen(0x0878, 7) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160810 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160803 +packetLen(0x0878, 4) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160414 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160406 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160330 +packetLen(0x0878, 8) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160323 +packetLen(0x0878, 19) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160113 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160106 +packetLen(0x0878, 36) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20160921 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160913 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160817 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160810 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160414 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160406 +packetLen(0x0879, -1) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160106 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20161116 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20161109 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20161102 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20161026 +packetLen(0x087a, -1) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160921 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160913 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160817 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160810 +packetLen(0x087a, 5) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160420 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160414 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160309 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160302 +packetLen(0x087a, 10) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160224 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160217 +packetLen(0x087a, 19) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160113 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160106 +packetLen(0x087a, 18) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20160720 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160713 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160106 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20161102 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20161026 +packetLen(0x087c, 4) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160907 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160831 +packetLen(0x087c, 6) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160316 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160309 +packetLen(0x087c, 19) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160106 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20160622 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160615 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160608 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160601 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160309 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160302 +packetLen(0x087d, 26) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160106 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20161214 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20161207 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160622 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160615 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160316 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160309 +packetLen(0x087e, 90) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160106 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20161228 +packetLen(0x087f, 12) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161130 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161123 +packetLen(0x087f, 26) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161102 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161026 +packetLen(0x087f, 10) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161005 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160928 +packetLen(0x087f, 12) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160824 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160817 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160810 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160803 +packetLen(0x087f, 5) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160727 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160720 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160622 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160615 +packetLen(0x087f, 90) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160406 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160330 +packetLen(0x087f, 8) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160113 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160106 +packetLen(0x087f, 19) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20161130 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161123 +packetLen(0x0880, 36) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161019 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161012 +packetLen(0x0880, 10) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160629 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160622 +packetLen(0x0880, -1) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160420 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160414 +packetLen(0x0880, 18) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160106 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20161228 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20161221 +packetLen(0x0881, 6) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20161116 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20161109 +packetLen(0x0881, 8) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160810 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160803 +packetLen(0x0881, 18) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160706 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160629 +packetLen(0x0881, 19) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160106 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20161130 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20161123 +packetLen(0x0882, -1) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160106 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20160803 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160727 +packetLen(0x0883, 7) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160720 +packetLen(0x0883, 10) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160713 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160330 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160323 +packetLen(0x0883, 26) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160309 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160302 +packetLen(0x0883, 10) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160106 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20161228 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161221 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160713 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160706 +packetLen(0x0884, 26) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160622 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160615 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160511 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160504 +packetLen(0x0884, 10) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160427 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160420 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160414 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160406 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160302 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160224 +packetLen(0x0884, 7) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160106 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20161228 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161221 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161123 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161116 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160817 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160810 +packetLen(0x0885, 19) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160706 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160629 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160615 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160608 +packetLen(0x0885, 90) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160420 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160414 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160302 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160224 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160113 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160106 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20161228 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161214 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161207 +packetLen(0x0886, 7) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161109 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161102 +packetLen(0x0886, 90) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161026 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161012 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161005 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160824 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160817 +packetLen(0x0886, 7) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160810 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160803 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160713 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160706 +packetLen(0x0886, 4) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160511 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160504 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160217 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160211 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160106 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20161221 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20161214 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160921 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160913 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160810 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160803 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160727 +packetLen(0x0887, 19) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160720 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160622 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160615 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160511 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160504 +packetLen(0x0887, 26) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160106 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20160817 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160810 +packetLen(0x0888, 26) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160803 +packetLen(0x0888, 90) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160622 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160615 +packetLen(0x0888, 10) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160427 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160420 +packetLen(0x0888, 19) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160302 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160224 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160217 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160120 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160113 +packetLen(0x0888, 90) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160106 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20161228 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161026 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161019 +packetLen(0x0889, 36) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161005 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160928 +packetLen(0x0889, 19) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160921 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160913 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160713 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160706 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160615 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160608 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160406 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160330 +packetLen(0x0889, 90) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160113 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160106 +packetLen(0x0889, 5) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20160622 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160615 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160511 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160504 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160113 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160106 +packetLen(0x088a, 26) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20161130 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161123 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161116 +packetLen(0x088b, 5) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160427 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160420 +packetLen(0x088b, 8) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160406 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160330 +packetLen(0x088b, 5) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160120 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160113 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160106 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20161228 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20161221 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160211 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160203 +packetLen(0x088c, 4) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160106 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20161123 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20161116 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160720 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160713 +packetLen(0x088d, 18) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160622 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160615 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160608 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160601 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160511 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160504 +packetLen(0x088d, 10) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160406 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160330 +packetLen(0x088d, 4) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160224 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160217 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160106 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20161116 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161109 +packetLen(0x088e, -1) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161012 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161005 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160928 +packetLen(0x088e, -1) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160921 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160913 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160803 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160727 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160706 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160629 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160106 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20161207 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161130 +packetLen(0x088f, 4) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161123 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161116 +packetLen(0x088f, 19) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161109 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161102 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160921 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160913 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160608 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160601 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160511 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160504 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160224 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160217 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160106 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20161228 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161221 +packetLen(0x0890, 36) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161123 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161116 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161109 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161102 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160817 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160810 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160629 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160622 +packetLen(0x0890, 26) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160511 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160504 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160106 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20161116 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161109 +packetLen(0x0891, 12) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161102 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161026 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161012 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161005 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160921 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160913 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160824 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160817 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160810 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160803 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160727 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160629 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160622 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160615 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160113 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160106 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20161123 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161116 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161026 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161019 +packetLen(0x0892, 4) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161012 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161005 +packetLen(0x0892, 18) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160921 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160913 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160720 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160713 +packetLen(0x0892, 12) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160706 +packetLen(0x0892, 5) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160414 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160406 +packetLen(0x0892, 90) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160120 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160113 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160106 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20161228 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161123 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161116 +packetLen(0x0893, 7) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161019 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161012 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160706 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160629 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160511 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160504 +packetLen(0x0893, 18) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160120 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160113 +packetLen(0x0893, -1) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160106 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20161102 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20161026 +packetLen(0x0894, 10) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160518 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160511 +packetLen(0x0894, 26) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160106 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20161221 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20161214 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160810 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160803 +packetLen(0x0895, 26) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160608 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160601 +packetLen(0x0895, 5) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160414 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160406 +packetLen(0x0895, 19) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160106 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20160330 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160323 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160106 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20161005 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160928 +packetLen(0x0897, 90) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160727 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160720 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160106 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20161116 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20161109 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20161102 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20161026 +packetLen(0x0898, 26) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160622 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160615 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160511 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160504 +packetLen(0x0898, 8) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160414 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160406 +packetLen(0x0898, 26) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160106 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20161228 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161221 +packetLen(0x0899, 4) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161214 +packetLen(0x0899, 36) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160713 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160706 +packetLen(0x0899, 10) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160615 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160608 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160601 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160525 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160224 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160217 +packetLen(0x0899, 4) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160120 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160113 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160106 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20161228 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161221 +packetLen(0x089a, 8) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161116 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161109 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161005 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160928 +packetLen(0x089a, 7) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160727 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160720 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160713 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160629 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160622 +packetLen(0x089a, 18) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160525 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160518 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160330 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160323 +packetLen(0x089a, 5) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160120 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160113 +packetLen(0x089a, 7) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160106 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20161228 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161221 +packetLen(0x089b, 7) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161012 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161005 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160921 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160913 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160615 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160608 +packetLen(0x089b, 5) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160518 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160511 +packetLen(0x089b, 4) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160414 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160406 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160316 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160309 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160106 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20161130 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20161123 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20161012 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20161005 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160921 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160913 +packetLen(0x089c, 36) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160824 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160817 +packetLen(0x089c, -1) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160810 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160803 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160727 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160720 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160601 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160525 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160106 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20161116 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20161109 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160817 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160810 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160511 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160504 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160316 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160309 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160106 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20160727 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160720 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160629 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160622 +packetLen(0x089e, 7) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160420 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160414 +packetLen(0x089e, 26) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160406 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160106 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20161228 +packetLen(0x089f, 8) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161116 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161109 +packetLen(0x089f, 4) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161102 +packetLen(0x089f, 26) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160817 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160810 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160803 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160727 +packetLen(0x089f, 10) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160720 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160713 +packetLen(0x089f, 4) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160106 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20161019 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161012 +packetLen(0x08a0, 5) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161005 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160727 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160720 +packetLen(0x08a0, 12) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160224 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160217 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160120 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160113 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160106 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20161214 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20161207 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20161123 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20161116 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160810 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160803 +packetLen(0x08a1, -1) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160414 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160406 +packetLen(0x08a1, 7) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160106 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20161228 +packetLen(0x08a2, 10) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161214 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161207 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161123 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161116 +packetLen(0x08a2, 18) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161109 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161102 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161005 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160928 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160803 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160727 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160720 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160713 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160629 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160622 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160106 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20161228 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160106 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20160803 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160727 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160720 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160713 +packetLen(0x08a4, 19) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160706 +packetLen(0x08a4, 18) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160106 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20161228 +packetLen(0x08a5, 18) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160921 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160913 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160824 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160817 +packetLen(0x08a5, 36) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160713 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160706 +packetLen(0x08a5, 19) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160427 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160420 +packetLen(0x08a5, 36) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160106 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20161221 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20161214 +packetLen(0x08a6, 18) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160824 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160817 +packetLen(0x08a6, 26) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160615 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160608 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160120 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160113 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160106 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20161116 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20161109 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160803 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160727 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160608 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160601 +packetLen(0x08a7, 8) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160316 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160309 +packetLen(0x08a7, 18) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160106 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20160907 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160831 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160713 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160706 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160629 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160622 +packetLen(0x08a8, 36) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160106 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20161130 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161123 +packetLen(0x08a9, 10) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161005 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160928 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160907 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160831 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160824 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160817 +packetLen(0x08a9, -1) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160810 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160525 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160518 +packetLen(0x08a9, 26) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160309 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160302 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160217 +packetLen(0x08a9, 26) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160106 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20161228 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161221 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161130 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161116 +packetLen(0x08aa, 12) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161109 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161102 +packetLen(0x08aa, 5) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160727 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160720 +packetLen(0x08aa, -1) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160120 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160113 +packetLen(0x08aa, -1) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160106 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20161228 +packetLen(0x08ab, 8) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160824 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160817 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160106 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20161228 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20161123 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20161116 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160824 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160817 +packetLen(0x08ac, 10) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160608 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160601 +packetLen(0x08ac, 19) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160414 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160406 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160224 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160217 +packetLen(0x08ac, 18) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160106 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20161228 +packetLen(0x08ad, 36) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161214 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161207 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161116 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161109 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161012 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161005 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160824 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160817 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160511 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160504 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160106 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 149) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20160907 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160831 +packetLen(0x0917, 36) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160727 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160720 +packetLen(0x0917, 4) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160106 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20161214 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20161207 +packetLen(0x0918, 18) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160713 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160706 +packetLen(0x0918, 90) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160518 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160511 +packetLen(0x0918, 5) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160504 +packetLen(0x0918, 6) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160420 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160414 +packetLen(0x0918, 4) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160406 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160330 +packetLen(0x0918, 8) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160211 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160203 +packetLen(0x0918, 8) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160106 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20161012 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161005 +packetLen(0x0919, 6) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160928 +packetLen(0x0919, 5) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160120 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160113 +packetLen(0x0919, 12) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160106 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20161130 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161123 +packetLen(0x091a, 8) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161102 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161026 +packetLen(0x091a, 19) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160817 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160810 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160309 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160302 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160106 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20161109 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20161102 +packetLen(0x091b, 36) // ZC_PRNPC_STATE +#elif PACKETVER >= 20161026 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160907 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160831 +packetLen(0x091b, 4) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160817 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160803 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160713 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160706 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160330 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160323 +packetLen(0x091b, 4) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160120 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160113 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160106 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20161228 +packetLen(0x091c, 26) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160913 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160907 +packetLen(0x091c, 36) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160817 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160810 +packetLen(0x091c, 10) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160727 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160720 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160713 +packetLen(0x091c, 5) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160629 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160622 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160106 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20161214 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20161207 +packetLen(0x091d, 8) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160720 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160713 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160601 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160525 +packetLen(0x091d, 36) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160316 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160309 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160224 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160217 +packetLen(0x091d, 5) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160113 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160106 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20161012 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20161005 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160928 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160706 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160629 +packetLen(0x091e, 18) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160106 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 + +// Packet: 0x0920 +#if PACKETVER >= 20161123 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20161116 +packetLen(0x0920, 90) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160518 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160511 +packetLen(0x0920, 19) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160316 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160309 +packetLen(0x0920, 8) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160302 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160224 +packetLen(0x0920, 4) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160217 +packetLen(0x0920, 7) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160106 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20160720 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160713 +packetLen(0x0921, 90) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160511 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160504 +packetLen(0x0921, 90) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160106 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20161109 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20161102 +packetLen(0x0922, 6) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160720 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160713 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160706 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160629 +packetLen(0x0922, 8) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160511 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160504 +packetLen(0x0922, 6) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160420 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160414 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160323 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160316 +packetLen(0x0922, 36) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160309 +packetLen(0x0922, -1) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160203 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160127 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160106 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 + +// Packet: 0x0924 +#if PACKETVER >= 20160713 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160706 +packetLen(0x0924, 10) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160608 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160601 +packetLen(0x0924, 4) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160511 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160504 +packetLen(0x0924, 5) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160120 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160113 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160106 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20161123 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161116 +packetLen(0x0925, 10) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161109 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161102 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160706 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160629 +packetLen(0x0925, 10) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160406 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160330 +packetLen(0x0925, 19) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160106 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20161228 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161221 +packetLen(0x0926, 26) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161130 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161123 +packetLen(0x0926, 19) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161102 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161026 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160817 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160810 +packetLen(0x0926, 4) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160713 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160706 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160629 +packetLen(0x0926, 26) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160330 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160323 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160224 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160217 +packetLen(0x0926, 10) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160106 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20161116 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20161109 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20161005 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160928 +packetLen(0x0927, 10) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160420 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160414 +packetLen(0x0927, 36) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160406 +packetLen(0x0927, 8) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160330 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160323 +packetLen(0x0927, 18) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160309 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160302 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160106 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20161228 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20161221 +packetLen(0x0928, 26) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20161109 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20161102 +packetLen(0x0928, 26) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160921 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160913 +packetLen(0x0928, 26) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160525 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160518 +packetLen(0x0928, 5) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160106 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20161228 +packetLen(0x0929, 10) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160824 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160817 +packetLen(0x0929, -1) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160810 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160803 +packetLen(0x0929, 36) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160713 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160706 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160316 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160309 +packetLen(0x0929, 4) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160302 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160224 +packetLen(0x0929, 5) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160106 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20161130 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161123 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161116 +packetLen(0x092a, 10) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160727 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160720 +packetLen(0x092a, 26) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160406 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160330 +packetLen(0x092a, -1) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160316 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160309 +packetLen(0x092a, -1) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160106 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20161012 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20161005 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160817 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160810 +packetLen(0x092b, -1) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160106 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20161102 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20161026 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160907 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160831 +packetLen(0x092c, 26) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160720 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160713 +packetLen(0x092c, 6) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160601 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160525 +packetLen(0x092c, 18) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160406 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160330 +packetLen(0x092c, 18) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160106 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20161019 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20161012 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20161005 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160928 +packetLen(0x092d, 10) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160824 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160817 +packetLen(0x092d, 90) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160810 +packetLen(0x092d, 8) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160713 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160706 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160629 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160622 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160414 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160406 +packetLen(0x092d, 12) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160309 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160302 +packetLen(0x092d, 4) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160106 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20161228 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20161221 +packetLen(0x092e, 18) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20161214 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20161102 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20161026 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160907 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160831 +packetLen(0x092e, 12) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160803 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160727 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160224 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160217 +packetLen(0x092e, 90) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160106 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20161130 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20161123 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20161109 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20161102 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160629 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160622 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160427 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160420 +packetLen(0x092f, 18) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160309 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160302 +packetLen(0x092f, 90) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160224 +packetLen(0x092f, -1) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160106 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20161228 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161221 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161130 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161123 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161102 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161026 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160824 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160817 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160810 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160803 +packetLen(0x0930, 12) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160406 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160330 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160120 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160113 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160106 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20161207 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161130 +packetLen(0x0931, 5) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161123 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161116 +packetLen(0x0931, -1) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161012 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161005 +packetLen(0x0931, 26) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160720 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160713 +packetLen(0x0931, 10) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160420 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160414 +packetLen(0x0931, 6) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160106 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20161012 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20161005 +packetLen(0x0932, 12) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160810 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160803 +packetLen(0x0932, 10) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160316 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160309 +packetLen(0x0932, 5) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160120 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160113 +packetLen(0x0932, 8) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160106 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20160414 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160406 +packetLen(0x0933, 5) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160330 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160323 +packetLen(0x0933, 5) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160106 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20161228 +packetLen(0x0934, 26) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160831 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160824 +packetLen(0x0934, 36) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160810 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160803 +packetLen(0x0934, 7) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160420 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160414 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160406 +packetLen(0x0934, 10) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160106 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20161228 +packetLen(0x0935, 8) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160921 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160913 +packetLen(0x0935, -1) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160817 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160810 +packetLen(0x0935, 90) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160427 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160420 +packetLen(0x0935, 26) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160106 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20161019 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20161012 +packetLen(0x0936, 6) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160803 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160727 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160629 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160622 +packetLen(0x0936, 19) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160302 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160224 +packetLen(0x0936, 36) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160106 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20161116 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20161109 +packetLen(0x0937, 26) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20161019 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20161012 +packetLen(0x0937, 6) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160810 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160803 +packetLen(0x0937, 10) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160629 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160622 +packetLen(0x0937, 12) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160601 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160525 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160106 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20161228 +packetLen(0x0938, 4) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160302 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160224 +packetLen(0x0938, 6) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160106 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20161019 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20161012 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160824 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160817 +packetLen(0x0939, 8) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160720 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160713 +packetLen(0x0939, 26) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160706 +packetLen(0x0939, 8) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160406 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160330 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160106 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20160921 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160913 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160907 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160831 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160810 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160803 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160106 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20161012 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161005 +packetLen(0x093b, 10) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160727 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160720 +packetLen(0x093b, 5) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160629 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160622 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160615 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160608 +packetLen(0x093b, 4) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160406 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160330 +packetLen(0x093b, 26) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160224 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160217 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160106 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20161123 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161116 +packetLen(0x093c, -1) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161109 +packetLen(0x093c, 36) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160824 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160817 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160330 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160323 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160120 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160113 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160106 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20161228 +packetLen(0x093d, 7) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161221 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161214 +packetLen(0x093d, 5) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160713 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160706 +packetLen(0x093d, 6) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160106 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20160810 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160803 +packetLen(0x093e, 6) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160727 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160720 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160706 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160629 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160622 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160615 +packetLen(0x093e, 26) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160511 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160504 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160224 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160217 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160211 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160203 +packetLen(0x093e, 26) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160106 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20161116 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20161109 +packetLen(0x093f, 6) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160810 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160803 +packetLen(0x093f, -1) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160629 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160622 +packetLen(0x093f, -1) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160106 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20160518 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160511 +packetLen(0x0940, 36) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160504 +packetLen(0x0940, 19) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160427 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160414 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160406 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160211 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160203 +packetLen(0x0940, 5) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160113 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160106 +packetLen(0x0940, 8) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20161130 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20161123 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160511 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160504 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160224 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160217 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160120 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160113 +packetLen(0x0941, -1) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160106 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20161012 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20161005 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160106 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20161228 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161221 +packetLen(0x0943, 10) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161214 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161207 +packetLen(0x0943, 4) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161130 +packetLen(0x0943, 19) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161019 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161012 +packetLen(0x0943, 18) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160817 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160810 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160106 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20161228 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161019 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161012 +packetLen(0x0944, 8) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161005 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160928 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160713 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160706 +packetLen(0x0944, 8) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160106 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20161012 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20161005 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160720 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160713 +packetLen(0x0945, 7) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160706 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160601 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160525 +packetLen(0x0945, 26) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160420 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160414 +packetLen(0x0945, 26) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160309 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160302 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160106 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20161228 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161221 +packetLen(0x0946, 10) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161109 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161102 +packetLen(0x0946, 19) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161026 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161019 +packetLen(0x0946, 19) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160907 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160831 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160803 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160720 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160706 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160622 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160106 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20160720 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160713 +packetLen(0x0947, 8) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160211 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160203 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160106 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20160706 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160629 +packetLen(0x0948, 5) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160622 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160615 +packetLen(0x0948, 7) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160511 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160504 +packetLen(0x0948, 12) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160106 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20161109 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20161102 +packetLen(0x0949, 5) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160921 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160913 +packetLen(0x0949, 26) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160803 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160727 +packetLen(0x0949, 8) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160414 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160406 +packetLen(0x0949, -1) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160106 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20161123 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20161116 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20161012 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20161005 +packetLen(0x094a, -1) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160928 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160921 +packetLen(0x094a, 36) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160913 +packetLen(0x094a, 90) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160907 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160831 +packetLen(0x094a, 5) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160706 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160629 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160622 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160615 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160601 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160525 +packetLen(0x094a, 8) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160224 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160217 +packetLen(0x094a, 10) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160106 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20161228 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20161221 +packetLen(0x094b, -1) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20161102 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20161026 +packetLen(0x094b, 8) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160622 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160615 +packetLen(0x094b, -1) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160106 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20160713 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160706 +packetLen(0x094c, 36) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160302 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160224 +packetLen(0x094c, 18) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160106 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20161130 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20161123 +packetLen(0x094d, 10) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20161012 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20161005 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160727 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160720 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160615 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160608 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160414 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160406 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160120 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160113 +packetLen(0x094d, 19) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160106 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20161005 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160928 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160601 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160525 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160427 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160420 +packetLen(0x094e, -1) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160309 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160302 +packetLen(0x094e, 36) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160106 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20161130 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161123 +packetLen(0x094f, -1) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161019 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161012 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160907 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160831 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160316 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160309 +packetLen(0x094f, 7) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160224 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160217 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160120 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160113 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160106 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20160921 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160913 +packetLen(0x0950, 7) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160907 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160831 +packetLen(0x0950, -1) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160309 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160302 +packetLen(0x0950, 8) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160106 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20161019 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20161012 +packetLen(0x0951, 90) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160803 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160727 +packetLen(0x0951, 8) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160601 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160525 +packetLen(0x0951, 26) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160106 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20161012 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20161005 +packetLen(0x0952, 4) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160921 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160913 +packetLen(0x0952, 19) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160810 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160803 +packetLen(0x0952, 5) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160511 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160504 +packetLen(0x0952, 26) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160106 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20161102 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20161026 +packetLen(0x0953, 26) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20161005 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160928 +packetLen(0x0953, -1) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160727 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160720 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160420 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160414 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160406 +packetLen(0x0953, 36) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160106 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20161207 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161130 +packetLen(0x0954, 36) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161116 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161109 +packetLen(0x0954, 10) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160921 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160913 +packetLen(0x0954, 5) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160907 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160831 +packetLen(0x0954, -1) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160622 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160615 +packetLen(0x0954, 5) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160211 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160203 +packetLen(0x0954, 8) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160106 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20161005 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160928 +packetLen(0x0955, 18) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160810 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160803 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160106 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20161116 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20161109 +packetLen(0x0956, 5) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160810 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160803 +packetLen(0x0956, -1) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160601 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160525 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160316 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160309 +packetLen(0x0956, 6) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160106 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20161123 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20161116 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20161005 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160928 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160907 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160831 +packetLen(0x0957, -1) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160824 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160817 +packetLen(0x0957, 18) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160720 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160713 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160706 +packetLen(0x0957, 12) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160622 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160615 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160309 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160302 +packetLen(0x0957, -1) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160106 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20160713 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160706 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160622 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160615 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160608 +packetLen(0x0958, 36) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160106 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20161207 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20161130 +packetLen(0x0959, 26) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160810 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160803 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160629 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160622 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160106 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20161228 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161221 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161130 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161123 +packetLen(0x095a, 8) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161012 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161005 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160928 +packetLen(0x095a, 4) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160810 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160803 +packetLen(0x095a, 26) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160706 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160629 +packetLen(0x095a, 7) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160309 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160302 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160211 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160203 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160127 +packetLen(0x095a, 36) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160106 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20161130 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161123 +packetLen(0x095b, 7) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161116 +packetLen(0x095b, 36) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161012 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161005 +packetLen(0x095b, 19) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160817 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160810 +packetLen(0x095b, 7) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160727 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160720 +packetLen(0x095b, 18) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160713 +packetLen(0x095b, 8) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160615 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160608 +packetLen(0x095b, 8) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160601 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160511 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160504 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160106 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20161102 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20161026 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20161019 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20161012 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160622 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160615 +packetLen(0x095c, 18) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160427 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160420 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160106 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20161214 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20161207 +packetLen(0x095d, 36) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20161123 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20161116 +packetLen(0x095d, 4) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160414 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160406 +packetLen(0x095d, 5) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160211 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160203 +packetLen(0x095d, 8) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160106 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20161109 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20161102 +packetLen(0x095e, 12) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20161026 +packetLen(0x095e, 90) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160907 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160831 +packetLen(0x095e, 8) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160622 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160615 +packetLen(0x095e, -1) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160316 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160309 +packetLen(0x095e, 12) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160224 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160217 +packetLen(0x095e, 36) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160106 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20160803 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160727 +packetLen(0x095f, -1) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160608 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160601 +packetLen(0x095f, 36) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160414 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160406 +packetLen(0x095f, 5) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160106 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20160907 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160831 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160727 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160720 +packetLen(0x0960, 8) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160309 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160302 +packetLen(0x0960, 8) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160106 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20160622 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160615 +packetLen(0x0961, 12) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160608 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160601 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160309 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160302 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160224 +packetLen(0x0961, 5) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160203 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160127 +packetLen(0x0961, 26) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160106 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20161130 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161123 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161102 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161026 +packetLen(0x0962, 5) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161019 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161012 +packetLen(0x0962, 10) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160921 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160913 +packetLen(0x0962, 4) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160414 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160406 +packetLen(0x0962, 4) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160106 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20161026 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20161019 +packetLen(0x0963, 26) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160921 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160913 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160824 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160817 +packetLen(0x0963, 5) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160106 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20161228 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20161221 +packetLen(0x0964, 19) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20161109 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20161102 +packetLen(0x0964, -1) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160907 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160831 +packetLen(0x0964, 10) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160106 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20161228 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161221 +packetLen(0x0965, 5) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161214 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161207 +packetLen(0x0965, 26) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161109 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161102 +packetLen(0x0965, 10) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160629 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160622 +packetLen(0x0965, 5) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160106 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20161109 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161102 +packetLen(0x0966, 6) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161019 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161012 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160224 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160217 +packetLen(0x0966, 6) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160106 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20161123 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161116 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161019 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161012 +packetLen(0x0967, 36) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161005 +packetLen(0x0967, 10) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160907 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160831 +packetLen(0x0967, 10) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160817 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160810 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160309 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160302 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160224 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160217 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160120 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160113 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160106 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20160706 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160629 +packetLen(0x0968, 10) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160309 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160302 +packetLen(0x0968, 7) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160106 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20160803 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160727 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160720 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160706 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160622 +packetLen(0x0969, 6) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160615 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160608 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160511 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160504 +packetLen(0x0969, 36) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160224 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160217 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160106 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20161221 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20161123 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20161026 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20161019 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160928 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160921 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160913 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160907 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160831 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160824 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160810 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160803 +packetLen(0x096a, -1) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160706 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160629 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160615 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160511 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160504 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160414 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160406 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160309 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160302 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160224 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160217 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160120 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160113 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160106 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ae +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING + +// Packet: 0x09b3 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c4 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 + +// Packet: 0x0a0a +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 + +// Packet: 0x0a0b +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 + +// Packet: 0x0a0c +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +#if PACKETVER >= 20160921 +packetLen(0x0a37, 59) // ZC_ITEM_PICKUP_ACK_V7 +#elif PACKETVER >= 20160106 +packetLen(0x0a37, 57) // ZC_ITEM_PICKUP_ACK_V7 +#endif + +// Packet: 0x0a38 +packetLen(0x0a38, 3) // ZC_OPEN_UI + +// Packet: 0x0a39 +packetLen(0x0a39, 36) // CH_MAKE_CHAR + +// Packet: 0x0a3a +packetLen(0x0a3a, 12) + +// Packet: 0x0a3b +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT + +// Packet: 0x0a3c +packetLen(0x0a3c, -1) + +// Packet: 0x0a3d +packetLen(0x0a3d, 18) + +// Packet: 0x0a3e +packetLen(0x0a3e, -1) + +// Packet: 0x0a3f +packetLen(0x0a3f, 9) + +// Packet: 0x0a40 +packetLen(0x0a40, 11) + +// Packet: 0x0a41 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL + +// Packet: 0x0a42 +packetLen(0x0a42, 43) + +// Packet: 0x0a43 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0a44 +packetLen(0x0a44, -1) // ZC_GROUP_LIST + +// Packet: 0x0a46 +packetLen(0x0a46, 14) + +// Packet: 0x0a47 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES + +// Packet: 0x0a48 +packetLen(0x0a48, 2) + +// Packet: 0x0a49 +packetLen(0x0a49, 22) // CZ_PRIVATE_AIRSHIP_REQUEST + +// Packet: 0x0a4a +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE + +// Packet: 0x0a4b +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE + +// Packet: 0x0a4c +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE + +// Packet: 0x0a4d +#if PACKETVER >= 20160127 +packetLen(0x0a4d, -1) +#endif + +// Packet: 0x0a4e +#if PACKETVER >= 20160302 +packetLen(0x0a4e, 4) +#endif + +// Packet: 0x0a4f +#if PACKETVER >= 20160302 +packetLen(0x0a4f, -1) +#endif + +// Packet: 0x0a50 +#if PACKETVER >= 20160427 +packetLen(0x0a50, 4) +#elif PACKETVER >= 20160302 +packetLen(0x0a50, 6) +#endif + +// Packet: 0x0a51 +#if PACKETVER >= 20160302 +packetLen(0x0a51, 34) // ZC_CHECK_RECEIVE_CHARACTER_NAME +#endif + +// Packet: 0x0a52 +#if PACKETVER >= 20160316 +packetLen(0x0a52, 20) +#endif + +// Packet: 0x0a53 +#if PACKETVER >= 20160316 +packetLen(0x0a53, 10) +#endif + +// Packet: 0x0a54 +#if PACKETVER >= 20160316 +packetLen(0x0a54, -1) +#endif + +// Packet: 0x0a55 +#if PACKETVER >= 20160316 +packetLen(0x0a55, 2) +#endif + +// Packet: 0x0a56 +#if PACKETVER >= 20160316 +packetLen(0x0a56, 6) +#endif + +// Packet: 0x0a57 +#if PACKETVER >= 20160316 +packetLen(0x0a57, 6) +#endif + +// Packet: 0x0a58 +#if PACKETVER >= 20160316 +packetLen(0x0a58, 8) +#endif + +// Packet: 0x0a59 +#if PACKETVER >= 20160316 +packetLen(0x0a59, -1) +#endif + +// Packet: 0x0a5a +#if PACKETVER >= 20160316 +packetLen(0x0a5a, 2) +#endif + +// Packet: 0x0a5b +#if PACKETVER >= 20160316 +packetLen(0x0a5b, 7) +#endif + +// Packet: 0x0a5c +#if PACKETVER >= 20160316 +packetLen(0x0a5c, 18) +#endif + +// Packet: 0x0a5d +#if PACKETVER >= 20160316 +packetLen(0x0a5d, 6) +#endif + +// Packet: 0x0a68 +#if PACKETVER >= 20160323 +packetLen(0x0a68, 3) // CZ_REQ_OPEN_UI +#endif + +// Packet: 0x0a69 +#if PACKETVER >= 20160323 +packetLen(0x0a69, 6) +#endif + +// Packet: 0x0a6a +#if PACKETVER >= 20160323 +packetLen(0x0a6a, 12) +#endif + +// Packet: 0x0a6b +#if PACKETVER >= 20160323 +packetLen(0x0a6b, -1) +#endif + +// Packet: 0x0a6c +#if PACKETVER >= 20160330 +packetLen(0x0a6c, 7) +#endif + +// Packet: 0x0a6d +#if PACKETVER >= 20160330 +packetLen(0x0a6d, -1) +#endif + +// Packet: 0x0a6e +#if PACKETVER >= 20160330 +packetLen(0x0a6e, -1) // CZ_REQ_SEND_RODEX +#endif + +// Packet: 0x0a6f +#if PACKETVER >= 20160330 +packetLen(0x0a6f, -1) // ZC_FORMATSTRING_MSG_COLOR +#endif + +// Packet: 0x0a70 +#if PACKETVER >= 20160504 +packetLen(0x0a70, 2) +#endif + +// Packet: 0x0a71 +#if PACKETVER >= 20160504 +packetLen(0x0a71, -1) +#endif + +// Packet: 0x0a72 +#if PACKETVER >= 20160504 +packetLen(0x0a72, 61) +#endif + +// Packet: 0x0a73 +#if PACKETVER >= 20160518 +packetLen(0x0a73, 2) +#elif PACKETVER >= 20160511 +packetLen(0x0a73, 6) +#endif + +// Packet: 0x0a74 +#if PACKETVER >= 20160511 +packetLen(0x0a74, 8) +#endif + +// Packet: 0x0a76 +#if PACKETVER >= 20160518 +packetLen(0x0a76, 80) +#endif + +// Packet: 0x0a77 +#if PACKETVER >= 20160525 +packetLen(0x0a77, 15) +#endif + +// Packet: 0x0a78 +#if PACKETVER >= 20160525 +packetLen(0x0a78, 15) +#endif + +// Packet: 0x0a79 +#if PACKETVER >= 20160601 +packetLen(0x0a79, -1) +#endif + +// Packet: 0x0a7b +#if PACKETVER >= 20160601 +packetLen(0x0a7b, -1) +#endif + +// Packet: 0x0a7c +#if PACKETVER >= 20160601 +packetLen(0x0a7c, -1) +#endif + +// Packet: 0x0a7d +#if PACKETVER >= 20160601 +packetLen(0x0a7d, -1) // ZC_ACK_RODEX_LIST +#endif + +// Packet: 0x0a7e +#if PACKETVER >= 20160706 +packetLen(0x0a7e, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY +#elif PACKETVER >= 20160615 +packetLen(0x0a7e, 4) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY +#endif + +// Packet: 0x0a7f +#if PACKETVER >= 20160615 +packetLen(0x0a7f, -1) // CZ_OFFLINE_STORE_CREATE +#endif + +// Packet: 0x0a80 +#if PACKETVER >= 20160629 +packetLen(0x0a80, 6) +#elif PACKETVER >= 20160615 +packetLen(0x0a80, 2) +#endif + +// Packet: 0x0a81 +#if PACKETVER >= 20160803 +packetLen(0x0a81, 4) +#elif PACKETVER >= 20160706 +packetLen(0x0a81, 3) +#elif PACKETVER >= 20160622 +// removed +#elif PACKETVER >= 20160615 +packetLen(0x0a81, 3) +#endif + +// Packet: 0x0a82 +#if PACKETVER >= 20160622 +packetLen(0x0a82, 46) +#endif + +// Packet: 0x0a83 +#if PACKETVER >= 20160622 +packetLen(0x0a83, 46) +#endif + +// Packet: 0x0a84 +#if PACKETVER >= 20160622 +packetLen(0x0a84, 94) // ZC_GUILD_INFO +#endif + +// Packet: 0x0a85 +#if PACKETVER >= 20160622 +packetLen(0x0a85, 82) +#endif + +// Packet: 0x0a86 +#if PACKETVER >= 20160622 +packetLen(0x0a86, -1) +#endif + +// Packet: 0x0a87 +#if PACKETVER >= 20160713 +packetLen(0x0a87, -1) +#elif PACKETVER >= 20160622 +packetLen(0x0a87, 4) +#endif + +// Packet: 0x0a88 +#if PACKETVER >= 20160622 +packetLen(0x0a88, 2) +#endif + +// Packet: 0x0a89 +#if PACKETVER >= 20160706 +packetLen(0x0a89, 57) // ZC_NOTIFY_OFFLINE_STORE +#elif PACKETVER >= 20160629 +packetLen(0x0a89, 32) // ZC_NOTIFY_OFFLINE_STORE +#endif + +// Packet: 0x0a8a +#if PACKETVER >= 20160629 +packetLen(0x0a8a, 6) // ZC_OFFLINE_STORE_VANISH +#endif + +// Packet: 0x0a8b +#if PACKETVER >= 20160629 +packetLen(0x0a8b, 2) +#endif + +// Packet: 0x0a8c +#if PACKETVER >= 20160629 +packetLen(0x0a8c, 2) +#endif + +// Packet: 0x0a8d +#if PACKETVER >= 20160629 +packetLen(0x0a8d, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS +#endif + +// Packet: 0x0a8e +#if PACKETVER >= 20160720 +packetLen(0x0a8e, 2) +#endif + +// Packet: 0x0a8f +#if PACKETVER >= 20160720 +packetLen(0x0a8f, 2) +#endif + +// Packet: 0x0a90 +#if PACKETVER >= 20160720 +packetLen(0x0a90, 3) +#endif + +// Packet: 0x0a91 +#if PACKETVER >= 20160727 +packetLen(0x0a91, -1) // ZC_OFFLINE_STORE_ITEMS +#endif + +// Packet: 0x0a92 +#if PACKETVER >= 20160727 +packetLen(0x0a92, -1) +#endif + +// Packet: 0x0a93 +#if PACKETVER >= 20160727 +packetLen(0x0a93, 3) +#endif + +// Packet: 0x0a94 +#if PACKETVER >= 20160803 +packetLen(0x0a94, 2) +#endif + +// Packet: 0x0a95 +#if PACKETVER >= 20160907 +packetLen(0x0a95, 4) +#endif + +// Packet: 0x0a96 +#if PACKETVER >= 20160921 +packetLen(0x0a96, 51) // ZC_ADD_EXCHANGE_ITEM4 +#endif + +// Packet: 0x0a97 +#if PACKETVER >= 20160928 +packetLen(0x0a97, 8) // CZ_ALT_EQUIPMENT_EQUIP +#endif + +// Packet: 0x0a98 +#if PACKETVER >= 20160928 +packetLen(0x0a98, 12) // ZC_ALT_EQUIPMENT_EQUIP +#endif + +// Packet: 0x0a99 +#if PACKETVER >= 20160928 +packetLen(0x0a99, 8) +#endif + +// Packet: 0x0a9a +#if PACKETVER >= 20160928 +packetLen(0x0a9a, 10) // ZC_ALT_EQUIPMENT_REMOVE +#endif + +// Packet: 0x0a9b +#if PACKETVER >= 20160928 +packetLen(0x0a9b, -1) // ZC_ALT_EQUIPMENT_ITEMS +#endif + +// Packet: 0x0a9c +#if PACKETVER >= 20160928 +packetLen(0x0a9c, 2) +#endif + +// Packet: 0x0a9d +#if PACKETVER >= 20160928 +packetLen(0x0a9d, 4) +#endif + +// Packet: 0x0a9e +#if PACKETVER >= 20160928 +packetLen(0x0a9e, 2) +#endif + +// Packet: 0x0a9f +#if PACKETVER >= 20160928 +packetLen(0x0a9f, 2) +#endif + +// Packet: 0x0aa0 +#if PACKETVER >= 20161005 +packetLen(0x0aa0, 2) // ZC_REFINE_OPEN_WINDOW +#endif + +// Packet: 0x0aa1 +#if PACKETVER >= 20161005 +packetLen(0x0aa1, 4) // CZ_REFINE_ADD_ITEM +#endif + +// Packet: 0x0aa2 +#if PACKETVER >= 20161005 +packetLen(0x0aa2, -1) // ZC_REFINE_ADD_ITEM +#endif + +// Packet: 0x0aa3 +#if PACKETVER >= 20161005 +packetLen(0x0aa3, 7) // CZ_REFINE_ITEM_REQUEST +#endif + +// Packet: 0x0aa4 +#if PACKETVER >= 20161005 +packetLen(0x0aa4, 2) // CZ_REFINE_WINDOW_CLOSE +#endif + +// Packet: 0x0aa5 +#if PACKETVER >= 20161026 +packetLen(0x0aa5, -1) // ZC_MEMBERMGR_INFO +#endif + +// Packet: 0x0aa6 +#if PACKETVER >= 20161026 +packetLen(0x0aa6, 36) // ZC_MEMBER_ADD +#endif + +// Packet: 0x0aa7 +#if PACKETVER >= 20161130 +packetLen(0x0aa7, 6) // ZC_INVENTORY_MOVE_FAILED +#endif + +// Packet: 0x0aa8 +#if PACKETVER >= 20161130 +packetLen(0x0aa8, 5) +#endif + +// Packet: 0x0aa9 +#if PACKETVER >= 20161130 +packetLen(0x0aa9, -1) +#endif + +// Packet: 0x0aaa +#if PACKETVER >= 20161130 +packetLen(0x0aaa, -1) +#endif + +// Packet: 0x0aab +#if PACKETVER >= 20161130 +packetLen(0x0aab, -1) +#endif + +// Packet: 0x0aac +#if PACKETVER >= 20161207 +packetLen(0x0aac, 67) +#endif + +// Packet: 0x0aad +#if PACKETVER >= 20161221 +packetLen(0x0aad, 47) +#endif + +// Packet: 0x0aae +#if PACKETVER >= 20161221 +packetLen(0x0aae, 2) +#endif + +// Packet: 0x0aaf +#if PACKETVER >= 20161221 +packetLen(0x0aaf, 6) +#endif + +// Packet: 0x0ab0 +#if PACKETVER >= 20161221 +packetLen(0x0ab0, 6) +#endif + +// Packet: 0x0ab1 +#if PACKETVER >= 20161228 +packetLen(0x0ab1, 14) +#elif PACKETVER >= 20161221 +packetLen(0x0ab1, 10) +#endif + + +#endif /* COMMON_PACKETS2016_LEN_MAIN_H */ diff --git a/src/common/packets/packets2016_len_re.h b/src/common/packets/packets2016_len_re.h new file mode 100644 index 000000000..76c752edc --- /dev/null +++ b/src/common/packets/packets2016_len_re.h @@ -0,0 +1,9140 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2016_LEN_RE_H +#define COMMON_PACKETS2016_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 149) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20161012 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20161005 +packetLen(0x0202, 90) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160928 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160921 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160913 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160907 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160831 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160824 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160803 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160727 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160706 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160629 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160511 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160427 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160323 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160316 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160224 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160217 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160211 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160203 +packetLen(0x0202, -1) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160127 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160120 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20160106 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20161221 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20161214 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20161026 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20161019 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20160928 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160921 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160913 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160907 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160831 +packetLen(0x022d, 90) // CZ_COMMAND_MER +#elif PACKETVER >= 20160824 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160720 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160713 +packetLen(0x022d, 36) // CZ_COMMAND_MER +#elif PACKETVER >= 20160706 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160629 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20160615 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160608 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20160504 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160427 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160420 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20160323 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160316 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160309 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160302 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20160224 +packetLen(0x022d, 26) // CZ_COMMAND_MER +#elif PACKETVER >= 20160217 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160211 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160203 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20160120 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20160113 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20160106 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20161214 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20161207 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160928 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160921 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160913 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160907 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160831 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160824 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160803 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160727 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160629 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160622 +packetLen(0x023b, 10) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160504 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160427 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160323 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160316 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160309 +packetLen(0x023b, 6) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160217 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160211 +packetLen(0x023b, 18) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160127 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160120 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160113 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20160106 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20161221 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161214 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161207 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161123 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161026 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20161019 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160928 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160921 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160913 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160907 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160831 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160824 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160622 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160615 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160525 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160511 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160504 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160427 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160323 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160316 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160309 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160217 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160211 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160203 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160120 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20160106 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20161221 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20161214 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20161116 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20161109 +packetLen(0x02c4, 18) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160615 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160608 +packetLen(0x02c4, 18) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160601 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160427 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160420 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20160106 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20161228 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161207 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161130 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161123 +packetLen(0x035f, 18) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161026 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161019 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20161005 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160921 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160913 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160907 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160831 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160824 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160706 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160629 +packetLen(0x035f, 4) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160622 +packetLen(0x035f, 8) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160615 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160608 +packetLen(0x035f, 26) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160511 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160504 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160427 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160420 +packetLen(0x035f, 26) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160414 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160406 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160316 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160302 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160224 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160217 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160211 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160203 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160120 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160113 +packetLen(0x035f, 18) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20160106 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20161221 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20161214 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20161130 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20161026 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20161019 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160928 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160921 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160913 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160907 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160831 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160824 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160615 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160511 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160504 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160414 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160406 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160316 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160217 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160120 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160113 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20160106 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20161214 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161207 +packetLen(0x0361, 19) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161130 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161109 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161102 +packetLen(0x0361, 8) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161026 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20161019 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160928 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160921 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160913 +packetLen(0x0361, 18) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160907 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160831 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160824 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160817 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160810 +packetLen(0x0361, 36) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160629 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160622 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160504 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160427 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160323 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160316 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160309 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160211 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160203 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160127 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160120 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20160106 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20161228 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161221 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161207 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161130 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161123 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161116 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161109 +packetLen(0x0362, 8) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161026 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20161012 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160928 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160921 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160913 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160907 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160831 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160824 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160803 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160727 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160720 +packetLen(0x0362, 90) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160713 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160706 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160525 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160511 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160504 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160427 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160420 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160414 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160323 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160316 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160224 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160217 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160211 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160203 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160120 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20160106 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20161207 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20161130 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20161102 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20161026 +packetLen(0x0363, 36) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20161019 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160928 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160921 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160913 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160907 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160831 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160824 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160803 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160727 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160720 +packetLen(0x0363, 10) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160713 +packetLen(0x0363, 5) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160706 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160629 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160622 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160615 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160525 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160511 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160504 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160427 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160420 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160414 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160323 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160316 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160217 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160211 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160203 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160120 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20160106 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20161221 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161214 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161207 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161130 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161026 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161019 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20161012 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160928 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160921 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160913 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160907 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160831 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160824 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160817 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160810 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160803 +packetLen(0x0364, 19) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160720 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160713 +packetLen(0x0364, -1) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160622 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160615 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160525 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160511 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160504 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160427 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160414 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160406 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160323 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160316 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160309 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160302 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160224 +packetLen(0x0364, 10) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160217 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160211 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160203 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160120 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20160106 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20161207 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161130 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161116 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161109 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161026 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161019 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20161012 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160928 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160921 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160913 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160907 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160831 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160824 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160727 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160720 +packetLen(0x0365, 7) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160525 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160511 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160504 +packetLen(0x0365, 4) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160427 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160406 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160330 +packetLen(0x0365, 36) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160323 +packetLen(0x0365, 26) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160316 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160224 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160217 +packetLen(0x0365, 12) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160211 +packetLen(0x0365, 36) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160203 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160120 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20160106 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20161228 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161221 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161130 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161116 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161109 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161026 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161019 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20161005 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160928 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160921 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160913 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160907 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160831 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160824 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160629 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160622 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160608 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160511 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160504 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160414 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160330 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160316 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160302 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160224 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160217 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160120 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160113 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20160106 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20161109 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20161102 +packetLen(0x0367, 4) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20160309 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20160302 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20160106 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20161221 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20161130 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20161123 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20161116 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20161026 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20161019 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20161012 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20161005 +packetLen(0x0368, 7) // CZ_REQNAME2 +#elif PACKETVER >= 20160928 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160921 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160913 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160907 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160831 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160824 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160706 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160629 +packetLen(0x0368, -1) // CZ_REQNAME2 +#elif PACKETVER >= 20160615 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160511 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160504 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160414 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160406 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160309 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160302 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160224 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160217 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160120 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20160113 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20160106 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20161221 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161214 +packetLen(0x0369, 19) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161207 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161130 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161123 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161116 +packetLen(0x0369, 8) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161026 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161019 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20161012 +packetLen(0x0369, 26) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160928 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160921 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160913 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160907 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160831 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160824 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160622 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160615 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160511 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160504 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160414 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160406 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160316 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160302 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160224 +packetLen(0x0369, 8) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160217 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160120 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160113 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20160106 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20161221 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20161214 +packetLen(0x0436, 7) // CZ_ENTER2 +#elif PACKETVER >= 20161109 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20161102 +packetLen(0x0436, 7) // CZ_ENTER2 +#elif PACKETVER >= 20161005 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160928 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20160921 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160913 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160907 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160831 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160824 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160803 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160727 +packetLen(0x0436, 90) // CZ_ENTER2 +#elif PACKETVER >= 20160713 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160706 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20160615 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160608 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20160525 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160518 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160504 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160427 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160323 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160316 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160302 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160224 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20160217 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20160211 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160203 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20160120 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20160106 +packetLen(0x0436, 2) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20161221 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20161130 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20161123 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20161026 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20161019 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160928 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160921 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160913 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160907 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160831 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160824 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160817 +packetLen(0x0437, 26) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160629 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160622 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160615 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160608 +packetLen(0x0437, 19) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160511 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160504 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160414 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160406 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160316 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160217 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160211 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160203 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160120 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160113 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20160106 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20161228 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161221 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161130 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161102 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161026 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20161019 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160928 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160921 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160913 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160907 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160831 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160824 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160803 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160727 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160615 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160511 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160504 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160414 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160406 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160316 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160302 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160224 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160217 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160120 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160113 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20160106 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20161207 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20161130 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20161026 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20161019 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160928 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160921 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160913 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160907 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160831 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160817 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160727 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160720 +packetLen(0x07e4, 19) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160629 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160622 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160525 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160511 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160504 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160427 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160414 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160406 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160323 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160316 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160217 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160211 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160203 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160120 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20160106 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20161207 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20161130 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20161026 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20161019 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20161012 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160928 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160921 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160913 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160907 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160831 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160824 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160803 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160727 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160615 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160608 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160525 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160511 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160504 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160427 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160323 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160316 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160217 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160211 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160203 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160120 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160113 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20160106 +packetLen(0x07ec, 5) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20161207 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161130 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161109 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161102 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161026 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20161019 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160928 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160921 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160913 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160907 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160831 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160824 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160615 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160608 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160525 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160511 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160504 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160427 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160323 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160316 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160309 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160302 +packetLen(0x0802, 19) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160217 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160211 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160203 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160120 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20160106 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20161221 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20161130 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20161026 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20161019 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20161005 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160928 +packetLen(0x0811, 8) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160921 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160913 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160907 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160831 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160824 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160817 +packetLen(0x0811, 4) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160608 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160511 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160504 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160414 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160406 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160316 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160302 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160224 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160217 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160211 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160203 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160120 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160113 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20160106 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20161221 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20161130 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20161026 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20161019 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160928 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160921 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160913 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160907 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160831 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160824 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160615 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160511 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160504 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160414 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160406 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160316 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160302 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160224 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160217 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160120 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160113 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20160106 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20161228 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20161221 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160921 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160913 +packetLen(0x0817, 8) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160608 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160601 +packetLen(0x0817, 26) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20160106 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20161221 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161214 +packetLen(0x0819, 4) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161130 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161026 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161019 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20161012 +packetLen(0x0819, 26) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160928 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160921 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160913 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160907 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160831 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160824 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160817 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160810 +packetLen(0x0819, 10) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160727 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160720 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160615 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160511 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160427 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160420 +packetLen(0x0819, 5) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160414 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160406 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160316 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160309 +packetLen(0x0819, 10) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160302 +packetLen(0x0819, 5) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160224 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160217 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160211 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160203 +packetLen(0x0819, 19) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160120 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160113 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20160106 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20161123 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20161116 +packetLen(0x0835, 26) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20161109 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160907 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160831 +packetLen(0x0835, 19) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160504 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160427 +packetLen(0x0835, 36) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160211 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160203 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20160106 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20161221 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161130 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161109 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161102 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161026 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161019 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161012 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20161005 +packetLen(0x0838, 36) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160928 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160921 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160913 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160907 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160831 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160824 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160817 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160810 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160727 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160720 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160713 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160615 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160511 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160504 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160414 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160406 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160316 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160309 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160302 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160224 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160217 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160120 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160113 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20160106 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20161221 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161130 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161109 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161102 +packetLen(0x083c, 18) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161026 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20161019 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160928 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160921 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160913 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160907 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160831 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160824 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160817 +packetLen(0x083c, -1) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160622 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160615 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160511 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160504 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160414 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160406 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160316 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160309 +packetLen(0x083c, 26) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160302 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160224 +packetLen(0x083c, 8) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160217 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160120 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160113 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20160106 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20161228 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161221 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161214 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161102 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161026 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160601 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160525 +packetLen(0x085a, 4) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160414 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160406 +packetLen(0x085a, 18) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160316 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160309 +packetLen(0x085a, 8) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160106 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20161228 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161221 +packetLen(0x085b, 90) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161019 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161012 +packetLen(0x085b, 4) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160921 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160913 +packetLen(0x085b, 12) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160309 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160302 +packetLen(0x085b, 26) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160120 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160113 +packetLen(0x085b, 5) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160106 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20161130 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161123 +packetLen(0x085c, 90) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160824 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160817 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160706 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160629 +packetLen(0x085c, 90) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160615 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160608 +packetLen(0x085c, 8) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160414 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160406 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160106 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20160817 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160810 +packetLen(0x085d, 12) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160803 +packetLen(0x085d, 6) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160106 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20161228 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20161116 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20161109 +packetLen(0x085e, 90) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160817 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160810 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160706 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160629 +packetLen(0x085e, 8) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160601 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160525 +packetLen(0x085e, 6) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160518 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160511 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160203 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160127 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160106 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20161123 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161116 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161109 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161102 +packetLen(0x085f, 10) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161026 +packetLen(0x085f, 7) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160817 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160810 +packetLen(0x085f, 18) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160713 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160706 +packetLen(0x085f, 26) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160511 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160504 +packetLen(0x085f, 7) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160316 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160309 +packetLen(0x085f, 10) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160106 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20160817 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160810 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160720 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160713 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160706 +packetLen(0x0860, 7) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160629 +packetLen(0x0860, -1) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160106 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20161130 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161123 +packetLen(0x0861, 5) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161102 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161026 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160706 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160629 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160622 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160302 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160224 +packetLen(0x0861, 19) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160113 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160106 +packetLen(0x0861, 6) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20161221 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20161214 +packetLen(0x0862, 26) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20161102 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20161026 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160420 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160414 +packetLen(0x0862, 19) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160106 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20161019 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20161012 +packetLen(0x0863, 7) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20161005 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160706 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160629 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160608 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160601 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160106 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20161123 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161116 +packetLen(0x0864, 26) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161005 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160928 +packetLen(0x0864, 8) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160427 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160420 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160309 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160302 +packetLen(0x0864, -1) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160224 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160217 +packetLen(0x0864, 8) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160120 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160113 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160106 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20161228 +packetLen(0x0865, 90) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161116 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161109 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160921 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160913 +packetLen(0x0865, 6) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160907 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160831 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160720 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160713 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160629 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160622 +packetLen(0x0865, 4) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160309 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160302 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160127 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160120 +packetLen(0x0865, 36) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160106 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20161228 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161221 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160803 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160727 +packetLen(0x0866, 4) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160622 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160615 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160106 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20161214 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161207 +packetLen(0x0867, 26) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160824 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160817 +packetLen(0x0867, 12) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160706 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160629 +packetLen(0x0867, 36) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160622 +packetLen(0x0867, 8) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160601 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160525 +packetLen(0x0867, 5) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160406 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160330 +packetLen(0x0867, 26) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160323 +packetLen(0x0867, 8) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160309 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160302 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160106 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20161214 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161207 +packetLen(0x0868, 8) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161019 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161012 +packetLen(0x0868, 6) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160803 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160727 +packetLen(0x0868, 26) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160309 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160302 +packetLen(0x0868, 5) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160106 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20161109 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161102 +packetLen(0x0869, 8) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160803 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160727 +packetLen(0x0869, 12) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160720 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160706 +packetLen(0x0869, -1) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160414 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160406 +packetLen(0x0869, -1) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160330 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160323 +packetLen(0x0869, 6) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160106 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20161228 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20161116 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20161109 +packetLen(0x086a, 7) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160601 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160525 +packetLen(0x086a, 19) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160330 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160323 +packetLen(0x086a, 8) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160316 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160309 +packetLen(0x086a, -1) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160113 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160106 +packetLen(0x086a, 6) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20160824 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160817 +packetLen(0x086b, 6) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160713 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160706 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160511 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160504 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160302 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160224 +packetLen(0x086b, 8) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160106 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20161228 +packetLen(0x086c, 6) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20161102 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20161026 +packetLen(0x086c, 12) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160525 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160518 +packetLen(0x086c, 5) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160217 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160211 +packetLen(0x086c, 5) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160203 +packetLen(0x086c, 18) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160113 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160106 +packetLen(0x086c, 4) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20161228 +packetLen(0x086d, 19) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161221 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161214 +packetLen(0x086d, 26) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161116 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161109 +packetLen(0x086d, 10) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161019 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161012 +packetLen(0x086d, 19) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20161005 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160928 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160727 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160720 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160406 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160330 +packetLen(0x086d, 6) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160120 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160113 +packetLen(0x086d, 5) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160106 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20161102 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20161026 +packetLen(0x086e, 8) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160106 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20161130 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161116 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161109 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161102 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160817 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160810 +packetLen(0x086f, -1) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160106 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20161228 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161116 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161109 +packetLen(0x0870, 19) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160907 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160831 +packetLen(0x0870, 18) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160622 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160615 +packetLen(0x0870, 4) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160608 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160601 +packetLen(0x0870, 8) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160427 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160420 +packetLen(0x0870, 4) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160224 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160211 +packetLen(0x0870, 26) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160106 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20161228 +packetLen(0x0871, 5) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161130 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161123 +packetLen(0x0871, 4) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160106 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20161019 +packetLen(0x0872, 2) +#elif PACKETVER >= 20161012 +packetLen(0x0872, 12) +#elif PACKETVER >= 20161005 +packetLen(0x0872, 2) +#elif PACKETVER >= 20160928 +packetLen(0x0872, 5) +#elif PACKETVER >= 20160427 +packetLen(0x0872, 2) +#elif PACKETVER >= 20160420 +packetLen(0x0872, 5) +#elif PACKETVER >= 20160330 +packetLen(0x0872, 2) +#elif PACKETVER >= 20160323 +packetLen(0x0872, 36) +#elif PACKETVER >= 20160211 +packetLen(0x0872, 2) +#elif PACKETVER >= 20160203 +packetLen(0x0872, 5) +#elif PACKETVER >= 20160106 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20160316 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160309 +packetLen(0x0873, 8) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160302 +packetLen(0x0873, 12) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160224 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160217 +packetLen(0x0873, 5) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160211 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160203 +packetLen(0x0873, 36) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160120 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160113 +packetLen(0x0873, 4) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160106 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20161109 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20161102 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160921 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160913 +packetLen(0x0874, 6) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160907 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160831 +packetLen(0x0874, 26) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160803 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160727 +packetLen(0x0874, 6) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160525 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160518 +packetLen(0x0874, 19) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160427 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160420 +packetLen(0x0874, 8) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160106 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20161214 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161207 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161019 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161012 +packetLen(0x0875, -1) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160921 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160913 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160824 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160817 +packetLen(0x0875, 19) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160810 +packetLen(0x0875, 5) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160106 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20161228 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161221 +packetLen(0x0876, 12) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161116 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161109 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160907 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160831 +packetLen(0x0876, 8) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160106 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20160803 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160727 +packetLen(0x0877, 18) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160720 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160713 +packetLen(0x0877, 10) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160414 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160406 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160106 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20161005 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160928 +packetLen(0x0878, 6) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160907 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160831 +packetLen(0x0878, 7) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160810 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160803 +packetLen(0x0878, 4) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160414 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160406 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160330 +packetLen(0x0878, 8) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160323 +packetLen(0x0878, 19) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160113 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160106 +packetLen(0x0878, 36) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20160921 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160913 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160817 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160810 +packetLen(0x0879, 6) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160414 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160406 +packetLen(0x0879, -1) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160106 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20161116 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20161109 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20161102 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20161026 +packetLen(0x087a, -1) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160921 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160913 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160817 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160810 +packetLen(0x087a, 5) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160420 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160414 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160309 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160302 +packetLen(0x087a, 10) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160224 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160217 +packetLen(0x087a, 19) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160113 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160106 +packetLen(0x087a, 18) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20160720 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160713 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160106 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20161102 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20161026 +packetLen(0x087c, 4) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160907 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160831 +packetLen(0x087c, 6) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160316 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160309 +packetLen(0x087c, 19) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160106 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20160622 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160615 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160608 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160601 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160309 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160302 +packetLen(0x087d, 26) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160106 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20161214 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20161207 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160622 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160615 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160316 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160309 +packetLen(0x087e, 90) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160106 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20161228 +packetLen(0x087f, 12) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161130 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161123 +packetLen(0x087f, 26) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161102 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161026 +packetLen(0x087f, 10) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161005 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160928 +packetLen(0x087f, 12) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160824 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160817 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160810 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160803 +packetLen(0x087f, 5) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160727 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160720 +packetLen(0x087f, 6) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160622 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160615 +packetLen(0x087f, 90) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160406 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160330 +packetLen(0x087f, 8) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160113 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160106 +packetLen(0x087f, 19) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20161130 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161123 +packetLen(0x0880, 36) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161019 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161012 +packetLen(0x0880, 10) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160629 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160622 +packetLen(0x0880, -1) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160420 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160414 +packetLen(0x0880, 18) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160106 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20161228 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20161221 +packetLen(0x0881, 6) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20161116 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20161109 +packetLen(0x0881, 8) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160810 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160803 +packetLen(0x0881, 18) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160706 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160629 +packetLen(0x0881, 19) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160106 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20161130 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20161123 +packetLen(0x0882, -1) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160106 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20160803 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160727 +packetLen(0x0883, 7) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160720 +packetLen(0x0883, 10) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160713 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160330 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160323 +packetLen(0x0883, 26) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160309 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160302 +packetLen(0x0883, 10) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160106 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20161228 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20161221 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160713 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160706 +packetLen(0x0884, 26) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160622 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160615 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160511 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160504 +packetLen(0x0884, 10) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160427 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160420 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160414 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160406 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160302 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160224 +packetLen(0x0884, 7) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20160106 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20161228 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161221 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161123 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20161116 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160817 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160810 +packetLen(0x0885, 19) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160706 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160629 +packetLen(0x0885, 5) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160615 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160608 +packetLen(0x0885, 90) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160420 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160414 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160302 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160224 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160113 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20160106 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20161228 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161214 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161207 +packetLen(0x0886, 7) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161109 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161102 +packetLen(0x0886, 90) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161026 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161012 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20161005 +packetLen(0x0886, -1) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160824 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160817 +packetLen(0x0886, 7) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160810 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160803 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160713 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160706 +packetLen(0x0886, 4) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160511 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160504 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160217 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160211 +packetLen(0x0886, 5) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20160106 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20161221 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20161214 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160921 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160913 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160810 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160803 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160727 +packetLen(0x0887, 19) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160720 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160622 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160615 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160511 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160504 +packetLen(0x0887, 26) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20160106 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20160817 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160810 +packetLen(0x0888, 26) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160803 +packetLen(0x0888, 90) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160622 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160615 +packetLen(0x0888, 10) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160427 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160420 +packetLen(0x0888, 19) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160302 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160224 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160217 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160120 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160113 +packetLen(0x0888, 90) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20160106 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20161228 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161026 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161019 +packetLen(0x0889, 36) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20161005 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160928 +packetLen(0x0889, 19) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160921 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160913 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160713 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160706 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160615 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160608 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160406 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160330 +packetLen(0x0889, 90) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160113 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20160106 +packetLen(0x0889, 5) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20160622 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160615 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160511 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160504 +packetLen(0x088a, 6) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160113 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20160106 +packetLen(0x088a, 26) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20161130 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161123 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20161116 +packetLen(0x088b, 5) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160427 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160420 +packetLen(0x088b, 8) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160406 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160330 +packetLen(0x088b, 5) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160120 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160113 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20160106 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20161228 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20161221 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160211 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160203 +packetLen(0x088c, 4) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20160106 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20161123 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20161116 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160720 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160713 +packetLen(0x088d, 18) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160622 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160615 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160608 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160601 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160511 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160504 +packetLen(0x088d, 10) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160406 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160330 +packetLen(0x088d, 4) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160224 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160217 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20160106 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20161116 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161109 +packetLen(0x088e, -1) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161012 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20161005 +packetLen(0x088e, 8) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160928 +packetLen(0x088e, -1) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160921 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160913 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160803 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160727 +packetLen(0x088e, 10) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160706 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160629 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20160106 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20161207 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161130 +packetLen(0x088f, 4) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161123 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161116 +packetLen(0x088f, 19) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161109 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20161102 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160921 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160913 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160608 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160601 +packetLen(0x088f, 8) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160511 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160504 +packetLen(0x088f, -1) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160224 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160217 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20160106 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20161228 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161221 +packetLen(0x0890, 36) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161123 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161116 +packetLen(0x0890, 5) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161109 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20161102 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160817 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160810 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160629 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160622 +packetLen(0x0890, 26) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160511 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160504 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20160106 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20161116 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161109 +packetLen(0x0891, 12) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161102 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161026 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161012 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20161005 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160921 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160913 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160824 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160817 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160810 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160803 +packetLen(0x0891, 5) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160727 +packetLen(0x0891, -1) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160629 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160622 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160615 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160113 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20160106 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20161123 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161116 +packetLen(0x0892, -1) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161026 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161019 +packetLen(0x0892, 4) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161012 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20161005 +packetLen(0x0892, 18) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160921 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160913 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160720 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160713 +packetLen(0x0892, 12) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160706 +packetLen(0x0892, 5) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160414 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160406 +packetLen(0x0892, 90) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160120 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160113 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20160106 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20161228 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161123 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161116 +packetLen(0x0893, 7) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161019 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20161012 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160706 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160629 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160511 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160504 +packetLen(0x0893, 18) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160120 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160113 +packetLen(0x0893, -1) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20160106 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20161102 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20161026 +packetLen(0x0894, 10) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160518 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160511 +packetLen(0x0894, 26) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20160106 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20161221 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20161214 +packetLen(0x0895, 8) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160810 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160803 +packetLen(0x0895, 26) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160608 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160601 +packetLen(0x0895, 5) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160414 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160406 +packetLen(0x0895, 19) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20160106 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20160330 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160323 +packetLen(0x0896, -1) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20160106 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20161005 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160928 +packetLen(0x0897, 90) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160727 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160720 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20160106 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20161116 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20161109 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20161102 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20161026 +packetLen(0x0898, 26) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160622 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160615 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160511 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160504 +packetLen(0x0898, 8) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160414 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160406 +packetLen(0x0898, 26) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20160106 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20161228 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161221 +packetLen(0x0899, 4) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20161214 +packetLen(0x0899, 36) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160713 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160706 +packetLen(0x0899, 10) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160615 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160608 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160601 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160525 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160224 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160217 +packetLen(0x0899, 4) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160120 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160113 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20160106 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20161228 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161221 +packetLen(0x089a, 8) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161116 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161109 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20161005 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160928 +packetLen(0x089a, 7) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160727 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160720 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160713 +packetLen(0x089a, 26) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160629 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160622 +packetLen(0x089a, 18) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160525 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160518 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160330 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160323 +packetLen(0x089a, 5) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160120 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160113 +packetLen(0x089a, 7) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20160106 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20161228 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161221 +packetLen(0x089b, 7) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161012 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20161005 +packetLen(0x089b, 26) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160921 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160913 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160615 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160608 +packetLen(0x089b, 5) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160518 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160511 +packetLen(0x089b, 4) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160414 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160406 +packetLen(0x089b, 6) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160316 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160309 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20160106 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20161130 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20161123 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20161012 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20161005 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160921 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160913 +packetLen(0x089c, 36) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160824 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160817 +packetLen(0x089c, -1) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160810 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160803 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160727 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160720 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160601 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160525 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20160106 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20161116 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20161109 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160817 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160810 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160511 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160504 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160316 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160309 +packetLen(0x089d, 5) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20160106 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20160727 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160720 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160629 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160622 +packetLen(0x089e, 7) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160420 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160414 +packetLen(0x089e, 26) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160406 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20160106 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20161228 +packetLen(0x089f, 8) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161116 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161109 +packetLen(0x089f, 4) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20161102 +packetLen(0x089f, 26) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160817 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160810 +packetLen(0x089f, -1) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160803 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160727 +packetLen(0x089f, 10) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160720 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160713 +packetLen(0x089f, 4) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20160106 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20161019 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161012 +packetLen(0x08a0, 5) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20161005 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160727 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160720 +packetLen(0x08a0, 12) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160224 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160217 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160120 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160113 +packetLen(0x08a0, 6) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20160106 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20161214 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20161207 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20161123 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20161116 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160810 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160803 +packetLen(0x08a1, -1) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160414 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160406 +packetLen(0x08a1, 7) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20160106 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20161228 +packetLen(0x08a2, 10) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161214 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161207 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161123 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161116 +packetLen(0x08a2, 18) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161109 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161102 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20161005 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160928 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160803 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160727 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160720 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160713 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160629 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160622 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20160106 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20161228 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20160106 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20160803 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160727 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160720 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160713 +packetLen(0x08a4, 19) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160706 +packetLen(0x08a4, 18) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20160106 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20161228 +packetLen(0x08a5, 18) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160921 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160913 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160824 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160817 +packetLen(0x08a5, 36) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160713 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160706 +packetLen(0x08a5, 19) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160427 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160420 +packetLen(0x08a5, 36) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20160106 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20161221 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20161214 +packetLen(0x08a6, 18) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160824 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160817 +packetLen(0x08a6, 26) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160615 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160608 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160120 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160113 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20160106 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20161116 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20161109 +packetLen(0x08a7, 5) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160803 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160727 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160608 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160601 +packetLen(0x08a7, 8) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160316 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160309 +packetLen(0x08a7, 18) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20160106 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20160907 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160831 +packetLen(0x08a8, -1) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160713 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160706 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160629 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160622 +packetLen(0x08a8, 36) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20160106 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20161130 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161123 +packetLen(0x08a9, 10) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20161005 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160928 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160907 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160831 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160824 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160817 +packetLen(0x08a9, -1) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160810 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160525 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160518 +packetLen(0x08a9, 26) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160309 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160302 +packetLen(0x08a9, 8) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160217 +packetLen(0x08a9, 26) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20160106 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20161228 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161221 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161130 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161116 +packetLen(0x08aa, 12) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161109 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20161102 +packetLen(0x08aa, 5) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160727 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160720 +packetLen(0x08aa, -1) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160120 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160113 +packetLen(0x08aa, -1) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20160106 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20161228 +packetLen(0x08ab, 8) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160824 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160817 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20160106 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20161228 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20161123 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20161116 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160824 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160817 +packetLen(0x08ac, 10) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160608 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160601 +packetLen(0x08ac, 19) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160414 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160406 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160224 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160217 +packetLen(0x08ac, 18) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20160106 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20161228 +packetLen(0x08ad, 36) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161214 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161207 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161116 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161109 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161012 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20161005 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160824 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160817 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160511 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160504 +packetLen(0x08ad, 5) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20160106 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 149) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20160907 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160831 +packetLen(0x0917, 36) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160727 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160720 +packetLen(0x0917, 4) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160106 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20161214 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20161207 +packetLen(0x0918, 18) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160713 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160706 +packetLen(0x0918, 90) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160518 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160511 +packetLen(0x0918, 5) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160504 +packetLen(0x0918, 6) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160420 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160414 +packetLen(0x0918, 4) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160406 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160330 +packetLen(0x0918, 8) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160211 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160203 +packetLen(0x0918, 8) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160106 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20161012 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161005 +packetLen(0x0919, 6) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160928 +packetLen(0x0919, 5) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160120 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160113 +packetLen(0x0919, 12) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160106 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20161130 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161123 +packetLen(0x091a, 8) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161102 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161026 +packetLen(0x091a, 19) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160817 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160810 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160309 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160302 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160106 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20161109 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20161102 +packetLen(0x091b, 36) // ZC_PRNPC_STATE +#elif PACKETVER >= 20161026 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160907 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160831 +packetLen(0x091b, 4) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160817 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160803 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160713 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160706 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160330 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160323 +packetLen(0x091b, 4) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160120 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160113 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20160106 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20161228 +packetLen(0x091c, 26) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160913 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160907 +packetLen(0x091c, 36) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160817 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160810 +packetLen(0x091c, 10) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160727 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160720 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160713 +packetLen(0x091c, 5) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160629 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160622 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20160106 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20161214 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20161207 +packetLen(0x091d, 8) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160720 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160713 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160601 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160525 +packetLen(0x091d, 36) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160316 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160309 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160224 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160217 +packetLen(0x091d, 5) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160113 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160106 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20161012 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20161005 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160928 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160706 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160629 +packetLen(0x091e, 18) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160106 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 + +// Packet: 0x0920 +#if PACKETVER >= 20161123 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20161116 +packetLen(0x0920, 90) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160518 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160511 +packetLen(0x0920, 19) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160316 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160309 +packetLen(0x0920, 8) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160302 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160224 +packetLen(0x0920, 4) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160217 +packetLen(0x0920, 7) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160106 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20160720 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160713 +packetLen(0x0921, 90) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160511 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160504 +packetLen(0x0921, 90) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160106 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20161109 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20161102 +packetLen(0x0922, 6) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160720 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160713 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160706 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160629 +packetLen(0x0922, 8) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160511 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160504 +packetLen(0x0922, 6) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160420 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160414 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160323 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160316 +packetLen(0x0922, 36) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160309 +packetLen(0x0922, -1) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160203 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160127 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160106 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 + +// Packet: 0x0924 +#if PACKETVER >= 20160713 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160706 +packetLen(0x0924, 10) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160608 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160601 +packetLen(0x0924, 4) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160511 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160504 +packetLen(0x0924, 5) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160120 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160113 +packetLen(0x0924, 6) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160106 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20161123 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161116 +packetLen(0x0925, 10) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161109 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161102 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160706 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160629 +packetLen(0x0925, 10) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160406 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160330 +packetLen(0x0925, 19) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160106 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20161228 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161221 +packetLen(0x0926, 26) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161130 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161123 +packetLen(0x0926, 19) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161102 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20161026 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160817 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160810 +packetLen(0x0926, 4) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160713 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160706 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160629 +packetLen(0x0926, 26) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160330 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160323 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160224 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160217 +packetLen(0x0926, 10) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160106 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20161116 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20161109 +packetLen(0x0927, 26) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20161005 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160928 +packetLen(0x0927, 10) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160420 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160414 +packetLen(0x0927, 36) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160406 +packetLen(0x0927, 8) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160330 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160323 +packetLen(0x0927, 18) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160309 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160302 +packetLen(0x0927, 6) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160106 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20161228 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20161221 +packetLen(0x0928, 26) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20161109 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20161102 +packetLen(0x0928, 26) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160921 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160913 +packetLen(0x0928, 26) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160525 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160518 +packetLen(0x0928, 5) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160106 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20161228 +packetLen(0x0929, 10) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160824 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160817 +packetLen(0x0929, -1) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160810 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160803 +packetLen(0x0929, 36) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160713 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160706 +packetLen(0x0929, 8) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160316 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160309 +packetLen(0x0929, 4) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160302 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160224 +packetLen(0x0929, 5) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160106 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20161130 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161123 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161116 +packetLen(0x092a, 10) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160727 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160720 +packetLen(0x092a, 26) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160406 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160330 +packetLen(0x092a, -1) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160316 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160309 +packetLen(0x092a, -1) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160106 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20161012 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20161005 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160817 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160810 +packetLen(0x092b, -1) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160106 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20161102 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20161026 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160907 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160831 +packetLen(0x092c, 26) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160720 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160713 +packetLen(0x092c, 6) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160601 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160525 +packetLen(0x092c, 18) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160406 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160330 +packetLen(0x092c, 18) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160106 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20161019 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20161012 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20161005 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160928 +packetLen(0x092d, 10) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160824 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160817 +packetLen(0x092d, 90) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160810 +packetLen(0x092d, 8) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160713 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160706 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160629 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160622 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160414 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160406 +packetLen(0x092d, 12) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160309 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160302 +packetLen(0x092d, 4) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160106 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20161228 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20161221 +packetLen(0x092e, 18) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20161214 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20161102 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20161026 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160907 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160831 +packetLen(0x092e, 12) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160803 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160727 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160224 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160217 +packetLen(0x092e, 90) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160106 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20161130 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20161123 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20161109 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20161102 +packetLen(0x092f, 6) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160629 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160622 +packetLen(0x092f, 10) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160427 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160420 +packetLen(0x092f, 18) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160309 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160302 +packetLen(0x092f, 90) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160224 +packetLen(0x092f, -1) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160106 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20161228 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161221 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161130 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161123 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161102 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161026 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160824 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160817 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160810 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160803 +packetLen(0x0930, 12) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160406 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160330 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160120 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160113 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160106 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20161207 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161130 +packetLen(0x0931, 5) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161123 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161116 +packetLen(0x0931, -1) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161012 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161005 +packetLen(0x0931, 26) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160720 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160713 +packetLen(0x0931, 10) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160420 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160414 +packetLen(0x0931, 6) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160106 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20161012 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20161005 +packetLen(0x0932, 12) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160810 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160803 +packetLen(0x0932, 10) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160316 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160309 +packetLen(0x0932, 5) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160120 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160113 +packetLen(0x0932, 8) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160106 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20160414 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160406 +packetLen(0x0933, 5) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160330 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160323 +packetLen(0x0933, 5) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160106 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20161228 +packetLen(0x0934, 26) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160831 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160824 +packetLen(0x0934, 36) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160810 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160803 +packetLen(0x0934, 7) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160420 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160414 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160406 +packetLen(0x0934, 10) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160106 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20161228 +packetLen(0x0935, 8) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160921 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160913 +packetLen(0x0935, -1) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160817 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160810 +packetLen(0x0935, 90) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160427 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160420 +packetLen(0x0935, 26) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160106 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20161019 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20161012 +packetLen(0x0936, 6) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160803 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160727 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160629 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160622 +packetLen(0x0936, 19) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160302 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160224 +packetLen(0x0936, 36) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160106 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20161116 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20161109 +packetLen(0x0937, 26) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20161019 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20161012 +packetLen(0x0937, 6) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160810 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160803 +packetLen(0x0937, 10) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160629 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160622 +packetLen(0x0937, 12) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160601 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160525 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160106 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20161228 +packetLen(0x0938, 4) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160302 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160224 +packetLen(0x0938, 6) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160106 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20161019 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20161012 +packetLen(0x0939, -1) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160824 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160817 +packetLen(0x0939, 8) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160720 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160713 +packetLen(0x0939, 26) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160706 +packetLen(0x0939, 8) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160406 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160330 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160106 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20160921 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160913 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160907 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160831 +packetLen(0x093a, 5) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160810 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160803 +packetLen(0x093a, 8) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160106 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20161012 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161005 +packetLen(0x093b, 10) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160727 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160720 +packetLen(0x093b, 5) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160629 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160622 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160615 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160608 +packetLen(0x093b, 4) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160406 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160330 +packetLen(0x093b, 26) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160224 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160217 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160106 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20161123 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161116 +packetLen(0x093c, -1) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161109 +packetLen(0x093c, 36) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160824 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160817 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160330 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160323 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160120 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160113 +packetLen(0x093c, 8) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160106 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20161228 +packetLen(0x093d, 7) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161221 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161214 +packetLen(0x093d, 5) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160713 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160706 +packetLen(0x093d, 6) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160106 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20160810 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160803 +packetLen(0x093e, 6) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160727 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160720 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160706 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160629 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160622 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160615 +packetLen(0x093e, 26) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160511 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160504 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160224 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160217 +packetLen(0x093e, -1) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160211 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160203 +packetLen(0x093e, 26) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160106 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20161116 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20161109 +packetLen(0x093f, 6) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160810 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160803 +packetLen(0x093f, -1) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160629 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160622 +packetLen(0x093f, -1) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160106 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20160518 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160511 +packetLen(0x0940, 36) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160504 +packetLen(0x0940, 19) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160427 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160414 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160406 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160211 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160203 +packetLen(0x0940, 5) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160113 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160106 +packetLen(0x0940, 8) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20161130 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20161123 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160511 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160504 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160224 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160217 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160120 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160113 +packetLen(0x0941, -1) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20160106 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20161012 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20161005 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20160106 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20161228 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161221 +packetLen(0x0943, 10) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161214 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161207 +packetLen(0x0943, 4) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161130 +packetLen(0x0943, 19) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161019 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20161012 +packetLen(0x0943, 18) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160817 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160810 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20160106 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20161228 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161019 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161012 +packetLen(0x0944, 8) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20161005 +packetLen(0x0944, -1) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160928 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160713 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160706 +packetLen(0x0944, 8) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20160106 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20161012 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20161005 +packetLen(0x0945, 5) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160720 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160713 +packetLen(0x0945, 7) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160706 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160601 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160525 +packetLen(0x0945, 26) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160420 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160414 +packetLen(0x0945, 26) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160309 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160302 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20160106 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20161228 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161221 +packetLen(0x0946, 10) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161109 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161102 +packetLen(0x0946, 19) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161026 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20161019 +packetLen(0x0946, 19) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160907 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160831 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160803 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160720 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160706 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160622 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20160106 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20160720 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160713 +packetLen(0x0947, 8) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160211 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160203 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20160106 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20160706 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160629 +packetLen(0x0948, 5) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160622 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160615 +packetLen(0x0948, 7) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160511 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160504 +packetLen(0x0948, 12) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20160106 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20161109 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20161102 +packetLen(0x0949, 5) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160921 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160913 +packetLen(0x0949, 26) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160803 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160727 +packetLen(0x0949, 8) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160414 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160406 +packetLen(0x0949, -1) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20160106 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20161123 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20161116 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20161012 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20161005 +packetLen(0x094a, -1) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160928 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160921 +packetLen(0x094a, 36) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160913 +packetLen(0x094a, 90) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160907 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160831 +packetLen(0x094a, 5) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160706 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160629 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160622 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160615 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160601 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160525 +packetLen(0x094a, 8) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160224 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160217 +packetLen(0x094a, 10) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20160106 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20161228 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20161221 +packetLen(0x094b, -1) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20161102 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20161026 +packetLen(0x094b, 8) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160622 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160615 +packetLen(0x094b, -1) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20160106 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20160713 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160706 +packetLen(0x094c, 36) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160302 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160224 +packetLen(0x094c, 18) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20160106 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20161130 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20161123 +packetLen(0x094d, 10) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20161012 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20161005 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160727 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160720 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160615 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160608 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160414 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160406 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160120 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160113 +packetLen(0x094d, 19) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20160106 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20161005 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160928 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160601 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160525 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160427 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160420 +packetLen(0x094e, -1) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160309 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160302 +packetLen(0x094e, 36) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20160106 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20161130 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161123 +packetLen(0x094f, -1) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161019 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20161012 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160907 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160831 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160316 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160309 +packetLen(0x094f, 7) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160224 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160217 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160120 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160113 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20160106 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20160921 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160913 +packetLen(0x0950, 7) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160907 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160831 +packetLen(0x0950, -1) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160309 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160302 +packetLen(0x0950, 8) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20160106 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20161019 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20161012 +packetLen(0x0951, 90) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160803 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160727 +packetLen(0x0951, 8) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160601 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160525 +packetLen(0x0951, 26) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20160106 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20161012 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20161005 +packetLen(0x0952, 4) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160921 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160913 +packetLen(0x0952, 19) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160810 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160803 +packetLen(0x0952, 5) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160511 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160504 +packetLen(0x0952, 26) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20160106 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20161102 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20161026 +packetLen(0x0953, 26) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20161005 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160928 +packetLen(0x0953, -1) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160727 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160720 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160420 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160414 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160406 +packetLen(0x0953, 36) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20160106 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20161207 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161130 +packetLen(0x0954, 36) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161116 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20161109 +packetLen(0x0954, 10) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160921 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160913 +packetLen(0x0954, 5) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160907 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160831 +packetLen(0x0954, -1) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160622 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160615 +packetLen(0x0954, 5) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160211 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160203 +packetLen(0x0954, 8) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20160106 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20161005 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160928 +packetLen(0x0955, 18) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160810 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160803 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20160106 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20161116 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20161109 +packetLen(0x0956, 5) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160810 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160803 +packetLen(0x0956, -1) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160601 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160525 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160316 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160309 +packetLen(0x0956, 6) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20160106 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20161123 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20161116 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20161005 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160928 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160907 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160831 +packetLen(0x0957, -1) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160824 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160817 +packetLen(0x0957, 18) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160720 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160713 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160706 +packetLen(0x0957, 12) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160622 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160615 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160309 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160302 +packetLen(0x0957, -1) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20160106 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20160713 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160706 +packetLen(0x0958, 6) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160622 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160615 +packetLen(0x0958, 8) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160608 +packetLen(0x0958, 36) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20160106 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20161207 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20161130 +packetLen(0x0959, 26) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160810 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160803 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160629 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160622 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20160106 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20161228 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161221 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161130 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161123 +packetLen(0x095a, 8) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161012 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20161005 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160928 +packetLen(0x095a, 4) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160810 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160803 +packetLen(0x095a, 26) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160706 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160629 +packetLen(0x095a, 7) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160309 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160302 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160211 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160203 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160127 +packetLen(0x095a, 36) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20160106 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20161130 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161123 +packetLen(0x095b, 7) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161116 +packetLen(0x095b, 36) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161012 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20161005 +packetLen(0x095b, 19) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160817 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160810 +packetLen(0x095b, 7) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160727 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160720 +packetLen(0x095b, 18) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160713 +packetLen(0x095b, 8) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160615 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160608 +packetLen(0x095b, 8) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160601 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160511 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160504 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20160106 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20161102 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20161026 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20161019 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20161012 +packetLen(0x095c, 5) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160622 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160615 +packetLen(0x095c, 18) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160427 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160420 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20160106 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20161214 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20161207 +packetLen(0x095d, 36) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20161123 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20161116 +packetLen(0x095d, 4) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160414 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160406 +packetLen(0x095d, 5) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160211 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160203 +packetLen(0x095d, 8) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20160106 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20161109 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20161102 +packetLen(0x095e, 12) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20161026 +packetLen(0x095e, 90) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160907 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160831 +packetLen(0x095e, 8) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160622 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160615 +packetLen(0x095e, -1) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160316 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160309 +packetLen(0x095e, 12) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160224 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160217 +packetLen(0x095e, 36) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20160106 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20160803 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160727 +packetLen(0x095f, -1) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160608 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160601 +packetLen(0x095f, 36) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160414 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160406 +packetLen(0x095f, 5) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20160106 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20160907 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160831 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160727 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160720 +packetLen(0x0960, 8) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160309 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160302 +packetLen(0x0960, 8) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20160106 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20160622 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160615 +packetLen(0x0961, 12) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160608 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160601 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160309 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160302 +packetLen(0x0961, 18) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160224 +packetLen(0x0961, 5) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160203 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160127 +packetLen(0x0961, 26) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20160106 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20161130 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161123 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161102 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161026 +packetLen(0x0962, 5) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161019 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20161012 +packetLen(0x0962, 10) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160921 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160913 +packetLen(0x0962, 4) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160414 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160406 +packetLen(0x0962, 4) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20160106 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20161026 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20161019 +packetLen(0x0963, 26) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160921 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160913 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160824 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160817 +packetLen(0x0963, 5) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20160106 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20161228 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20161221 +packetLen(0x0964, 19) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20161109 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20161102 +packetLen(0x0964, -1) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160907 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160831 +packetLen(0x0964, 10) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20160106 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20161228 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161221 +packetLen(0x0965, 5) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161214 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161207 +packetLen(0x0965, 26) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161109 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20161102 +packetLen(0x0965, 10) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160629 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160622 +packetLen(0x0965, 5) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20160106 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20161109 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161102 +packetLen(0x0966, 6) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161019 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20161012 +packetLen(0x0966, 5) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160224 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160217 +packetLen(0x0966, 6) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20160106 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20161123 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161116 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161019 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161012 +packetLen(0x0967, 36) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20161005 +packetLen(0x0967, 10) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160907 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160831 +packetLen(0x0967, 10) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160817 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160810 +packetLen(0x0967, 8) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160309 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160302 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160224 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160217 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160120 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160113 +packetLen(0x0967, -1) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20160106 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20160706 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160629 +packetLen(0x0968, 10) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160309 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160302 +packetLen(0x0968, 7) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20160106 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20160803 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160727 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160720 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160706 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160622 +packetLen(0x0969, 6) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160615 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160608 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160511 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160504 +packetLen(0x0969, 36) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160224 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160217 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20160106 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20161221 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20161123 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20161026 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20161019 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160928 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160921 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160913 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160907 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160831 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160824 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160810 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160803 +packetLen(0x096a, -1) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160706 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160629 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160615 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160511 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160504 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160414 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160406 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160309 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160302 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160224 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160217 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160120 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160113 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20160106 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 10) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ae +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING + +// Packet: 0x09b3 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c4 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 + +// Packet: 0x0a0a +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 + +// Packet: 0x0a0b +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 + +// Packet: 0x0a0c +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +#if PACKETVER >= 20160921 +packetLen(0x0a37, 59) // ZC_ITEM_PICKUP_ACK_V7 +#elif PACKETVER >= 20160106 +packetLen(0x0a37, 57) // ZC_ITEM_PICKUP_ACK_V7 +#endif + +// Packet: 0x0a38 +packetLen(0x0a38, 3) // ZC_OPEN_UI + +// Packet: 0x0a39 +packetLen(0x0a39, 36) // CH_MAKE_CHAR + +// Packet: 0x0a3a +packetLen(0x0a3a, 12) + +// Packet: 0x0a3b +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT + +// Packet: 0x0a3c +packetLen(0x0a3c, -1) + +// Packet: 0x0a3d +packetLen(0x0a3d, 18) + +// Packet: 0x0a3e +packetLen(0x0a3e, -1) + +// Packet: 0x0a3f +packetLen(0x0a3f, 9) + +// Packet: 0x0a40 +packetLen(0x0a40, 11) + +// Packet: 0x0a41 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL + +// Packet: 0x0a42 +packetLen(0x0a42, 43) + +// Packet: 0x0a43 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0a44 +packetLen(0x0a44, -1) // ZC_GROUP_LIST + +// Packet: 0x0a46 +packetLen(0x0a46, 14) + +// Packet: 0x0a47 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES + +// Packet: 0x0a48 +packetLen(0x0a48, 2) + +// Packet: 0x0a49 +packetLen(0x0a49, 22) // CZ_PRIVATE_AIRSHIP_REQUEST + +// Packet: 0x0a4a +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE + +// Packet: 0x0a4b +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE + +// Packet: 0x0a4c +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE + +// Packet: 0x0a4d +#if PACKETVER >= 20160127 +packetLen(0x0a4d, -1) +#endif + +// Packet: 0x0a4e +#if PACKETVER >= 20160302 +packetLen(0x0a4e, 4) +#endif + +// Packet: 0x0a4f +#if PACKETVER >= 20160302 +packetLen(0x0a4f, -1) +#endif + +// Packet: 0x0a50 +#if PACKETVER >= 20160427 +packetLen(0x0a50, 4) +#elif PACKETVER >= 20160302 +packetLen(0x0a50, 6) +#endif + +// Packet: 0x0a51 +#if PACKETVER >= 20160302 +packetLen(0x0a51, 34) // ZC_CHECK_RECEIVE_CHARACTER_NAME +#endif + +// Packet: 0x0a52 +#if PACKETVER >= 20160316 +packetLen(0x0a52, 20) +#endif + +// Packet: 0x0a53 +#if PACKETVER >= 20160316 +packetLen(0x0a53, 10) +#endif + +// Packet: 0x0a54 +#if PACKETVER >= 20160316 +packetLen(0x0a54, -1) +#endif + +// Packet: 0x0a55 +#if PACKETVER >= 20160316 +packetLen(0x0a55, 2) +#endif + +// Packet: 0x0a56 +#if PACKETVER >= 20160316 +packetLen(0x0a56, 6) +#endif + +// Packet: 0x0a57 +#if PACKETVER >= 20160316 +packetLen(0x0a57, 6) +#endif + +// Packet: 0x0a58 +#if PACKETVER >= 20160316 +packetLen(0x0a58, 8) +#endif + +// Packet: 0x0a59 +#if PACKETVER >= 20160316 +packetLen(0x0a59, -1) +#endif + +// Packet: 0x0a5a +#if PACKETVER >= 20160316 +packetLen(0x0a5a, 2) +#endif + +// Packet: 0x0a5b +#if PACKETVER >= 20160316 +packetLen(0x0a5b, 7) +#endif + +// Packet: 0x0a5c +#if PACKETVER >= 20160316 +packetLen(0x0a5c, 18) +#endif + +// Packet: 0x0a5d +#if PACKETVER >= 20160316 +packetLen(0x0a5d, 6) +#endif + +// Packet: 0x0a68 +#if PACKETVER >= 20160323 +packetLen(0x0a68, 3) // CZ_REQ_OPEN_UI +#endif + +// Packet: 0x0a69 +#if PACKETVER >= 20160323 +packetLen(0x0a69, 6) +#endif + +// Packet: 0x0a6a +#if PACKETVER >= 20160323 +packetLen(0x0a6a, 12) +#endif + +// Packet: 0x0a6b +#if PACKETVER >= 20160323 +packetLen(0x0a6b, -1) +#endif + +// Packet: 0x0a6c +#if PACKETVER >= 20160330 +packetLen(0x0a6c, 7) +#endif + +// Packet: 0x0a6d +#if PACKETVER >= 20160330 +packetLen(0x0a6d, -1) +#endif + +// Packet: 0x0a6e +#if PACKETVER >= 20160330 +packetLen(0x0a6e, -1) // CZ_REQ_SEND_RODEX +#endif + +// Packet: 0x0a6f +#if PACKETVER >= 20160330 +packetLen(0x0a6f, -1) // ZC_FORMATSTRING_MSG_COLOR +#endif + +// Packet: 0x0a70 +#if PACKETVER >= 20160504 +packetLen(0x0a70, 2) +#endif + +// Packet: 0x0a71 +#if PACKETVER >= 20160504 +packetLen(0x0a71, -1) +#endif + +// Packet: 0x0a72 +#if PACKETVER >= 20160504 +packetLen(0x0a72, 61) +#endif + +// Packet: 0x0a73 +#if PACKETVER >= 20160518 +packetLen(0x0a73, 2) +#elif PACKETVER >= 20160511 +packetLen(0x0a73, 6) +#endif + +// Packet: 0x0a74 +#if PACKETVER >= 20160511 +packetLen(0x0a74, 8) +#endif + +// Packet: 0x0a76 +#if PACKETVER >= 20160518 +packetLen(0x0a76, 80) +#endif + +// Packet: 0x0a77 +#if PACKETVER >= 20160525 +packetLen(0x0a77, 15) +#endif + +// Packet: 0x0a78 +#if PACKETVER >= 20160525 +packetLen(0x0a78, 15) +#endif + +// Packet: 0x0a79 +#if PACKETVER >= 20160601 +packetLen(0x0a79, -1) +#endif + +// Packet: 0x0a7b +#if PACKETVER >= 20160601 +packetLen(0x0a7b, -1) +#endif + +// Packet: 0x0a7c +#if PACKETVER >= 20160601 +packetLen(0x0a7c, -1) +#endif + +// Packet: 0x0a7d +#if PACKETVER >= 20160601 +packetLen(0x0a7d, -1) // ZC_ACK_RODEX_LIST +#endif + +// Packet: 0x0a7e +#if PACKETVER >= 20160706 +packetLen(0x0a7e, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY +#elif PACKETVER >= 20160615 +packetLen(0x0a7e, 4) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY +#endif + +// Packet: 0x0a7f +#if PACKETVER >= 20160615 +packetLen(0x0a7f, -1) // CZ_OFFLINE_STORE_CREATE +#endif + +// Packet: 0x0a80 +#if PACKETVER >= 20160629 +packetLen(0x0a80, 6) +#elif PACKETVER >= 20160615 +packetLen(0x0a80, 2) +#endif + +// Packet: 0x0a81 +#if PACKETVER >= 20160803 +packetLen(0x0a81, 4) +#elif PACKETVER >= 20160706 +packetLen(0x0a81, 3) +#elif PACKETVER >= 20160622 +// removed +#elif PACKETVER >= 20160615 +packetLen(0x0a81, 3) +#endif + +// Packet: 0x0a82 +#if PACKETVER >= 20160622 +packetLen(0x0a82, 46) +#endif + +// Packet: 0x0a83 +#if PACKETVER >= 20160622 +packetLen(0x0a83, 46) +#endif + +// Packet: 0x0a84 +#if PACKETVER >= 20160622 +packetLen(0x0a84, 94) // ZC_GUILD_INFO +#endif + +// Packet: 0x0a85 +#if PACKETVER >= 20160622 +packetLen(0x0a85, 82) +#endif + +// Packet: 0x0a86 +#if PACKETVER >= 20160622 +packetLen(0x0a86, -1) +#endif + +// Packet: 0x0a87 +#if PACKETVER >= 20160713 +packetLen(0x0a87, -1) +#elif PACKETVER >= 20160622 +packetLen(0x0a87, 4) +#endif + +// Packet: 0x0a88 +#if PACKETVER >= 20160622 +packetLen(0x0a88, 2) +#endif + +// Packet: 0x0a89 +#if PACKETVER >= 20160706 +packetLen(0x0a89, 57) // ZC_NOTIFY_OFFLINE_STORE +#elif PACKETVER >= 20160629 +packetLen(0x0a89, 32) // ZC_NOTIFY_OFFLINE_STORE +#endif + +// Packet: 0x0a8a +#if PACKETVER >= 20160629 +packetLen(0x0a8a, 6) // ZC_OFFLINE_STORE_VANISH +#endif + +// Packet: 0x0a8b +#if PACKETVER >= 20160629 +packetLen(0x0a8b, 2) +#endif + +// Packet: 0x0a8c +#if PACKETVER >= 20160629 +packetLen(0x0a8c, 2) +#endif + +// Packet: 0x0a8d +#if PACKETVER >= 20160629 +packetLen(0x0a8d, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS +#endif + +// Packet: 0x0a8e +#if PACKETVER >= 20160720 +packetLen(0x0a8e, 2) +#endif + +// Packet: 0x0a8f +#if PACKETVER >= 20160720 +packetLen(0x0a8f, 2) +#endif + +// Packet: 0x0a90 +#if PACKETVER >= 20160720 +packetLen(0x0a90, 3) +#endif + +// Packet: 0x0a91 +#if PACKETVER >= 20160727 +packetLen(0x0a91, -1) // ZC_OFFLINE_STORE_ITEMS +#endif + +// Packet: 0x0a92 +#if PACKETVER >= 20160727 +packetLen(0x0a92, -1) +#endif + +// Packet: 0x0a93 +#if PACKETVER >= 20160727 +packetLen(0x0a93, 3) +#endif + +// Packet: 0x0a94 +#if PACKETVER >= 20160803 +packetLen(0x0a94, 2) +#endif + +// Packet: 0x0a95 +#if PACKETVER >= 20160907 +packetLen(0x0a95, 4) +#endif + +// Packet: 0x0a96 +#if PACKETVER >= 20160921 +packetLen(0x0a96, 51) // ZC_ADD_EXCHANGE_ITEM4 +#endif + +// Packet: 0x0a97 +#if PACKETVER >= 20160928 +packetLen(0x0a97, 8) // CZ_ALT_EQUIPMENT_EQUIP +#endif + +// Packet: 0x0a98 +#if PACKETVER >= 20160928 +packetLen(0x0a98, 12) // ZC_ALT_EQUIPMENT_EQUIP +#endif + +// Packet: 0x0a99 +#if PACKETVER >= 20160928 +packetLen(0x0a99, 8) +#endif + +// Packet: 0x0a9a +#if PACKETVER >= 20160928 +packetLen(0x0a9a, 10) // ZC_ALT_EQUIPMENT_REMOVE +#endif + +// Packet: 0x0a9b +#if PACKETVER >= 20160928 +packetLen(0x0a9b, -1) // ZC_ALT_EQUIPMENT_ITEMS +#endif + +// Packet: 0x0a9c +#if PACKETVER >= 20160928 +packetLen(0x0a9c, 2) +#endif + +// Packet: 0x0a9d +#if PACKETVER >= 20160928 +packetLen(0x0a9d, 4) +#endif + +// Packet: 0x0a9e +#if PACKETVER >= 20160928 +packetLen(0x0a9e, 2) +#endif + +// Packet: 0x0a9f +#if PACKETVER >= 20160928 +packetLen(0x0a9f, 2) +#endif + +// Packet: 0x0aa0 +#if PACKETVER >= 20161005 +packetLen(0x0aa0, 2) // ZC_REFINE_OPEN_WINDOW +#endif + +// Packet: 0x0aa1 +#if PACKETVER >= 20161005 +packetLen(0x0aa1, 4) // CZ_REFINE_ADD_ITEM +#endif + +// Packet: 0x0aa2 +#if PACKETVER >= 20161005 +packetLen(0x0aa2, -1) // ZC_REFINE_ADD_ITEM +#endif + +// Packet: 0x0aa3 +#if PACKETVER >= 20161005 +packetLen(0x0aa3, 7) // CZ_REFINE_ITEM_REQUEST +#endif + +// Packet: 0x0aa4 +#if PACKETVER >= 20161005 +packetLen(0x0aa4, 2) // CZ_REFINE_WINDOW_CLOSE +#endif + +// Packet: 0x0aa5 +#if PACKETVER >= 20161026 +packetLen(0x0aa5, -1) // ZC_MEMBERMGR_INFO +#endif + +// Packet: 0x0aa6 +#if PACKETVER >= 20161026 +packetLen(0x0aa6, 36) // ZC_MEMBER_ADD +#endif + +// Packet: 0x0aa7 +#if PACKETVER >= 20161130 +packetLen(0x0aa7, 6) // ZC_INVENTORY_MOVE_FAILED +#endif + +// Packet: 0x0aa8 +#if PACKETVER >= 20161130 +packetLen(0x0aa8, 5) +#endif + +// Packet: 0x0aa9 +#if PACKETVER >= 20161130 +packetLen(0x0aa9, -1) +#endif + +// Packet: 0x0aaa +#if PACKETVER >= 20161130 +packetLen(0x0aaa, -1) +#endif + +// Packet: 0x0aab +#if PACKETVER >= 20161130 +packetLen(0x0aab, -1) +#endif + +// Packet: 0x0aac +#if PACKETVER >= 20161207 +packetLen(0x0aac, 67) +#endif + +// Packet: 0x0aad +#if PACKETVER >= 20161221 +packetLen(0x0aad, 47) +#endif + +// Packet: 0x0aae +#if PACKETVER >= 20161221 +packetLen(0x0aae, 2) +#endif + +// Packet: 0x0aaf +#if PACKETVER >= 20161221 +packetLen(0x0aaf, 6) +#endif + +// Packet: 0x0ab0 +#if PACKETVER >= 20161221 +packetLen(0x0ab0, 6) +#endif + +// Packet: 0x0ab1 +#if PACKETVER >= 20161228 +packetLen(0x0ab1, 14) +#elif PACKETVER >= 20161221 +packetLen(0x0ab1, 10) +#endif + + +#endif /* COMMON_PACKETS2016_LEN_RE_H */ diff --git a/src/common/packets/packets2017_len_main.h b/src/common/packets/packets2017_len_main.h new file mode 100644 index 000000000..572969174 --- /dev/null +++ b/src/common/packets/packets2017_len_main.h @@ -0,0 +1,9103 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2017_LEN_MAIN_H +#define COMMON_PACKETS2017_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20170906 +packetLen(0x006d, 157) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20170104 +packetLen(0x006d, 149) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20171220 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171213 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171115 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171108 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171101 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171025 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170913 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170906 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170719 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170712 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170705 +packetLen(0x0202, 36) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170628 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170621 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170329 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170322 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170315 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170308 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170228 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170222 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170104 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20171108 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20171101 +packetLen(0x022d, 36) // CZ_COMMAND_MER +#elif PACKETVER >= 20171025 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20171011 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20171002 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20170823 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170816 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20170809 +packetLen(0x022d, 4) // CZ_COMMAND_MER +#elif PACKETVER >= 20170801 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20170726 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170719 +packetLen(0x022d, 7) // CZ_COMMAND_MER +#elif PACKETVER >= 20170712 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20170705 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170628 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20170329 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170322 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20170315 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170308 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20170228 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20170125 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170118 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20170104 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20171101 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20171025 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20171018 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20171011 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170719 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170712 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170705 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170628 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170621 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170614 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170419 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170412 +packetLen(0x023b, 10) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170329 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170322 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170315 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170308 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170104 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20171227 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171220 +packetLen(0x0281, 19) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171213 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171129 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171122 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171101 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171025 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171018 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171011 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170920 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170913 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170906 +packetLen(0x0281, 36) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170830 +packetLen(0x0281, 5) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170823 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170816 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170809 +packetLen(0x0281, 8) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170801 +packetLen(0x0281, 5) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170719 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170712 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170705 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170628 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170517 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170502 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170426 +packetLen(0x0281, 36) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170412 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170405 +packetLen(0x0281, 18) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170329 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170322 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170315 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170308 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170111 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170104 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20171206 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20171129 +packetLen(0x02c4, 5) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20171122 +packetLen(0x02c4, -1) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20171002 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170927 +packetLen(0x02c4, 5) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170913 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170906 +packetLen(0x02c4, 90) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170830 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170712 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170705 +packetLen(0x02c4, 18) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170322 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170315 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170222 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170215 +packetLen(0x02c4, 36) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170208 +packetLen(0x02c4, 4) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170104 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20171227 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171220 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171213 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171206 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171129 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171122 +packetLen(0x035f, 4) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171115 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171101 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170927 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170920 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170913 +packetLen(0x035f, 26) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170906 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170830 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170823 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170809 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170801 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170719 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170621 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170517 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170426 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170412 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170322 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170315 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170308 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170228 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170222 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170215 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170201 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170125 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170104 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20171227 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171220 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171206 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171122 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171115 +packetLen(0x0360, 19) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171101 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171002 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170913 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170906 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170830 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170823 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170809 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170801 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170719 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170621 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170517 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170426 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170412 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170322 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170315 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170308 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170228 +packetLen(0x0360, 7) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170201 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170125 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170104 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20171227 +packetLen(0x0361, 7) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171206 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171129 +packetLen(0x0361, 12) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171101 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171025 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171002 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170927 +packetLen(0x0361, 4) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170830 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170823 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170816 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170809 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170801 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170719 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170712 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170705 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170628 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170621 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170614 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170607 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170531 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170329 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170322 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170315 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170308 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170104 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20171220 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171213 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171101 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171025 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171018 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171011 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171002 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170927 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170830 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170823 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170816 +packetLen(0x0362, 90) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170809 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170801 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170719 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170712 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170705 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170628 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170517 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170502 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170412 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170405 +packetLen(0x0362, 7) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170329 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170322 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170315 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170308 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170228 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170111 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170104 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20171220 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171213 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171206 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171129 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171101 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171025 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171018 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171011 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171002 +packetLen(0x0363, 10) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170906 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170830 +packetLen(0x0363, 18) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170823 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170809 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170801 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170726 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170719 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170712 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170705 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170628 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170517 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170502 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170412 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170405 +packetLen(0x0363, 4) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170322 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170315 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170308 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170111 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170104 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20171220 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20171213 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20171101 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20171011 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170906 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170823 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170816 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170809 +packetLen(0x0364, 26) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170726 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170719 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170712 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170705 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170628 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170621 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170614 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170607 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170531 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170524 +packetLen(0x0364, 26) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170502 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170329 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170322 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170315 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170308 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170125 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170118 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170111 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170104 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20171220 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171213 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171206 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171129 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171122 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171115 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171101 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171025 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171018 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171011 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170830 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170823 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170809 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170801 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170719 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170712 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170705 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170628 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170621 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170517 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170502 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170419 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170412 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170329 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170322 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170315 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170308 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170111 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170104 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20171227 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171220 +packetLen(0x0366, 8) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171129 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171122 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171115 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171101 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171002 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170927 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170913 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170906 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170830 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170823 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170816 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170809 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170801 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170726 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170719 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170628 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170621 +packetLen(0x0366, 18) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170517 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170426 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170412 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170322 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170315 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170308 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170228 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170222 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170215 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170208 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170125 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170104 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20170621 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170614 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170524 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170517 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170322 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170315 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170215 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170208 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170104 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20171227 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20171220 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20171129 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20171122 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20171115 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20171108 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20171101 +packetLen(0x0368, 19) // CZ_REQNAME2 +#elif PACKETVER >= 20171002 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170913 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170906 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170830 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170823 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170809 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170801 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170726 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170719 +packetLen(0x0368, 4) // CZ_REQNAME2 +#elif PACKETVER >= 20170621 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170531 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170524 +packetLen(0x0368, 36) // CZ_REQNAME2 +#elif PACKETVER >= 20170517 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170502 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170412 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170322 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170315 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170308 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170228 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170222 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170215 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170201 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170125 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170104 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20171227 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171220 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171129 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171122 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171115 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171108 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171101 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171002 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170927 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170920 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170913 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170906 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170830 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170823 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170809 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170801 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170726 +packetLen(0x0369, 10) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170719 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170621 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170607 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170531 +packetLen(0x0369, 10) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170517 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170426 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170412 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170405 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170322 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170315 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170308 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170228 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170222 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170215 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170201 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170125 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170104 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20171122 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20171115 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20171101 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20171025 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20171018 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20171011 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170927 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170920 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20170830 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170823 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170719 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170712 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170705 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170628 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170517 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170502 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170329 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170322 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170315 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20170308 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170125 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170118 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20170111 +packetLen(0x0436, 8) // CZ_ENTER2 +#elif PACKETVER >= 20170104 +packetLen(0x0436, 4) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20171227 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171220 +packetLen(0x0437, 18) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171129 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171122 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171115 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171101 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171018 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171011 +packetLen(0x0437, 36) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171002 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170920 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170913 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170906 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170830 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170823 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170809 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170801 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170719 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170621 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170614 +packetLen(0x0437, 36) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170524 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170517 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170426 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170412 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170322 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170315 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170308 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170228 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170222 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170215 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170208 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170125 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170104 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20171227 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171220 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171129 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171122 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171115 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171108 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171101 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171011 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171002 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170913 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170906 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170830 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170823 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170816 +packetLen(0x0438, 7) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170809 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170801 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170726 +packetLen(0x0438, 26) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170719 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170621 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170517 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170426 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170412 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170322 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170315 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170308 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170228 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170222 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170215 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170201 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170125 +packetLen(0x0438, 7) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170118 +packetLen(0x0438, 19) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170111 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170104 +packetLen(0x0438, 19) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20171220 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171213 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171115 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171108 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171101 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171025 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171018 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171011 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170920 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170913 +packetLen(0x07e4, 8) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170830 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170823 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170809 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170801 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170726 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170712 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170705 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170628 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170621 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170614 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170607 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170531 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170517 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170502 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170329 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170322 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170315 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170308 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170111 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170104 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20171220 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171213 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171101 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171025 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171018 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171011 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170927 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170920 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170830 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170823 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170809 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170801 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170719 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170712 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170705 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170628 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170607 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170531 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170517 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170502 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170329 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170322 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170315 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170308 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170111 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170104 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20171227 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171220 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171213 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171122 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171115 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171101 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171025 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171018 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171011 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170913 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170906 +packetLen(0x0802, 5) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170830 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170823 +packetLen(0x0802, 5) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170816 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170809 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170801 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170719 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170712 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170705 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170628 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170621 +packetLen(0x0802, 90) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170531 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170524 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170517 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170426 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170329 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170322 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170315 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170308 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170111 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170104 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20171227 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171220 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171129 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171122 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171115 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171101 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171002 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170913 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170906 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170830 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170823 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170809 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170801 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170719 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170621 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170517 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170426 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170419 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170412 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170322 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170315 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170308 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170228 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170222 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170215 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170208 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170201 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170125 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170104 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20171227 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171220 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171129 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171122 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171115 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171108 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171101 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171002 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170913 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170906 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170830 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170823 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170809 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170801 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170719 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170621 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170524 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170517 +packetLen(0x0815, 10) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170426 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170412 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170322 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170315 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170308 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170228 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170222 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170215 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170201 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170125 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170104 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20170920 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20170913 +packetLen(0x0817, 7) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20170524 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20170517 +packetLen(0x0817, 10) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20170104 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20171227 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171220 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171129 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171122 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171115 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171108 +packetLen(0x0819, 90) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171101 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171002 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170913 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170906 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170830 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170823 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170809 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170801 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170719 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170621 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170607 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170531 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170517 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170426 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170419 +packetLen(0x0819, 12) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170412 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170405 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170329 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170322 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170315 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170308 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170228 +packetLen(0x0819, 12) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170215 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170201 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170125 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170104 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20171108 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20171101 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170920 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170913 +packetLen(0x0835, 19) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170816 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170809 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170412 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170405 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170104 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20171227 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171220 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171206 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171129 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171122 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171115 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171108 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171101 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171002 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170913 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170906 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170830 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170823 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170809 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170801 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170719 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170628 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170621 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170614 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170517 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170426 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170419 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170412 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170322 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170315 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170308 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170228 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170222 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170215 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170201 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170125 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170104 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20171227 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171220 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171129 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171122 +packetLen(0x083c, 5) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171115 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171101 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171002 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170913 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170906 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170830 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170823 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170809 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170801 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170719 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170621 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170614 +packetLen(0x083c, 7) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170517 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170426 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170412 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170322 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170315 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170308 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170228 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170222 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170215 +packetLen(0x083c, 7) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170201 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170125 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170104 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20170927 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170920 +packetLen(0x085a, 5) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170823 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170816 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170726 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170719 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170614 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170607 +packetLen(0x085a, 5) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170426 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170419 +packetLen(0x085a, 7) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170111 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170104 +packetLen(0x085a, 26) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20171129 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171122 +packetLen(0x085b, 6) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171108 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171101 +packetLen(0x085b, 5) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170607 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170531 +packetLen(0x085b, 8) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170104 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20171002 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170927 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170322 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170315 +packetLen(0x085c, 4) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170222 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170215 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170208 +packetLen(0x085c, 26) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170104 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20171115 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20171108 +packetLen(0x085d, 12) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170628 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170621 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170405 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170329 +packetLen(0x085d, 36) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170208 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170201 +packetLen(0x085d, 18) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170118 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170111 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170104 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20171227 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20171220 +packetLen(0x085e, -1) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170726 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170719 +packetLen(0x085e, -1) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170614 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170607 +packetLen(0x085e, -1) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170531 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170524 +packetLen(0x085e, 7) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170426 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170419 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170308 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170228 +packetLen(0x085e, 90) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170208 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170201 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170104 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20170607 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170524 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170412 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170405 +packetLen(0x085f, 8) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170228 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170222 +packetLen(0x085f, 26) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170104 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20171220 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171213 +packetLen(0x0860, 19) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171108 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171101 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170920 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170906 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170621 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170614 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170531 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170524 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170412 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170405 +packetLen(0x0860, -1) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170215 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170208 +packetLen(0x0860, 5) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170104 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20171227 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20171220 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170927 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170920 +packetLen(0x0861, 26) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170607 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170531 +packetLen(0x0861, 26) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170104 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20171206 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171129 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171122 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170927 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170920 +packetLen(0x0862, 10) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170823 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170816 +packetLen(0x0862, 10) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170614 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170607 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170426 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170419 +packetLen(0x0862, 26) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170125 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170118 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170104 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20171115 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20171108 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170726 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170719 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170705 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170628 +packetLen(0x0863, 36) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170614 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170607 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170419 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170412 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170322 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170315 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170308 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170228 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170104 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20170927 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170920 +packetLen(0x0864, 36) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170614 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170607 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170531 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170524 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170412 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170405 +packetLen(0x0864, 26) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170104 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20170927 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170920 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170913 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170906 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170830 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170621 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170614 +packetLen(0x0865, 4) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170412 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170405 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170125 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170118 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170104 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20170920 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170906 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170621 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170614 +packetLen(0x0866, 6) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170531 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170524 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170502 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170426 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170228 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170222 +packetLen(0x0866, 6) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170104 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20171213 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171206 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171129 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171122 +packetLen(0x0867, 19) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170621 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170614 +packetLen(0x0867, 26) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170104 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20170816 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170809 +packetLen(0x0868, 7) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170607 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170531 +packetLen(0x0868, 4) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170524 +packetLen(0x0868, 8) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170517 +packetLen(0x0868, 90) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170426 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170419 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170104 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20170419 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170412 +packetLen(0x0869, 18) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170104 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20171213 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171206 +packetLen(0x086a, 4) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171025 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171018 +packetLen(0x086a, 4) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170927 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170920 +packetLen(0x086a, 26) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170906 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170830 +packetLen(0x086a, 26) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170426 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170419 +packetLen(0x086a, 18) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170322 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170315 +packetLen(0x086a, 8) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170104 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20170308 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170228 +packetLen(0x086b, 19) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170104 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20171108 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171101 +packetLen(0x086c, 10) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170927 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170920 +packetLen(0x086c, 6) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170913 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170906 +packetLen(0x086c, 8) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170830 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170823 +packetLen(0x086c, 19) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170621 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170614 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170104 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20171206 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171129 +packetLen(0x086d, 18) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171122 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171115 +packetLen(0x086d, 4) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170830 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170823 +packetLen(0x086d, 36) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170531 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170524 +packetLen(0x086d, 5) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170419 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170412 +packetLen(0x086d, 8) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170104 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20171213 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20171206 +packetLen(0x086e, 18) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170816 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170809 +packetLen(0x086e, 5) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170726 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170719 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170201 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170125 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170104 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20171122 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171115 +packetLen(0x086f, -1) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170816 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170809 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170502 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170426 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170412 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170405 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170125 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170118 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170104 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20170228 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170222 +packetLen(0x0870, 18) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170104 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20170614 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170607 +packetLen(0x0871, 19) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170228 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170222 +packetLen(0x0871, 4) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170104 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20171227 +packetLen(0x0872, 2) +#elif PACKETVER >= 20171220 +packetLen(0x0872, 10) +#elif PACKETVER >= 20171108 +packetLen(0x0872, 2) +#elif PACKETVER >= 20171101 +packetLen(0x0872, 26) +#elif PACKETVER >= 20170426 +packetLen(0x0872, 2) +#elif PACKETVER >= 20170419 +packetLen(0x0872, 8) +#elif PACKETVER >= 20170322 +packetLen(0x0872, 2) +#elif PACKETVER >= 20170315 +packetLen(0x0872, 26) +#elif PACKETVER >= 20170104 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20171227 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171220 +packetLen(0x0873, 6) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171002 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170927 +packetLen(0x0873, 6) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170801 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170726 +packetLen(0x0873, 6) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170614 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170607 +packetLen(0x0873, 8) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170531 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170524 +packetLen(0x0873, 19) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170308 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170228 +packetLen(0x0873, -1) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170125 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170118 +packetLen(0x0873, 4) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170104 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20170801 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170726 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170308 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170228 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170104 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20171002 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170927 +packetLen(0x0875, 12) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170920 +packetLen(0x0875, 4) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170906 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170830 +packetLen(0x0875, 4) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170614 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170607 +packetLen(0x0875, 12) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170531 +packetLen(0x0875, 10) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170517 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170502 +packetLen(0x0875, 36) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170208 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170201 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170104 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20171206 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171129 +packetLen(0x0876, 4) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171108 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171101 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170816 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170809 +packetLen(0x0876, 10) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170222 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170215 +packetLen(0x0876, 26) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170201 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170125 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170104 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20171129 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20171122 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170621 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170614 +packetLen(0x0877, 18) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170228 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170222 +packetLen(0x0877, 8) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170201 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170125 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170118 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170111 +packetLen(0x0877, 26) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170104 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20171206 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171129 +packetLen(0x0878, 36) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171115 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171108 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170801 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170726 +packetLen(0x0878, 7) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170607 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170531 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170419 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170412 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170104 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20170712 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170705 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170621 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170614 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170419 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170412 +packetLen(0x0879, 4) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170208 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170201 +packetLen(0x0879, 4) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170125 +packetLen(0x0879, 10) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170104 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20171025 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171018 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170502 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170426 +packetLen(0x087a, 18) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170405 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170329 +packetLen(0x087a, 18) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170215 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170208 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170104 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20171018 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171011 +packetLen(0x087b, 26) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170913 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170906 +packetLen(0x087b, 8) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170607 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170531 +packetLen(0x087b, 7) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170524 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170517 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170419 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170412 +packetLen(0x087b, 10) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170322 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170315 +packetLen(0x087b, 26) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170201 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170125 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170104 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20170222 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170215 +packetLen(0x087c, -1) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170104 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20171227 +packetLen(0x087d, 36) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20171002 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170927 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170816 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170809 +packetLen(0x087d, 12) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170801 +packetLen(0x087d, 36) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170726 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170719 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170628 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170614 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170531 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170517 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170315 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170308 +packetLen(0x087d, 36) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170222 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170215 +packetLen(0x087d, 5) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170201 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170125 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170104 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20171122 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171115 +packetLen(0x087e, 8) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171108 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171025 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171018 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171002 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170927 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170823 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170816 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170621 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170614 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170222 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170215 +packetLen(0x087e, 10) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170104 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20170118 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170111 +packetLen(0x087f, 4) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170104 +packetLen(0x087f, 36) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20171227 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20171220 +packetLen(0x0880, 12) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170816 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170809 +packetLen(0x0880, -1) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170104 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20171220 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20171213 +packetLen(0x0881, 4) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170823 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170816 +packetLen(0x0881, -1) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170801 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170726 +packetLen(0x0881, 4) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170719 +packetLen(0x0881, 90) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170426 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170419 +packetLen(0x0881, 36) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170208 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170201 +packetLen(0x0881, 8) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170125 +packetLen(0x0881, 5) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170104 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20171227 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171220 +packetLen(0x0882, 6) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171018 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171011 +packetLen(0x0882, 5) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170823 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170816 +packetLen(0x0882, 36) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170726 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170719 +packetLen(0x0882, 12) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170531 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170524 +packetLen(0x0882, -1) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170104 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20171122 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171115 +packetLen(0x0883, 8) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170222 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170215 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170104 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20171115 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20171108 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170906 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170830 +packetLen(0x0884, 19) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170823 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170816 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170322 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170315 +packetLen(0x0884, 7) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170308 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170228 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170222 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170215 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170208 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170201 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170125 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170104 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20171227 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171220 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171213 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171206 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171129 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171122 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171011 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171002 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170906 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170830 +packetLen(0x0885, 90) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170726 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170719 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170628 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170621 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170614 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170607 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170531 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170208 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170201 +packetLen(0x0885, 90) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170104 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20171108 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20171101 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170712 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170705 +packetLen(0x0886, 26) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170208 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170201 +packetLen(0x0886, 36) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170104 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20170502 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170426 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170104 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20171227 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170906 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170830 +packetLen(0x0888, 10) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170823 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170816 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170405 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170329 +packetLen(0x0888, -1) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170104 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20171025 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20171018 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170927 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170920 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170823 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170816 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170628 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170621 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170614 +packetLen(0x0889, 90) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170308 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170228 +packetLen(0x0889, 5) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170222 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170104 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20171227 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171206 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171129 +packetLen(0x088a, -1) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170614 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170607 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170222 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170215 +packetLen(0x088a, 90) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170118 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170111 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170104 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20171122 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20171115 +packetLen(0x088b, 8) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170607 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170531 +packetLen(0x088b, -1) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170419 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170412 +packetLen(0x088b, -1) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170322 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170315 +packetLen(0x088b, 18) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170222 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170215 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170208 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170201 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170104 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20171227 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171220 +packetLen(0x088c, 10) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170920 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170913 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170816 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170809 +packetLen(0x088c, 10) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170524 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170517 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170222 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170215 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170208 +packetLen(0x088c, 19) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170104 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20171227 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170712 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170705 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170607 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170531 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170524 +packetLen(0x088d, 10) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170517 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170426 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170419 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170322 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170315 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170104 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20171108 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20171101 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170927 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170920 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170801 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170726 +packetLen(0x088e, 5) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170712 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170705 +packetLen(0x088e, 26) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170104 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20170426 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170419 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170322 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170315 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170104 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20171220 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171213 +packetLen(0x0890, 36) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171129 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171122 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171115 +packetLen(0x0890, 18) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170920 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170913 +packetLen(0x0890, 90) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170816 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170809 +packetLen(0x0890, 36) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170419 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170412 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170222 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170215 +packetLen(0x0890, 10) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170104 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20171129 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171122 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170920 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170913 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170726 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170719 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170104 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20170920 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170913 +packetLen(0x0892, 36) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170816 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170809 +packetLen(0x0892, 90) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170322 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170315 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170215 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170208 +packetLen(0x0892, 26) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170104 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20171129 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20171122 +packetLen(0x0893, 12) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170419 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170412 +packetLen(0x0893, -1) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170405 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170308 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170228 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170201 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170125 +packetLen(0x0893, 36) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170104 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20170607 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170531 +packetLen(0x0894, 19) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170524 +packetLen(0x0894, 8) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170517 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170502 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170228 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170222 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170201 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170125 +packetLen(0x0894, 4) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170104 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20171108 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20171101 +packetLen(0x0895, 4) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170816 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170809 +packetLen(0x0895, 5) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170201 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170125 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170104 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20171115 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171108 +packetLen(0x0896, 4) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170524 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170517 +packetLen(0x0896, 12) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170222 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170215 +packetLen(0x0896, 4) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170111 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170104 +packetLen(0x0896, 5) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20171213 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171206 +packetLen(0x0897, 19) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171129 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171122 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171115 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171108 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171011 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171002 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170906 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170830 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170614 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170607 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170426 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170419 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170104 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20171129 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20171122 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20171115 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170726 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170719 +packetLen(0x0898, 10) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170426 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170412 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170201 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170125 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170104 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20171227 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171220 +packetLen(0x0899, 36) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171108 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171101 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171011 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171002 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170927 +packetLen(0x0899, 7) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170906 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170830 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170816 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170809 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170621 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170614 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170524 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170517 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170502 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170426 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170104 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20171129 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171122 +packetLen(0x089a, 8) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171025 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171018 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171002 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170927 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170906 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170830 +packetLen(0x089a, -1) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170726 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170719 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170712 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170705 +packetLen(0x089a, 19) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170607 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170531 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170419 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170412 +packetLen(0x089a, 5) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170104 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20171108 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20171101 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20171002 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170927 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170920 +packetLen(0x089b, 7) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170222 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170215 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170201 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170125 +packetLen(0x089b, 90) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170104 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20171206 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20171129 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20171108 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20171101 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170607 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170524 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170517 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170502 +packetLen(0x089c, 19) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170426 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170419 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170412 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170104 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20171213 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171206 +packetLen(0x089d, 36) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171011 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171002 +packetLen(0x089d, 19) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170726 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170719 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170712 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170705 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170621 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170614 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170607 +packetLen(0x089d, 8) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170426 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170419 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170104 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20171227 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171220 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171129 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171122 +packetLen(0x089e, 7) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170906 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170830 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170524 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170517 +packetLen(0x089e, 4) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170308 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170228 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170125 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170118 +packetLen(0x089e, 26) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170104 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20171025 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20171018 +packetLen(0x089f, 26) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170104 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20171227 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171108 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171101 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170308 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170228 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170104 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20170531 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170524 +packetLen(0x08a1, 12) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170419 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170412 +packetLen(0x08a1, 7) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170215 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170208 +packetLen(0x08a1, 18) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170118 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170111 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170104 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20171213 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171206 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171115 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171108 +packetLen(0x08a2, 10) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171101 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171025 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170913 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170906 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170830 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170621 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170614 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170524 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170517 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170502 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170426 +packetLen(0x08a2, 19) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170308 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170228 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170222 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170215 +packetLen(0x08a2, 12) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170104 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20170913 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170906 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170823 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170816 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170809 +packetLen(0x08a3, -1) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170801 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170726 +packetLen(0x08a3, 8) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170228 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170222 +packetLen(0x08a3, 5) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170118 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170111 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170104 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20171213 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171206 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171122 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171115 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170502 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170426 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170208 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170201 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170104 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20171227 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171206 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171129 +packetLen(0x08a5, 8) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171002 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170927 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170412 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170405 +packetLen(0x08a5, 19) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170201 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170125 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170104 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20171129 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20171122 +packetLen(0x08a6, 10) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20171025 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20171018 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20171002 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170927 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170920 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170913 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170816 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170809 +packetLen(0x08a6, 19) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170801 +packetLen(0x08a6, 4) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170726 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170719 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170308 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170228 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170118 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170111 +packetLen(0x08a6, 18) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170104 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20170920 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170913 +packetLen(0x08a7, 4) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170906 +packetLen(0x08a7, 18) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170823 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170816 +packetLen(0x08a7, 4) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170801 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170726 +packetLen(0x08a7, 36) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170308 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170228 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170104 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20170906 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170830 +packetLen(0x08a8, 8) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170726 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170719 +packetLen(0x08a8, 19) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170628 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170621 +packetLen(0x08a8, 5) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170524 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170517 +packetLen(0x08a8, 5) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170405 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170329 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170228 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170222 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170215 +packetLen(0x08a8, 18) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170104 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20171129 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20171122 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20171115 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20171108 +packetLen(0x08a9, 5) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170823 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170816 +packetLen(0x08a9, 5) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170614 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170607 +packetLen(0x08a9, 10) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170104 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20170920 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170913 +packetLen(0x08aa, 10) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170801 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170726 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170524 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170517 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170426 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170419 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170322 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170315 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170104 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20171108 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20171101 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170920 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170913 +packetLen(0x08ab, 18) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170801 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170726 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170614 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170607 +packetLen(0x08ab, 90) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170104 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20170920 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170913 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170830 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170823 +packetLen(0x08ac, 26) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170816 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170801 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170726 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170607 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170531 +packetLen(0x08ac, 90) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170215 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170208 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170104 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20171115 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171108 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171101 +packetLen(0x08ad, 12) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171002 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170927 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170920 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170913 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170621 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170614 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170607 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170531 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170125 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170118 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170104 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +#if PACKETVER >= 20170906 +packetLen(0x08e3, 157) // HC_UPDATE_CHARINFO +#elif PACKETVER >= 20170104 +packetLen(0x08e3, 149) // HC_UPDATE_CHARINFO +#endif + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20170405 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170329 +packetLen(0x0917, 8) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170104 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20170816 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170809 +packetLen(0x0918, 6) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170614 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170607 +packetLen(0x0918, 18) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170104 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20170927 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170920 +packetLen(0x0919, 10) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170614 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170607 +packetLen(0x0919, -1) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170208 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170201 +packetLen(0x0919, 26) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170104 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20171220 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20171213 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170913 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170906 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170712 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170705 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170419 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170412 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170329 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170322 +packetLen(0x091a, 36) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170315 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170118 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170111 +packetLen(0x091a, 36) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170104 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20171227 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20171220 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20171108 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20171101 +packetLen(0x091b, 8) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170920 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170913 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170726 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170719 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170621 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170614 +packetLen(0x091b, 10) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170524 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170517 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170426 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170419 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170322 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170315 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170201 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170125 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170118 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170111 +packetLen(0x091b, 19) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170104 +packetLen(0x091b, 5) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20170823 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20170816 +packetLen(0x091c, 12) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20170201 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20170125 +packetLen(0x091c, 8) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20170104 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20171213 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171206 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170920 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170913 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170801 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170726 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170322 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170315 +packetLen(0x091d, 12) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170104 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20171227 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20171220 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20171129 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20171122 +packetLen(0x091e, 90) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20171002 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170927 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170913 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170906 +packetLen(0x091e, 5) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170830 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170801 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170726 +packetLen(0x091e, 12) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170531 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170524 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170419 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170412 +packetLen(0x091e, 19) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170104 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20171115 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20171108 +packetLen(0x091f, 5) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170801 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170726 +packetLen(0x091f, 5) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170719 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170502 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170426 +packetLen(0x091f, 4) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170308 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170228 +packetLen(0x091f, 10) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170125 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170118 +packetLen(0x091f, 18) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170104 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20170426 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170419 +packetLen(0x0920, 10) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170322 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170315 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170208 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170125 +packetLen(0x0920, 26) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170104 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20170927 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170920 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170906 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170830 +packetLen(0x0921, 5) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170823 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170816 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170809 +packetLen(0x0921, 8) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170801 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170726 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170215 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170208 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170104 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20171002 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170927 +packetLen(0x0922, 26) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170426 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170419 +packetLen(0x0922, 19) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170322 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170315 +packetLen(0x0922, -1) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170104 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20171213 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171206 +packetLen(0x0923, 8) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171129 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171122 +packetLen(0x0923, 18) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171002 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170927 +packetLen(0x0923, 6) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170920 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170913 +packetLen(0x0923, 5) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170801 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170726 +packetLen(0x0923, -1) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170531 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170524 +packetLen(0x0923, -1) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170517 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170215 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170208 +packetLen(0x0923, 6) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170104 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20171227 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171220 +packetLen(0x0924, 8) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170104 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20170920 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170913 +packetLen(0x0925, 12) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170906 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170830 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170823 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170816 +packetLen(0x0925, 8) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170614 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170607 +packetLen(0x0925, 26) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170531 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170524 +packetLen(0x0925, 90) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170222 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170215 +packetLen(0x0925, 8) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170104 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20171122 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20171115 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170927 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170920 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170405 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170329 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170104 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20171002 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170927 +packetLen(0x0927, 5) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170920 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170913 +packetLen(0x0927, -1) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170614 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170607 +packetLen(0x0927, 10) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170502 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170426 +packetLen(0x0927, 5) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170125 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170118 +packetLen(0x0927, 8) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170104 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20171011 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20171002 +packetLen(0x0928, -1) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170104 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20171227 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20171220 +packetLen(0x0929, 6) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170419 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170412 +packetLen(0x0929, 6) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170405 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170329 +packetLen(0x0929, 6) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170201 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170125 +packetLen(0x0929, 12) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170104 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20170816 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170809 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170308 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170228 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170104 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20170816 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170809 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170222 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170215 +packetLen(0x092b, -1) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170201 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170125 +packetLen(0x092b, 10) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170104 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20171227 +packetLen(0x092c, 19) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170823 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170816 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170726 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170719 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170104 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20171011 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171002 +packetLen(0x092d, 18) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170607 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170531 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170215 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170208 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170104 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20171227 +packetLen(0x092e, 4) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171213 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171206 +packetLen(0x092e, 8) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170927 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170920 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170906 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170830 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170419 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170412 +packetLen(0x092e, 8) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170405 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170329 +packetLen(0x092e, 19) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170308 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170228 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170104 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20170726 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170719 +packetLen(0x092f, 18) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170712 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170705 +packetLen(0x092f, 4) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170621 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170614 +packetLen(0x092f, -1) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170104 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20170712 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170705 +packetLen(0x0930, -1) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170426 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170419 +packetLen(0x0930, 8) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170201 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170125 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170104 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20170816 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170809 +packetLen(0x0931, 6) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170614 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170607 +packetLen(0x0931, 4) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170104 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20170712 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170705 +packetLen(0x0932, 6) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170215 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170208 +packetLen(0x0932, 8) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170104 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20171227 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20171220 +packetLen(0x0933, 5) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170607 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170531 +packetLen(0x0933, 8) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170125 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170118 +packetLen(0x0933, 6) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170104 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20171129 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20171122 +packetLen(0x0934, 36) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20171011 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20171002 +packetLen(0x0934, 36) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170712 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170705 +packetLen(0x0934, 8) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170614 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170607 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170531 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170524 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170104 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20170426 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170419 +packetLen(0x0935, 90) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170104 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20171213 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171206 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170621 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170614 +packetLen(0x0936, 6) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170104 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20170927 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170920 +packetLen(0x0937, 12) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170607 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170531 +packetLen(0x0937, 12) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170405 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170329 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170308 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170228 +packetLen(0x0937, 6) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170222 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170215 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170208 +packetLen(0x0937, 36) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170104 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20171227 +packetLen(0x0938, 26) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171025 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171018 +packetLen(0x0938, -1) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170614 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170607 +packetLen(0x0938, 7) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170419 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170412 +packetLen(0x0938, 90) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170208 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170201 +packetLen(0x0938, 5) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170104 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20171108 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20171101 +packetLen(0x0939, 5) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170927 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170920 +packetLen(0x0939, 5) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170906 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170830 +packetLen(0x0939, 26) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170816 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170809 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170405 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170329 +packetLen(0x0939, 26) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170228 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170222 +packetLen(0x0939, 19) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170104 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20170823 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170816 +packetLen(0x093a, 26) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170426 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170419 +packetLen(0x093a, 26) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170104 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20171129 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171122 +packetLen(0x093b, 10) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171011 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171002 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170927 +packetLen(0x093b, 90) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170816 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170809 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170524 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170517 +packetLen(0x093b, 6) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170104 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20170517 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170502 +packetLen(0x093c, 26) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170201 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170125 +packetLen(0x093c, -1) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170104 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20171011 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20171002 +packetLen(0x093d, 6) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170823 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170816 +packetLen(0x093d, 19) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170726 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170719 +packetLen(0x093d, 5) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170104 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20171227 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171220 +packetLen(0x093e, 7) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171011 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171002 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170906 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170830 +packetLen(0x093e, 7) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170726 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170719 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170308 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170228 +packetLen(0x093e, 4) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170104 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20170426 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170419 +packetLen(0x093f, 10) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170104 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20171206 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171129 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171115 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171108 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170906 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170830 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170823 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170816 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170809 +packetLen(0x0940, 18) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170607 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170531 +packetLen(0x0940, 18) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170502 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170426 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170208 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170201 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170118 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170111 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170104 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20171227 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171220 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171115 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171108 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170823 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170816 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170104 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20171213 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20171206 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20171002 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170927 +packetLen(0x0942, 18) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170906 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170830 +packetLen(0x0942, 12) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170614 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170607 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170419 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170412 +packetLen(0x0942, 26) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170222 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170215 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170104 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20171011 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20171002 +packetLen(0x0943, 26) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170906 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170830 +packetLen(0x0943, -1) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170801 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170726 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170228 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170222 +packetLen(0x0943, 36) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170201 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170125 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170104 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20171025 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20171018 +packetLen(0x0944, 36) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170726 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170719 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170712 +packetLen(0x0944, 36) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170621 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170614 +packetLen(0x0944, 19) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170607 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170322 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170315 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170308 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170228 +packetLen(0x0944, 8) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170201 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170125 +packetLen(0x0944, 18) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170104 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20171227 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20171115 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20171108 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20171002 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170927 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170920 +packetLen(0x0945, 18) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170607 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170531 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170524 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170517 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170419 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170412 +packetLen(0x0945, 8) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170104 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20171227 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20171220 +packetLen(0x0946, 4) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20171129 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20171122 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170726 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170719 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170531 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170524 +packetLen(0x0946, 10) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170517 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170104 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20171129 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171122 +packetLen(0x0947, 5) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171115 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171108 +packetLen(0x0947, 8) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170906 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170830 +packetLen(0x0947, -1) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170524 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170517 +packetLen(0x0947, 36) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170308 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170228 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170104 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20170308 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170228 +packetLen(0x0948, 26) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170104 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20171115 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20171108 +packetLen(0x0949, 19) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170614 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170607 +packetLen(0x0949, -1) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170405 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170329 +packetLen(0x0949, 8) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170104 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20171025 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20171018 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170322 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170315 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170104 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20171206 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20171129 +packetLen(0x094b, 8) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20171002 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170927 +packetLen(0x094b, 26) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170104 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20170927 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170920 +packetLen(0x094c, -1) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170712 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170705 +packetLen(0x094c, 5) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170412 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170405 +packetLen(0x094c, 36) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170208 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170201 +packetLen(0x094c, 19) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170118 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170111 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170104 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20171108 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171101 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171002 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170927 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170104 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20171227 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171220 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171115 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171108 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170322 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170315 +packetLen(0x094e, 19) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170222 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170215 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170104 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20171025 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20171018 +packetLen(0x094f, 18) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170809 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170801 +packetLen(0x094f, 26) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170726 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170419 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170412 +packetLen(0x094f, 26) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170405 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170104 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20171018 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20171011 +packetLen(0x0950, 19) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170823 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170816 +packetLen(0x0950, 5) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170801 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170726 +packetLen(0x0950, 10) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170517 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170502 +packetLen(0x0950, 5) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170104 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20171227 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20171220 +packetLen(0x0951, 5) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170104 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20171108 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20171101 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170801 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170726 +packetLen(0x0952, 5) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170322 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170315 +packetLen(0x0952, 36) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170308 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170228 +packetLen(0x0952, 10) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170104 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20171206 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20171129 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170913 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170906 +packetLen(0x0953, 19) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170104 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20171018 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20171011 +packetLen(0x0954, 5) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170801 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170726 +packetLen(0x0954, 18) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170104 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20170308 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170228 +packetLen(0x0955, 18) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170104 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20170628 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170621 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170104 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20171227 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171220 +packetLen(0x0957, 26) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171213 +packetLen(0x0957, 5) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171108 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171101 +packetLen(0x0957, 7) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170628 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170621 +packetLen(0x0957, 36) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170614 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170104 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20171213 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171206 +packetLen(0x0958, -1) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171122 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171115 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171108 +packetLen(0x0958, 18) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170531 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170524 +packetLen(0x0958, 4) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170517 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170502 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170426 +packetLen(0x0958, 26) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170125 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170118 +packetLen(0x0958, 36) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170104 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20171002 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170927 +packetLen(0x0959, 8) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170906 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170830 +packetLen(0x0959, 10) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170823 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170816 +packetLen(0x0959, 8) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170419 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170412 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170104 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20171122 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171115 +packetLen(0x095a, 26) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171108 +packetLen(0x095a, 8) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171101 +packetLen(0x095a, -1) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171002 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170927 +packetLen(0x095a, 10) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170920 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170913 +packetLen(0x095a, 10) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170809 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170801 +packetLen(0x095a, 19) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170726 +packetLen(0x095a, 90) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170531 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170524 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170104 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20170830 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170823 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170628 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170621 +packetLen(0x095b, 4) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170531 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170524 +packetLen(0x095b, 18) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170419 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170412 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170104 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20170920 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170913 +packetLen(0x095c, 6) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170628 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170621 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170426 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170419 +packetLen(0x095c, 6) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170412 +packetLen(0x095c, 12) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170201 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170125 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170104 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20170927 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170920 +packetLen(0x095d, 5) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170426 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170419 +packetLen(0x095d, -1) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170412 +packetLen(0x095d, 36) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170228 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170222 +packetLen(0x095d, 8) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170104 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 + +// Packet: 0x095f +#if PACKETVER >= 20171011 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171002 +packetLen(0x095f, 4) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170405 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170329 +packetLen(0x095f, 4) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170222 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170215 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170104 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20171227 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171220 +packetLen(0x0960, 90) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170823 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170816 +packetLen(0x0960, -1) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170524 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170517 +packetLen(0x0960, 26) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170104 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20171213 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20171206 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170927 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170920 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170628 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170621 +packetLen(0x0961, 19) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170118 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170111 +packetLen(0x0961, -1) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170104 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20171129 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171122 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171108 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171101 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170228 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170222 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170215 +packetLen(0x0962, 5) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170125 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170118 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170104 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20171115 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20171108 +packetLen(0x0963, 7) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170801 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170726 +packetLen(0x0963, -1) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170621 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170614 +packetLen(0x0963, 12) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170607 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170531 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170502 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170426 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170419 +packetLen(0x0963, 4) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170104 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20171227 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20171220 +packetLen(0x0964, 26) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170524 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170517 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170412 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170405 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170104 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20171115 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171108 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170426 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170419 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170201 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170125 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170104 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20171206 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20171129 +packetLen(0x0966, 19) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20171108 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20171101 +packetLen(0x0966, 10) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170927 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170920 +packetLen(0x0966, 90) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170726 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170719 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170208 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170201 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170104 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20171115 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20171108 +packetLen(0x0967, 10) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170531 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170524 +packetLen(0x0967, 26) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170104 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20171129 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171122 +packetLen(0x0968, -1) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170607 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170531 +packetLen(0x0968, -1) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170524 +packetLen(0x0968, 6) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170104 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20171227 +packetLen(0x0969, 6) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170222 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170215 +packetLen(0x0969, 5) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170208 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170201 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170118 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170111 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170104 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20171227 +packetLen(0x096a, 18) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171220 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171129 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171122 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171115 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171101 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171002 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170913 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170906 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170830 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170823 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170809 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170801 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170719 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170621 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170517 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170426 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170412 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170322 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170315 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170308 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170228 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170222 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170215 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170201 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170125 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170118 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170104 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ae +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING + +// Packet: 0x09b3 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c4 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 + +// Packet: 0x0a0a +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 + +// Packet: 0x0a0b +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 + +// Packet: 0x0a0c +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +packetLen(0x0a37, 59) // ZC_ITEM_PICKUP_ACK_V7 + +// Packet: 0x0a38 +packetLen(0x0a38, 3) // ZC_OPEN_UI + +// Packet: 0x0a39 +packetLen(0x0a39, 36) // CH_MAKE_CHAR + +// Packet: 0x0a3a +packetLen(0x0a3a, 12) + +// Packet: 0x0a3b +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT + +// Packet: 0x0a3c +packetLen(0x0a3c, -1) + +// Packet: 0x0a3d +packetLen(0x0a3d, 18) + +// Packet: 0x0a3e +packetLen(0x0a3e, -1) + +// Packet: 0x0a3f +packetLen(0x0a3f, 9) + +// Packet: 0x0a40 +packetLen(0x0a40, 11) + +// Packet: 0x0a41 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL + +// Packet: 0x0a42 +packetLen(0x0a42, 43) + +// Packet: 0x0a43 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0a44 +packetLen(0x0a44, -1) // ZC_GROUP_LIST + +// Packet: 0x0a46 +packetLen(0x0a46, 14) + +// Packet: 0x0a47 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES + +// Packet: 0x0a48 +packetLen(0x0a48, 2) + +// Packet: 0x0a49 +#if PACKETVER >= 20170830 +packetLen(0x0a49, 20) // CZ_PRIVATE_AIRSHIP_REQUEST +#elif PACKETVER >= 20170104 +packetLen(0x0a49, 22) // CZ_PRIVATE_AIRSHIP_REQUEST +#endif + +// Packet: 0x0a4a +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE + +// Packet: 0x0a4b +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE + +// Packet: 0x0a4c +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE + +// Packet: 0x0a4d +packetLen(0x0a4d, -1) + +// Packet: 0x0a4e +packetLen(0x0a4e, 4) + +// Packet: 0x0a4f +packetLen(0x0a4f, -1) + +// Packet: 0x0a50 +packetLen(0x0a50, 4) + +// Packet: 0x0a51 +packetLen(0x0a51, 34) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a52 +packetLen(0x0a52, 20) + +// Packet: 0x0a53 +packetLen(0x0a53, 10) + +// Packet: 0x0a54 +packetLen(0x0a54, -1) + +// Packet: 0x0a55 +packetLen(0x0a55, 2) + +// Packet: 0x0a56 +packetLen(0x0a56, 6) + +// Packet: 0x0a57 +packetLen(0x0a57, 6) + +// Packet: 0x0a58 +packetLen(0x0a58, 8) + +// Packet: 0x0a59 +packetLen(0x0a59, -1) + +// Packet: 0x0a5a +packetLen(0x0a5a, 2) + +// Packet: 0x0a5b +packetLen(0x0a5b, 7) + +// Packet: 0x0a5c +packetLen(0x0a5c, 18) + +// Packet: 0x0a5d +packetLen(0x0a5d, 6) + +// Packet: 0x0a68 +packetLen(0x0a68, 3) // CZ_REQ_OPEN_UI + +// Packet: 0x0a69 +packetLen(0x0a69, 6) + +// Packet: 0x0a6a +packetLen(0x0a6a, 12) + +// Packet: 0x0a6b +packetLen(0x0a6b, -1) + +// Packet: 0x0a6c +packetLen(0x0a6c, 7) + +// Packet: 0x0a6d +packetLen(0x0a6d, -1) + +// Packet: 0x0a6e +packetLen(0x0a6e, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x0a6f +packetLen(0x0a6f, -1) // ZC_FORMATSTRING_MSG_COLOR + +// Packet: 0x0a70 +packetLen(0x0a70, 2) + +// Packet: 0x0a71 +packetLen(0x0a71, -1) + +// Packet: 0x0a72 +packetLen(0x0a72, 61) + +// Packet: 0x0a73 +packetLen(0x0a73, 2) + +// Packet: 0x0a74 +packetLen(0x0a74, 8) + +// Packet: 0x0a76 +packetLen(0x0a76, 80) + +// Packet: 0x0a77 +packetLen(0x0a77, 15) + +// Packet: 0x0a78 +packetLen(0x0a78, 15) + +// Packet: 0x0a79 +packetLen(0x0a79, -1) + +// Packet: 0x0a7b +packetLen(0x0a7b, -1) + +// Packet: 0x0a7c +packetLen(0x0a7c, -1) + +// Packet: 0x0a7d +packetLen(0x0a7d, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0a7e +packetLen(0x0a7e, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY + +// Packet: 0x0a7f +packetLen(0x0a7f, -1) // CZ_OFFLINE_STORE_CREATE + +// Packet: 0x0a80 +packetLen(0x0a80, 6) + +// Packet: 0x0a81 +packetLen(0x0a81, 4) + +// Packet: 0x0a82 +packetLen(0x0a82, 46) + +// Packet: 0x0a83 +packetLen(0x0a83, 46) + +// Packet: 0x0a84 +packetLen(0x0a84, 94) // ZC_GUILD_INFO + +// Packet: 0x0a85 +packetLen(0x0a85, 82) + +// Packet: 0x0a86 +packetLen(0x0a86, -1) + +// Packet: 0x0a87 +packetLen(0x0a87, -1) + +// Packet: 0x0a88 +packetLen(0x0a88, 2) + +// Packet: 0x0a89 +packetLen(0x0a89, 57) // ZC_NOTIFY_OFFLINE_STORE + +// Packet: 0x0a8a +packetLen(0x0a8a, 6) // ZC_OFFLINE_STORE_VANISH + +// Packet: 0x0a8b +packetLen(0x0a8b, 2) + +// Packet: 0x0a8c +packetLen(0x0a8c, 2) + +// Packet: 0x0a8d +packetLen(0x0a8d, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS + +// Packet: 0x0a8e +packetLen(0x0a8e, 2) + +// Packet: 0x0a8f +packetLen(0x0a8f, 2) + +// Packet: 0x0a90 +packetLen(0x0a90, 3) + +// Packet: 0x0a91 +packetLen(0x0a91, -1) // ZC_OFFLINE_STORE_ITEMS + +// Packet: 0x0a92 +packetLen(0x0a92, -1) + +// Packet: 0x0a93 +packetLen(0x0a93, 3) + +// Packet: 0x0a94 +packetLen(0x0a94, 2) + +// Packet: 0x0a95 +packetLen(0x0a95, 4) + +// Packet: 0x0a96 +packetLen(0x0a96, 51) // ZC_ADD_EXCHANGE_ITEM4 + +// Packet: 0x0a97 +packetLen(0x0a97, 8) // CZ_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a98 +#if PACKETVER >= 20170426 +packetLen(0x0a98, 10) // ZC_ALT_EQUIPMENT_EQUIP +#elif PACKETVER >= 20170104 +packetLen(0x0a98, 12) // ZC_ALT_EQUIPMENT_EQUIP +#endif + +// Packet: 0x0a99 +#if PACKETVER >= 20170419 +packetLen(0x0a99, 4) +#elif PACKETVER >= 20170104 +packetLen(0x0a99, 8) +#endif + +// Packet: 0x0a9a +packetLen(0x0a9a, 10) // ZC_ALT_EQUIPMENT_REMOVE + +// Packet: 0x0a9b +packetLen(0x0a9b, -1) // ZC_ALT_EQUIPMENT_ITEMS + +// Packet: 0x0a9c +packetLen(0x0a9c, 2) + +// Packet: 0x0a9d +packetLen(0x0a9d, 4) + +// Packet: 0x0a9e +packetLen(0x0a9e, 2) + +// Packet: 0x0a9f +packetLen(0x0a9f, 2) + +// Packet: 0x0aa0 +packetLen(0x0aa0, 2) // ZC_REFINE_OPEN_WINDOW + +// Packet: 0x0aa1 +packetLen(0x0aa1, 4) // CZ_REFINE_ADD_ITEM + +// Packet: 0x0aa2 +packetLen(0x0aa2, -1) // ZC_REFINE_ADD_ITEM + +// Packet: 0x0aa3 +packetLen(0x0aa3, 7) // CZ_REFINE_ITEM_REQUEST + +// Packet: 0x0aa4 +packetLen(0x0aa4, 2) // CZ_REFINE_WINDOW_CLOSE + +// Packet: 0x0aa5 +packetLen(0x0aa5, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0aa6 +packetLen(0x0aa6, 36) // ZC_MEMBER_ADD + +// Packet: 0x0aa7 +packetLen(0x0aa7, 6) // ZC_INVENTORY_MOVE_FAILED + +// Packet: 0x0aa8 +packetLen(0x0aa8, 5) + +// Packet: 0x0aa9 +packetLen(0x0aa9, -1) + +// Packet: 0x0aaa +packetLen(0x0aaa, -1) + +// Packet: 0x0aab +packetLen(0x0aab, -1) + +// Packet: 0x0aac +#if PACKETVER >= 20170329 +packetLen(0x0aac, 69) +#elif PACKETVER >= 20170104 +packetLen(0x0aac, 67) +#endif + +// Packet: 0x0aad +#if PACKETVER >= 20170118 +packetLen(0x0aad, 51) +#elif PACKETVER >= 20170104 +packetLen(0x0aad, 47) +#endif + +// Packet: 0x0aae +packetLen(0x0aae, 2) + +// Packet: 0x0aaf +packetLen(0x0aaf, 6) + +// Packet: 0x0ab0 +packetLen(0x0ab0, 6) + +// Packet: 0x0ab1 +packetLen(0x0ab1, 14) + +// Packet: 0x0ab2 +packetLen(0x0ab2, 7) // ZC_GROUP_ISALIVE + +// Packet: 0x0ab3 +#if PACKETVER >= 20170118 +packetLen(0x0ab3, 19) +#elif PACKETVER >= 20170104 +packetLen(0x0ab3, 15) +#endif + +// Packet: 0x0ab4 +#if PACKETVER >= 20170111 +packetLen(0x0ab4, 4) +#endif + +// Packet: 0x0ab5 +#if PACKETVER >= 20170111 +packetLen(0x0ab5, 2) +#endif + +// Packet: 0x0ab6 +#if PACKETVER >= 20170111 +packetLen(0x0ab6, 6) +#endif + +// Packet: 0x0ab7 +#if PACKETVER >= 20170111 +packetLen(0x0ab7, 4) +#endif + +// Packet: 0x0ab8 +#if PACKETVER >= 20170111 +packetLen(0x0ab8, 2) +#endif + +// Packet: 0x0ab9 +#if PACKETVER >= 20170111 +packetLen(0x0ab9, 39) // ZC_ITEM_PREVIEW +#endif + +// Packet: 0x0aba +#if PACKETVER >= 20170118 +packetLen(0x0aba, 2) +#endif + +// Packet: 0x0abb +#if PACKETVER >= 20170118 +packetLen(0x0abb, 2) +#endif + +// Packet: 0x0abc +#if PACKETVER >= 20170201 +packetLen(0x0abc, -1) +#endif + +// Packet: 0x0abd +#if PACKETVER >= 20170215 +packetLen(0x0abd, 10) // ZC_PARTY_MEMBER_JOB_LEVEL +#endif + +// Packet: 0x0abe +#if PACKETVER >= 20170228 +packetLen(0x0abe, -1) // ZC_WARPLIST +#elif PACKETVER >= 20170222 +packetLen(0x0abe, 116) // ZC_WARPLIST +#endif + +// Packet: 0x0abf +#if PACKETVER >= 20170228 +packetLen(0x0abf, -1) +#elif PACKETVER >= 20170222 +packetLen(0x0abf, 114) +#endif + +// Packet: 0x0ac0 +#if PACKETVER >= 20170228 +packetLen(0x0ac0, 26) // CZ_OPEN_RODEXBOX +#endif + +// Packet: 0x0ac1 +#if PACKETVER >= 20170228 +packetLen(0x0ac1, 26) // CZ_REQ_REFRESH_RODEX +#endif + +// Packet: 0x0ac2 +#if PACKETVER >= 20170228 +packetLen(0x0ac2, -1) // ZC_ACK_RODEX_LIST +#endif + +// Packet: 0x0ac3 +#if PACKETVER >= 20170228 +packetLen(0x0ac3, 2) +#endif + +// Packet: 0x0ac4 +#if PACKETVER >= 20170228 +packetLen(0x0ac4, -1) // AC_ACCEPT_LOGIN +#endif + +// Packet: 0x0ac5 +#if PACKETVER >= 20170228 +packetLen(0x0ac5, 156) // HC_NOTIFY_ZONESVR +#endif + +// Packet: 0x0ac6 +#if PACKETVER >= 20170228 +packetLen(0x0ac6, 156) +#endif + +// Packet: 0x0ac7 +#if PACKETVER >= 20170228 +packetLen(0x0ac7, 156) // ZC_NPCACK_SERVERMOVE +#endif + +// Packet: 0x0ac8 +#if PACKETVER >= 20170308 +packetLen(0x0ac8, 2) // ZC_UNKNOWN_CLEAN_ITEMS_LISTS +#endif + +// Packet: 0x0ac9 +#if PACKETVER >= 20170308 +packetLen(0x0ac9, -1) +#endif + +// Packet: 0x0aca +#if PACKETVER >= 20170322 +packetLen(0x0aca, 3) +#endif + +// Packet: 0x0acb +#if PACKETVER >= 20170405 +packetLen(0x0acb, 12) // ZC_PAR_CHANGE +#endif + +// Packet: 0x0acc +#if PACKETVER >= 20170405 +packetLen(0x0acc, 18) // ZC_NOTIFY_EXP +#endif + +// Packet: 0x0acd +#if PACKETVER >= 20170419 +packetLen(0x0acd, 23) +#endif + +// Packet: 0x0ace +#if PACKETVER >= 20170502 +packetLen(0x0ace, 4) +#endif + +// Packet: 0x0acf +#if PACKETVER >= 20171115 +packetLen(0x0acf, 68) // CA_LOGIN_OTP +#elif PACKETVER >= 20170705 +packetLen(0x0acf, 64) // CA_LOGIN_OTP +#elif PACKETVER >= 20170621 +packetLen(0x0acf, 57) // CA_LOGIN_OTP +#elif PACKETVER >= 20170614 +packetLen(0x0acf, 52) // CA_LOGIN_OTP +#endif + +// Packet: 0x0ad0 +#if PACKETVER >= 20170614 +packetLen(0x0ad0, 11) // CA_OTP_CODE +#endif + +// Packet: 0x0ad1 +#if PACKETVER >= 20170614 +packetLen(0x0ad1, -1) +#endif + +// Packet: 0x0ad2 +#if PACKETVER >= 20170719 +packetLen(0x0ad2, 30) +#endif + +// Packet: 0x0ad3 +#if PACKETVER >= 20170719 +packetLen(0x0ad3, -1) +#endif + +// Packet: 0x0ad4 +#if PACKETVER >= 20170719 +packetLen(0x0ad4, -1) +#endif + +// Packet: 0x0ad5 +#if PACKETVER >= 20170719 +packetLen(0x0ad5, 2) +#endif + +// Packet: 0x0ad6 +#if PACKETVER >= 20170719 +packetLen(0x0ad6, 2) +#endif + +// Packet: 0x0ad7 +#if PACKETVER >= 20170719 +packetLen(0x0ad7, 8) +#endif + +// Packet: 0x0ad8 +#if PACKETVER >= 20170719 +packetLen(0x0ad8, 8) +#endif + +// Packet: 0x0ad9 +#if PACKETVER >= 20170719 +packetLen(0x0ad9, -1) +#endif + +// Packet: 0x0ada +#if PACKETVER >= 20170726 +packetLen(0x0ada, 30) // ZC_REFINE_STATUS +#endif + +// Packet: 0x0adb +#if PACKETVER >= 20170830 +packetLen(0x0adb, -1) +#endif + +// Packet: 0x0adc +#if PACKETVER >= 20170906 +packetLen(0x0adc, 6) // ZC_EQUIPWIN_OTHER +#endif + +// Packet: 0x0add +#if PACKETVER >= 20170913 +packetLen(0x0add, 22) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x0ade +#if PACKETVER >= 20170920 +packetLen(0x0ade, 6) // ZC_OVERWEIGHT_PERCENT +#endif + +// Packet: 0x0adf +#if PACKETVER >= 20170920 +packetLen(0x0adf, 58) // ZC_ACK_REQNAME +#endif + +// Packet: 0x0ae0 +#if PACKETVER >= 20170927 +packetLen(0x0ae0, 30) +#endif + +// Packet: 0x0ae1 +#if PACKETVER >= 20171101 +packetLen(0x0ae1, 28) +#endif + +// Packet: 0x0ae2 +#if PACKETVER >= 20171115 +packetLen(0x0ae2, 7) // ZC_OPEN_UI +#endif + +// Packet: 0x0ae3 +#if PACKETVER >= 20171213 +packetLen(0x0ae3, -1) // AC_LOGIN_OTP +#endif + +// Packet: 0x0ae4 +#if PACKETVER >= 20171206 +packetLen(0x0ae4, 89) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0ae5 +#if PACKETVER >= 20171206 +packetLen(0x0ae5, -1) // ZC_GROUP_LIST +#endif + +// Packet: 0x0ae6 +#if PACKETVER >= 20171213 +packetLen(0x0ae6, 30) +#endif + +// Packet: 0x0ae7 +#if PACKETVER >= 20171213 +packetLen(0x0ae7, 30) +#endif + +// Packet: 0x0ae8 +#if PACKETVER >= 20171220 +packetLen(0x0ae8, 2) +#endif + +// Packet: 0x0ae9 +#if PACKETVER >= 20171220 +packetLen(0x0ae9, 64) // HC_SECOND_PASSWD_LOGIN +#endif + +// Packet: 0x0aea +#if PACKETVER >= 20171227 +packetLen(0x0aea, 2) +#elif PACKETVER >= 20171220 +packetLen(0x0aea, 11) +#endif + +// Packet: 0x0aeb +#if PACKETVER >= 20171227 +packetLen(0x0aeb, 11) +#endif + +// Packet: 0x0aec +#if PACKETVER >= 20171227 +packetLen(0x0aec, 2) +#endif + + +#endif /* COMMON_PACKETS2017_LEN_MAIN_H */ diff --git a/src/common/packets/packets2017_len_re.h b/src/common/packets/packets2017_len_re.h new file mode 100644 index 000000000..c2cbaa4aa --- /dev/null +++ b/src/common/packets/packets2017_len_re.h @@ -0,0 +1,9109 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2017_LEN_RE_H +#define COMMON_PACKETS2017_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +#if PACKETVER >= 20170830 +packetLen(0x006d, 157) // HC_ACCEPT_MAKECHAR +#elif PACKETVER >= 20170104 +packetLen(0x006d, 149) // HC_ACCEPT_MAKECHAR +#endif + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20171220 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171213 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171115 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171108 +packetLen(0x0202, 6) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171101 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171025 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170913 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170906 +packetLen(0x0202, 4) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170719 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170712 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170705 +packetLen(0x0202, 36) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170628 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170621 +packetLen(0x0202, 12) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170329 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170322 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170315 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170308 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170228 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170222 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20170104 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20171108 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20171101 +packetLen(0x022d, 36) // CZ_COMMAND_MER +#elif PACKETVER >= 20171025 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20171011 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20171002 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20170823 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170816 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20170809 +packetLen(0x022d, 4) // CZ_COMMAND_MER +#elif PACKETVER >= 20170801 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20170726 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170719 +packetLen(0x022d, 7) // CZ_COMMAND_MER +#elif PACKETVER >= 20170712 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20170705 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170628 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20170329 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170322 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20170315 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170308 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20170228 +packetLen(0x022d, 6) // CZ_COMMAND_MER +#elif PACKETVER >= 20170125 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20170118 +packetLen(0x022d, 10) // CZ_COMMAND_MER +#elif PACKETVER >= 20170104 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20171101 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20171025 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20171018 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20171011 +packetLen(0x023b, 5) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170719 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170712 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170705 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170628 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170621 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170614 +packetLen(0x023b, 8) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170419 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170412 +packetLen(0x023b, 10) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170329 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170322 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170315 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170308 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20170104 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20171227 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171220 +packetLen(0x0281, 19) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171213 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171129 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171122 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171101 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171025 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171018 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171011 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170920 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170913 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170906 +packetLen(0x0281, 36) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170830 +packetLen(0x0281, 5) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170823 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170816 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170809 +packetLen(0x0281, 8) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170801 +packetLen(0x0281, 5) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170719 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170712 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170705 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170628 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170517 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170502 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170426 +packetLen(0x0281, 36) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170412 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170405 +packetLen(0x0281, 18) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170329 +packetLen(0x0281, 26) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170322 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170315 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170308 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170111 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20170104 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20171206 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20171129 +packetLen(0x02c4, 5) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20171122 +packetLen(0x02c4, -1) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20171002 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170927 +packetLen(0x02c4, 5) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170913 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170906 +packetLen(0x02c4, 90) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170830 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170712 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170705 +packetLen(0x02c4, 18) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170322 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170315 +packetLen(0x02c4, 10) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170222 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170215 +packetLen(0x02c4, 36) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170208 +packetLen(0x02c4, 4) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20170104 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20171227 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171220 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171213 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171206 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171129 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171122 +packetLen(0x035f, 4) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171115 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171101 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170927 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170920 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170913 +packetLen(0x035f, 26) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170906 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170830 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170823 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170809 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170801 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170719 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170621 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170517 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170426 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170412 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170322 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170315 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170308 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170228 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170222 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170215 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170201 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170125 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20170104 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20171227 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171220 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171206 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171122 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171115 +packetLen(0x0360, 19) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171101 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171002 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170913 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170906 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170830 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170823 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170809 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170801 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170719 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170621 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170517 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170426 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170412 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170322 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170315 +packetLen(0x0360, 5) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170308 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170228 +packetLen(0x0360, 7) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170201 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170125 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20170104 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20171227 +packetLen(0x0361, 7) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171206 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171129 +packetLen(0x0361, 12) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171101 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171025 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171002 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170927 +packetLen(0x0361, 4) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170830 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170823 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170816 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170809 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170801 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170719 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170712 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170705 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170628 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170621 +packetLen(0x0361, 6) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170614 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170607 +packetLen(0x0361, -1) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170531 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170329 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170322 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170315 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170308 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20170104 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20171220 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171213 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171101 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171025 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171018 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171011 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171002 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170927 +packetLen(0x0362, -1) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170830 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170823 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170816 +packetLen(0x0362, 90) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170809 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170801 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170719 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170712 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170705 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170628 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170517 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170502 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170412 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170405 +packetLen(0x0362, 7) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170329 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170322 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170315 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170308 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170228 +packetLen(0x0362, 5) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170111 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20170104 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20171220 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171213 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171206 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171129 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171101 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171025 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171018 +packetLen(0x0363, 19) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171011 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171002 +packetLen(0x0363, 10) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170906 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170830 +packetLen(0x0363, 18) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170823 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170809 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170801 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170726 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170719 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170712 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170705 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170628 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170517 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170502 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170412 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170405 +packetLen(0x0363, 4) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170322 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170315 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170308 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170111 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20170104 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20171220 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20171213 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20171101 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20171011 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170906 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170823 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170816 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170809 +packetLen(0x0364, 26) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170726 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170719 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170712 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170705 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170628 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170621 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170614 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170607 +packetLen(0x0364, 36) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170531 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170524 +packetLen(0x0364, 26) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170502 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170329 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170322 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170315 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170308 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170125 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170118 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170111 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20170104 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20171220 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171213 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171206 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171129 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171122 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171115 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171101 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171025 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171018 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171011 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170830 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170823 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170809 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170801 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170719 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170712 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170705 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170628 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170621 +packetLen(0x0365, -1) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170517 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170502 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170419 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170412 +packetLen(0x0365, 6) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170329 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170322 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170315 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170308 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170111 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20170104 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20171227 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171220 +packetLen(0x0366, 8) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171129 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171122 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171115 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171101 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171002 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170927 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170913 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170906 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170830 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170823 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170816 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170809 +packetLen(0x0366, 26) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170801 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170726 +packetLen(0x0366, 19) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170719 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170628 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170621 +packetLen(0x0366, 18) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170517 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170426 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170412 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170322 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170315 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170308 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170228 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170222 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170215 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170208 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170125 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20170104 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20170621 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170614 +packetLen(0x0367, 6) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170524 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170517 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170322 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170315 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170215 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170208 +packetLen(0x0367, -1) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20170104 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20171227 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20171220 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20171129 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20171122 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20171115 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20171108 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20171101 +packetLen(0x0368, 19) // CZ_REQNAME2 +#elif PACKETVER >= 20171002 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170913 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170906 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170830 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170823 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170809 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170801 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170726 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170719 +packetLen(0x0368, 4) // CZ_REQNAME2 +#elif PACKETVER >= 20170621 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170531 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170524 +packetLen(0x0368, 36) // CZ_REQNAME2 +#elif PACKETVER >= 20170517 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170502 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170412 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170322 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170315 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170308 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170228 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170222 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170215 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170201 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20170125 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20170104 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20171227 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171220 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171129 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171122 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171115 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171108 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171101 +packetLen(0x0369, -1) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171002 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170927 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170920 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170913 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170906 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170830 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170823 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170809 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170801 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170726 +packetLen(0x0369, 10) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170719 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170621 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170607 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170531 +packetLen(0x0369, 10) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170517 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170426 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170412 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170405 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170322 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170315 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170308 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170228 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170222 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170215 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170201 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170125 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20170104 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20171122 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20171115 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20171101 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20171025 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20171018 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20171011 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170927 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170920 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20170830 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170823 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170719 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170712 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170705 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170628 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170517 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170502 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170329 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170322 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170315 +packetLen(0x0436, -1) // CZ_ENTER2 +#elif PACKETVER >= 20170308 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20170125 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20170118 +packetLen(0x0436, 5) // CZ_ENTER2 +#elif PACKETVER >= 20170111 +packetLen(0x0436, 8) // CZ_ENTER2 +#elif PACKETVER >= 20170104 +packetLen(0x0436, 4) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20171227 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171220 +packetLen(0x0437, 18) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171129 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171122 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171115 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171101 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171018 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171011 +packetLen(0x0437, 36) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171002 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170920 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170913 +packetLen(0x0437, -1) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170906 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170830 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170823 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170809 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170801 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170719 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170621 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170614 +packetLen(0x0437, 36) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170524 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170517 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170426 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170412 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170322 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170315 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170308 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170228 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170222 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170215 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170208 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170125 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20170104 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20171227 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171220 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171129 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171122 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171115 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171108 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171101 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171011 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171002 +packetLen(0x0438, 5) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170913 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170906 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170830 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170823 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170816 +packetLen(0x0438, 7) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170809 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170801 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170726 +packetLen(0x0438, 26) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170719 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170621 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170517 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170426 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170412 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170322 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170315 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170308 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170228 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170222 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170215 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170201 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170125 +packetLen(0x0438, 7) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170118 +packetLen(0x0438, 19) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170111 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20170104 +packetLen(0x0438, 19) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20171220 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171213 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171115 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171108 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171101 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171025 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171018 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171011 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170920 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170913 +packetLen(0x07e4, 8) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170830 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170823 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170809 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170801 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170726 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170712 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170705 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170628 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170621 +packetLen(0x07e4, 26) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170614 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170607 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170531 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170517 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170502 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170329 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170322 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170315 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170308 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170111 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20170104 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20171220 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171213 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171101 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171025 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171018 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171011 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170927 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170920 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170830 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170823 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170809 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170801 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170719 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170712 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170705 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170628 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170607 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170531 +packetLen(0x07ec, -1) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170517 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170502 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170329 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170322 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170315 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170308 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170111 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20170104 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20171227 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171220 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171213 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171122 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171115 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171101 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171025 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171018 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171011 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170913 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170906 +packetLen(0x0802, 5) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170830 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170823 +packetLen(0x0802, 5) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170816 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170809 +packetLen(0x0802, -1) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170801 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170719 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170712 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170705 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170628 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170621 +packetLen(0x0802, 90) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170531 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170524 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170517 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170426 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170329 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170322 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170315 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170308 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170111 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20170104 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20171227 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171220 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171129 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171122 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171115 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171101 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171002 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170913 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170906 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170830 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170823 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170809 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170801 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170719 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170621 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170517 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170426 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170419 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170412 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170322 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170315 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170308 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170228 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170222 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170215 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170208 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170201 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170125 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20170104 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20171227 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171220 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171129 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171122 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171115 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171108 +packetLen(0x0815, 36) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171101 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171002 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170913 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170906 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170830 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170823 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170809 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170801 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170719 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170621 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170524 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170517 +packetLen(0x0815, 10) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170426 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170412 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170322 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170315 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170308 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170228 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170222 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170215 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170201 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170125 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20170104 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20170920 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20170913 +packetLen(0x0817, 7) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20170524 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20170517 +packetLen(0x0817, 10) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20170104 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20171227 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171220 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171129 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171122 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171115 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171108 +packetLen(0x0819, 90) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171101 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171002 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170913 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170906 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170830 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170823 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170809 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170801 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170719 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170621 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170607 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170531 +packetLen(0x0819, 6) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170517 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170426 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170419 +packetLen(0x0819, 12) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170412 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170405 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170329 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170322 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170315 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170308 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170228 +packetLen(0x0819, 12) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170215 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170201 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170125 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20170104 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20171108 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20171101 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170920 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170913 +packetLen(0x0835, 19) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170816 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170809 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170412 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170405 +packetLen(0x0835, 5) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20170104 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20171227 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171220 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171206 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171129 +packetLen(0x0838, 26) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171122 +packetLen(0x0838, 8) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171115 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171108 +packetLen(0x0838, -1) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171101 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171002 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170913 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170906 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170830 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170823 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170809 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170801 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170719 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170628 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170621 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170614 +packetLen(0x0838, 10) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170517 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170426 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170419 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170412 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170322 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170315 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170308 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170228 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170222 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170215 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170201 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170125 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20170104 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20171227 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171220 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171129 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171122 +packetLen(0x083c, 5) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171115 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171101 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171002 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170913 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170906 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170830 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170823 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170809 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170801 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170719 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170621 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170614 +packetLen(0x083c, 7) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170517 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170426 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170412 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170322 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170315 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170308 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170228 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170222 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170215 +packetLen(0x083c, 7) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170201 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170125 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20170104 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20170927 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170920 +packetLen(0x085a, 5) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170823 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170816 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170726 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170719 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170614 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170607 +packetLen(0x085a, 5) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170426 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170419 +packetLen(0x085a, 7) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170111 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170104 +packetLen(0x085a, 26) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20171129 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171122 +packetLen(0x085b, 6) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171108 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171101 +packetLen(0x085b, 5) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170607 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170531 +packetLen(0x085b, 8) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170104 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +#if PACKETVER >= 20171002 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170927 +packetLen(0x085c, 10) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170322 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170315 +packetLen(0x085c, 4) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170222 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170215 +packetLen(0x085c, 6) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170208 +packetLen(0x085c, 26) // ZC_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170104 +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x085d +#if PACKETVER >= 20171115 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20171108 +packetLen(0x085d, 12) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170628 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170621 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170405 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170329 +packetLen(0x085d, 36) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170208 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170201 +packetLen(0x085d, 18) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170118 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170111 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170104 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +#if PACKETVER >= 20171227 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20171220 +packetLen(0x085e, -1) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170726 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170719 +packetLen(0x085e, -1) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170614 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170607 +packetLen(0x085e, -1) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170531 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170524 +packetLen(0x085e, 7) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170426 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170419 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170308 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170228 +packetLen(0x085e, 90) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170208 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170201 +packetLen(0x085e, 5) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170104 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20170607 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170524 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170412 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170405 +packetLen(0x085f, 8) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170228 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170222 +packetLen(0x085f, 26) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170104 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20171220 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171213 +packetLen(0x0860, 19) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171108 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171101 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170920 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170906 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170621 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170614 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170531 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170524 +packetLen(0x0860, 6) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170412 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170405 +packetLen(0x0860, -1) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170215 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170208 +packetLen(0x0860, 5) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170104 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +#if PACKETVER >= 20171227 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20171220 +packetLen(0x0861, -1) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170927 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170920 +packetLen(0x0861, 26) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170607 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170531 +packetLen(0x0861, 26) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170104 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20171206 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171129 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171122 +packetLen(0x0862, -1) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170927 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170920 +packetLen(0x0862, 10) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170823 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170816 +packetLen(0x0862, 10) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170614 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170607 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170426 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170419 +packetLen(0x0862, 26) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170125 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170118 +packetLen(0x0862, 8) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170104 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20171115 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20171108 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170726 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170719 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170705 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170628 +packetLen(0x0863, 36) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170614 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170607 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170419 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170412 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170322 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170315 +packetLen(0x0863, 5) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170308 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170228 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170104 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20170927 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170920 +packetLen(0x0864, 36) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170614 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170607 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170531 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170524 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170412 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170405 +packetLen(0x0864, 26) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170104 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20170927 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170920 +packetLen(0x0865, -1) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170913 +packetLen(0x0865, 26) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170906 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170830 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170621 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170614 +packetLen(0x0865, 4) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170412 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170405 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170125 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170118 +packetLen(0x0865, 5) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170104 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +#if PACKETVER >= 20170920 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170906 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170621 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170614 +packetLen(0x0866, 6) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170531 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170524 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170502 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170426 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170228 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170222 +packetLen(0x0866, 6) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170104 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20171213 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171206 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171129 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171122 +packetLen(0x0867, 19) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170621 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170614 +packetLen(0x0867, 26) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170104 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20170816 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170809 +packetLen(0x0868, 7) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170607 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170531 +packetLen(0x0868, 4) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170524 +packetLen(0x0868, 8) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170517 +packetLen(0x0868, 90) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170426 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170419 +packetLen(0x0868, -1) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170104 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +#if PACKETVER >= 20170419 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170412 +packetLen(0x0869, 18) // ZC_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170104 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x086a +#if PACKETVER >= 20171213 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171206 +packetLen(0x086a, 4) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171025 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171018 +packetLen(0x086a, 4) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170927 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170920 +packetLen(0x086a, 26) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170906 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170830 +packetLen(0x086a, 26) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170426 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170419 +packetLen(0x086a, 18) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170322 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170315 +packetLen(0x086a, 8) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170104 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20170308 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170228 +packetLen(0x086b, 19) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170104 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20171108 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171101 +packetLen(0x086c, 10) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170927 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170920 +packetLen(0x086c, 6) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170913 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170906 +packetLen(0x086c, 8) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170830 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170823 +packetLen(0x086c, 19) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170621 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170614 +packetLen(0x086c, -1) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170104 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20171206 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171129 +packetLen(0x086d, 18) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171122 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171115 +packetLen(0x086d, 4) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170830 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170823 +packetLen(0x086d, 36) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170531 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170524 +packetLen(0x086d, 5) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170419 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170412 +packetLen(0x086d, 8) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170104 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20171213 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20171206 +packetLen(0x086e, 18) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170816 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170809 +packetLen(0x086e, 5) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170726 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170719 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170201 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170125 +packetLen(0x086e, 26) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170104 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20171122 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171115 +packetLen(0x086f, -1) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170816 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170809 +packetLen(0x086f, 5) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170502 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170426 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170412 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170405 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170125 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170118 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170104 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20170228 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170222 +packetLen(0x0870, 18) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170104 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20170614 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170607 +packetLen(0x0871, 19) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170228 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170222 +packetLen(0x0871, 4) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170104 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20171227 +packetLen(0x0872, 2) +#elif PACKETVER >= 20171220 +packetLen(0x0872, 10) +#elif PACKETVER >= 20171108 +packetLen(0x0872, 2) +#elif PACKETVER >= 20171101 +packetLen(0x0872, 26) +#elif PACKETVER >= 20170426 +packetLen(0x0872, 2) +#elif PACKETVER >= 20170419 +packetLen(0x0872, 8) +#elif PACKETVER >= 20170322 +packetLen(0x0872, 2) +#elif PACKETVER >= 20170315 +packetLen(0x0872, 26) +#elif PACKETVER >= 20170104 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20171227 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171220 +packetLen(0x0873, 6) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171002 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170927 +packetLen(0x0873, 6) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170801 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170726 +packetLen(0x0873, 6) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170614 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170607 +packetLen(0x0873, 8) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170531 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170524 +packetLen(0x0873, 19) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170308 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170228 +packetLen(0x0873, -1) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170125 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170118 +packetLen(0x0873, 4) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170104 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20170801 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170726 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170308 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170228 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170104 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20171002 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170927 +packetLen(0x0875, 12) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170920 +packetLen(0x0875, 4) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170906 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170830 +packetLen(0x0875, 4) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170614 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170607 +packetLen(0x0875, 12) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170531 +packetLen(0x0875, 10) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170517 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170502 +packetLen(0x0875, 36) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170208 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170201 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170104 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20171206 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171129 +packetLen(0x0876, 4) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171108 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171101 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170816 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170809 +packetLen(0x0876, 10) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170222 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170215 +packetLen(0x0876, 26) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170201 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170125 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170104 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20171129 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20171122 +packetLen(0x0877, -1) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170621 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170614 +packetLen(0x0877, 18) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170228 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170222 +packetLen(0x0877, 8) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170201 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170125 +packetLen(0x0877, 6) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170118 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170111 +packetLen(0x0877, 26) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170104 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20171206 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171129 +packetLen(0x0878, 36) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171115 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171108 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170801 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170726 +packetLen(0x0878, 7) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170607 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170531 +packetLen(0x0878, 26) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170419 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170412 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170104 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20170712 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170705 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170621 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170614 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170419 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170412 +packetLen(0x0879, 4) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170208 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170201 +packetLen(0x0879, 4) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170125 +packetLen(0x0879, 10) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170104 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20171025 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171018 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170502 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170426 +packetLen(0x087a, 18) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170405 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170329 +packetLen(0x087a, 18) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170215 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170208 +packetLen(0x087a, 8) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170104 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20171018 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171011 +packetLen(0x087b, 26) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170913 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170906 +packetLen(0x087b, 8) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170607 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170531 +packetLen(0x087b, 7) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170524 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170517 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170419 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170412 +packetLen(0x087b, 10) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170322 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170315 +packetLen(0x087b, 26) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170201 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170125 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170104 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +#if PACKETVER >= 20170222 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170215 +packetLen(0x087c, -1) // ZC_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170104 +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x087d +#if PACKETVER >= 20171227 +packetLen(0x087d, 36) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20171002 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170927 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170816 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170809 +packetLen(0x087d, 12) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170801 +packetLen(0x087d, 36) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170726 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170719 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170628 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170614 +packetLen(0x087d, 6) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170531 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170517 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170315 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170308 +packetLen(0x087d, 36) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170222 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170215 +packetLen(0x087d, 5) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170201 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170125 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170104 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20171122 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171115 +packetLen(0x087e, 8) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171108 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171025 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171018 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171002 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170927 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170823 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170816 +packetLen(0x087e, 6) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170621 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170614 +packetLen(0x087e, 5) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170222 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170215 +packetLen(0x087e, 10) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170104 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +#if PACKETVER >= 20170118 +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170111 +packetLen(0x087f, 4) // ZC_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170104 +packetLen(0x087f, 36) // ZC_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x0880 +#if PACKETVER >= 20171227 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20171220 +packetLen(0x0880, 12) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170816 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170809 +packetLen(0x0880, -1) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170104 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20171220 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20171213 +packetLen(0x0881, 4) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170823 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170816 +packetLen(0x0881, -1) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170801 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170726 +packetLen(0x0881, 4) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170719 +packetLen(0x0881, 90) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170426 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170419 +packetLen(0x0881, 36) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170208 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170201 +packetLen(0x0881, 8) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170125 +packetLen(0x0881, 5) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170104 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20171227 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171220 +packetLen(0x0882, 6) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171018 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171011 +packetLen(0x0882, 5) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170823 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170816 +packetLen(0x0882, 36) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170726 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170719 +packetLen(0x0882, 12) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170531 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170524 +packetLen(0x0882, -1) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170104 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20171122 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171115 +packetLen(0x0883, 8) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170222 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170215 +packetLen(0x0883, 6) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170104 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +#if PACKETVER >= 20171115 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20171108 +packetLen(0x0884, -1) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170906 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170830 +packetLen(0x0884, 19) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170823 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170816 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170322 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170315 +packetLen(0x0884, 7) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170308 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170228 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170222 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170215 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170208 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170201 +packetLen(0x0884, 5) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170125 +packetLen(0x0884, 8) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20170104 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20171227 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171220 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171213 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171206 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171129 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171122 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171011 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171002 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170906 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170830 +packetLen(0x0885, 90) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170726 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170719 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170628 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170621 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170614 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170607 +packetLen(0x0885, 26) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170531 +packetLen(0x0885, -1) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170208 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170201 +packetLen(0x0885, 90) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20170104 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20171108 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20171101 +packetLen(0x0886, 8) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170712 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170705 +packetLen(0x0886, 26) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170208 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170201 +packetLen(0x0886, 36) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20170104 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20170502 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170426 +packetLen(0x0887, 6) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20170104 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20171227 +packetLen(0x0888, 8) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170906 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170830 +packetLen(0x0888, 10) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170823 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170816 +packetLen(0x0888, 18) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170405 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170329 +packetLen(0x0888, -1) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20170104 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20171025 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20171018 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170927 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170920 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170823 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170816 +packetLen(0x0889, 6) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170628 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170621 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170614 +packetLen(0x0889, 90) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170308 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170228 +packetLen(0x0889, 5) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170222 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20170104 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20171227 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171206 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171129 +packetLen(0x088a, -1) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170614 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170607 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170222 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170215 +packetLen(0x088a, 90) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170118 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170111 +packetLen(0x088a, 8) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20170104 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +#if PACKETVER >= 20171122 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20171115 +packetLen(0x088b, 8) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170607 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170531 +packetLen(0x088b, -1) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170419 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170412 +packetLen(0x088b, -1) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170322 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170315 +packetLen(0x088b, 18) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170222 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170215 +packetLen(0x088b, 26) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170208 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170201 +packetLen(0x088b, 6) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20170104 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20171227 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171220 +packetLen(0x088c, 10) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170920 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170913 +packetLen(0x088c, 5) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170816 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170809 +packetLen(0x088c, 10) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170524 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170517 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170222 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170215 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170208 +packetLen(0x088c, 19) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20170104 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20171227 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170712 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170705 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170607 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170531 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170524 +packetLen(0x088d, 10) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170517 +packetLen(0x088d, 5) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170426 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170419 +packetLen(0x088d, -1) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170322 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170315 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20170104 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20171108 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20171101 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170927 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170920 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170801 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170726 +packetLen(0x088e, 5) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170712 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170705 +packetLen(0x088e, 26) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20170104 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +#if PACKETVER >= 20170426 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170419 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170322 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170315 +packetLen(0x088f, 5) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20170104 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20171220 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171213 +packetLen(0x0890, 36) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171129 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171122 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171115 +packetLen(0x0890, 18) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170920 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170913 +packetLen(0x0890, 90) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170816 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170809 +packetLen(0x0890, 36) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170419 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170412 +packetLen(0x0890, -1) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170222 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170215 +packetLen(0x0890, 10) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20170104 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20171129 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171122 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170920 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170913 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170726 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170719 +packetLen(0x0891, 10) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20170104 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20170920 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170913 +packetLen(0x0892, 36) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170816 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170809 +packetLen(0x0892, 90) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170322 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170315 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170215 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170208 +packetLen(0x0892, 26) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20170104 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20171129 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20171122 +packetLen(0x0893, 12) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170419 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170412 +packetLen(0x0893, -1) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170405 +packetLen(0x0893, 8) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170308 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170228 +packetLen(0x0893, 6) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170201 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170125 +packetLen(0x0893, 36) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20170104 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20170607 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170531 +packetLen(0x0894, 19) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170524 +packetLen(0x0894, 8) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170517 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170502 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170228 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170222 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170201 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170125 +packetLen(0x0894, 4) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20170104 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +#if PACKETVER >= 20171108 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20171101 +packetLen(0x0895, 4) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170816 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170809 +packetLen(0x0895, 5) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170201 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170125 +packetLen(0x0895, -1) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20170104 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20171115 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171108 +packetLen(0x0896, 4) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170524 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170517 +packetLen(0x0896, 12) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170222 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170215 +packetLen(0x0896, 4) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170111 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20170104 +packetLen(0x0896, 5) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20171213 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171206 +packetLen(0x0897, 19) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171129 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171122 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171115 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171108 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171011 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171002 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170906 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170830 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170614 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170607 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170426 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170419 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20170104 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20171129 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20171122 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20171115 +packetLen(0x0898, 36) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170726 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170719 +packetLen(0x0898, 10) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170426 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170412 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170201 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170125 +packetLen(0x0898, 6) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20170104 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20171227 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171220 +packetLen(0x0899, 36) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171108 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171101 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171011 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171002 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170927 +packetLen(0x0899, 7) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170906 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170830 +packetLen(0x0899, 6) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170816 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170809 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170621 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170614 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170524 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170517 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170502 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170426 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20170104 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +#if PACKETVER >= 20171129 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171122 +packetLen(0x089a, 8) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171025 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171018 +packetLen(0x089a, 6) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171002 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170927 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170906 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170830 +packetLen(0x089a, -1) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170726 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170719 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170712 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170705 +packetLen(0x089a, 19) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170607 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170531 +packetLen(0x089a, 36) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170419 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170412 +packetLen(0x089a, 5) // CZ_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20170104 +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x089b +#if PACKETVER >= 20171108 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20171101 +packetLen(0x089b, -1) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20171002 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170927 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170920 +packetLen(0x089b, 7) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170222 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170215 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170201 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170125 +packetLen(0x089b, 90) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20170104 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20171206 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20171129 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20171108 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20171101 +packetLen(0x089c, 18) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170607 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170524 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170517 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170502 +packetLen(0x089c, 19) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170426 +packetLen(0x089c, 5) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170419 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170412 +packetLen(0x089c, 6) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20170104 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20171213 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171206 +packetLen(0x089d, 36) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171011 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171002 +packetLen(0x089d, 19) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170726 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170719 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170712 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170705 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170621 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170614 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170607 +packetLen(0x089d, 8) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170426 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170419 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20170104 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20171227 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171220 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171129 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171122 +packetLen(0x089e, 7) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170906 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170830 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170524 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170517 +packetLen(0x089e, 4) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170308 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170228 +packetLen(0x089e, 8) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170125 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170118 +packetLen(0x089e, 26) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20170104 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20171025 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20171018 +packetLen(0x089f, 26) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20170104 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20171227 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171108 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171101 +packetLen(0x08a0, 8) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170308 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170228 +packetLen(0x08a0, 26) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20170104 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +#if PACKETVER >= 20170531 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170524 +packetLen(0x08a1, 12) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170419 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170412 +packetLen(0x08a1, 7) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170215 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170208 +packetLen(0x08a1, 18) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170118 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170111 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20170104 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20171213 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171206 +packetLen(0x08a2, 26) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171115 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171108 +packetLen(0x08a2, 10) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171101 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171025 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170913 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170906 +packetLen(0x08a2, 8) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170830 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170621 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170614 +packetLen(0x08a2, -1) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170524 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170517 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170502 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170426 +packetLen(0x08a2, 19) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170308 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170228 +packetLen(0x08a2, 36) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170222 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170215 +packetLen(0x08a2, 12) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20170104 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20170913 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170906 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170823 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170816 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170809 +packetLen(0x08a3, -1) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170801 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170726 +packetLen(0x08a3, 8) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170228 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170222 +packetLen(0x08a3, 5) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170118 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170111 +packetLen(0x08a3, 6) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20170104 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20171213 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171206 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171122 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171115 +packetLen(0x08a4, 5) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170502 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170426 +packetLen(0x08a4, 6) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170208 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170201 +packetLen(0x08a4, 8) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20170104 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20171227 +packetLen(0x08a5, 5) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171206 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171129 +packetLen(0x08a5, 8) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171002 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170927 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170412 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170405 +packetLen(0x08a5, 19) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170201 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170125 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20170104 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20171129 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20171122 +packetLen(0x08a6, 10) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20171025 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20171018 +packetLen(0x08a6, 5) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20171002 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170927 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170920 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170913 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170816 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170809 +packetLen(0x08a6, 19) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170801 +packetLen(0x08a6, 4) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170726 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170719 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170308 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170228 +packetLen(0x08a6, 8) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170118 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170111 +packetLen(0x08a6, 18) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20170104 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +#if PACKETVER >= 20170920 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170913 +packetLen(0x08a7, 4) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170906 +packetLen(0x08a7, 18) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170823 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170816 +packetLen(0x08a7, 4) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170801 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170726 +packetLen(0x08a7, 36) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170308 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170228 +packetLen(0x08a7, 6) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20170104 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20170906 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170830 +packetLen(0x08a8, 8) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170726 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170719 +packetLen(0x08a8, 19) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170628 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170621 +packetLen(0x08a8, 5) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170524 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170517 +packetLen(0x08a8, 5) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170405 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170329 +packetLen(0x08a8, 6) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170228 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170222 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170215 +packetLen(0x08a8, 18) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20170104 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +#if PACKETVER >= 20171129 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20171122 +packetLen(0x08a9, 6) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20171115 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20171108 +packetLen(0x08a9, 5) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170823 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170816 +packetLen(0x08a9, 5) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170614 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170607 +packetLen(0x08a9, 10) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20170104 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20170920 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170913 +packetLen(0x08aa, 10) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170801 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170726 +packetLen(0x08aa, 6) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170524 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170517 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170426 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170419 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170322 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170315 +packetLen(0x08aa, 8) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20170104 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20171108 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20171101 +packetLen(0x08ab, -1) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170920 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170913 +packetLen(0x08ab, 18) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170801 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170726 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170614 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170607 +packetLen(0x08ab, 90) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20170104 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20170920 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170913 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170830 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170823 +packetLen(0x08ac, 26) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170816 +packetLen(0x08ac, 5) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170801 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170726 +packetLen(0x08ac, 6) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170607 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170531 +packetLen(0x08ac, 90) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170215 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170208 +packetLen(0x08ac, 8) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20170104 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20171115 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171108 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171101 +packetLen(0x08ad, 12) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171002 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170927 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170920 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170913 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170621 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170614 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170607 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170531 +packetLen(0x08ad, 8) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170125 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170118 +packetLen(0x08ad, -1) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20170104 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +#if PACKETVER >= 20170830 +packetLen(0x08e3, 157) // HC_UPDATE_CHARINFO +#elif PACKETVER >= 20170104 +packetLen(0x08e3, 149) // HC_UPDATE_CHARINFO +#endif + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20170405 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170329 +packetLen(0x0917, 8) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170104 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20170816 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170809 +packetLen(0x0918, 6) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170614 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170607 +packetLen(0x0918, 18) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170104 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20170927 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170920 +packetLen(0x0919, 10) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170614 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170607 +packetLen(0x0919, -1) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170208 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170201 +packetLen(0x0919, 26) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170104 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20171220 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20171213 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170913 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170906 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170712 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170705 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170419 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170412 +packetLen(0x091a, 5) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170329 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170322 +packetLen(0x091a, 36) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170315 +packetLen(0x091a, 6) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170118 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170111 +packetLen(0x091a, 36) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170104 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20171227 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20171220 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20171108 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20171101 +packetLen(0x091b, 8) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170920 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170913 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170726 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170719 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170621 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170614 +packetLen(0x091b, 10) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170524 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170517 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170426 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170419 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170322 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170315 +packetLen(0x091b, -1) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170201 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170125 +packetLen(0x091b, 6) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170118 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170111 +packetLen(0x091b, 19) // ZC_PRNPC_STATE +#elif PACKETVER >= 20170104 +packetLen(0x091b, 5) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20170823 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20170816 +packetLen(0x091c, 12) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20170201 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20170125 +packetLen(0x091c, 8) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20170104 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20171213 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171206 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170920 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170913 +packetLen(0x091d, 6) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170801 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170726 +packetLen(0x091d, 26) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170322 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170315 +packetLen(0x091d, 12) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170104 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20171227 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20171220 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20171129 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20171122 +packetLen(0x091e, 90) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20171002 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170927 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170913 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170906 +packetLen(0x091e, 5) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170830 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170801 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170726 +packetLen(0x091e, 12) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170531 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170524 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170419 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170412 +packetLen(0x091e, 19) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170104 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20171115 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20171108 +packetLen(0x091f, 5) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170801 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170726 +packetLen(0x091f, 5) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170719 +packetLen(0x091f, 6) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170502 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170426 +packetLen(0x091f, 4) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170308 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170228 +packetLen(0x091f, 10) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170125 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170118 +packetLen(0x091f, 18) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170104 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20170426 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170419 +packetLen(0x0920, 10) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170322 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170315 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170208 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170125 +packetLen(0x0920, 26) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170104 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20170927 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170920 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170906 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170830 +packetLen(0x0921, 5) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170823 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170816 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170809 +packetLen(0x0921, 8) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170801 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170726 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170215 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170208 +packetLen(0x0921, 6) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170104 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20171002 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170927 +packetLen(0x0922, 26) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170426 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170419 +packetLen(0x0922, 19) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170322 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170315 +packetLen(0x0922, -1) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170104 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20171213 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171206 +packetLen(0x0923, 8) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171129 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171122 +packetLen(0x0923, 18) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171002 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170927 +packetLen(0x0923, 6) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170920 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170913 +packetLen(0x0923, 5) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170801 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170726 +packetLen(0x0923, -1) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170531 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170524 +packetLen(0x0923, -1) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170517 +packetLen(0x0923, 19) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170215 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170208 +packetLen(0x0923, 6) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170104 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20171227 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171220 +packetLen(0x0924, 8) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170104 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20170920 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170913 +packetLen(0x0925, 12) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170906 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170830 +packetLen(0x0925, 6) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170823 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170816 +packetLen(0x0925, 8) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170614 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170607 +packetLen(0x0925, 26) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170531 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170524 +packetLen(0x0925, 90) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170222 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170215 +packetLen(0x0925, 8) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170104 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +#if PACKETVER >= 20171122 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20171115 +packetLen(0x0926, 6) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170927 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170920 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170405 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170329 +packetLen(0x0926, 5) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170104 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20171002 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170927 +packetLen(0x0927, 5) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170920 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170913 +packetLen(0x0927, -1) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170614 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170607 +packetLen(0x0927, 10) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170502 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170426 +packetLen(0x0927, 5) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170125 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170118 +packetLen(0x0927, 8) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170104 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +#if PACKETVER >= 20171011 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20171002 +packetLen(0x0928, -1) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170104 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +#if PACKETVER >= 20171227 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20171220 +packetLen(0x0929, 6) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170419 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170412 +packetLen(0x0929, 6) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170405 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170329 +packetLen(0x0929, 6) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170201 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170125 +packetLen(0x0929, 12) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170104 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +#if PACKETVER >= 20170816 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170809 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170308 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170228 +packetLen(0x092a, 6) // ZC_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170104 +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x092b +#if PACKETVER >= 20170816 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170809 +packetLen(0x092b, 6) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170222 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170215 +packetLen(0x092b, -1) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170201 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170125 +packetLen(0x092b, 10) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170104 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +#if PACKETVER >= 20171227 +packetLen(0x092c, 19) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170823 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170816 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170726 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170719 +packetLen(0x092c, -1) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170104 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20171011 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171002 +packetLen(0x092d, 18) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170607 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170531 +packetLen(0x092d, 6) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170215 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170208 +packetLen(0x092d, 5) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170104 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20171227 +packetLen(0x092e, 4) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171213 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171206 +packetLen(0x092e, 8) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170927 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170920 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170906 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170830 +packetLen(0x092e, 6) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170419 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170412 +packetLen(0x092e, 8) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170405 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170329 +packetLen(0x092e, 19) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170308 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170228 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170104 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20170726 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170719 +packetLen(0x092f, 18) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170712 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170705 +packetLen(0x092f, 4) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170621 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170614 +packetLen(0x092f, -1) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170104 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +#if PACKETVER >= 20170712 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170705 +packetLen(0x0930, -1) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170426 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170419 +packetLen(0x0930, 8) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170201 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170125 +packetLen(0x0930, 5) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170104 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20170816 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170809 +packetLen(0x0931, 6) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170614 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170607 +packetLen(0x0931, 4) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170104 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20170712 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170705 +packetLen(0x0932, 6) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170215 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170208 +packetLen(0x0932, 8) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170104 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20171227 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20171220 +packetLen(0x0933, 5) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170607 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170531 +packetLen(0x0933, 8) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170125 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170118 +packetLen(0x0933, 6) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170104 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20171129 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20171122 +packetLen(0x0934, 36) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20171011 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20171002 +packetLen(0x0934, 36) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170712 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170705 +packetLen(0x0934, 8) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170614 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170607 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170531 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170524 +packetLen(0x0934, 5) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20170104 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20170426 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170419 +packetLen(0x0935, 90) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170104 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20171213 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171206 +packetLen(0x0936, 5) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170621 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170614 +packetLen(0x0936, 6) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170104 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20170927 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170920 +packetLen(0x0937, 12) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170607 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170531 +packetLen(0x0937, 12) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170405 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170329 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170308 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170228 +packetLen(0x0937, 6) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170222 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170215 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170208 +packetLen(0x0937, 36) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170104 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20171227 +packetLen(0x0938, 26) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171025 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171018 +packetLen(0x0938, -1) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170614 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170607 +packetLen(0x0938, 7) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170419 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170412 +packetLen(0x0938, 90) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170208 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170201 +packetLen(0x0938, 5) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170104 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20171108 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20171101 +packetLen(0x0939, 5) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170927 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170920 +packetLen(0x0939, 5) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170906 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170830 +packetLen(0x0939, 26) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170816 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170809 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170405 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170329 +packetLen(0x0939, 26) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170228 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170222 +packetLen(0x0939, 19) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170104 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20170823 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170816 +packetLen(0x093a, 26) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170426 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170419 +packetLen(0x093a, 26) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170104 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +#if PACKETVER >= 20171129 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171122 +packetLen(0x093b, 10) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171011 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171002 +packetLen(0x093b, 8) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170927 +packetLen(0x093b, 90) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170816 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170809 +packetLen(0x093b, -1) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170524 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170517 +packetLen(0x093b, 6) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170104 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +#if PACKETVER >= 20170517 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170502 +packetLen(0x093c, 26) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170201 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170125 +packetLen(0x093c, -1) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170104 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20171011 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20171002 +packetLen(0x093d, 6) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170823 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170816 +packetLen(0x093d, 19) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170726 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170719 +packetLen(0x093d, 5) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170104 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20171227 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171220 +packetLen(0x093e, 7) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171011 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171002 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170906 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170830 +packetLen(0x093e, 7) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170726 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170719 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170308 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170228 +packetLen(0x093e, 4) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170104 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20170426 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170419 +packetLen(0x093f, 10) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170104 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20171206 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171129 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171115 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171108 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170906 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170830 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170823 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170816 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170809 +packetLen(0x0940, 18) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170607 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170531 +packetLen(0x0940, 18) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170502 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170426 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170208 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170201 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170118 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170111 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170104 +packetLen(0x0940, 10) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20171227 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171220 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171115 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171108 +packetLen(0x0941, 8) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170823 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170816 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20170104 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20171213 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20171206 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20171002 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170927 +packetLen(0x0942, 18) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170906 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170830 +packetLen(0x0942, 12) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170614 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170607 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170419 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170412 +packetLen(0x0942, 26) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170222 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170215 +packetLen(0x0942, 6) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20170104 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +#if PACKETVER >= 20171011 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20171002 +packetLen(0x0943, 26) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170906 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170830 +packetLen(0x0943, -1) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170801 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170726 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170228 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170222 +packetLen(0x0943, 36) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170201 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170125 +packetLen(0x0943, 6) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20170104 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20171025 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20171018 +packetLen(0x0944, 36) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170726 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170719 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170712 +packetLen(0x0944, 36) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170621 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170614 +packetLen(0x0944, 19) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170607 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170322 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170315 +packetLen(0x0944, 6) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170308 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170228 +packetLen(0x0944, 8) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170201 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170125 +packetLen(0x0944, 18) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20170104 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20171227 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20171115 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20171108 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20171002 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170927 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170920 +packetLen(0x0945, 18) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170607 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170531 +packetLen(0x0945, 6) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170524 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170517 +packetLen(0x0945, -1) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170419 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170412 +packetLen(0x0945, 8) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20170104 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20171227 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20171220 +packetLen(0x0946, 4) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20171129 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20171122 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170726 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170719 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170531 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170524 +packetLen(0x0946, 10) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170517 +packetLen(0x0946, 6) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20170104 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20171129 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171122 +packetLen(0x0947, 5) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171115 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171108 +packetLen(0x0947, 8) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170906 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170830 +packetLen(0x0947, -1) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170524 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170517 +packetLen(0x0947, 36) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170308 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170228 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20170104 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +#if PACKETVER >= 20170308 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170228 +packetLen(0x0948, 26) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20170104 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +#if PACKETVER >= 20171115 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20171108 +packetLen(0x0949, 19) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170614 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170607 +packetLen(0x0949, -1) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170405 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170329 +packetLen(0x0949, 8) // CZ_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20170104 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x094a +#if PACKETVER >= 20171025 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20171018 +packetLen(0x094a, 26) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170322 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170315 +packetLen(0x094a, 6) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20170104 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20171206 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20171129 +packetLen(0x094b, 8) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20171002 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170927 +packetLen(0x094b, 26) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20170104 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20170927 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170920 +packetLen(0x094c, -1) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170712 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170705 +packetLen(0x094c, 5) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170412 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170405 +packetLen(0x094c, 36) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170208 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170201 +packetLen(0x094c, 19) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170118 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170111 +packetLen(0x094c, 8) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20170104 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20171108 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171101 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171002 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170927 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20170104 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20171227 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171220 +packetLen(0x094e, 8) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171115 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171108 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170322 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170315 +packetLen(0x094e, 19) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170222 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170215 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20170104 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +#if PACKETVER >= 20171025 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20171018 +packetLen(0x094f, 18) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170809 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170801 +packetLen(0x094f, 26) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170726 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170419 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170412 +packetLen(0x094f, 26) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170405 +packetLen(0x094f, 8) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20170104 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20171018 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20171011 +packetLen(0x0950, 19) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170823 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170816 +packetLen(0x0950, 5) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170801 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170726 +packetLen(0x0950, 10) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170517 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170502 +packetLen(0x0950, 5) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20170104 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20171227 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20171220 +packetLen(0x0951, 5) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20170104 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20171108 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20171101 +packetLen(0x0952, 90) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170801 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170726 +packetLen(0x0952, 5) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170322 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170315 +packetLen(0x0952, 36) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170308 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170228 +packetLen(0x0952, 10) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20170104 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +#if PACKETVER >= 20171206 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20171129 +packetLen(0x0953, 8) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170913 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170906 +packetLen(0x0953, 19) // CZ_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20170104 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x0954 +#if PACKETVER >= 20171018 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20171011 +packetLen(0x0954, 5) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170801 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170726 +packetLen(0x0954, 18) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20170104 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20170308 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170228 +packetLen(0x0955, 18) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20170104 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20170628 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170621 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20170104 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20171227 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171220 +packetLen(0x0957, 26) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171213 +packetLen(0x0957, 5) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171108 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171101 +packetLen(0x0957, 7) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170628 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170621 +packetLen(0x0957, 36) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170614 +packetLen(0x0957, 8) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20170104 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20171213 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171206 +packetLen(0x0958, -1) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171122 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171115 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171108 +packetLen(0x0958, 18) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170531 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170524 +packetLen(0x0958, 4) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170517 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170502 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170426 +packetLen(0x0958, 26) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170125 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170118 +packetLen(0x0958, 36) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20170104 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20171002 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170927 +packetLen(0x0959, 8) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170906 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170830 +packetLen(0x0959, 10) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170823 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170816 +packetLen(0x0959, 8) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170419 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170412 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20170104 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20171122 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171115 +packetLen(0x095a, 26) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171108 +packetLen(0x095a, 8) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171101 +packetLen(0x095a, -1) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171002 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170927 +packetLen(0x095a, 10) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170920 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170913 +packetLen(0x095a, 10) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170809 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170801 +packetLen(0x095a, 19) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170726 +packetLen(0x095a, 90) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170531 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170524 +packetLen(0x095a, 6) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20170104 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20170830 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170823 +packetLen(0x095b, 5) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170628 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170621 +packetLen(0x095b, 4) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170531 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170524 +packetLen(0x095b, 18) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170419 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170412 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20170104 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20170920 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170913 +packetLen(0x095c, 6) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170628 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170621 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170426 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170419 +packetLen(0x095c, 6) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170412 +packetLen(0x095c, 12) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170201 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170125 +packetLen(0x095c, 8) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20170104 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20170927 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170920 +packetLen(0x095d, 5) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170426 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170419 +packetLen(0x095d, -1) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170412 +packetLen(0x095d, 36) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170228 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170222 +packetLen(0x095d, 8) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20170104 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 + +// Packet: 0x095f +#if PACKETVER >= 20171011 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171002 +packetLen(0x095f, 4) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170405 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170329 +packetLen(0x095f, 4) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170222 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170215 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20170104 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20171227 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171220 +packetLen(0x0960, 90) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170823 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170816 +packetLen(0x0960, -1) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170524 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170517 +packetLen(0x0960, 26) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20170104 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20171213 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20171206 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170927 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170920 +packetLen(0x0961, 6) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170628 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170621 +packetLen(0x0961, 19) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170118 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170111 +packetLen(0x0961, -1) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20170104 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20171129 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171122 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171108 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20171101 +packetLen(0x0962, 6) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170228 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170222 +packetLen(0x0962, 8) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170215 +packetLen(0x0962, 5) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170125 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170118 +packetLen(0x0962, 26) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20170104 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +#if PACKETVER >= 20171115 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20171108 +packetLen(0x0963, 7) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170801 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170726 +packetLen(0x0963, -1) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170621 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170614 +packetLen(0x0963, 12) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170607 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170531 +packetLen(0x0963, 6) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170502 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170426 +packetLen(0x0963, 8) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170419 +packetLen(0x0963, 4) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20170104 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20171227 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20171220 +packetLen(0x0964, 26) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170524 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170517 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170412 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170405 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20170104 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +#if PACKETVER >= 20171115 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171108 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170426 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170419 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170201 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170125 +packetLen(0x0965, 6) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20170104 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20171206 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20171129 +packetLen(0x0966, 19) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20171108 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20171101 +packetLen(0x0966, 10) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170927 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170920 +packetLen(0x0966, 90) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170726 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170719 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170208 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170201 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20170104 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20171115 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20171108 +packetLen(0x0967, 10) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170531 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170524 +packetLen(0x0967, 26) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20170104 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20171129 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171122 +packetLen(0x0968, -1) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170607 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170531 +packetLen(0x0968, -1) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170524 +packetLen(0x0968, 6) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20170104 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20171227 +packetLen(0x0969, 6) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170222 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170215 +packetLen(0x0969, 5) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170208 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170201 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170118 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170111 +packetLen(0x0969, 26) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20170104 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20171227 +packetLen(0x096a, 18) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171220 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171129 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171122 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171115 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171101 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171002 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170913 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170906 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170830 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170823 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170809 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170801 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170719 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170621 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170517 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170426 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170412 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170322 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170315 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170308 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170228 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170222 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170215 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170201 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170125 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170118 +packetLen(0x096a, 8) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20170104 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 10) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ae +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING + +// Packet: 0x09b3 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c4 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 + +// Packet: 0x0a0a +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 + +// Packet: 0x0a0b +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 + +// Packet: 0x0a0c +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +packetLen(0x0a37, 59) // ZC_ITEM_PICKUP_ACK_V7 + +// Packet: 0x0a38 +packetLen(0x0a38, 3) // ZC_OPEN_UI + +// Packet: 0x0a39 +packetLen(0x0a39, 36) // CH_MAKE_CHAR + +// Packet: 0x0a3a +packetLen(0x0a3a, 12) + +// Packet: 0x0a3b +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT + +// Packet: 0x0a3c +packetLen(0x0a3c, -1) + +// Packet: 0x0a3d +packetLen(0x0a3d, 18) + +// Packet: 0x0a3e +packetLen(0x0a3e, -1) + +// Packet: 0x0a3f +packetLen(0x0a3f, 9) + +// Packet: 0x0a40 +packetLen(0x0a40, 11) + +// Packet: 0x0a41 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL + +// Packet: 0x0a42 +packetLen(0x0a42, 43) + +// Packet: 0x0a43 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0a44 +packetLen(0x0a44, -1) // ZC_GROUP_LIST + +// Packet: 0x0a46 +packetLen(0x0a46, 14) + +// Packet: 0x0a47 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES + +// Packet: 0x0a48 +packetLen(0x0a48, 2) + +// Packet: 0x0a49 +#if PACKETVER >= 20170830 +packetLen(0x0a49, 20) // CZ_PRIVATE_AIRSHIP_REQUEST +#elif PACKETVER >= 20170104 +packetLen(0x0a49, 22) // CZ_PRIVATE_AIRSHIP_REQUEST +#endif + +// Packet: 0x0a4a +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE + +// Packet: 0x0a4b +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE + +// Packet: 0x0a4c +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE + +// Packet: 0x0a4d +packetLen(0x0a4d, -1) + +// Packet: 0x0a4e +packetLen(0x0a4e, 4) + +// Packet: 0x0a4f +packetLen(0x0a4f, -1) + +// Packet: 0x0a50 +packetLen(0x0a50, 4) + +// Packet: 0x0a51 +packetLen(0x0a51, 34) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a52 +packetLen(0x0a52, 20) + +// Packet: 0x0a53 +packetLen(0x0a53, 10) + +// Packet: 0x0a54 +packetLen(0x0a54, -1) + +// Packet: 0x0a55 +packetLen(0x0a55, 2) + +// Packet: 0x0a56 +packetLen(0x0a56, 6) + +// Packet: 0x0a57 +packetLen(0x0a57, 6) + +// Packet: 0x0a58 +packetLen(0x0a58, 8) + +// Packet: 0x0a59 +packetLen(0x0a59, -1) + +// Packet: 0x0a5a +packetLen(0x0a5a, 2) + +// Packet: 0x0a5b +packetLen(0x0a5b, 7) + +// Packet: 0x0a5c +packetLen(0x0a5c, 18) + +// Packet: 0x0a5d +packetLen(0x0a5d, 6) + +// Packet: 0x0a68 +packetLen(0x0a68, 3) // CZ_REQ_OPEN_UI + +// Packet: 0x0a69 +packetLen(0x0a69, 6) + +// Packet: 0x0a6a +packetLen(0x0a6a, 12) + +// Packet: 0x0a6b +packetLen(0x0a6b, -1) + +// Packet: 0x0a6c +packetLen(0x0a6c, 7) + +// Packet: 0x0a6d +packetLen(0x0a6d, -1) + +// Packet: 0x0a6e +packetLen(0x0a6e, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x0a6f +packetLen(0x0a6f, -1) // ZC_FORMATSTRING_MSG_COLOR + +// Packet: 0x0a70 +packetLen(0x0a70, 2) + +// Packet: 0x0a71 +packetLen(0x0a71, -1) + +// Packet: 0x0a72 +packetLen(0x0a72, 61) + +// Packet: 0x0a73 +packetLen(0x0a73, 2) + +// Packet: 0x0a74 +packetLen(0x0a74, 8) + +// Packet: 0x0a76 +packetLen(0x0a76, 80) + +// Packet: 0x0a77 +packetLen(0x0a77, 15) + +// Packet: 0x0a78 +packetLen(0x0a78, 15) + +// Packet: 0x0a79 +packetLen(0x0a79, -1) + +// Packet: 0x0a7b +packetLen(0x0a7b, -1) + +// Packet: 0x0a7c +packetLen(0x0a7c, -1) + +// Packet: 0x0a7d +packetLen(0x0a7d, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0a7e +packetLen(0x0a7e, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY + +// Packet: 0x0a7f +packetLen(0x0a7f, -1) // CZ_OFFLINE_STORE_CREATE + +// Packet: 0x0a80 +packetLen(0x0a80, 6) + +// Packet: 0x0a81 +packetLen(0x0a81, 4) + +// Packet: 0x0a82 +packetLen(0x0a82, 46) + +// Packet: 0x0a83 +packetLen(0x0a83, 46) + +// Packet: 0x0a84 +packetLen(0x0a84, 94) // ZC_GUILD_INFO + +// Packet: 0x0a85 +packetLen(0x0a85, 82) + +// Packet: 0x0a86 +packetLen(0x0a86, -1) + +// Packet: 0x0a87 +packetLen(0x0a87, -1) + +// Packet: 0x0a88 +packetLen(0x0a88, 2) + +// Packet: 0x0a89 +packetLen(0x0a89, 57) // ZC_NOTIFY_OFFLINE_STORE + +// Packet: 0x0a8a +packetLen(0x0a8a, 6) // ZC_OFFLINE_STORE_VANISH + +// Packet: 0x0a8b +packetLen(0x0a8b, 2) + +// Packet: 0x0a8c +packetLen(0x0a8c, 2) + +// Packet: 0x0a8d +packetLen(0x0a8d, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS + +// Packet: 0x0a8e +packetLen(0x0a8e, 2) + +// Packet: 0x0a8f +packetLen(0x0a8f, 2) + +// Packet: 0x0a90 +packetLen(0x0a90, 3) + +// Packet: 0x0a91 +packetLen(0x0a91, -1) // ZC_OFFLINE_STORE_ITEMS + +// Packet: 0x0a92 +packetLen(0x0a92, -1) + +// Packet: 0x0a93 +packetLen(0x0a93, 3) + +// Packet: 0x0a94 +packetLen(0x0a94, 2) + +// Packet: 0x0a95 +packetLen(0x0a95, 4) + +// Packet: 0x0a96 +packetLen(0x0a96, 51) // ZC_ADD_EXCHANGE_ITEM4 + +// Packet: 0x0a97 +packetLen(0x0a97, 8) // CZ_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a98 +#if PACKETVER >= 20170426 +packetLen(0x0a98, 10) // ZC_ALT_EQUIPMENT_EQUIP +#elif PACKETVER >= 20170104 +packetLen(0x0a98, 12) // ZC_ALT_EQUIPMENT_EQUIP +#endif + +// Packet: 0x0a99 +#if PACKETVER >= 20170419 +packetLen(0x0a99, 4) +#elif PACKETVER >= 20170104 +packetLen(0x0a99, 8) +#endif + +// Packet: 0x0a9a +packetLen(0x0a9a, 10) // ZC_ALT_EQUIPMENT_REMOVE + +// Packet: 0x0a9b +packetLen(0x0a9b, -1) // ZC_ALT_EQUIPMENT_ITEMS + +// Packet: 0x0a9c +packetLen(0x0a9c, 2) + +// Packet: 0x0a9d +packetLen(0x0a9d, 4) + +// Packet: 0x0a9e +packetLen(0x0a9e, 2) + +// Packet: 0x0a9f +packetLen(0x0a9f, 2) + +// Packet: 0x0aa0 +packetLen(0x0aa0, 2) // ZC_REFINE_OPEN_WINDOW + +// Packet: 0x0aa1 +packetLen(0x0aa1, 4) // CZ_REFINE_ADD_ITEM + +// Packet: 0x0aa2 +packetLen(0x0aa2, -1) // ZC_REFINE_ADD_ITEM + +// Packet: 0x0aa3 +packetLen(0x0aa3, 7) // CZ_REFINE_ITEM_REQUEST + +// Packet: 0x0aa4 +packetLen(0x0aa4, 2) // CZ_REFINE_WINDOW_CLOSE + +// Packet: 0x0aa5 +packetLen(0x0aa5, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0aa6 +packetLen(0x0aa6, 36) // ZC_MEMBER_ADD + +// Packet: 0x0aa7 +packetLen(0x0aa7, 6) // ZC_INVENTORY_MOVE_FAILED + +// Packet: 0x0aa8 +packetLen(0x0aa8, 5) + +// Packet: 0x0aa9 +packetLen(0x0aa9, -1) + +// Packet: 0x0aaa +packetLen(0x0aaa, -1) + +// Packet: 0x0aab +packetLen(0x0aab, -1) + +// Packet: 0x0aac +#if PACKETVER >= 20170329 +packetLen(0x0aac, 69) +#elif PACKETVER >= 20170104 +packetLen(0x0aac, 67) +#endif + +// Packet: 0x0aad +#if PACKETVER >= 20170118 +packetLen(0x0aad, 51) +#elif PACKETVER >= 20170104 +packetLen(0x0aad, 47) +#endif + +// Packet: 0x0aae +packetLen(0x0aae, 2) + +// Packet: 0x0aaf +packetLen(0x0aaf, 6) + +// Packet: 0x0ab0 +packetLen(0x0ab0, 6) + +// Packet: 0x0ab1 +packetLen(0x0ab1, 14) + +// Packet: 0x0ab2 +packetLen(0x0ab2, 7) // ZC_GROUP_ISALIVE + +// Packet: 0x0ab3 +#if PACKETVER >= 20170118 +packetLen(0x0ab3, 19) +#elif PACKETVER >= 20170104 +packetLen(0x0ab3, 15) +#endif + +// Packet: 0x0ab4 +#if PACKETVER >= 20170111 +packetLen(0x0ab4, 4) +#endif + +// Packet: 0x0ab5 +#if PACKETVER >= 20170111 +packetLen(0x0ab5, 2) +#endif + +// Packet: 0x0ab6 +#if PACKETVER >= 20170111 +packetLen(0x0ab6, 6) +#endif + +// Packet: 0x0ab7 +#if PACKETVER >= 20170111 +packetLen(0x0ab7, 4) +#endif + +// Packet: 0x0ab8 +#if PACKETVER >= 20170111 +packetLen(0x0ab8, 2) +#endif + +// Packet: 0x0ab9 +#if PACKETVER >= 20170111 +packetLen(0x0ab9, 39) // ZC_ITEM_PREVIEW +#endif + +// Packet: 0x0aba +#if PACKETVER >= 20170118 +packetLen(0x0aba, 2) +#endif + +// Packet: 0x0abb +#if PACKETVER >= 20170118 +packetLen(0x0abb, 2) +#endif + +// Packet: 0x0abc +#if PACKETVER >= 20170201 +packetLen(0x0abc, -1) +#endif + +// Packet: 0x0abd +#if PACKETVER >= 20170215 +packetLen(0x0abd, 10) // ZC_PARTY_MEMBER_JOB_LEVEL +#endif + +// Packet: 0x0abe +#if PACKETVER >= 20170228 +packetLen(0x0abe, -1) // ZC_WARPLIST +#elif PACKETVER >= 20170222 +packetLen(0x0abe, 116) // ZC_WARPLIST +#endif + +// Packet: 0x0abf +#if PACKETVER >= 20170228 +packetLen(0x0abf, -1) +#elif PACKETVER >= 20170222 +packetLen(0x0abf, 114) +#endif + +// Packet: 0x0ac0 +#if PACKETVER >= 20170228 +packetLen(0x0ac0, 26) // CZ_OPEN_RODEXBOX +#endif + +// Packet: 0x0ac1 +#if PACKETVER >= 20170228 +packetLen(0x0ac1, 26) // CZ_REQ_REFRESH_RODEX +#endif + +// Packet: 0x0ac2 +#if PACKETVER >= 20170228 +packetLen(0x0ac2, -1) // ZC_ACK_RODEX_LIST +#endif + +// Packet: 0x0ac3 +#if PACKETVER >= 20170228 +packetLen(0x0ac3, 2) +#endif + +// Packet: 0x0ac4 +#if PACKETVER >= 20170228 +packetLen(0x0ac4, -1) // AC_ACCEPT_LOGIN +#endif + +// Packet: 0x0ac5 +#if PACKETVER >= 20170228 +packetLen(0x0ac5, 156) // HC_NOTIFY_ZONESVR +#endif + +// Packet: 0x0ac6 +#if PACKETVER >= 20170228 +packetLen(0x0ac6, 156) +#endif + +// Packet: 0x0ac7 +#if PACKETVER >= 20170228 +packetLen(0x0ac7, 156) // ZC_NPCACK_SERVERMOVE +#endif + +// Packet: 0x0ac8 +#if PACKETVER >= 20170308 +packetLen(0x0ac8, 2) // ZC_UNKNOWN_CLEAN_ITEMS_LISTS +#endif + +// Packet: 0x0ac9 +#if PACKETVER >= 20170308 +packetLen(0x0ac9, -1) +#endif + +// Packet: 0x0aca +#if PACKETVER >= 20170322 +packetLen(0x0aca, 3) +#endif + +// Packet: 0x0acb +#if PACKETVER >= 20170405 +packetLen(0x0acb, 12) // ZC_PAR_CHANGE +#endif + +// Packet: 0x0acc +#if PACKETVER >= 20170405 +packetLen(0x0acc, 18) // ZC_NOTIFY_EXP +#endif + +// Packet: 0x0acd +#if PACKETVER >= 20170419 +packetLen(0x0acd, 23) +#endif + +// Packet: 0x0ace +#if PACKETVER >= 20170502 +packetLen(0x0ace, 4) +#endif + +// Packet: 0x0acf +#if PACKETVER >= 20171115 +packetLen(0x0acf, 68) // CA_LOGIN_OTP +#elif PACKETVER >= 20170705 +packetLen(0x0acf, 64) // CA_LOGIN_OTP +#elif PACKETVER >= 20170621 +packetLen(0x0acf, 57) // CA_LOGIN_OTP +#elif PACKETVER >= 20170614 +packetLen(0x0acf, 52) // CA_LOGIN_OTP +#endif + +// Packet: 0x0ad0 +#if PACKETVER >= 20170614 +packetLen(0x0ad0, 11) // CA_OTP_CODE +#endif + +// Packet: 0x0ad1 +#if PACKETVER >= 20170614 +packetLen(0x0ad1, -1) +#endif + +// Packet: 0x0ad2 +#if PACKETVER >= 20170719 +packetLen(0x0ad2, 30) +#endif + +// Packet: 0x0ad3 +#if PACKETVER >= 20170719 +packetLen(0x0ad3, -1) +#endif + +// Packet: 0x0ad4 +#if PACKETVER >= 20170719 +packetLen(0x0ad4, -1) +#endif + +// Packet: 0x0ad5 +#if PACKETVER >= 20170719 +packetLen(0x0ad5, 2) +#endif + +// Packet: 0x0ad6 +#if PACKETVER >= 20170719 +packetLen(0x0ad6, 2) +#endif + +// Packet: 0x0ad7 +#if PACKETVER >= 20170719 +packetLen(0x0ad7, 8) +#endif + +// Packet: 0x0ad8 +#if PACKETVER >= 20170719 +packetLen(0x0ad8, 8) +#endif + +// Packet: 0x0ad9 +#if PACKETVER >= 20170719 +packetLen(0x0ad9, -1) +#endif + +// Packet: 0x0ada +#if PACKETVER >= 20170726 +packetLen(0x0ada, 30) // ZC_REFINE_STATUS +#endif + +// Packet: 0x0adb +#if PACKETVER >= 20170830 +packetLen(0x0adb, -1) +#endif + +// Packet: 0x0adc +#if PACKETVER >= 20170906 +packetLen(0x0adc, 6) // ZC_EQUIPWIN_OTHER +#endif + +// Packet: 0x0add +#if PACKETVER >= 20170913 +packetLen(0x0add, 22) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x0ade +#if PACKETVER >= 20170920 +packetLen(0x0ade, 6) // ZC_OVERWEIGHT_PERCENT +#endif + +// Packet: 0x0adf +#if PACKETVER >= 20170920 +packetLen(0x0adf, 58) // ZC_ACK_REQNAME +#endif + +// Packet: 0x0ae0 +#if PACKETVER >= 20170927 +packetLen(0x0ae0, 30) +#endif + +// Packet: 0x0ae1 +#if PACKETVER >= 20171101 +packetLen(0x0ae1, 28) +#endif + +// Packet: 0x0ae2 +#if PACKETVER >= 20171115 +packetLen(0x0ae2, 7) // ZC_OPEN_UI +#endif + +// Packet: 0x0ae3 +#if PACKETVER >= 20171213 +packetLen(0x0ae3, -1) // AC_LOGIN_OTP +#endif + +// Packet: 0x0ae4 +#if PACKETVER >= 20171206 +packetLen(0x0ae4, 89) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0ae5 +#if PACKETVER >= 20171206 +packetLen(0x0ae5, -1) // ZC_GROUP_LIST +#endif + +// Packet: 0x0ae6 +#if PACKETVER >= 20171213 +packetLen(0x0ae6, 30) +#endif + +// Packet: 0x0ae7 +#if PACKETVER >= 20171213 +packetLen(0x0ae7, 30) +#endif + +// Packet: 0x0ae8 +#if PACKETVER >= 20171220 +packetLen(0x0ae8, 2) +#endif + +// Packet: 0x0ae9 +#if PACKETVER >= 20171220 +packetLen(0x0ae9, 64) // HC_SECOND_PASSWD_LOGIN +#endif + +// Packet: 0x0aea +#if PACKETVER >= 20171227 +packetLen(0x0aea, 2) +#elif PACKETVER >= 20171220 +packetLen(0x0aea, 11) +#endif + +// Packet: 0x0aeb +#if PACKETVER >= 20171227 +packetLen(0x0aeb, 11) +#endif + +// Packet: 0x0aec +#if PACKETVER >= 20171227 +packetLen(0x0aec, 2) +#endif + + +#endif /* COMMON_PACKETS2017_LEN_RE_H */ diff --git a/src/common/packets/packets2017_len_zero.h b/src/common/packets/packets2017_len_zero.h new file mode 100644 index 000000000..dbe09dad6 --- /dev/null +++ b/src/common/packets/packets2017_len_zero.h @@ -0,0 +1,5375 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2017_LEN_ZERO_H +#define COMMON_PACKETS2017_LEN_ZERO_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 157) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +packetLen(0x009d, 17) // ZC_ITEM_ENTRY + +// Packet: 0x009e +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +packetLen(0x018e, 10) // CZ_REQMAKINGITEM + +// Packet: 0x018f +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +packetLen(0x01a3, 5) // ZC_FEED_PET + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 + +// Packet: 0x01c5 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 + +// Packet: 0x01d8 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 + +// Packet: 0x01d9 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 + +// Packet: 0x01da +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20171130 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171127 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171123 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171121 +packetLen(0x0202, 36) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171115 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20171018 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 + +// Packet: 0x022b +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 + +// Packet: 0x022c +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 + +// Packet: 0x022d +#if PACKETVER >= 20171130 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20171127 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20171123 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20171121 +packetLen(0x022d, -1) // CZ_COMMAND_MER +#elif PACKETVER >= 20171115 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20171018 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN + +// Packet: 0x022f +packetLen(0x022f, 5) // ZC_FEED_MER + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20171130 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20171127 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20171115 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20171018 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20171227 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171220 +packetLen(0x0281, 10) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171214 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171206 +packetLen(0x0281, 10) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171204 +packetLen(0x0281, 6) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171130 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171127 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171121 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171115 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20171018 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER + +// Packet: 0x0299 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE + +// Packet: 0x029a +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20171220 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20171214 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20171115 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20171018 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 + +// Packet: 0x02ed +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 + +// Packet: 0x02ee +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20171206 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171204 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171130 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171115 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20171018 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20171206 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171204 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171130 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20171018 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20171204 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171130 +packetLen(0x0361, 18) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171127 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171115 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20171018 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20171130 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171127 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171123 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20171018 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20171130 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171127 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171123 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171121 +packetLen(0x0363, -1) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171115 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20171018 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20171130 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20171127 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20171121 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20171018 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20171130 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171127 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171121 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171115 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20171018 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20171214 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171206 +packetLen(0x0366, 6) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171130 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171115 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20171018 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20171127 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20171123 +packetLen(0x0367, 5) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20171115 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20171018 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20171206 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20171204 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20171130 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20171018 +packetLen(0x0368, 6) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20171206 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171204 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171130 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171115 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20171018 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20171214 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20171206 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20171130 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20171127 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20171115 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20171018 +packetLen(0x0436, 19) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20171206 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171204 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171130 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171115 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20171018 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20171227 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171214 +packetLen(0x0438, 6) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171206 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171204 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171130 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20171018 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20171130 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171127 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171121 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171115 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20171018 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20171227 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171220 +packetLen(0x07ec, 6) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171130 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171127 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171121 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20171018 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20171130 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171127 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171121 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171115 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20171018 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20171206 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171204 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171130 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171123 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171121 +packetLen(0x0811, 5) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20171018 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20171206 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171204 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171130 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171115 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20171018 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20171115 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20171018 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20171227 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171220 +packetLen(0x0819, 90) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171206 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171204 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171130 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20171018 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20171227 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20171220 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20171214 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20171206 +packetLen(0x0835, 6) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20171115 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20171018 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20171227 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171220 +packetLen(0x0838, 6) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171206 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171204 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171130 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171115 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20171018 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20171214 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171206 +packetLen(0x083c, 8) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171204 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171130 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171115 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20171018 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 + +// Packet: 0x085b +#if PACKETVER >= 20171220 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171214 +packetLen(0x085b, 36) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171206 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171204 +packetLen(0x085b, 8) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171018 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 + +// Packet: 0x085d +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 + +// Packet: 0x085e +#if PACKETVER >= 20171220 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20171214 +packetLen(0x085e, 18) // ZC_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20171018 +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x085f +#if PACKETVER >= 20171227 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20171220 +packetLen(0x085f, -1) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20171127 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20171123 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20171018 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20171227 +packetLen(0x0860, 5) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171214 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171206 +packetLen(0x0860, 4) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171127 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171123 +packetLen(0x0860, 19) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171121 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171115 +packetLen(0x0860, 4) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20171018 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 + +// Packet: 0x0862 +#if PACKETVER >= 20171220 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171214 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171206 +packetLen(0x0862, 5) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171018 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 + +// Packet: 0x0864 +#if PACKETVER >= 20171220 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20171214 +packetLen(0x0864, 8) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20171206 +packetLen(0x0864, 5) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20171204 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20171130 +packetLen(0x0864, 6) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20171018 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 + +// Packet: 0x0866 +#if PACKETVER >= 20171123 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171121 +packetLen(0x0866, 8) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20171018 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +#if PACKETVER >= 20171227 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171220 +packetLen(0x0867, 6) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20171018 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 + +// Packet: 0x0869 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 + +// Packet: 0x086a +#if PACKETVER >= 20171220 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171214 +packetLen(0x086a, 5) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171018 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 + +// Packet: 0x086c +#if PACKETVER >= 20171227 +packetLen(0x086c, 7) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171220 +packetLen(0x086c, 6) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171018 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 + +// Packet: 0x086e +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 + +// Packet: 0x086f +#if PACKETVER >= 20171206 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171204 +packetLen(0x086f, 19) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171130 +packetLen(0x086f, 12) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171018 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20171214 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171206 +packetLen(0x0870, 8) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20171018 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20171227 +packetLen(0x0871, 6) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20171220 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20171214 +packetLen(0x0871, 19) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20171018 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20171227 +packetLen(0x0872, 90) +#elif PACKETVER >= 20171220 +packetLen(0x0872, 8) +#elif PACKETVER >= 20171204 +packetLen(0x0872, 2) +#elif PACKETVER >= 20171130 +packetLen(0x0872, 6) +#elif PACKETVER >= 20171018 +packetLen(0x0872, 2) +#endif + +// Packet: 0x0873 +#if PACKETVER >= 20171220 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171214 +packetLen(0x0873, -1) // ZC_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20171018 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x0874 +#if PACKETVER >= 20171227 +packetLen(0x0874, 19) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171018 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20171204 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20171130 +packetLen(0x0875, 6) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20171018 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20171227 +packetLen(0x0876, 10) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171127 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171123 +packetLen(0x0876, 4) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171018 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20171227 +packetLen(0x0877, 8) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20171018 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20171227 +packetLen(0x0878, 6) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171214 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171206 +packetLen(0x0878, 10) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171204 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171130 +packetLen(0x0878, -1) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20171018 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 + +// Packet: 0x087a +#if PACKETVER >= 20171227 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171220 +packetLen(0x087a, 12) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171214 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171206 +packetLen(0x087a, 18) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171018 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20171227 +packetLen(0x087b, 8) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171214 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171206 +packetLen(0x087b, -1) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171018 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 + +// Packet: 0x087d +#if PACKETVER >= 20171206 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20171204 +packetLen(0x087d, -1) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20171018 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20171227 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171220 +packetLen(0x087e, 4) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171018 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 + +// Packet: 0x0880 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 + +// Packet: 0x0881 +#if PACKETVER >= 20171204 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20171130 +packetLen(0x0881, 10) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20171121 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20171115 +packetLen(0x0881, 19) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20171018 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20171127 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171123 +packetLen(0x0882, -1) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171018 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 + +// Packet: 0x0884 +#if PACKETVER >= 20171204 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20171130 +packetLen(0x0884, 6) // CZ_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20171018 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x0885 +#if PACKETVER >= 20171227 +packetLen(0x0885, 8) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171214 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171206 +packetLen(0x0885, 6) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171204 +packetLen(0x0885, 90) // CZ_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20171018 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x0886 +#if PACKETVER >= 20171220 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20171214 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20171018 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20171206 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20171204 +packetLen(0x0887, 5) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20171130 +packetLen(0x0887, 36) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20171018 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 + +// Packet: 0x0889 +#if PACKETVER >= 20171227 +packetLen(0x0889, -1) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20171123 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20171121 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20171018 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 + +// Packet: 0x088b +#if PACKETVER >= 20171220 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20171214 +packetLen(0x088b, 4) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20171204 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20171130 +packetLen(0x088b, 8) // CZ_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20171018 +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x088c +#if PACKETVER >= 20171220 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171214 +packetLen(0x088c, 8) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171127 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171123 +packetLen(0x088c, 26) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20171018 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20171214 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20171206 +packetLen(0x088d, 26) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20171018 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 + +// Packet: 0x088f +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 + +// Packet: 0x0890 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 + +// Packet: 0x0891 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 + +// Packet: 0x0892 +#if PACKETVER >= 20171220 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20171214 +packetLen(0x0892, 10) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20171206 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20171204 +packetLen(0x0892, 4) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20171123 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20171121 +packetLen(0x0892, 18) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20171018 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20171214 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20171206 +packetLen(0x0893, 26) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20171130 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20171127 +packetLen(0x0893, 36) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20171018 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +#if PACKETVER >= 20171227 +packetLen(0x0894, 18) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171220 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171214 +packetLen(0x0894, 6) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171204 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171130 +packetLen(0x0894, 5) // CZ_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20171018 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x0895 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 + +// Packet: 0x0896 +#if PACKETVER >= 20171206 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171204 +packetLen(0x0896, 36) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171127 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171123 +packetLen(0x0896, 5) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20171018 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20171220 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171214 +packetLen(0x0897, -1) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171206 +packetLen(0x0897, 5) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20171018 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 + +// Packet: 0x0899 +#if PACKETVER >= 20171227 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171220 +packetLen(0x0899, 5) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171204 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171130 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20171018 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 + +// Packet: 0x089b +#if PACKETVER >= 20171227 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20171220 +packetLen(0x089b, 8) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20171018 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 + +// Packet: 0x089d +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 + +// Packet: 0x089e +#if PACKETVER >= 20171214 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171206 +packetLen(0x089e, 12) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171127 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171123 +packetLen(0x089e, 18) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171121 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20171018 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +#if PACKETVER >= 20171227 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20171018 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +#if PACKETVER >= 20171204 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171130 +packetLen(0x08a0, 5) // CZ_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20171018 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x08a1 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 + +// Packet: 0x08a2 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 + +// Packet: 0x08a3 +#if PACKETVER >= 20171227 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20171220 +packetLen(0x08a3, -1) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20171214 +packetLen(0x08a3, 26) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20171018 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +#if PACKETVER >= 20171214 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171206 +packetLen(0x08a4, -1) // CZ_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20171018 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x08a5 +#if PACKETVER >= 20171227 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171220 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171214 +packetLen(0x08a5, 90) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20171018 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 + +// Packet: 0x08a7 +#if PACKETVER >= 20171204 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20171130 +packetLen(0x08a7, -1) // CZ_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20171018 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x08a8 +#if PACKETVER >= 20171127 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171123 +packetLen(0x08a8, 26) // CZ_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20171018 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x08a9 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 + +// Packet: 0x08aa +#if PACKETVER >= 20171206 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20171204 +packetLen(0x08aa, 26) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20171018 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 + +// Packet: 0x08ac +#if PACKETVER >= 20171214 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171206 +packetLen(0x08ac, 7) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20171018 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20171227 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171220 +packetLen(0x08ad, 19) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171123 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171121 +packetLen(0x08ad, 26) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20171018 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 157) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20171206 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171204 +packetLen(0x0917, 8) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171018 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20171123 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20171121 +packetLen(0x0918, 6) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20171018 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 + +// Packet: 0x091a +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 + +// Packet: 0x091b +#if PACKETVER >= 20171206 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20171204 +packetLen(0x091b, 26) // ZC_PRNPC_STATE +#elif PACKETVER >= 20171018 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20171227 +packetLen(0x091c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20171121 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20171115 +packetLen(0x091c, 5) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20171018 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 + +// Packet: 0x091e +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 + +// Packet: 0x091f +#if PACKETVER >= 20171227 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20171220 +packetLen(0x091f, -1) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20171123 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20171121 +packetLen(0x091f, 19) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20171018 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20171227 +packetLen(0x0920, -1) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20171214 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20171206 +packetLen(0x0920, 19) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20171018 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20171227 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20171220 +packetLen(0x0921, 5) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20171206 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20171204 +packetLen(0x0921, 18) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20171018 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20171121 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20171115 +packetLen(0x0922, 36) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20171018 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 + +// Packet: 0x0924 +#if PACKETVER >= 20171206 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171204 +packetLen(0x0924, 5) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20171018 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +#if PACKETVER >= 20171227 +packetLen(0x0925, 4) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20171204 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20171130 +packetLen(0x0925, -1) // ZC_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20171018 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0926 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 + +// Packet: 0x0927 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 + +// Packet: 0x0928 +#if PACKETVER >= 20171204 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20171130 +packetLen(0x0928, 4) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20171123 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20171121 +packetLen(0x0928, 26) // ZC_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20171018 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0929 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 + +// Packet: 0x092a +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 + +// Packet: 0x092b +#if PACKETVER >= 20171127 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20171123 +packetLen(0x092b, 8) // ZC_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20171018 +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x092c +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 + +// Packet: 0x092d +#if PACKETVER >= 20171227 +packetLen(0x092d, 12) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171220 +packetLen(0x092d, 18) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20171018 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20171227 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171220 +packetLen(0x092e, 26) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20171018 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 + +// Packet: 0x0930 +#if PACKETVER >= 20171227 +packetLen(0x0930, 36) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171204 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171130 +packetLen(0x0930, 19) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171127 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171123 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171018 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20171204 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20171130 +packetLen(0x0931, 26) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20171018 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20171227 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20171220 +packetLen(0x0932, 26) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20171018 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20171220 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20171214 +packetLen(0x0933, 7) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20171018 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +#if PACKETVER >= 20171227 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20171220 +packetLen(0x0934, 8) // ZC_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20171018 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x0935 +#if PACKETVER >= 20171204 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171130 +packetLen(0x0935, 8) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171127 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171123 +packetLen(0x0935, 8) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171018 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +#if PACKETVER >= 20171214 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171206 +packetLen(0x0936, 8) // ZC_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171018 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0937 +#if PACKETVER >= 20171227 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20171220 +packetLen(0x0937, 7) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20171206 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20171204 +packetLen(0x0937, 8) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20171018 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 + +// Packet: 0x0939 +#if PACKETVER >= 20171227 +packetLen(0x0939, 6) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20171018 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +#if PACKETVER >= 20171214 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20171206 +packetLen(0x093a, -1) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20171204 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20171130 +packetLen(0x093a, 7) // ZC_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20171018 +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x093b +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 + +// Packet: 0x093c +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 + +// Packet: 0x093d +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 + +// Packet: 0x093e +#if PACKETVER >= 20171227 +packetLen(0x093e, 6) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171018 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 + +// Packet: 0x0940 +#if PACKETVER >= 20171214 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171206 +packetLen(0x0940, 90) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171018 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20171227 +packetLen(0x0941, 26) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171214 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171206 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20171018 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 + +// Packet: 0x0943 +#if PACKETVER >= 20171123 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20171121 +packetLen(0x0943, 8) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20171018 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 + +// Packet: 0x0945 +#if PACKETVER >= 20171227 +packetLen(0x0945, 26) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20171018 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20171227 +packetLen(0x0946, 5) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20171018 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20171204 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171130 +packetLen(0x0947, -1) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171127 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171123 +packetLen(0x0947, 36) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20171018 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 + +// Packet: 0x0949 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 + +// Packet: 0x094a +#if PACKETVER >= 20171220 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20171214 +packetLen(0x094a, 5) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20171018 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +#if PACKETVER >= 20171227 +packetLen(0x094b, -1) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20171018 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +#if PACKETVER >= 20171204 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20171130 +packetLen(0x094c, 5) // CZ_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20171018 +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x094d +#if PACKETVER >= 20171227 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171220 +packetLen(0x094d, 10) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171214 +packetLen(0x094d, 5) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20171018 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 + +// Packet: 0x094f +#if PACKETVER >= 20171220 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20171214 +packetLen(0x094f, -1) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20171204 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20171130 +packetLen(0x094f, 90) // CZ_REASSEMBLY_AUTH57 +#elif PACKETVER >= 20171018 +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 +#endif + +// Packet: 0x0950 +#if PACKETVER >= 20171123 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20171121 +packetLen(0x0950, 4) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20171018 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20171220 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20171214 +packetLen(0x0951, 26) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20171018 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 + +// Packet: 0x0953 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 + +// Packet: 0x0954 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 + +// Packet: 0x0955 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 + +// Packet: 0x0956 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 + +// Packet: 0x0957 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 + +// Packet: 0x0958 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 + +// Packet: 0x0959 +#if PACKETVER >= 20171214 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20171206 +packetLen(0x0959, 36) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20171121 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20171115 +packetLen(0x0959, 5) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20171018 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20171220 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171214 +packetLen(0x095a, 8) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20171018 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +#if PACKETVER >= 20171227 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20171220 +packetLen(0x095b, 36) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20171214 +packetLen(0x095b, 12) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20171204 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20171130 +packetLen(0x095b, 6) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20171018 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20171214 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20171206 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20171018 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 + +// Packet: 0x095e +#if PACKETVER >= 20171227 +packetLen(0x095e, 5) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20171018 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +#if PACKETVER >= 20171214 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171206 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171204 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171130 +packetLen(0x095f, 26) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20171018 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20171220 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171214 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171206 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171130 +packetLen(0x0960, 6) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171127 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171123 +packetLen(0x0960, 8) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20171018 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 + +// Packet: 0x0962 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 + +// Packet: 0x0963 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 + +// Packet: 0x0964 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 + +// Packet: 0x0965 +#if PACKETVER >= 20171204 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171130 +packetLen(0x0965, 10) // CZ_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20171018 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x0966 +#if PACKETVER >= 20171121 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20171115 +packetLen(0x0966, 26) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20171018 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20171227 +packetLen(0x0967, 10) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20171018 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20171227 +packetLen(0x0968, -1) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20171018 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +#if PACKETVER >= 20171220 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20171214 +packetLen(0x0969, -1) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20171018 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20171227 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171220 +packetLen(0x096a, 5) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171214 +packetLen(0x096a, 10) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171206 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171204 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171130 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171115 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20171018 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ae +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING + +// Packet: 0x09b3 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c4 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 + +// Packet: 0x0a0a +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 + +// Packet: 0x0a0b +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 + +// Packet: 0x0a0c +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +packetLen(0x0a37, 59) // ZC_ITEM_PICKUP_ACK_V7 + +// Packet: 0x0a38 +packetLen(0x0a38, 3) // ZC_OPEN_UI + +// Packet: 0x0a39 +packetLen(0x0a39, 36) // CH_MAKE_CHAR + +// Packet: 0x0a3a +packetLen(0x0a3a, 12) + +// Packet: 0x0a3b +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT + +// Packet: 0x0a3c +packetLen(0x0a3c, -1) + +// Packet: 0x0a3d +packetLen(0x0a3d, 18) + +// Packet: 0x0a3e +packetLen(0x0a3e, -1) + +// Packet: 0x0a3f +packetLen(0x0a3f, 9) + +// Packet: 0x0a40 +packetLen(0x0a40, 11) + +// Packet: 0x0a41 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL + +// Packet: 0x0a42 +packetLen(0x0a42, 43) + +// Packet: 0x0a43 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0a44 +packetLen(0x0a44, -1) // ZC_GROUP_LIST + +// Packet: 0x0a46 +packetLen(0x0a46, 14) + +// Packet: 0x0a47 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES + +// Packet: 0x0a48 +packetLen(0x0a48, 2) + +// Packet: 0x0a49 +packetLen(0x0a49, 20) // CZ_PRIVATE_AIRSHIP_REQUEST + +// Packet: 0x0a4a +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE + +// Packet: 0x0a4b +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE + +// Packet: 0x0a4c +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE + +// Packet: 0x0a4d +packetLen(0x0a4d, -1) + +// Packet: 0x0a4e +packetLen(0x0a4e, 4) + +// Packet: 0x0a4f +packetLen(0x0a4f, -1) + +// Packet: 0x0a50 +packetLen(0x0a50, 4) + +// Packet: 0x0a51 +packetLen(0x0a51, 34) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a52 +packetLen(0x0a52, 20) + +// Packet: 0x0a53 +packetLen(0x0a53, 10) + +// Packet: 0x0a54 +packetLen(0x0a54, -1) + +// Packet: 0x0a55 +packetLen(0x0a55, 2) + +// Packet: 0x0a56 +packetLen(0x0a56, 6) + +// Packet: 0x0a57 +packetLen(0x0a57, 6) + +// Packet: 0x0a58 +packetLen(0x0a58, 8) + +// Packet: 0x0a59 +packetLen(0x0a59, -1) + +// Packet: 0x0a5a +packetLen(0x0a5a, 2) + +// Packet: 0x0a5b +packetLen(0x0a5b, 7) + +// Packet: 0x0a5c +packetLen(0x0a5c, 18) + +// Packet: 0x0a5d +packetLen(0x0a5d, 6) + +// Packet: 0x0a68 +packetLen(0x0a68, 3) // CZ_REQ_OPEN_UI + +// Packet: 0x0a69 +packetLen(0x0a69, 6) + +// Packet: 0x0a6a +packetLen(0x0a6a, 12) + +// Packet: 0x0a6b +packetLen(0x0a6b, -1) + +// Packet: 0x0a6c +packetLen(0x0a6c, 7) + +// Packet: 0x0a6d +packetLen(0x0a6d, -1) + +// Packet: 0x0a6e +packetLen(0x0a6e, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x0a6f +packetLen(0x0a6f, -1) // ZC_FORMATSTRING_MSG_COLOR + +// Packet: 0x0a70 +packetLen(0x0a70, 2) + +// Packet: 0x0a71 +packetLen(0x0a71, -1) + +// Packet: 0x0a72 +packetLen(0x0a72, 61) + +// Packet: 0x0a73 +packetLen(0x0a73, 2) + +// Packet: 0x0a74 +packetLen(0x0a74, 8) + +// Packet: 0x0a76 +packetLen(0x0a76, 80) + +// Packet: 0x0a77 +packetLen(0x0a77, 15) + +// Packet: 0x0a78 +packetLen(0x0a78, 15) + +// Packet: 0x0a79 +packetLen(0x0a79, -1) + +// Packet: 0x0a7b +packetLen(0x0a7b, -1) + +// Packet: 0x0a7c +packetLen(0x0a7c, -1) + +// Packet: 0x0a7d +packetLen(0x0a7d, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0a7e +packetLen(0x0a7e, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY + +// Packet: 0x0a7f +packetLen(0x0a7f, -1) // CZ_OFFLINE_STORE_CREATE + +// Packet: 0x0a80 +packetLen(0x0a80, 6) + +// Packet: 0x0a81 +packetLen(0x0a81, 4) + +// Packet: 0x0a82 +packetLen(0x0a82, 46) + +// Packet: 0x0a83 +packetLen(0x0a83, 46) + +// Packet: 0x0a84 +packetLen(0x0a84, 94) // ZC_GUILD_INFO + +// Packet: 0x0a85 +packetLen(0x0a85, 82) + +// Packet: 0x0a86 +packetLen(0x0a86, -1) + +// Packet: 0x0a87 +packetLen(0x0a87, -1) + +// Packet: 0x0a88 +packetLen(0x0a88, 2) + +// Packet: 0x0a89 +packetLen(0x0a89, 57) // ZC_NOTIFY_OFFLINE_STORE + +// Packet: 0x0a8a +packetLen(0x0a8a, 6) // ZC_OFFLINE_STORE_VANISH + +// Packet: 0x0a8b +packetLen(0x0a8b, 2) + +// Packet: 0x0a8c +packetLen(0x0a8c, 2) + +// Packet: 0x0a8d +packetLen(0x0a8d, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS + +// Packet: 0x0a8e +packetLen(0x0a8e, 2) + +// Packet: 0x0a8f +packetLen(0x0a8f, 2) + +// Packet: 0x0a90 +packetLen(0x0a90, 3) + +// Packet: 0x0a91 +packetLen(0x0a91, -1) // ZC_OFFLINE_STORE_ITEMS + +// Packet: 0x0a92 +packetLen(0x0a92, -1) + +// Packet: 0x0a93 +packetLen(0x0a93, 3) + +// Packet: 0x0a94 +packetLen(0x0a94, 2) + +// Packet: 0x0a95 +packetLen(0x0a95, 4) + +// Packet: 0x0a96 +packetLen(0x0a96, 51) // ZC_ADD_EXCHANGE_ITEM4 + +// Packet: 0x0a97 +packetLen(0x0a97, 8) // CZ_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a98 +packetLen(0x0a98, 10) // ZC_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a99 +packetLen(0x0a99, 4) + +// Packet: 0x0a9a +packetLen(0x0a9a, 10) // ZC_ALT_EQUIPMENT_REMOVE + +// Packet: 0x0a9b +packetLen(0x0a9b, -1) // ZC_ALT_EQUIPMENT_ITEMS + +// Packet: 0x0a9c +packetLen(0x0a9c, 2) + +// Packet: 0x0a9d +packetLen(0x0a9d, 4) + +// Packet: 0x0a9e +packetLen(0x0a9e, 2) + +// Packet: 0x0a9f +packetLen(0x0a9f, 2) + +// Packet: 0x0aa0 +packetLen(0x0aa0, 2) // ZC_REFINE_OPEN_WINDOW + +// Packet: 0x0aa1 +packetLen(0x0aa1, 4) // CZ_REFINE_ADD_ITEM + +// Packet: 0x0aa2 +packetLen(0x0aa2, -1) // ZC_REFINE_ADD_ITEM + +// Packet: 0x0aa3 +packetLen(0x0aa3, 7) // CZ_REFINE_ITEM_REQUEST + +// Packet: 0x0aa4 +packetLen(0x0aa4, 2) // CZ_REFINE_WINDOW_CLOSE + +// Packet: 0x0aa5 +packetLen(0x0aa5, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0aa6 +packetLen(0x0aa6, 36) // ZC_MEMBER_ADD + +// Packet: 0x0aa7 +packetLen(0x0aa7, 6) // ZC_INVENTORY_MOVE_FAILED + +// Packet: 0x0aa8 +packetLen(0x0aa8, 5) + +// Packet: 0x0aa9 +packetLen(0x0aa9, -1) + +// Packet: 0x0aaa +packetLen(0x0aaa, -1) + +// Packet: 0x0aab +packetLen(0x0aab, -1) + +// Packet: 0x0aac +packetLen(0x0aac, 69) + +// Packet: 0x0aad +packetLen(0x0aad, 51) + +// Packet: 0x0aae +packetLen(0x0aae, 2) + +// Packet: 0x0aaf +packetLen(0x0aaf, 6) + +// Packet: 0x0ab0 +packetLen(0x0ab0, 6) + +// Packet: 0x0ab1 +packetLen(0x0ab1, 14) + +// Packet: 0x0ab2 +packetLen(0x0ab2, 7) // ZC_GROUP_ISALIVE + +// Packet: 0x0ab3 +packetLen(0x0ab3, 19) + +// Packet: 0x0ab4 +packetLen(0x0ab4, 4) + +// Packet: 0x0ab5 +packetLen(0x0ab5, 2) + +// Packet: 0x0ab6 +packetLen(0x0ab6, 6) + +// Packet: 0x0ab7 +packetLen(0x0ab7, 4) + +// Packet: 0x0ab8 +packetLen(0x0ab8, 2) + +// Packet: 0x0ab9 +packetLen(0x0ab9, 39) // ZC_ITEM_PREVIEW + +// Packet: 0x0aba +packetLen(0x0aba, 2) + +// Packet: 0x0abb +packetLen(0x0abb, 2) + +// Packet: 0x0abc +packetLen(0x0abc, -1) + +// Packet: 0x0abd +packetLen(0x0abd, 10) // ZC_PARTY_MEMBER_JOB_LEVEL + +// Packet: 0x0abe +packetLen(0x0abe, -1) // ZC_WARPLIST + +// Packet: 0x0abf +packetLen(0x0abf, -1) + +// Packet: 0x0ac0 +packetLen(0x0ac0, 26) // CZ_OPEN_RODEXBOX + +// Packet: 0x0ac1 +packetLen(0x0ac1, 26) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x0ac2 +packetLen(0x0ac2, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0ac3 +packetLen(0x0ac3, 2) + +// Packet: 0x0ac4 +packetLen(0x0ac4, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x0ac5 +packetLen(0x0ac5, 156) // HC_NOTIFY_ZONESVR + +// Packet: 0x0ac6 +packetLen(0x0ac6, 156) + +// Packet: 0x0ac7 +packetLen(0x0ac7, 156) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0ac8 +packetLen(0x0ac8, 2) // ZC_UNKNOWN_CLEAN_ITEMS_LISTS + +// Packet: 0x0ac9 +packetLen(0x0ac9, -1) + +// Packet: 0x0aca +packetLen(0x0aca, 3) + +// Packet: 0x0acb +packetLen(0x0acb, 12) // ZC_PAR_CHANGE + +// Packet: 0x0acc +packetLen(0x0acc, 18) // ZC_NOTIFY_EXP + +// Packet: 0x0acd +packetLen(0x0acd, 23) + +// Packet: 0x0ace +packetLen(0x0ace, 4) + +// Packet: 0x0acf +#if PACKETVER >= 20171113 +packetLen(0x0acf, 68) // CA_LOGIN_OTP +#elif PACKETVER >= 20171018 +packetLen(0x0acf, 64) // CA_LOGIN_OTP +#endif + +// Packet: 0x0ad0 +packetLen(0x0ad0, 11) // CA_OTP_CODE + +// Packet: 0x0ad1 +packetLen(0x0ad1, -1) + +// Packet: 0x0ad2 +packetLen(0x0ad2, 30) + +// Packet: 0x0ad3 +packetLen(0x0ad3, -1) + +// Packet: 0x0ad4 +packetLen(0x0ad4, -1) + +// Packet: 0x0ad5 +packetLen(0x0ad5, 2) + +// Packet: 0x0ad6 +packetLen(0x0ad6, 2) + +// Packet: 0x0ad7 +packetLen(0x0ad7, 8) + +// Packet: 0x0ad8 +packetLen(0x0ad8, 8) + +// Packet: 0x0ad9 +packetLen(0x0ad9, -1) + +// Packet: 0x0ada +packetLen(0x0ada, 30) // ZC_REFINE_STATUS + +// Packet: 0x0adb +packetLen(0x0adb, -1) + +// Packet: 0x0adc +packetLen(0x0adc, 6) // ZC_EQUIPWIN_OTHER + +// Packet: 0x0add +packetLen(0x0add, 22) // ZC_ITEM_FALL_ENTRY + +// Packet: 0x0ade +packetLen(0x0ade, 6) // ZC_OVERWEIGHT_PERCENT + +// Packet: 0x0adf +packetLen(0x0adf, 58) // ZC_ACK_REQNAME + +// Packet: 0x0ae0 +packetLen(0x0ae0, 30) + +// Packet: 0x0ae1 +#if PACKETVER >= 20171025 +packetLen(0x0ae1, 28) +#endif + +// Packet: 0x0ae2 +#if PACKETVER >= 20171109 +packetLen(0x0ae2, 7) // ZC_OPEN_UI +#endif + +// Packet: 0x0ae3 +#if PACKETVER >= 20171123 +packetLen(0x0ae3, -1) // AC_LOGIN_OTP +#endif + +// Packet: 0x0ae4 +#if PACKETVER >= 20171130 +packetLen(0x0ae4, 89) // ZC_ADD_MEMBER_TO_GROUP +#endif + +// Packet: 0x0ae5 +#if PACKETVER >= 20171130 +packetLen(0x0ae5, -1) // ZC_GROUP_LIST +#endif + +// Packet: 0x0ae6 +#if PACKETVER >= 20171214 +packetLen(0x0ae6, 30) +#endif + +// Packet: 0x0ae7 +#if PACKETVER >= 20171214 +packetLen(0x0ae7, 30) +#endif + +// Packet: 0x0ae8 +#if PACKETVER >= 20171214 +packetLen(0x0ae8, 2) +#endif + +// Packet: 0x0ae9 +#if PACKETVER >= 20171220 +packetLen(0x0ae9, 64) // HC_SECOND_PASSWD_LOGIN +#endif + +// Packet: 0x0aea +#if PACKETVER >= 20171227 +packetLen(0x0aea, 2) +#elif PACKETVER >= 20171220 +packetLen(0x0aea, 11) +#endif + +// Packet: 0x0aeb +#if PACKETVER >= 20171227 +packetLen(0x0aeb, 11) +#endif + +// Packet: 0x0aec +#if PACKETVER >= 20171227 +packetLen(0x0aec, 2) +#endif + + +#endif /* COMMON_PACKETS2017_LEN_ZERO_H */ diff --git a/src/common/packets/packets2018_len_main.h b/src/common/packets/packets2018_len_main.h new file mode 100644 index 000000000..e91e8998d --- /dev/null +++ b/src/common/packets/packets2018_len_main.h @@ -0,0 +1,5786 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2018_LEN_MAIN_H +#define COMMON_PACKETS2018_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 157) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +#if PACKETVER >= 20181121 +packetLen(0x009d, 19) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20180103 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +#endif + +// Packet: 0x009e +#if PACKETVER >= 20181121 +packetLen(0x009e, 19) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20180103 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +#if PACKETVER >= 20181121 +packetLen(0x00a0, 33) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20180103 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#endif + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +#if PACKETVER >= 20181121 +packetLen(0x00e9, 29) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +#if PACKETVER >= 20181121 +packetLen(0x00f4, 31) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20180103 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE +#endif + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +#if PACKETVER >= 20181121 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#endif + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +#if PACKETVER >= 20181121 +packetLen(0x0110, 14) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20180103 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#endif + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +#if PACKETVER >= 20181121 +packetLen(0x0124, 31) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20180103 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +#endif + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +#if PACKETVER >= 20181121 +packetLen(0x018e, 18) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20180103 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#endif + +// Packet: 0x018f +#if PACKETVER >= 20181121 +packetLen(0x018f, 8) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20180103 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#endif + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +#if PACKETVER >= 20181121 +packetLen(0x01a3, 7) // ZC_FEED_PET +#elif PACKETVER >= 20180103 +packetLen(0x01a3, 5) // ZC_FEED_PET +#endif + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +#if PACKETVER >= 20181121 +packetLen(0x01ae, 6) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20180103 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#endif + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +#if PACKETVER >= 20181121 +packetLen(0x01c4, 32) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20180103 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#endif + +// Packet: 0x01c5 +#if PACKETVER >= 20181121 +packetLen(0x01c5, 32) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20180103 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +#endif + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +#if PACKETVER >= 20181121 +packetLen(0x01c8, 15) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20180103 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 +#endif + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +#if PACKETVER >= 20181121 +packetLen(0x01d7, 15) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20180103 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +#endif + +// Packet: 0x01d8 +#if PACKETVER >= 20181121 +packetLen(0x01d8, 58) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20180103 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +#endif + +// Packet: 0x01d9 +#if PACKETVER >= 20181121 +packetLen(0x01d9, 57) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20180103 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +#endif + +// Packet: 0x01da +#if PACKETVER >= 20181121 +packetLen(0x01da, 64) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20180103 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#endif + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +#if PACKETVER >= 20181121 +packetLen(0x01fd, 25) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20180103 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20180315 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180307 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180221 +packetLen(0x0202, 90) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180124 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180117 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180103 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +#if PACKETVER >= 20180307 +packetLen(0x0206, 35) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20180103 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#endif + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +#if PACKETVER >= 20181121 +packetLen(0x0223, 10) // ZC_ACK_WEAPONREFINE +#elif PACKETVER >= 20180103 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE +#endif + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +#if PACKETVER >= 20181121 +packetLen(0x022a, 62) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20180103 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#endif + +// Packet: 0x022b +#if PACKETVER >= 20181121 +packetLen(0x022b, 61) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20180103 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20181121 +packetLen(0x022c, 69) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20180103 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +#if PACKETVER >= 20180315 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20180124 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20180117 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20180103 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +#if PACKETVER >= 20181121 +packetLen(0x022e, 73) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20180103 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#endif + +// Packet: 0x022f +#if PACKETVER >= 20181121 +packetLen(0x022f, 7) // ZC_FEED_MER +#elif PACKETVER >= 20180103 +packetLen(0x022f, 5) // ZC_FEED_MER +#endif + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20180315 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180124 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180117 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180103 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +#if PACKETVER >= 20181121 +packetLen(0x025b, 8) // CZ_REQ_MAKINGITEM +#elif PACKETVER >= 20180103 +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM +#endif + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20180315 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180314 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180307 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180213 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180207 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180124 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180117 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180103 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +#if PACKETVER >= 20181121 +packetLen(0x0298, 10) // ZC_CASH_TIME_COUNTER +#elif PACKETVER >= 20180103 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER +#endif + +// Packet: 0x0299 +#if PACKETVER >= 20181121 +packetLen(0x0299, 8) // ZC_CASH_ITEM_DELETE +#elif PACKETVER >= 20180103 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE +#endif + +// Packet: 0x029a +#if PACKETVER >= 20181121 +packetLen(0x029a, 37) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20180103 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#endif + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +#if PACKETVER >= 20181121 +packetLen(0x02b8, 32) // ZC_ITEM_PICKUP_PARTY +#elif PACKETVER >= 20180103 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY +#endif + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20180315 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180117 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180103 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +#if PACKETVER >= 20181121 +packetLen(0x02d4, 39) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20180103 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#endif + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +#if PACKETVER >= 20181121 +packetLen(0x02ec, 71) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 +#endif + +// Packet: 0x02ed +#if PACKETVER >= 20181121 +packetLen(0x02ed, 63) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 +#endif + +// Packet: 0x02ee +#if PACKETVER >= 20181121 +packetLen(0x02ee, 64) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#endif + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20180315 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180314 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180307 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180213 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180117 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180103 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20180315 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180213 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180207 +packetLen(0x0360, 4) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180117 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180103 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20180315 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180314 +packetLen(0x0361, 12) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180124 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180117 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180103 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20180315 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180213 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180207 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180124 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180117 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180103 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20180315 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180213 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180207 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180124 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180117 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180103 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20180315 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180213 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180207 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180124 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180117 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180103 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20180315 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180213 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180207 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180124 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180117 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180103 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20180314 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180307 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180221 +packetLen(0x0366, 8) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180213 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180117 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180103 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20180315 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20180103 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20180315 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20180213 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20180117 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20180103 +packetLen(0x0368, 2) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20180315 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180314 +packetLen(0x0369, 5) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180221 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180213 +packetLen(0x0369, 36) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180117 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180103 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20180315 +packetLen(0x0436, 19) // CZ_ENTER2 +#elif PACKETVER >= 20180314 +packetLen(0x0436, 6) // CZ_ENTER2 +#elif PACKETVER >= 20180307 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20180221 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20180207 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20180124 +packetLen(0x0436, 8) // CZ_ENTER2 +#elif PACKETVER >= 20180117 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20180103 +packetLen(0x0436, 2) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20180315 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180314 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180307 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180213 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180117 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180103 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20180315 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180213 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180117 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180103 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +#if PACKETVER >= 20181121 +packetLen(0x0445, 12) // CZ_SIMPLE_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20180315 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180314 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180307 +packetLen(0x07e4, 19) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180213 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180207 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180124 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180117 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180103 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20180315 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180213 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180207 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180124 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180117 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180103 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20180315 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180221 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180213 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180207 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180124 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180117 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180103 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +#if PACKETVER >= 20181121 +packetLen(0x080f, 30) // ZC_ADD_EXCHANGE_ITEM2 +#elif PACKETVER >= 20180103 +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 +#endif + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20180315 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180213 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180117 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20180213 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20180117 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20180315 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20180221 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20180213 +packetLen(0x0817, 90) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20180315 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180213 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180207 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180124 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180117 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +#if PACKETVER >= 20181121 +packetLen(0x081b, 12) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#endif + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +#if PACKETVER >= 20181121 +packetLen(0x0824, 8) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER +#elif PACKETVER >= 20180103 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER +#endif + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20180315 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20180103 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20180307 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180221 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180213 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180117 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180103 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20181121 +packetLen(0x083c, 14) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180315 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180213 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180117 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180103 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +#if PACKETVER >= 20181121 +packetLen(0x084b, 21) // ZC_ITEM_FALL_ENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 +#endif + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20180315 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20180314 +packetLen(0x085a, 6) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20180221 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20180213 +packetLen(0x085a, 12) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20180103 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 + +// Packet: 0x085c +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 + +// Packet: 0x085d +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 + +// Packet: 0x085e +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 + +// Packet: 0x085f +#if PACKETVER >= 20180207 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180124 +packetLen(0x085f, 36) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180103 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 + +// Packet: 0x0861 +#if PACKETVER >= 20180314 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20180307 +packetLen(0x0861, 90) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20180103 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20180315 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20180307 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20180103 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +#if PACKETVER >= 20180315 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180314 +packetLen(0x0863, -1) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180103 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +#if PACKETVER >= 20180314 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20180307 +packetLen(0x0864, -1) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20180103 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20180117 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20180103 +packetLen(0x0865, 4) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 + +// Packet: 0x0867 +#if PACKETVER >= 20180307 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180221 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180103 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20180315 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180314 +packetLen(0x0868, 8) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180207 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180124 +packetLen(0x0868, 4) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180103 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 + +// Packet: 0x086a +#if PACKETVER >= 20180207 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20180124 +packetLen(0x086a, 18) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20180103 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20180117 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20180103 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20180314 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20180221 +packetLen(0x086c, 6) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20180103 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20180117 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20180103 +packetLen(0x086d, 12) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20180315 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20180314 +packetLen(0x086e, 8) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20180103 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20180307 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180221 +packetLen(0x086f, -1) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180213 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180207 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180124 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180103 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20180314 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20180307 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20180213 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20180207 +packetLen(0x0870, 19) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20180103 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20180307 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180221 +packetLen(0x0871, 6) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180103 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20180314 +packetLen(0x0872, 2) +#elif PACKETVER >= 20180307 +packetLen(0x0872, 18) +#elif PACKETVER >= 20180117 +packetLen(0x0872, 2) +#elif PACKETVER >= 20180103 +packetLen(0x0872, 6) +#endif + +// Packet: 0x0873 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 + +// Packet: 0x0874 +#if PACKETVER >= 20180315 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180314 +packetLen(0x0874, -1) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180221 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180213 +packetLen(0x0874, 6) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180103 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20180221 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180213 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180124 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180117 +packetLen(0x0875, 36) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180103 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20180307 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20180221 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20180117 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20180103 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20180314 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180307 +packetLen(0x0877, 5) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180103 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20180221 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20180213 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20180103 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20180307 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180221 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180117 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180103 +packetLen(0x0879, -1) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20180315 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20180314 +packetLen(0x087a, 19) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20180207 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20180124 +packetLen(0x087a, 26) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20180103 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20180221 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180213 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180103 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 + +// Packet: 0x087d +#if PACKETVER >= 20180307 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20180221 +packetLen(0x087d, 5) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20180103 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 + +// Packet: 0x087f +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 + +// Packet: 0x0880 +#if PACKETVER >= 20180307 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180221 +packetLen(0x0880, -1) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180103 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20180307 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180221 +packetLen(0x0881, 18) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180213 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180207 +packetLen(0x0881, 26) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180103 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20180221 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20180213 +packetLen(0x0882, 10) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20180103 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20180307 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20180221 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20180103 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 + +// Packet: 0x0885 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 + +// Packet: 0x0886 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 + +// Packet: 0x0887 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 + +// Packet: 0x0888 +#if PACKETVER >= 20180315 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20180314 +packetLen(0x0888, 5) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20180207 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20180124 +packetLen(0x0888, 19) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20180103 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 + +// Packet: 0x088a +#if PACKETVER >= 20180315 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20180314 +packetLen(0x088a, 10) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20180103 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 + +// Packet: 0x088c +#if PACKETVER >= 20180221 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20180213 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20180103 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20180315 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180314 +packetLen(0x088d, 36) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180307 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180103 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 + +// Packet: 0x088f +#if PACKETVER >= 20180307 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20180221 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20180103 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20180207 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20180124 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20180103 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20180307 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180221 +packetLen(0x0891, 4) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180103 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20180221 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180213 +packetLen(0x0892, 6) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180103 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20180314 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20180307 +packetLen(0x0893, 10) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20180103 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 + +// Packet: 0x0895 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 + +// Packet: 0x0896 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 + +// Packet: 0x0897 +#if PACKETVER >= 20180307 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20180221 +packetLen(0x0897, 19) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20180103 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20180221 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20180213 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20180103 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20180117 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180103 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 + +// Packet: 0x089b +#if PACKETVER >= 20180315 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180314 +packetLen(0x089b, 90) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180307 +packetLen(0x089b, 12) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180103 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20180221 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20180213 +packetLen(0x089c, 4) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20180103 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20180307 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20180221 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20180103 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 + +// Packet: 0x089f +#if PACKETVER >= 20180117 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180103 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 + +// Packet: 0x08a1 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 + +// Packet: 0x08a2 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 + +// Packet: 0x08a3 +#if PACKETVER >= 20180221 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180213 +packetLen(0x08a3, 19) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180103 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 + +// Packet: 0x08a5 +#if PACKETVER >= 20180221 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180213 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180103 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 + +// Packet: 0x08a7 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 + +// Packet: 0x08a8 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 + +// Packet: 0x08a9 +#if PACKETVER >= 20180117 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20180103 +packetLen(0x08a9, 5) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20180314 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180307 +packetLen(0x08aa, 26) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180103 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20180314 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180307 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180117 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180103 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20180117 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20180103 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20180221 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20180213 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20180103 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 157) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20180314 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180307 +packetLen(0x0917, 10) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180221 +packetLen(0x0917, 36) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180213 +packetLen(0x0917, 26) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180103 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 + +// Packet: 0x0919 +#if PACKETVER >= 20180207 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180124 +packetLen(0x0919, 26) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180103 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 + +// Packet: 0x091b +packetLen(0x091b, 2) // ZC_PRNPC_STATE + +// Packet: 0x091c +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x091d +#if PACKETVER >= 20180117 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20180103 +packetLen(0x091d, 7) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20180307 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180221 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180103 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 + +// Packet: 0x0920 +#if PACKETVER >= 20180314 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180307 +packetLen(0x0920, 8) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180103 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20180315 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180314 +packetLen(0x0921, 7) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180103 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20180221 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20180213 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20180103 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 + +// Packet: 0x0924 +#if PACKETVER >= 20180221 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180213 +packetLen(0x0924, 10) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180103 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 + +// Packet: 0x0926 +#if PACKETVER >= 20180221 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180213 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180117 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180103 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20180117 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20180103 +packetLen(0x0927, 18) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 + +// Packet: 0x0929 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 + +// Packet: 0x092a +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 + +// Packet: 0x092b +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 + +// Packet: 0x092c +#if PACKETVER >= 20180213 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180207 +packetLen(0x092c, 5) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180117 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180103 +packetLen(0x092c, 8) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 + +// Packet: 0x092e +#if PACKETVER >= 20180213 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180207 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180103 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +#if PACKETVER >= 20180315 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20180314 +packetLen(0x092f, 5) // ZC_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20180103 +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x0930 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 + +// Packet: 0x0931 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 + +// Packet: 0x0932 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 + +// Packet: 0x0933 +#if PACKETVER >= 20180315 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180314 +packetLen(0x0933, 8) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180221 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180213 +packetLen(0x0933, 7) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180103 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 + +// Packet: 0x0935 +#if PACKETVER >= 20180315 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20180314 +packetLen(0x0935, 26) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20180117 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20180103 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 + +// Packet: 0x0937 +#if PACKETVER >= 20180314 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180307 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180103 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20180117 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20180103 +packetLen(0x0938, 10) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20180314 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20180307 +packetLen(0x0939, 36) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20180103 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 + +// Packet: 0x093b +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 + +// Packet: 0x093c +#if PACKETVER >= 20180221 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20180213 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20180103 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20180307 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180221 +packetLen(0x093d, 26) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180103 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 + +// Packet: 0x093f +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 + +// Packet: 0x0940 +#if PACKETVER >= 20180213 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180207 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180124 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180103 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20180314 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180307 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180117 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180103 +packetLen(0x0941, 5) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 + +// Packet: 0x0943 +#if PACKETVER >= 20180221 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180213 +packetLen(0x0943, 18) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180103 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20180314 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20180307 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20180103 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +#if PACKETVER >= 20180315 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20180314 +packetLen(0x0945, 18) // CZ_REASSEMBLY_AUTH47 +#elif PACKETVER >= 20180103 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 +#endif + +// Packet: 0x0946 +#if PACKETVER >= 20180207 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180124 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180117 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180103 +packetLen(0x0946, 36) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 + +// Packet: 0x0948 +#if PACKETVER >= 20180314 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180307 +packetLen(0x0948, 26) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180117 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180103 +packetLen(0x0948, 5) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 + +// Packet: 0x094a +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 + +// Packet: 0x094b +#if PACKETVER >= 20180307 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180221 +packetLen(0x094b, 10) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180103 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 + +// Packet: 0x094d +#if PACKETVER >= 20180315 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180314 +packetLen(0x094d, -1) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180307 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180221 +packetLen(0x094d, 10) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180207 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180124 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180103 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20180315 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180314 +packetLen(0x094e, 26) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180307 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180221 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180117 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180103 +packetLen(0x094e, -1) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 + +// Packet: 0x0950 +#if PACKETVER >= 20180213 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180207 +packetLen(0x0950, 36) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180103 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20180314 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20180307 +packetLen(0x0951, 8) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20180103 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 + +// Packet: 0x0953 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 + +// Packet: 0x0954 +#if PACKETVER >= 20180314 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20180307 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20180103 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20180221 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20180213 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20180103 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20180315 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180314 +packetLen(0x0956, 4) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180103 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +#if PACKETVER >= 20180314 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180221 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180103 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20180207 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180124 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180103 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20180315 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20180314 +packetLen(0x0959, 6) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20180103 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +#if PACKETVER >= 20180221 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20180213 +packetLen(0x095a, -1) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20180103 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 + +// Packet: 0x095c +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 + +// Packet: 0x095d +#if PACKETVER >= 20180117 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180103 +packetLen(0x095d, 10) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 + +// Packet: 0x095f +#if PACKETVER >= 20180315 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20180314 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20180117 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20180103 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20180117 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20180103 +packetLen(0x0960, 90) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20180207 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180124 +packetLen(0x0961, 5) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180103 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20180315 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20180314 +packetLen(0x0962, -1) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20180221 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20180213 +packetLen(0x0962, 5) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20180103 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 + +// Packet: 0x0964 +#if PACKETVER >= 20180307 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20180221 +packetLen(0x0964, 12) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20180103 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 + +// Packet: 0x0966 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 + +// Packet: 0x0967 +#if PACKETVER >= 20180315 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180314 +packetLen(0x0967, 6) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180103 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 + +// Packet: 0x0969 +#if PACKETVER >= 20180314 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20180307 +packetLen(0x0969, 7) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20180103 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20180307 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180221 +packetLen(0x096a, 7) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180213 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180117 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180103 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +#if PACKETVER >= 20181121 +packetLen(0x0990, 41) // ZC_ITEM_PICKUP_ACK_V5 +#elif PACKETVER >= 20180103 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 +#endif + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +#if PACKETVER >= 20181121 +packetLen(0x09ad, 12) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#elif PACKETVER >= 20180103 +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#endif + +// Packet: 0x09ae +#if PACKETVER >= 20181121 +packetLen(0x09ae, 19) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +#if PACKETVER >= 20181121 +packetLen(0x09b0, 10) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +#if PACKETVER >= 20181121 +packetLen(0x09b2, 10) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#elif PACKETVER >= 20180103 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#endif + +// Packet: 0x09b3 +#if PACKETVER >= 20181121 +packetLen(0x09b3, 6) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#elif PACKETVER >= 20180103 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#endif + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +#if PACKETVER >= 20181121 +packetLen(0x09c3, 10) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c4 +#if PACKETVER >= 20181121 +packetLen(0x09c4, 10) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +#if PACKETVER >= 20181121 +packetLen(0x09e6, 24) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#elif PACKETVER >= 20180103 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#endif + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +#if PACKETVER >= 20181121 +packetLen(0x09f7, 77) // ZC_PROPERTY_HOMUN_2 +#elif PACKETVER >= 20180103 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 +#endif + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +#if PACKETVER >= 20181121 +packetLen(0x0a05, 63) // ZC_ACK_ADD_ITEM_RODEX +#elif PACKETVER >= 20180103 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX +#endif + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +#if PACKETVER >= 20181121 +packetLen(0x0a09, 55) // ZC_ADD_EXCHANGE_ITEM3 +#elif PACKETVER >= 20180103 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 +#endif + +// Packet: 0x0a0a +#if PACKETVER >= 20181121 +packetLen(0x0a0a, 57) // ZC_ADD_ITEM_TO_STORE3 +#elif PACKETVER >= 20180103 +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 +#endif + +// Packet: 0x0a0b +#if PACKETVER >= 20181121 +packetLen(0x0a0b, 57) // ZC_ADD_ITEM_TO_CART3 +#elif PACKETVER >= 20180103 +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 +#endif + +// Packet: 0x0a0c +#if PACKETVER >= 20181121 +packetLen(0x0a0c, 66) // ZC_ITEM_PICKUP_ACK_V6 +#elif PACKETVER >= 20180103 +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 +#endif + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +#if PACKETVER >= 20181121 +packetLen(0x0a1a, 25) // ZC_ACK_OPEN_ROULETTE +#elif PACKETVER >= 20180103 +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE +#endif + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +#if PACKETVER >= 20181121 +packetLen(0x0a20, 23) // ZC_ACK_GENERATE_ROULETTE +#elif PACKETVER >= 20180103 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE +#endif + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +#if PACKETVER >= 20181121 +packetLen(0x0a22, 7) // ZC_RECV_ROULETTE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM +#endif + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +#if PACKETVER >= 20181121 +packetLen(0x0a37, 69) // ZC_ITEM_PICKUP_ACK_V7 +#elif PACKETVER >= 20180103 +packetLen(0x0a37, 59) // ZC_ITEM_PICKUP_ACK_V7 +#endif + +// Packet: 0x0a38 +packetLen(0x0a38, 3) // ZC_OPEN_UI + +// Packet: 0x0a39 +packetLen(0x0a39, 36) // CH_MAKE_CHAR + +// Packet: 0x0a3a +packetLen(0x0a3a, 12) + +// Packet: 0x0a3b +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT + +// Packet: 0x0a3c +packetLen(0x0a3c, -1) + +// Packet: 0x0a3d +#if PACKETVER >= 20181121 +packetLen(0x0a3d, 20) +#elif PACKETVER >= 20180103 +packetLen(0x0a3d, 18) +#endif + +// Packet: 0x0a3e +packetLen(0x0a3e, -1) + +// Packet: 0x0a3f +#if PACKETVER >= 20181121 +packetLen(0x0a3f, 11) +#elif PACKETVER >= 20180103 +packetLen(0x0a3f, 9) +#endif + +// Packet: 0x0a40 +packetLen(0x0a40, 11) + +// Packet: 0x0a41 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL + +// Packet: 0x0a42 +packetLen(0x0a42, 43) + +// Packet: 0x0a43 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0a44 +packetLen(0x0a44, -1) // ZC_GROUP_LIST + +// Packet: 0x0a46 +packetLen(0x0a46, 14) + +// Packet: 0x0a47 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES + +// Packet: 0x0a48 +packetLen(0x0a48, 2) + +// Packet: 0x0a49 +#if PACKETVER >= 20181121 +packetLen(0x0a49, 22) // CZ_PRIVATE_AIRSHIP_REQUEST +#elif PACKETVER >= 20180103 +packetLen(0x0a49, 20) // CZ_PRIVATE_AIRSHIP_REQUEST +#endif + +// Packet: 0x0a4a +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE + +// Packet: 0x0a4b +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE + +// Packet: 0x0a4c +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE + +// Packet: 0x0a4d +packetLen(0x0a4d, -1) + +// Packet: 0x0a4e +#if PACKETVER >= 20181121 +packetLen(0x0a4e, 6) +#elif PACKETVER >= 20180103 +packetLen(0x0a4e, 4) +#endif + +// Packet: 0x0a4f +packetLen(0x0a4f, -1) + +// Packet: 0x0a50 +packetLen(0x0a50, 4) + +// Packet: 0x0a51 +packetLen(0x0a51, 34) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a52 +packetLen(0x0a52, 20) + +// Packet: 0x0a53 +packetLen(0x0a53, 10) + +// Packet: 0x0a54 +packetLen(0x0a54, -1) + +// Packet: 0x0a55 +packetLen(0x0a55, 2) + +// Packet: 0x0a56 +packetLen(0x0a56, 6) + +// Packet: 0x0a57 +packetLen(0x0a57, 6) + +// Packet: 0x0a58 +packetLen(0x0a58, 8) + +// Packet: 0x0a59 +packetLen(0x0a59, -1) + +// Packet: 0x0a5a +packetLen(0x0a5a, 2) + +// Packet: 0x0a5b +packetLen(0x0a5b, 7) + +// Packet: 0x0a5c +packetLen(0x0a5c, 18) + +// Packet: 0x0a5d +packetLen(0x0a5d, 6) + +// Packet: 0x0a68 +packetLen(0x0a68, 3) // CZ_REQ_OPEN_UI + +// Packet: 0x0a69 +packetLen(0x0a69, 6) + +// Packet: 0x0a6a +packetLen(0x0a6a, 12) + +// Packet: 0x0a6b +packetLen(0x0a6b, -1) + +// Packet: 0x0a6c +packetLen(0x0a6c, 7) + +// Packet: 0x0a6d +packetLen(0x0a6d, -1) + +// Packet: 0x0a6e +packetLen(0x0a6e, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x0a6f +packetLen(0x0a6f, -1) // ZC_FORMATSTRING_MSG_COLOR + +// Packet: 0x0a70 +packetLen(0x0a70, 2) + +// Packet: 0x0a71 +packetLen(0x0a71, -1) + +// Packet: 0x0a72 +packetLen(0x0a72, 61) + +// Packet: 0x0a73 +packetLen(0x0a73, 2) + +// Packet: 0x0a74 +packetLen(0x0a74, 8) + +// Packet: 0x0a76 +packetLen(0x0a76, 80) + +// Packet: 0x0a77 +packetLen(0x0a77, 15) + +// Packet: 0x0a78 +packetLen(0x0a78, 15) + +// Packet: 0x0a79 +packetLen(0x0a79, -1) + +// Packet: 0x0a7b +packetLen(0x0a7b, -1) + +// Packet: 0x0a7c +packetLen(0x0a7c, -1) + +// Packet: 0x0a7d +packetLen(0x0a7d, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0a7e +packetLen(0x0a7e, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY + +// Packet: 0x0a7f +packetLen(0x0a7f, -1) // CZ_OFFLINE_STORE_CREATE + +// Packet: 0x0a80 +packetLen(0x0a80, 6) + +// Packet: 0x0a81 +packetLen(0x0a81, 4) + +// Packet: 0x0a82 +packetLen(0x0a82, 46) + +// Packet: 0x0a83 +packetLen(0x0a83, 46) + +// Packet: 0x0a84 +packetLen(0x0a84, 94) // ZC_GUILD_INFO + +// Packet: 0x0a85 +packetLen(0x0a85, 82) + +// Packet: 0x0a86 +packetLen(0x0a86, -1) + +// Packet: 0x0a87 +packetLen(0x0a87, -1) + +// Packet: 0x0a88 +packetLen(0x0a88, 2) + +// Packet: 0x0a89 +#if PACKETVER >= 20181121 +packetLen(0x0a89, 61) // ZC_NOTIFY_OFFLINE_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0a89, 57) // ZC_NOTIFY_OFFLINE_STORE +#endif + +// Packet: 0x0a8a +packetLen(0x0a8a, 6) // ZC_OFFLINE_STORE_VANISH + +// Packet: 0x0a8b +packetLen(0x0a8b, 2) + +// Packet: 0x0a8c +packetLen(0x0a8c, 2) + +// Packet: 0x0a8d +packetLen(0x0a8d, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS + +// Packet: 0x0a8e +packetLen(0x0a8e, 2) + +// Packet: 0x0a8f +packetLen(0x0a8f, 2) + +// Packet: 0x0a90 +packetLen(0x0a90, 3) + +// Packet: 0x0a91 +packetLen(0x0a91, -1) // ZC_OFFLINE_STORE_ITEMS + +// Packet: 0x0a92 +packetLen(0x0a92, -1) + +// Packet: 0x0a93 +packetLen(0x0a93, 3) + +// Packet: 0x0a94 +packetLen(0x0a94, 2) + +// Packet: 0x0a95 +packetLen(0x0a95, 4) + +// Packet: 0x0a96 +#if PACKETVER >= 20181121 +packetLen(0x0a96, 61) // ZC_ADD_EXCHANGE_ITEM4 +#elif PACKETVER >= 20180103 +packetLen(0x0a96, 51) // ZC_ADD_EXCHANGE_ITEM4 +#endif + +// Packet: 0x0a97 +packetLen(0x0a97, 8) // CZ_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a98 +packetLen(0x0a98, 10) // ZC_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a99 +packetLen(0x0a99, 4) + +// Packet: 0x0a9a +packetLen(0x0a9a, 10) // ZC_ALT_EQUIPMENT_REMOVE + +// Packet: 0x0a9b +packetLen(0x0a9b, -1) // ZC_ALT_EQUIPMENT_ITEMS + +// Packet: 0x0a9c +packetLen(0x0a9c, 2) + +// Packet: 0x0a9d +packetLen(0x0a9d, 4) + +// Packet: 0x0a9e +packetLen(0x0a9e, 2) + +// Packet: 0x0a9f +packetLen(0x0a9f, 2) + +// Packet: 0x0aa0 +packetLen(0x0aa0, 2) // ZC_REFINE_OPEN_WINDOW + +// Packet: 0x0aa1 +packetLen(0x0aa1, 4) // CZ_REFINE_ADD_ITEM + +// Packet: 0x0aa2 +packetLen(0x0aa2, -1) // ZC_REFINE_ADD_ITEM + +// Packet: 0x0aa3 +#if PACKETVER >= 20181121 +packetLen(0x0aa3, 9) // CZ_REFINE_ITEM_REQUEST +#elif PACKETVER >= 20180103 +packetLen(0x0aa3, 7) // CZ_REFINE_ITEM_REQUEST +#endif + +// Packet: 0x0aa4 +packetLen(0x0aa4, 2) // CZ_REFINE_WINDOW_CLOSE + +// Packet: 0x0aa5 +packetLen(0x0aa5, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0aa6 +packetLen(0x0aa6, 36) // ZC_MEMBER_ADD + +// Packet: 0x0aa7 +packetLen(0x0aa7, 6) // ZC_INVENTORY_MOVE_FAILED + +// Packet: 0x0aa8 +packetLen(0x0aa8, 5) + +// Packet: 0x0aa9 +packetLen(0x0aa9, -1) + +// Packet: 0x0aaa +packetLen(0x0aaa, -1) + +// Packet: 0x0aab +packetLen(0x0aab, -1) + +// Packet: 0x0aac +packetLen(0x0aac, 69) + +// Packet: 0x0aad +packetLen(0x0aad, 51) + +// Packet: 0x0aae +packetLen(0x0aae, 2) + +// Packet: 0x0aaf +packetLen(0x0aaf, 6) + +// Packet: 0x0ab0 +packetLen(0x0ab0, 6) + +// Packet: 0x0ab1 +packetLen(0x0ab1, 14) + +// Packet: 0x0ab2 +packetLen(0x0ab2, 7) // ZC_GROUP_ISALIVE + +// Packet: 0x0ab3 +packetLen(0x0ab3, 19) + +// Packet: 0x0ab4 +#if PACKETVER >= 20181121 +packetLen(0x0ab4, 6) +#elif PACKETVER >= 20180103 +packetLen(0x0ab4, 4) +#endif + +// Packet: 0x0ab5 +packetLen(0x0ab5, 2) + +// Packet: 0x0ab6 +#if PACKETVER >= 20181121 +packetLen(0x0ab6, 8) +#elif PACKETVER >= 20180103 +packetLen(0x0ab6, 6) +#endif + +// Packet: 0x0ab7 +packetLen(0x0ab7, 4) + +// Packet: 0x0ab8 +packetLen(0x0ab8, 2) + +// Packet: 0x0ab9 +#if PACKETVER >= 20181121 +packetLen(0x0ab9, 47) // ZC_ITEM_PREVIEW +#elif PACKETVER >= 20180103 +packetLen(0x0ab9, 39) // ZC_ITEM_PREVIEW +#endif + +// Packet: 0x0aba +packetLen(0x0aba, 2) + +// Packet: 0x0abb +packetLen(0x0abb, 2) + +// Packet: 0x0abc +packetLen(0x0abc, -1) + +// Packet: 0x0abd +packetLen(0x0abd, 10) // ZC_PARTY_MEMBER_JOB_LEVEL + +// Packet: 0x0abe +packetLen(0x0abe, -1) // ZC_WARPLIST + +// Packet: 0x0abf +packetLen(0x0abf, -1) + +// Packet: 0x0ac0 +packetLen(0x0ac0, 26) // CZ_OPEN_RODEXBOX + +// Packet: 0x0ac1 +packetLen(0x0ac1, 26) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x0ac2 +packetLen(0x0ac2, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0ac3 +packetLen(0x0ac3, 2) + +// Packet: 0x0ac4 +packetLen(0x0ac4, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x0ac5 +packetLen(0x0ac5, 156) // HC_NOTIFY_ZONESVR + +// Packet: 0x0ac6 +packetLen(0x0ac6, 156) + +// Packet: 0x0ac7 +packetLen(0x0ac7, 156) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0ac8 +packetLen(0x0ac8, 2) // ZC_UNKNOWN_CLEAN_ITEMS_LISTS + +// Packet: 0x0ac9 +packetLen(0x0ac9, -1) + +// Packet: 0x0aca +packetLen(0x0aca, 3) + +// Packet: 0x0acb +packetLen(0x0acb, 12) // ZC_PAR_CHANGE + +// Packet: 0x0acc +packetLen(0x0acc, 18) // ZC_NOTIFY_EXP + +// Packet: 0x0acd +packetLen(0x0acd, 23) + +// Packet: 0x0ace +packetLen(0x0ace, 4) + +// Packet: 0x0acf +packetLen(0x0acf, 68) // CA_LOGIN_OTP + +// Packet: 0x0ad0 +packetLen(0x0ad0, 11) // CA_OTP_CODE + +// Packet: 0x0ad1 +packetLen(0x0ad1, -1) + +// Packet: 0x0ad2 +packetLen(0x0ad2, 30) + +// Packet: 0x0ad3 +packetLen(0x0ad3, -1) + +// Packet: 0x0ad4 +packetLen(0x0ad4, -1) + +// Packet: 0x0ad5 +packetLen(0x0ad5, 2) + +// Packet: 0x0ad6 +packetLen(0x0ad6, 2) + +// Packet: 0x0ad7 +packetLen(0x0ad7, 8) + +// Packet: 0x0ad8 +packetLen(0x0ad8, 8) + +// Packet: 0x0ad9 +packetLen(0x0ad9, -1) + +// Packet: 0x0ada +#if PACKETVER >= 20181121 +packetLen(0x0ada, 32) // ZC_REFINE_STATUS +#elif PACKETVER >= 20180103 +packetLen(0x0ada, 30) // ZC_REFINE_STATUS +#endif + +// Packet: 0x0adb +packetLen(0x0adb, -1) + +// Packet: 0x0adc +packetLen(0x0adc, 6) // ZC_EQUIPWIN_OTHER + +// Packet: 0x0add +#if PACKETVER >= 20181121 +packetLen(0x0add, 24) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20180103 +packetLen(0x0add, 22) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x0ade +packetLen(0x0ade, 6) // ZC_OVERWEIGHT_PERCENT + +// Packet: 0x0adf +packetLen(0x0adf, 58) // ZC_ACK_REQNAME + +// Packet: 0x0ae0 +packetLen(0x0ae0, 30) + +// Packet: 0x0ae1 +packetLen(0x0ae1, 28) + +// Packet: 0x0ae2 +packetLen(0x0ae2, 7) // ZC_OPEN_UI + +// Packet: 0x0ae3 +packetLen(0x0ae3, -1) // AC_LOGIN_OTP + +// Packet: 0x0ae4 +packetLen(0x0ae4, 89) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0ae5 +packetLen(0x0ae5, -1) // ZC_GROUP_LIST + +// Packet: 0x0ae6 +#if PACKETVER >= 20180207 +packetLen(0x0ae6, 10) +#elif PACKETVER >= 20180103 +packetLen(0x0ae6, 30) +#endif + +// Packet: 0x0ae7 +#if PACKETVER >= 20180404 +packetLen(0x0ae7, 38) +#elif PACKETVER >= 20180321 +packetLen(0x0ae7, 34) +#elif PACKETVER >= 20180103 +packetLen(0x0ae7, 30) +#endif + +// Packet: 0x0ae8 +packetLen(0x0ae8, 2) + +// Packet: 0x0ae9 +#if PACKETVER >= 20180117 +packetLen(0x0ae9, 13) // HC_SECOND_PASSWD_LOGIN +#elif PACKETVER >= 20180103 +packetLen(0x0ae9, 64) // HC_SECOND_PASSWD_LOGIN +#endif + +// Packet: 0x0aea +#if PACKETVER >= 20180117 +// removed +#elif PACKETVER >= 20180103 +packetLen(0x0aea, 2) +#endif + +// Packet: 0x0aeb +#if PACKETVER >= 20180117 +// removed +#elif PACKETVER >= 20180103 +packetLen(0x0aeb, 11) +#endif + +// Packet: 0x0aec +packetLen(0x0aec, 2) + +// Packet: 0x0aed +packetLen(0x0aed, 2) + +// Packet: 0x0aee +packetLen(0x0aee, 2) + +// Packet: 0x0aef +#if PACKETVER >= 20180117 +packetLen(0x0aef, 2) // CZ_ATTENDANCE_REWARD_REQUEST +#endif + +// Packet: 0x0af0 +#if PACKETVER >= 20180117 +packetLen(0x0af0, 10) // ZC_UI_ACTION +#endif + +// Packet: 0x0af2 +#if PACKETVER >= 20180124 +packetLen(0x0af2, 40) +#endif + +// Packet: 0x0af3 +#if PACKETVER >= 20180124 +packetLen(0x0af3, -1) +#endif + +// Packet: 0x0af4 +#if PACKETVER >= 20180207 +packetLen(0x0af4, 11) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0af5 +#if PACKETVER >= 20180207 +packetLen(0x0af5, 3) +#endif + +// Packet: 0x0af6 +#if PACKETVER >= 20180207 +packetLen(0x0af6, 88) +#endif + +// Packet: 0x0af7 +#if PACKETVER >= 20180207 +packetLen(0x0af7, 32) // ZC_ACK_REQNAME_BYGID +#endif + +// Packet: 0x0af8 +#if PACKETVER >= 20180321 +packetLen(0x0af8, 11) +#endif + +// Packet: 0x0af9 +#if PACKETVER >= 20180404 +packetLen(0x0af9, 6) +#endif + +// Packet: 0x0afa +#if PACKETVER >= 20180404 +packetLen(0x0afa, 54) +#endif + +// Packet: 0x0afb +#if PACKETVER >= 20180418 +packetLen(0x0afb, -1) // ZC_AUTOSPELLLIST +#endif + +// Packet: 0x0afc +#if PACKETVER >= 20180516 +packetLen(0x0afc, 16) +#endif + +// Packet: 0x0afd +#if PACKETVER >= 20180605 +packetLen(0x0afd, -1) // ZC_GUILD_POSITION +#endif + +// Packet: 0x0afe +#if PACKETVER >= 20180605 +packetLen(0x0afe, -1) // ZC_UPDATE_MISSION_HUNT_EX +#endif + +// Packet: 0x0aff +#if PACKETVER >= 20180605 +packetLen(0x0aff, -1) // ZC_ALL_QUEST_LIST4 +#endif + +// Packet: 0x0b00 +#if PACKETVER >= 20180620 +packetLen(0x0b00, 8) +#endif + +// Packet: 0x0b01 +#if PACKETVER >= 20180704 +packetLen(0x0b01, 56) +#elif PACKETVER >= 20180620 +packetLen(0x0b01, 40) +#endif + +// Packet: 0x0b02 +#if PACKETVER >= 20180704 +packetLen(0x0b02, 26) // AC_REFUSE_LOGIN4 +#endif + +// Packet: 0x0b03 +#if PACKETVER >= 20180801 +packetLen(0x0b03, -1) // ZC_EQUIPWIN_MICROSCOPE_V7 +#endif + +// Packet: 0x0b04 +#if PACKETVER >= 20180801 +packetLen(0x0b04, 80) +#endif + +// Packet: 0x0b05 +#if PACKETVER >= 20181121 +packetLen(0x0b05, 63) // ZC_OFFLINE_STORE_VISIBLE +#elif PACKETVER >= 20180829 +packetLen(0x0b05, 59) // ZC_OFFLINE_STORE_VISIBLE +#endif + +// Packet: 0x0b06 +#if PACKETVER >= 20181002 +// removed +#elif PACKETVER >= 20180829 +packetLen(0x0b06, 53) +#endif + +// Packet: 0x0b07 +#if PACKETVER >= 20180829 +packetLen(0x0b07, -1) +#endif + +// Packet: 0x0b08 +#if PACKETVER >= 20181002 +packetLen(0x0b08, -1) // ZC_INVENTORY_START +#elif PACKETVER >= 20180912 +packetLen(0x0b08, 27) // ZC_INVENTORY_START +#elif PACKETVER >= 20180829 +packetLen(0x0b08, 26) // ZC_INVENTORY_START +#endif + +// Packet: 0x0b09 +#if PACKETVER >= 20180829 +packetLen(0x0b09, -1) // ZC_STORE_ITEMLIST_NORMAL_V6 +#endif + +// Packet: 0x0b0a +#if PACKETVER >= 20180829 +packetLen(0x0b0a, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0b0b +#if PACKETVER >= 20180912 +packetLen(0x0b0b, 4) // ZC_INVENTORY_END +#elif PACKETVER >= 20180829 +packetLen(0x0b0b, 3) // ZC_INVENTORY_END +#endif + +// Packet: 0x0b0c +#if PACKETVER >= 20180829 +packetLen(0x0b0c, 155) // ZC_ADD_QUEST_EX +#endif + +// Packet: 0x0b0d +#if PACKETVER >= 20180912 +packetLen(0x0b0d, 10) // ZC_REMOVE_EFFECT +#endif + +// Packet: 0x0b0e +#if PACKETVER >= 20180912 +packetLen(0x0b0e, -1) +#endif + +// Packet: 0x0b0f +#if PACKETVER >= 20180912 +packetLen(0x0b0f, -1) +#endif + +// Packet: 0x0b10 +#if PACKETVER >= 20181002 +packetLen(0x0b10, 10) // CZ_START_USE_SKILL +#endif + +// Packet: 0x0b11 +#if PACKETVER >= 20181002 +packetLen(0x0b11, 4) // CZ_STOP_USE_SKILL +#endif + +// Packet: 0x0b12 +#if PACKETVER >= 20181017 +packetLen(0x0b12, 2) +#endif + +// Packet: 0x0b13 +#if PACKETVER >= 20181121 +packetLen(0x0b13, 48) // ZC_ITEM_PREVIEW +#elif PACKETVER >= 20181017 +packetLen(0x0b13, 40) // ZC_ITEM_PREVIEW +#endif + +// Packet: 0x0b14 +#if PACKETVER >= 20181031 +packetLen(0x0b14, 2) +#endif + +// Packet: 0x0b15 +#if PACKETVER >= 20181031 +packetLen(0x0b15, 7) +#endif + +// Packet: 0x0b16 +#if PACKETVER >= 20181031 +packetLen(0x0b16, 2) +#endif + +// Packet: 0x0b17 +#if PACKETVER >= 20181031 +packetLen(0x0b17, 3) +#endif + +// Packet: 0x0b18 +#if PACKETVER >= 20181031 +packetLen(0x0b18, 4) +#endif + +// Packet: 0x0b19 +#if PACKETVER >= 20181031 +packetLen(0x0b19, 2) +#endif + +// Packet: 0x0b1a +#if PACKETVER >= 20181212 +packetLen(0x0b1a, 29) +#endif + + +#endif /* COMMON_PACKETS2018_LEN_MAIN_H */ diff --git a/src/common/packets/packets2018_len_re.h b/src/common/packets/packets2018_len_re.h new file mode 100644 index 000000000..816dee241 --- /dev/null +++ b/src/common/packets/packets2018_len_re.h @@ -0,0 +1,5670 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2018_LEN_RE_H +#define COMMON_PACKETS2018_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 157) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +#if PACKETVER >= 20180704 +packetLen(0x009d, 19) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20180103 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +#endif + +// Packet: 0x009e +#if PACKETVER >= 20180704 +packetLen(0x009e, 19) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20180103 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +#if PACKETVER >= 20180704 +packetLen(0x00a0, 33) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20180103 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#endif + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +#if PACKETVER >= 20180704 +packetLen(0x00e9, 29) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +#if PACKETVER >= 20180704 +packetLen(0x00f4, 31) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20180103 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE +#endif + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +#if PACKETVER >= 20180704 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#endif + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +#if PACKETVER >= 20180704 +packetLen(0x0110, 14) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20180103 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#endif + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +#if PACKETVER >= 20180704 +packetLen(0x0124, 31) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20180103 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +#endif + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +#if PACKETVER >= 20180704 +packetLen(0x018e, 18) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20180103 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#endif + +// Packet: 0x018f +#if PACKETVER >= 20180704 +packetLen(0x018f, 8) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20180103 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#endif + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +#if PACKETVER >= 20180704 +packetLen(0x01a3, 7) // ZC_FEED_PET +#elif PACKETVER >= 20180103 +packetLen(0x01a3, 5) // ZC_FEED_PET +#endif + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +#if PACKETVER >= 20180704 +packetLen(0x01ae, 6) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20180103 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#endif + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +#if PACKETVER >= 20180704 +packetLen(0x01c4, 32) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20180103 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#endif + +// Packet: 0x01c5 +#if PACKETVER >= 20180704 +packetLen(0x01c5, 32) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20180103 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +#endif + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +#if PACKETVER >= 20180704 +packetLen(0x01c8, 15) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20180103 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 +#endif + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +#if PACKETVER >= 20180704 +packetLen(0x01d7, 15) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20180103 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +#endif + +// Packet: 0x01d8 +#if PACKETVER >= 20180704 +packetLen(0x01d8, 58) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20180103 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +#endif + +// Packet: 0x01d9 +#if PACKETVER >= 20180704 +packetLen(0x01d9, 57) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20180103 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +#endif + +// Packet: 0x01da +#if PACKETVER >= 20180704 +packetLen(0x01da, 64) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20180103 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#endif + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +#if PACKETVER >= 20180704 +packetLen(0x01fd, 25) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20180103 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20180321 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180307 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180221 +packetLen(0x0202, 90) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180124 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180117 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180103 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +#if PACKETVER >= 20180221 +packetLen(0x0206, 35) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20180103 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#endif + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x020f +packetLen(0x020f, 10) // CZ_REQ_PVPPOINT + +// Packet: 0x0210 +packetLen(0x0210, 22) // ZC_ACK_PVPPOINT + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +#if PACKETVER >= 20180704 +packetLen(0x0223, 10) // ZC_ACK_WEAPONREFINE +#elif PACKETVER >= 20180103 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE +#endif + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +#if PACKETVER >= 20180704 +packetLen(0x022a, 62) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20180103 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#endif + +// Packet: 0x022b +#if PACKETVER >= 20180704 +packetLen(0x022b, 61) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20180103 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20180704 +packetLen(0x022c, 69) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20180103 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +#if PACKETVER >= 20180321 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20180124 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20180117 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20180103 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +#if PACKETVER >= 20180704 +packetLen(0x022e, 73) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20180103 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#endif + +// Packet: 0x022f +#if PACKETVER >= 20180704 +packetLen(0x022f, 7) // ZC_FEED_MER +#elif PACKETVER >= 20180103 +packetLen(0x022f, 5) // ZC_FEED_MER +#endif + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20180321 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180124 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180117 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180103 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +#if PACKETVER >= 20180704 +packetLen(0x025b, 8) // CZ_REQ_MAKINGITEM +#elif PACKETVER >= 20180103 +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM +#endif + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20180307 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180213 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180207 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180124 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180117 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180103 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +#if PACKETVER >= 20180704 +packetLen(0x0298, 10) // ZC_CASH_TIME_COUNTER +#elif PACKETVER >= 20180103 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER +#endif + +// Packet: 0x0299 +#if PACKETVER >= 20180704 +packetLen(0x0299, 8) // ZC_CASH_ITEM_DELETE +#elif PACKETVER >= 20180103 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE +#endif + +// Packet: 0x029a +#if PACKETVER >= 20180704 +packetLen(0x029a, 37) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20180103 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#endif + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +#if PACKETVER >= 20180704 +packetLen(0x02b8, 32) // ZC_ITEM_PICKUP_PARTY +#elif PACKETVER >= 20180103 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY +#endif + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20180321 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180117 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180103 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +#if PACKETVER >= 20180704 +packetLen(0x02d4, 39) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20180103 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#endif + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +#if PACKETVER >= 20180704 +packetLen(0x02ec, 71) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 +#endif + +// Packet: 0x02ed +#if PACKETVER >= 20180704 +packetLen(0x02ed, 63) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 +#endif + +// Packet: 0x02ee +#if PACKETVER >= 20180704 +packetLen(0x02ee, 64) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#endif + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20180321 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180307 +packetLen(0x035f, -1) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180213 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180117 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180103 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20180321 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180213 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180207 +packetLen(0x0360, 4) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180117 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180103 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20180321 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180124 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180117 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180103 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20180321 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180213 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180207 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180124 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180117 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180103 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20180321 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180213 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180207 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180124 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180117 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180103 +packetLen(0x0363, 26) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20180321 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180213 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180207 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180124 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180117 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180103 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20180321 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180213 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180207 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180124 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180117 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180103 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20180321 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180307 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180221 +packetLen(0x0366, 8) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180213 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180117 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180103 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20180321 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20180103 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20180321 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20180213 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20180117 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20180103 +packetLen(0x0368, 2) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20180321 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180221 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180213 +packetLen(0x0369, 36) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180117 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180103 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20180321 +packetLen(0x0436, 19) // CZ_ENTER2 +#elif PACKETVER >= 20180307 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20180221 +packetLen(0x0436, 26) // CZ_ENTER2 +#elif PACKETVER >= 20180207 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20180124 +packetLen(0x0436, 8) // CZ_ENTER2 +#elif PACKETVER >= 20180117 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20180103 +packetLen(0x0436, 2) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20180321 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180307 +packetLen(0x0437, 6) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180213 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180117 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180103 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20180321 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180213 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180117 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180103 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +#if PACKETVER >= 20180704 +packetLen(0x0445, 12) // CZ_SIMPLE_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20180321 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180307 +packetLen(0x07e4, 19) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180213 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180207 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180124 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180117 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180103 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20180321 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180213 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180207 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180124 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180117 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180103 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20180321 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180221 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180213 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180207 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180124 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180117 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180103 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +#if PACKETVER >= 20180704 +packetLen(0x080f, 30) // ZC_ADD_EXCHANGE_ITEM2 +#elif PACKETVER >= 20180103 +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 +#endif + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20180321 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180213 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180117 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0811, 19) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20180213 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20180117 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20180321 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20180221 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20180213 +packetLen(0x0817, 90) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20180321 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180213 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180207 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180124 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180117 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +#if PACKETVER >= 20180704 +packetLen(0x081b, 12) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#endif + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +#if PACKETVER >= 20180704 +packetLen(0x0824, 8) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER +#elif PACKETVER >= 20180103 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER +#endif + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20180321 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20180103 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20180307 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180221 +packetLen(0x0838, 5) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180213 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180117 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180103 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20180704 +packetLen(0x083c, 14) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180321 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180213 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180117 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180103 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +#if PACKETVER >= 20180704 +packetLen(0x084b, 21) // ZC_ITEM_FALL_ENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 +#endif + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20180221 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20180213 +packetLen(0x085a, 12) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20180103 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 + +// Packet: 0x085c +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 + +// Packet: 0x085d +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 + +// Packet: 0x085e +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 + +// Packet: 0x085f +#if PACKETVER >= 20180207 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180124 +packetLen(0x085f, 36) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180103 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 + +// Packet: 0x0861 +#if PACKETVER >= 20180321 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20180307 +packetLen(0x0861, 90) // ZC_REASSEMBLY_AUTH08 +#elif PACKETVER >= 20180103 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 +#endif + +// Packet: 0x0862 +#if PACKETVER >= 20180321 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20180307 +packetLen(0x0862, 6) // ZC_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20180103 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x0863 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 + +// Packet: 0x0864 +#if PACKETVER >= 20180321 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20180307 +packetLen(0x0864, -1) // ZC_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20180103 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x0865 +#if PACKETVER >= 20180117 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20180103 +packetLen(0x0865, 4) // ZC_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0866 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 + +// Packet: 0x0867 +#if PACKETVER >= 20180307 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180221 +packetLen(0x0867, -1) // ZC_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180103 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0868 +#if PACKETVER >= 20180207 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180124 +packetLen(0x0868, 4) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180103 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 + +// Packet: 0x086a +#if PACKETVER >= 20180207 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20180124 +packetLen(0x086a, 18) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20180103 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +#if PACKETVER >= 20180117 +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20180103 +packetLen(0x086b, -1) // ZC_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x086c +#if PACKETVER >= 20180321 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20180221 +packetLen(0x086c, 6) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20180103 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20180117 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20180103 +packetLen(0x086d, 12) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 + +// Packet: 0x086f +#if PACKETVER >= 20180307 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180221 +packetLen(0x086f, -1) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180213 +packetLen(0x086f, 26) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180207 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180124 +packetLen(0x086f, 8) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180103 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +#if PACKETVER >= 20180321 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20180307 +packetLen(0x0870, -1) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20180213 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20180207 +packetLen(0x0870, 19) // ZC_REASSEMBLY_AUTH23 +#elif PACKETVER >= 20180103 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 +#endif + +// Packet: 0x0871 +#if PACKETVER >= 20180307 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180221 +packetLen(0x0871, 6) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180103 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20180321 +packetLen(0x0872, 2) +#elif PACKETVER >= 20180307 +packetLen(0x0872, 18) +#elif PACKETVER >= 20180117 +packetLen(0x0872, 2) +#elif PACKETVER >= 20180103 +packetLen(0x0872, 6) +#endif + +// Packet: 0x0873 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 + +// Packet: 0x0874 +#if PACKETVER >= 20180221 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180213 +packetLen(0x0874, 6) // ZC_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180103 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x0875 +#if PACKETVER >= 20180221 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180213 +packetLen(0x0875, 8) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180124 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180117 +packetLen(0x0875, 36) // ZC_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180103 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x0876 +#if PACKETVER >= 20180307 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20180221 +packetLen(0x0876, 5) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20180117 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 +#elif PACKETVER >= 20180103 +packetLen(0x0876, 6) // ZC_REASSEMBLY_AUTH29 +#endif + +// Packet: 0x0877 +#if PACKETVER >= 20180321 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180307 +packetLen(0x0877, 5) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180103 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20180221 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20180213 +packetLen(0x0878, 5) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20180103 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +#if PACKETVER >= 20180307 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180221 +packetLen(0x0879, 8) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180117 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180103 +packetLen(0x0879, -1) // ZC_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x087a +#if PACKETVER >= 20180207 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20180124 +packetLen(0x087a, 26) // ZC_REASSEMBLY_AUTH33 +#elif PACKETVER >= 20180103 +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 +#endif + +// Packet: 0x087b +#if PACKETVER >= 20180221 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180213 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180103 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 + +// Packet: 0x087d +#if PACKETVER >= 20180307 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20180221 +packetLen(0x087d, 5) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20180103 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 + +// Packet: 0x087f +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 + +// Packet: 0x0880 +#if PACKETVER >= 20180307 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180221 +packetLen(0x0880, -1) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180103 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20180307 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180221 +packetLen(0x0881, 18) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180213 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180207 +packetLen(0x0881, 26) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180103 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20180221 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20180213 +packetLen(0x0882, 10) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20180103 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +#if PACKETVER >= 20180307 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20180221 +packetLen(0x0883, -1) // ZC_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20180103 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x0884 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 + +// Packet: 0x0885 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 + +// Packet: 0x0886 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 + +// Packet: 0x0887 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 + +// Packet: 0x0888 +#if PACKETVER >= 20180207 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20180124 +packetLen(0x0888, 19) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20180103 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 + +// Packet: 0x088a +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 + +// Packet: 0x088b +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 + +// Packet: 0x088c +#if PACKETVER >= 20180221 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20180213 +packetLen(0x088c, -1) // CZ_REASSEMBLY_AUTH09 +#elif PACKETVER >= 20180103 +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 +#endif + +// Packet: 0x088d +#if PACKETVER >= 20180321 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180307 +packetLen(0x088d, 8) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180103 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 + +// Packet: 0x088f +#if PACKETVER >= 20180307 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20180221 +packetLen(0x088f, 6) // CZ_REASSEMBLY_AUTH12 +#elif PACKETVER >= 20180103 +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 +#endif + +// Packet: 0x0890 +#if PACKETVER >= 20180207 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20180124 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20180103 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20180307 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180221 +packetLen(0x0891, 4) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180103 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20180221 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180213 +packetLen(0x0892, 6) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180103 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20180321 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20180307 +packetLen(0x0893, 10) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20180103 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 + +// Packet: 0x0895 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 + +// Packet: 0x0896 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 + +// Packet: 0x0897 +#if PACKETVER >= 20180307 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20180221 +packetLen(0x0897, 19) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20180103 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +#if PACKETVER >= 20180221 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20180213 +packetLen(0x0898, -1) // CZ_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20180103 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x0899 +#if PACKETVER >= 20180117 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180103 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 + +// Packet: 0x089b +#if PACKETVER >= 20180321 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180307 +packetLen(0x089b, 12) // CZ_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180103 +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x089c +#if PACKETVER >= 20180221 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20180213 +packetLen(0x089c, 4) // CZ_REASSEMBLY_AUTH25 +#elif PACKETVER >= 20180103 +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 +#endif + +// Packet: 0x089d +#if PACKETVER >= 20180307 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20180221 +packetLen(0x089d, 6) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20180103 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 + +// Packet: 0x089f +#if PACKETVER >= 20180117 +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 +#elif PACKETVER >= 20180103 +packetLen(0x089f, 6) // CZ_REASSEMBLY_AUTH28 +#endif + +// Packet: 0x08a0 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 + +// Packet: 0x08a1 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 + +// Packet: 0x08a2 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 + +// Packet: 0x08a3 +#if PACKETVER >= 20180221 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180213 +packetLen(0x08a3, 19) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180103 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 + +// Packet: 0x08a5 +#if PACKETVER >= 20180221 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180213 +packetLen(0x08a5, -1) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180103 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 + +// Packet: 0x08a7 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 + +// Packet: 0x08a8 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 + +// Packet: 0x08a9 +#if PACKETVER >= 20180117 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 +#elif PACKETVER >= 20180103 +packetLen(0x08a9, 5) // CZ_REASSEMBLY_AUTH38 +#endif + +// Packet: 0x08aa +#if PACKETVER >= 20180321 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180307 +packetLen(0x08aa, 26) // CZ_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180103 +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x08ab +#if PACKETVER >= 20180321 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180307 +packetLen(0x08ab, 5) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180117 +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180103 +packetLen(0x08ab, 6) // CZ_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x08ac +#if PACKETVER >= 20180117 +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20180103 +packetLen(0x08ac, -1) // CZ_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x08ad +#if PACKETVER >= 20180221 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20180213 +packetLen(0x08ad, 6) // CZ_REASSEMBLY_AUTH42 +#elif PACKETVER >= 20180103 +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 +#endif + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 157) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20180321 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180307 +packetLen(0x0917, 10) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180221 +packetLen(0x0917, 36) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180213 +packetLen(0x0917, 26) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180103 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 + +// Packet: 0x0919 +#if PACKETVER >= 20180207 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180124 +packetLen(0x0919, 26) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180103 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 + +// Packet: 0x091b +packetLen(0x091b, 2) // ZC_PRNPC_STATE + +// Packet: 0x091c +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x091d +#if PACKETVER >= 20180117 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20180103 +packetLen(0x091d, 7) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20180307 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180221 +packetLen(0x091e, 8) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180103 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 + +// Packet: 0x0920 +#if PACKETVER >= 20180321 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180307 +packetLen(0x0920, 8) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180103 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 + +// Packet: 0x0922 +#if PACKETVER >= 20180221 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20180213 +packetLen(0x0922, 5) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20180103 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 + +// Packet: 0x0924 +#if PACKETVER >= 20180221 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180213 +packetLen(0x0924, 10) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180103 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 + +// Packet: 0x0926 +#if PACKETVER >= 20180221 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180213 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180117 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180103 +packetLen(0x0926, 8) // ZC_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0927 +#if PACKETVER >= 20180117 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20180103 +packetLen(0x0927, 18) // ZC_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0928 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 + +// Packet: 0x0929 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 + +// Packet: 0x092a +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 + +// Packet: 0x092b +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 + +// Packet: 0x092c +#if PACKETVER >= 20180213 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180207 +packetLen(0x092c, 5) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180117 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180103 +packetLen(0x092c, 8) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 + +// Packet: 0x092e +#if PACKETVER >= 20180213 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180207 +packetLen(0x092e, 5) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180103 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 + +// Packet: 0x0930 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 + +// Packet: 0x0931 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 + +// Packet: 0x0932 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 + +// Packet: 0x0933 +#if PACKETVER >= 20180221 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180213 +packetLen(0x0933, 7) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180103 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 + +// Packet: 0x0935 +#if PACKETVER >= 20180117 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20180103 +packetLen(0x0935, 6) // ZC_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0936 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 + +// Packet: 0x0937 +#if PACKETVER >= 20180321 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180307 +packetLen(0x0937, -1) // ZC_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180103 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0938 +#if PACKETVER >= 20180117 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20180103 +packetLen(0x0938, 10) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +#if PACKETVER >= 20180321 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20180307 +packetLen(0x0939, 36) // ZC_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20180103 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x093a +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 + +// Packet: 0x093b +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 + +// Packet: 0x093c +#if PACKETVER >= 20180221 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20180213 +packetLen(0x093c, 6) // ZC_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20180103 +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x093d +#if PACKETVER >= 20180307 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180221 +packetLen(0x093d, 26) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180103 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 + +// Packet: 0x093f +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 + +// Packet: 0x0940 +#if PACKETVER >= 20180213 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180207 +packetLen(0x0940, 6) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180124 +packetLen(0x0940, -1) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180103 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20180321 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180307 +packetLen(0x0941, 6) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180117 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180103 +packetLen(0x0941, 5) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 + +// Packet: 0x0943 +#if PACKETVER >= 20180221 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180213 +packetLen(0x0943, 18) // CZ_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180103 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x0944 +#if PACKETVER >= 20180321 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20180307 +packetLen(0x0944, 5) // CZ_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20180103 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x0945 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 + +// Packet: 0x0946 +#if PACKETVER >= 20180207 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180124 +packetLen(0x0946, -1) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180117 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180103 +packetLen(0x0946, 36) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 + +// Packet: 0x0948 +#if PACKETVER >= 20180321 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180307 +packetLen(0x0948, 26) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180117 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180103 +packetLen(0x0948, 5) // CZ_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x0949 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 + +// Packet: 0x094a +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 + +// Packet: 0x094b +#if PACKETVER >= 20180307 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180221 +packetLen(0x094b, 10) // CZ_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180103 +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x094c +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 + +// Packet: 0x094d +#if PACKETVER >= 20180307 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180221 +packetLen(0x094d, 10) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180207 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180124 +packetLen(0x094d, 6) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180103 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20180307 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180221 +packetLen(0x094e, 6) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180117 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180103 +packetLen(0x094e, -1) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 + +// Packet: 0x0950 +#if PACKETVER >= 20180213 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180207 +packetLen(0x0950, 36) // CZ_REASSEMBLY_AUTH58 +#elif PACKETVER >= 20180103 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 +#endif + +// Packet: 0x0951 +#if PACKETVER >= 20180321 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20180307 +packetLen(0x0951, 8) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20180103 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 + +// Packet: 0x0953 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 + +// Packet: 0x0954 +#if PACKETVER >= 20180321 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20180307 +packetLen(0x0954, 6) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20180103 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20180221 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20180213 +packetLen(0x0955, 8) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20180103 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 + +// Packet: 0x0957 +#if PACKETVER >= 20180321 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180221 +packetLen(0x0957, 6) // CZ_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180103 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x0958 +#if PACKETVER >= 20180207 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180124 +packetLen(0x0958, 5) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180103 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 + +// Packet: 0x095a +#if PACKETVER >= 20180221 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20180213 +packetLen(0x095a, -1) // CZ_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20180103 +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x095b +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 + +// Packet: 0x095c +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 + +// Packet: 0x095d +#if PACKETVER >= 20180117 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180103 +packetLen(0x095d, 10) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 + +// Packet: 0x095f +#if PACKETVER >= 20180117 +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 +#elif PACKETVER >= 20180103 +packetLen(0x095f, 6) // CZ_REASSEMBLY_AUTH73 +#endif + +// Packet: 0x0960 +#if PACKETVER >= 20180117 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 +#elif PACKETVER >= 20180103 +packetLen(0x0960, 90) // CZ_REASSEMBLY_AUTH74 +#endif + +// Packet: 0x0961 +#if PACKETVER >= 20180207 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180124 +packetLen(0x0961, 5) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180103 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +#if PACKETVER >= 20180221 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20180213 +packetLen(0x0962, 5) // CZ_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20180103 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0963 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 + +// Packet: 0x0964 +#if PACKETVER >= 20180307 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20180221 +packetLen(0x0964, 12) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20180103 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 + +// Packet: 0x0966 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 + +// Packet: 0x0967 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 + +// Packet: 0x0968 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 + +// Packet: 0x0969 +#if PACKETVER >= 20180321 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20180307 +packetLen(0x0969, 7) // CZ_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20180103 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x096a +#if PACKETVER >= 20180307 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180221 +packetLen(0x096a, 7) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180213 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180117 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180103 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +#if PACKETVER >= 20180704 +packetLen(0x0990, 41) // ZC_ITEM_PICKUP_ACK_V5 +#elif PACKETVER >= 20180103 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 +#endif + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +#if PACKETVER >= 20180704 +packetLen(0x09ad, 12) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#elif PACKETVER >= 20180103 +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#endif + +// Packet: 0x09ae +#if PACKETVER >= 20180704 +packetLen(0x09ae, 19) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +#if PACKETVER >= 20180704 +packetLen(0x09b0, 10) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +#if PACKETVER >= 20180704 +packetLen(0x09b2, 10) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#elif PACKETVER >= 20180103 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#endif + +// Packet: 0x09b3 +#if PACKETVER >= 20180704 +packetLen(0x09b3, 6) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#elif PACKETVER >= 20180103 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#endif + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +#if PACKETVER >= 20180704 +packetLen(0x09c3, 10) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c4 +#if PACKETVER >= 20180704 +packetLen(0x09c4, 10) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +#if PACKETVER >= 20180704 +packetLen(0x09e6, 24) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#elif PACKETVER >= 20180103 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#endif + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +#if PACKETVER >= 20180704 +packetLen(0x09f7, 77) // ZC_PROPERTY_HOMUN_2 +#elif PACKETVER >= 20180103 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 +#endif + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +#if PACKETVER >= 20180704 +packetLen(0x0a05, 63) // ZC_ACK_ADD_ITEM_RODEX +#elif PACKETVER >= 20180103 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX +#endif + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +#if PACKETVER >= 20180704 +packetLen(0x0a09, 55) // ZC_ADD_EXCHANGE_ITEM3 +#elif PACKETVER >= 20180103 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 +#endif + +// Packet: 0x0a0a +#if PACKETVER >= 20180704 +packetLen(0x0a0a, 57) // ZC_ADD_ITEM_TO_STORE3 +#elif PACKETVER >= 20180103 +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 +#endif + +// Packet: 0x0a0b +#if PACKETVER >= 20180704 +packetLen(0x0a0b, 57) // ZC_ADD_ITEM_TO_CART3 +#elif PACKETVER >= 20180103 +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 +#endif + +// Packet: 0x0a0c +#if PACKETVER >= 20180704 +packetLen(0x0a0c, 66) // ZC_ITEM_PICKUP_ACK_V6 +#elif PACKETVER >= 20180103 +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 +#endif + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +#if PACKETVER >= 20180704 +packetLen(0x0a1a, 25) // ZC_ACK_OPEN_ROULETTE +#elif PACKETVER >= 20180103 +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE +#endif + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +#if PACKETVER >= 20180704 +packetLen(0x0a20, 23) // ZC_ACK_GENERATE_ROULETTE +#elif PACKETVER >= 20180103 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE +#endif + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +#if PACKETVER >= 20180704 +packetLen(0x0a22, 7) // ZC_RECV_ROULETTE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM +#endif + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +#if PACKETVER >= 20180704 +packetLen(0x0a37, 69) // ZC_ITEM_PICKUP_ACK_V7 +#elif PACKETVER >= 20180103 +packetLen(0x0a37, 59) // ZC_ITEM_PICKUP_ACK_V7 +#endif + +// Packet: 0x0a38 +packetLen(0x0a38, 3) // ZC_OPEN_UI + +// Packet: 0x0a39 +packetLen(0x0a39, 36) // CH_MAKE_CHAR + +// Packet: 0x0a3a +packetLen(0x0a3a, 12) + +// Packet: 0x0a3b +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT + +// Packet: 0x0a3c +packetLen(0x0a3c, -1) + +// Packet: 0x0a3d +#if PACKETVER >= 20180704 +packetLen(0x0a3d, 20) +#elif PACKETVER >= 20180103 +packetLen(0x0a3d, 18) +#endif + +// Packet: 0x0a3e +packetLen(0x0a3e, -1) + +// Packet: 0x0a3f +#if PACKETVER >= 20180704 +packetLen(0x0a3f, 11) +#elif PACKETVER >= 20180103 +packetLen(0x0a3f, 9) +#endif + +// Packet: 0x0a40 +packetLen(0x0a40, 11) + +// Packet: 0x0a41 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL + +// Packet: 0x0a42 +packetLen(0x0a42, 43) + +// Packet: 0x0a43 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0a44 +packetLen(0x0a44, -1) // ZC_GROUP_LIST + +// Packet: 0x0a46 +packetLen(0x0a46, 14) + +// Packet: 0x0a47 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES + +// Packet: 0x0a48 +packetLen(0x0a48, 2) + +// Packet: 0x0a49 +#if PACKETVER >= 20180704 +packetLen(0x0a49, 22) // CZ_PRIVATE_AIRSHIP_REQUEST +#elif PACKETVER >= 20180103 +packetLen(0x0a49, 20) // CZ_PRIVATE_AIRSHIP_REQUEST +#endif + +// Packet: 0x0a4a +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE + +// Packet: 0x0a4b +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE + +// Packet: 0x0a4c +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE + +// Packet: 0x0a4d +packetLen(0x0a4d, -1) + +// Packet: 0x0a4e +#if PACKETVER >= 20180704 +packetLen(0x0a4e, 6) +#elif PACKETVER >= 20180103 +packetLen(0x0a4e, 4) +#endif + +// Packet: 0x0a4f +packetLen(0x0a4f, -1) + +// Packet: 0x0a50 +packetLen(0x0a50, 4) + +// Packet: 0x0a51 +packetLen(0x0a51, 34) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a52 +packetLen(0x0a52, 20) + +// Packet: 0x0a53 +packetLen(0x0a53, 10) + +// Packet: 0x0a54 +packetLen(0x0a54, -1) + +// Packet: 0x0a55 +packetLen(0x0a55, 2) + +// Packet: 0x0a56 +packetLen(0x0a56, 6) + +// Packet: 0x0a57 +packetLen(0x0a57, 6) + +// Packet: 0x0a58 +packetLen(0x0a58, 8) + +// Packet: 0x0a59 +packetLen(0x0a59, -1) + +// Packet: 0x0a5a +packetLen(0x0a5a, 2) + +// Packet: 0x0a5b +packetLen(0x0a5b, 7) + +// Packet: 0x0a5c +packetLen(0x0a5c, 18) + +// Packet: 0x0a5d +packetLen(0x0a5d, 6) + +// Packet: 0x0a68 +packetLen(0x0a68, 3) // CZ_REQ_OPEN_UI + +// Packet: 0x0a69 +packetLen(0x0a69, 6) + +// Packet: 0x0a6a +packetLen(0x0a6a, 12) + +// Packet: 0x0a6b +packetLen(0x0a6b, -1) + +// Packet: 0x0a6c +packetLen(0x0a6c, 7) + +// Packet: 0x0a6d +packetLen(0x0a6d, -1) + +// Packet: 0x0a6e +packetLen(0x0a6e, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x0a6f +packetLen(0x0a6f, -1) // ZC_FORMATSTRING_MSG_COLOR + +// Packet: 0x0a70 +packetLen(0x0a70, 2) + +// Packet: 0x0a71 +packetLen(0x0a71, -1) + +// Packet: 0x0a72 +packetLen(0x0a72, 61) + +// Packet: 0x0a73 +packetLen(0x0a73, 2) + +// Packet: 0x0a74 +packetLen(0x0a74, 8) + +// Packet: 0x0a76 +packetLen(0x0a76, 80) + +// Packet: 0x0a77 +packetLen(0x0a77, 15) + +// Packet: 0x0a78 +packetLen(0x0a78, 15) + +// Packet: 0x0a79 +packetLen(0x0a79, -1) + +// Packet: 0x0a7b +packetLen(0x0a7b, -1) + +// Packet: 0x0a7c +packetLen(0x0a7c, -1) + +// Packet: 0x0a7d +packetLen(0x0a7d, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0a7e +packetLen(0x0a7e, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY + +// Packet: 0x0a7f +packetLen(0x0a7f, -1) // CZ_OFFLINE_STORE_CREATE + +// Packet: 0x0a80 +packetLen(0x0a80, 6) + +// Packet: 0x0a81 +packetLen(0x0a81, 4) + +// Packet: 0x0a82 +packetLen(0x0a82, 46) + +// Packet: 0x0a83 +packetLen(0x0a83, 46) + +// Packet: 0x0a84 +packetLen(0x0a84, 94) // ZC_GUILD_INFO + +// Packet: 0x0a85 +packetLen(0x0a85, 82) + +// Packet: 0x0a86 +packetLen(0x0a86, -1) + +// Packet: 0x0a87 +packetLen(0x0a87, -1) + +// Packet: 0x0a88 +packetLen(0x0a88, 2) + +// Packet: 0x0a89 +#if PACKETVER >= 20180704 +packetLen(0x0a89, 61) // ZC_NOTIFY_OFFLINE_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0a89, 57) // ZC_NOTIFY_OFFLINE_STORE +#endif + +// Packet: 0x0a8a +packetLen(0x0a8a, 6) // ZC_OFFLINE_STORE_VANISH + +// Packet: 0x0a8b +packetLen(0x0a8b, 2) + +// Packet: 0x0a8c +packetLen(0x0a8c, 2) + +// Packet: 0x0a8d +packetLen(0x0a8d, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS + +// Packet: 0x0a8e +packetLen(0x0a8e, 2) + +// Packet: 0x0a8f +packetLen(0x0a8f, 2) + +// Packet: 0x0a90 +packetLen(0x0a90, 3) + +// Packet: 0x0a91 +packetLen(0x0a91, -1) // ZC_OFFLINE_STORE_ITEMS + +// Packet: 0x0a92 +packetLen(0x0a92, -1) + +// Packet: 0x0a93 +packetLen(0x0a93, 3) + +// Packet: 0x0a94 +packetLen(0x0a94, 2) + +// Packet: 0x0a95 +packetLen(0x0a95, 4) + +// Packet: 0x0a96 +#if PACKETVER >= 20180704 +packetLen(0x0a96, 61) // ZC_ADD_EXCHANGE_ITEM4 +#elif PACKETVER >= 20180103 +packetLen(0x0a96, 51) // ZC_ADD_EXCHANGE_ITEM4 +#endif + +// Packet: 0x0a97 +packetLen(0x0a97, 8) // CZ_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a98 +packetLen(0x0a98, 10) // ZC_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a99 +packetLen(0x0a99, 4) + +// Packet: 0x0a9a +packetLen(0x0a9a, 10) // ZC_ALT_EQUIPMENT_REMOVE + +// Packet: 0x0a9b +packetLen(0x0a9b, -1) // ZC_ALT_EQUIPMENT_ITEMS + +// Packet: 0x0a9c +packetLen(0x0a9c, 2) + +// Packet: 0x0a9d +packetLen(0x0a9d, 4) + +// Packet: 0x0a9e +packetLen(0x0a9e, 2) + +// Packet: 0x0a9f +packetLen(0x0a9f, 2) + +// Packet: 0x0aa0 +packetLen(0x0aa0, 2) // ZC_REFINE_OPEN_WINDOW + +// Packet: 0x0aa1 +packetLen(0x0aa1, 4) // CZ_REFINE_ADD_ITEM + +// Packet: 0x0aa2 +packetLen(0x0aa2, -1) // ZC_REFINE_ADD_ITEM + +// Packet: 0x0aa3 +#if PACKETVER >= 20180704 +packetLen(0x0aa3, 9) // CZ_REFINE_ITEM_REQUEST +#elif PACKETVER >= 20180103 +packetLen(0x0aa3, 7) // CZ_REFINE_ITEM_REQUEST +#endif + +// Packet: 0x0aa4 +packetLen(0x0aa4, 2) // CZ_REFINE_WINDOW_CLOSE + +// Packet: 0x0aa5 +packetLen(0x0aa5, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0aa6 +packetLen(0x0aa6, 36) // ZC_MEMBER_ADD + +// Packet: 0x0aa7 +packetLen(0x0aa7, 6) // ZC_INVENTORY_MOVE_FAILED + +// Packet: 0x0aa8 +packetLen(0x0aa8, 5) + +// Packet: 0x0aa9 +packetLen(0x0aa9, -1) + +// Packet: 0x0aaa +packetLen(0x0aaa, -1) + +// Packet: 0x0aab +packetLen(0x0aab, -1) + +// Packet: 0x0aac +packetLen(0x0aac, 69) + +// Packet: 0x0aad +packetLen(0x0aad, 51) + +// Packet: 0x0aae +packetLen(0x0aae, 2) + +// Packet: 0x0aaf +packetLen(0x0aaf, 6) + +// Packet: 0x0ab0 +packetLen(0x0ab0, 6) + +// Packet: 0x0ab1 +packetLen(0x0ab1, 14) + +// Packet: 0x0ab2 +packetLen(0x0ab2, 7) // ZC_GROUP_ISALIVE + +// Packet: 0x0ab3 +packetLen(0x0ab3, 19) + +// Packet: 0x0ab4 +#if PACKETVER >= 20180704 +packetLen(0x0ab4, 6) +#elif PACKETVER >= 20180103 +packetLen(0x0ab4, 4) +#endif + +// Packet: 0x0ab5 +packetLen(0x0ab5, 2) + +// Packet: 0x0ab6 +#if PACKETVER >= 20180704 +packetLen(0x0ab6, 8) +#elif PACKETVER >= 20180103 +packetLen(0x0ab6, 6) +#endif + +// Packet: 0x0ab7 +packetLen(0x0ab7, 4) + +// Packet: 0x0ab8 +packetLen(0x0ab8, 2) + +// Packet: 0x0ab9 +#if PACKETVER >= 20180704 +packetLen(0x0ab9, 47) // ZC_ITEM_PREVIEW +#elif PACKETVER >= 20180103 +packetLen(0x0ab9, 39) // ZC_ITEM_PREVIEW +#endif + +// Packet: 0x0aba +packetLen(0x0aba, 2) + +// Packet: 0x0abb +packetLen(0x0abb, 2) + +// Packet: 0x0abc +packetLen(0x0abc, -1) + +// Packet: 0x0abd +packetLen(0x0abd, 10) // ZC_PARTY_MEMBER_JOB_LEVEL + +// Packet: 0x0abe +packetLen(0x0abe, -1) // ZC_WARPLIST + +// Packet: 0x0abf +packetLen(0x0abf, -1) + +// Packet: 0x0ac0 +packetLen(0x0ac0, 26) // CZ_OPEN_RODEXBOX + +// Packet: 0x0ac1 +packetLen(0x0ac1, 26) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x0ac2 +packetLen(0x0ac2, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0ac3 +packetLen(0x0ac3, 2) + +// Packet: 0x0ac4 +packetLen(0x0ac4, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x0ac5 +packetLen(0x0ac5, 156) // HC_NOTIFY_ZONESVR + +// Packet: 0x0ac6 +packetLen(0x0ac6, 156) + +// Packet: 0x0ac7 +packetLen(0x0ac7, 156) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0ac8 +packetLen(0x0ac8, 2) // ZC_UNKNOWN_CLEAN_ITEMS_LISTS + +// Packet: 0x0ac9 +packetLen(0x0ac9, -1) + +// Packet: 0x0aca +packetLen(0x0aca, 3) + +// Packet: 0x0acb +packetLen(0x0acb, 12) // ZC_PAR_CHANGE + +// Packet: 0x0acc +packetLen(0x0acc, 18) // ZC_NOTIFY_EXP + +// Packet: 0x0acd +packetLen(0x0acd, 23) + +// Packet: 0x0ace +packetLen(0x0ace, 4) + +// Packet: 0x0acf +packetLen(0x0acf, 68) // CA_LOGIN_OTP + +// Packet: 0x0ad0 +packetLen(0x0ad0, 11) // CA_OTP_CODE + +// Packet: 0x0ad1 +packetLen(0x0ad1, -1) + +// Packet: 0x0ad2 +packetLen(0x0ad2, 30) + +// Packet: 0x0ad3 +packetLen(0x0ad3, -1) + +// Packet: 0x0ad4 +packetLen(0x0ad4, -1) + +// Packet: 0x0ad5 +packetLen(0x0ad5, 2) + +// Packet: 0x0ad6 +packetLen(0x0ad6, 2) + +// Packet: 0x0ad7 +packetLen(0x0ad7, 8) + +// Packet: 0x0ad8 +packetLen(0x0ad8, 8) + +// Packet: 0x0ad9 +packetLen(0x0ad9, -1) + +// Packet: 0x0ada +#if PACKETVER >= 20180704 +packetLen(0x0ada, 32) // ZC_REFINE_STATUS +#elif PACKETVER >= 20180103 +packetLen(0x0ada, 30) // ZC_REFINE_STATUS +#endif + +// Packet: 0x0adb +packetLen(0x0adb, -1) + +// Packet: 0x0adc +packetLen(0x0adc, 6) // ZC_EQUIPWIN_OTHER + +// Packet: 0x0add +#if PACKETVER >= 20180704 +packetLen(0x0add, 24) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20180103 +packetLen(0x0add, 22) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x0ade +packetLen(0x0ade, 6) // ZC_OVERWEIGHT_PERCENT + +// Packet: 0x0adf +packetLen(0x0adf, 58) // ZC_ACK_REQNAME + +// Packet: 0x0ae0 +packetLen(0x0ae0, 30) + +// Packet: 0x0ae1 +packetLen(0x0ae1, 28) + +// Packet: 0x0ae2 +packetLen(0x0ae2, 7) // ZC_OPEN_UI + +// Packet: 0x0ae3 +packetLen(0x0ae3, -1) // AC_LOGIN_OTP + +// Packet: 0x0ae4 +packetLen(0x0ae4, 89) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0ae5 +packetLen(0x0ae5, -1) // ZC_GROUP_LIST + +// Packet: 0x0ae6 +#if PACKETVER >= 20180207 +packetLen(0x0ae6, 10) +#elif PACKETVER >= 20180103 +packetLen(0x0ae6, 30) +#endif + +// Packet: 0x0ae7 +#if PACKETVER >= 20180404 +packetLen(0x0ae7, 38) +#elif PACKETVER >= 20180321 +packetLen(0x0ae7, 34) +#elif PACKETVER >= 20180103 +packetLen(0x0ae7, 30) +#endif + +// Packet: 0x0ae8 +packetLen(0x0ae8, 2) + +// Packet: 0x0ae9 +#if PACKETVER >= 20180117 +packetLen(0x0ae9, 13) // HC_SECOND_PASSWD_LOGIN +#elif PACKETVER >= 20180103 +packetLen(0x0ae9, 64) // HC_SECOND_PASSWD_LOGIN +#endif + +// Packet: 0x0aea +#if PACKETVER >= 20180117 +// removed +#elif PACKETVER >= 20180103 +packetLen(0x0aea, 2) +#endif + +// Packet: 0x0aeb +#if PACKETVER >= 20180117 +// removed +#elif PACKETVER >= 20180103 +packetLen(0x0aeb, 11) +#endif + +// Packet: 0x0aec +packetLen(0x0aec, 2) + +// Packet: 0x0aed +packetLen(0x0aed, 2) + +// Packet: 0x0aee +packetLen(0x0aee, 2) + +// Packet: 0x0aef +#if PACKETVER >= 20180117 +packetLen(0x0aef, 2) // CZ_ATTENDANCE_REWARD_REQUEST +#endif + +// Packet: 0x0af0 +#if PACKETVER >= 20180117 +packetLen(0x0af0, 10) // ZC_UI_ACTION +#endif + +// Packet: 0x0af2 +#if PACKETVER >= 20180124 +packetLen(0x0af2, 40) +#endif + +// Packet: 0x0af3 +#if PACKETVER >= 20180124 +packetLen(0x0af3, -1) +#endif + +// Packet: 0x0af4 +#if PACKETVER >= 20180207 +packetLen(0x0af4, 11) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0af5 +#if PACKETVER >= 20180207 +packetLen(0x0af5, 3) +#endif + +// Packet: 0x0af6 +#if PACKETVER >= 20180207 +packetLen(0x0af6, 88) +#endif + +// Packet: 0x0af7 +#if PACKETVER >= 20180207 +packetLen(0x0af7, 32) // ZC_ACK_REQNAME_BYGID +#endif + +// Packet: 0x0af8 +#if PACKETVER >= 20180321 +packetLen(0x0af8, 11) +#endif + +// Packet: 0x0af9 +#if PACKETVER >= 20180404 +packetLen(0x0af9, 6) +#endif + +// Packet: 0x0afa +#if PACKETVER >= 20180404 +packetLen(0x0afa, 54) +#endif + +// Packet: 0x0afb +#if PACKETVER >= 20180418 +packetLen(0x0afb, -1) // ZC_AUTOSPELLLIST +#endif + +// Packet: 0x0afc +#if PACKETVER >= 20180516 +packetLen(0x0afc, 16) +#endif + +// Packet: 0x0afd +#if PACKETVER >= 20180605 +packetLen(0x0afd, -1) // ZC_GUILD_POSITION +#endif + +// Packet: 0x0afe +#if PACKETVER >= 20180605 +packetLen(0x0afe, -1) // ZC_UPDATE_MISSION_HUNT_EX +#endif + +// Packet: 0x0aff +#if PACKETVER >= 20180605 +packetLen(0x0aff, -1) // ZC_ALL_QUEST_LIST4 +#endif + +// Packet: 0x0b00 +#if PACKETVER >= 20180620 +packetLen(0x0b00, 8) +#endif + +// Packet: 0x0b01 +#if PACKETVER >= 20180704 +packetLen(0x0b01, 56) +#elif PACKETVER >= 20180620 +packetLen(0x0b01, 40) +#endif + +// Packet: 0x0b02 +#if PACKETVER >= 20180704 +packetLen(0x0b02, 26) // AC_REFUSE_LOGIN4 +#endif + +// Packet: 0x0b03 +#if PACKETVER >= 20180801 +packetLen(0x0b03, -1) // ZC_EQUIPWIN_MICROSCOPE_V7 +#endif + +// Packet: 0x0b04 +#if PACKETVER >= 20180801 +packetLen(0x0b04, 80) +#endif + +// Packet: 0x0b05 +#if PACKETVER >= 20180829 +packetLen(0x0b05, 63) // ZC_OFFLINE_STORE_VISIBLE +#endif + +// Packet: 0x0b06 +#if PACKETVER >= 20181002 +// removed +#elif PACKETVER >= 20180829 +packetLen(0x0b06, 53) +#endif + +// Packet: 0x0b07 +#if PACKETVER >= 20180829 +packetLen(0x0b07, -1) +#endif + +// Packet: 0x0b08 +#if PACKETVER >= 20180919 +packetLen(0x0b08, -1) // ZC_INVENTORY_START +#elif PACKETVER >= 20180912 +packetLen(0x0b08, 27) // ZC_INVENTORY_START +#elif PACKETVER >= 20180829 +packetLen(0x0b08, 26) // ZC_INVENTORY_START +#endif + +// Packet: 0x0b09 +#if PACKETVER >= 20180829 +packetLen(0x0b09, -1) // ZC_STORE_ITEMLIST_NORMAL_V6 +#endif + +// Packet: 0x0b0a +#if PACKETVER >= 20180829 +packetLen(0x0b0a, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0b0b +#if PACKETVER >= 20180912 +packetLen(0x0b0b, 4) // ZC_INVENTORY_END +#elif PACKETVER >= 20180829 +packetLen(0x0b0b, 3) // ZC_INVENTORY_END +#endif + +// Packet: 0x0b0c +#if PACKETVER >= 20180829 +packetLen(0x0b0c, 155) // ZC_ADD_QUEST_EX +#endif + +// Packet: 0x0b0d +#if PACKETVER >= 20180912 +packetLen(0x0b0d, 10) // ZC_REMOVE_EFFECT +#endif + +// Packet: 0x0b0e +#if PACKETVER >= 20180912 +packetLen(0x0b0e, -1) +#endif + +// Packet: 0x0b0f +#if PACKETVER >= 20180912 +packetLen(0x0b0f, -1) +#endif + +// Packet: 0x0b10 +#if PACKETVER >= 20181002 +packetLen(0x0b10, 10) // CZ_START_USE_SKILL +#endif + +// Packet: 0x0b11 +#if PACKETVER >= 20181002 +packetLen(0x0b11, 4) // CZ_STOP_USE_SKILL +#endif + +// Packet: 0x0b12 +#if PACKETVER >= 20181017 +packetLen(0x0b12, 2) +#endif + +// Packet: 0x0b13 +#if PACKETVER >= 20181017 +packetLen(0x0b13, 48) // ZC_ITEM_PREVIEW +#endif + +// Packet: 0x0b14 +#if PACKETVER >= 20181031 +packetLen(0x0b14, 2) +#endif + +// Packet: 0x0b15 +#if PACKETVER >= 20181031 +packetLen(0x0b15, 7) +#endif + +// Packet: 0x0b16 +#if PACKETVER >= 20181031 +packetLen(0x0b16, 2) +#endif + +// Packet: 0x0b17 +#if PACKETVER >= 20181031 +packetLen(0x0b17, 3) +#endif + +// Packet: 0x0b18 +#if PACKETVER >= 20181031 +packetLen(0x0b18, 4) +#endif + +// Packet: 0x0b19 +#if PACKETVER >= 20181031 +packetLen(0x0b19, 2) +#endif + +// Packet: 0x0b1a +#if PACKETVER >= 20181212 +packetLen(0x0b1a, 29) +#endif + + +#endif /* COMMON_PACKETS2018_LEN_RE_H */ diff --git a/src/common/packets/packets2018_len_zero.h b/src/common/packets/packets2018_len_zero.h new file mode 100644 index 000000000..61b174600 --- /dev/null +++ b/src/common/packets/packets2018_len_zero.h @@ -0,0 +1,5958 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS2018_LEN_ZERO_H +#define COMMON_PACKETS2018_LEN_ZERO_H + +/* This file is autogenerated, please do not commit manual changes */ + +// Packet: 0x0064 +packetLen(0x0064, 55) // CA_LOGIN + +// Packet: 0x0065 +packetLen(0x0065, 17) // CH_ENTER + +// Packet: 0x0066 +packetLen(0x0066, 3) // CH_SELECT_CHAR + +// Packet: 0x0067 +packetLen(0x0067, 37) // CH_MAKE_CHAR + +// Packet: 0x0068 +packetLen(0x0068, 46) // CH_DELETE_CHAR + +// Packet: 0x0069 +packetLen(0x0069, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x006a +packetLen(0x006a, 23) // AC_REFUSE_LOGIN + +// Packet: 0x006b +packetLen(0x006b, -1) // HC_ACCEPT_ENTER + +// Packet: 0x006c +packetLen(0x006c, 3) // HC_REFUSE_ENTER + +// Packet: 0x006d +packetLen(0x006d, 157) // HC_ACCEPT_MAKECHAR + +// Packet: 0x006e +packetLen(0x006e, 3) // HC_REFUSE_MAKECHAR + +// Packet: 0x006f +packetLen(0x006f, 2) // HC_ACCEPT_DELETECHAR + +// Packet: 0x0070 +packetLen(0x0070, 3) // HC_REFUSE_DELETECHAR + +// Packet: 0x0071 +packetLen(0x0071, 28) // HC_NOTIFY_ZONESVR + +// Packet: 0x0072 +packetLen(0x0072, 22) // CZ_ENTER + +// Packet: 0x0073 +packetLen(0x0073, 11) // ZC_ACCEPT_ENTER + +// Packet: 0x0074 +packetLen(0x0074, 3) // ZC_REFUSE_ENTER + +// Packet: 0x0075 +packetLen(0x0075, -1) // ZC_NOTIFY_INITCHAR + +// Packet: 0x0076 +packetLen(0x0076, 9) // ZC_NOTIFY_UPDATECHAR + +// Packet: 0x0077 +packetLen(0x0077, 5) // ZC_NOTIFY_UPDATEPLAYER + +// Packet: 0x0078 +packetLen(0x0078, 55) // ZC_NOTIFY_STANDENTRY + +// Packet: 0x0079 +packetLen(0x0079, 53) // ZC_NOTIFY_NEWENTRY + +// Packet: 0x007a +packetLen(0x007a, 58) // ZC_NOTIFY_ACTENTRY + +// Packet: 0x007b +packetLen(0x007b, 60) // ZC_NOTIFY_MOVEENTRY + +// Packet: 0x007c +packetLen(0x007c, 44) // ZC_NOTIFY_STANDENTRY_NPC + +// Packet: 0x007d +packetLen(0x007d, 2) // CZ_NOTIFY_ACTORINIT + +// Packet: 0x007e +packetLen(0x007e, 105) // CZ_REQUEST_TIME + +// Packet: 0x007f +packetLen(0x007f, 6) // ZC_NOTIFY_TIME + +// Packet: 0x0080 +packetLen(0x0080, 7) // ZC_NOTIFY_VANISH + +// Packet: 0x0081 +packetLen(0x0081, 3) // SC_NOTIFY_BAN + +// Packet: 0x0082 +packetLen(0x0082, 2) // CZ_REQUEST_QUIT + +// Packet: 0x0083 +packetLen(0x0083, 2) // ZC_ACCEPT_QUIT + +// Packet: 0x0084 +packetLen(0x0084, 2) // ZC_REFUSE_QUIT + +// Packet: 0x0085 +packetLen(0x0085, 10) // CZ_REQUEST_MOVE + +// Packet: 0x0086 +packetLen(0x0086, 16) // ZC_NOTIFY_MOVE + +// Packet: 0x0087 +packetLen(0x0087, 12) // ZC_NOTIFY_PLAYERMOVE + +// Packet: 0x0088 +packetLen(0x0088, 10) // ZC_STOPMOVE + +// Packet: 0x0089 +packetLen(0x0089, 11) // CZ_REQUEST_ACT + +// Packet: 0x008a +packetLen(0x008a, 29) // ZC_NOTIFY_ACT + +// Packet: 0x008b +packetLen(0x008b, 23) // ZC_NOTIFY_ACT_POSITION + +// Packet: 0x008c +packetLen(0x008c, 14) + +// Packet: 0x008d +packetLen(0x008d, -1) // ZC_NOTIFY_CHAT + +// Packet: 0x008e +packetLen(0x008e, -1) // ZC_NOTIFY_PLAYERCHAT + +// Packet: 0x0090 +packetLen(0x0090, 7) // CZ_CONTACTNPC + +// Packet: 0x0091 +packetLen(0x0091, 22) // ZC_NPCACK_MAPMOVE + +// Packet: 0x0092 +packetLen(0x0092, 28) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0093 +packetLen(0x0093, 2) // ZC_NPCACK_ENABLE + +// Packet: 0x0094 +packetLen(0x0094, 19) // CZ_REQNAME + +// Packet: 0x0095 +packetLen(0x0095, 30) // ZC_ACK_REQNAME + +// Packet: 0x0096 +packetLen(0x0096, -1) // CZ_WHISPER + +// Packet: 0x0097 +packetLen(0x0097, -1) // ZC_WHISPER + +// Packet: 0x0098 +packetLen(0x0098, 3) // ZC_ACK_WHISPER + +// Packet: 0x0099 +packetLen(0x0099, -1) // CZ_BROADCAST + +// Packet: 0x009a +packetLen(0x009a, -1) // ZC_BROADCAST + +// Packet: 0x009b +packetLen(0x009b, 34) // CZ_CHANGE_DIRECTION + +// Packet: 0x009c +packetLen(0x009c, 9) // ZC_CHANGE_DIRECTION + +// Packet: 0x009d +#if PACKETVER >= 20181114 +packetLen(0x009d, 19) // ZC_ITEM_ENTRY +#elif PACKETVER >= 20180103 +packetLen(0x009d, 17) // ZC_ITEM_ENTRY +#endif + +// Packet: 0x009e +#if PACKETVER >= 20181114 +packetLen(0x009e, 19) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20180103 +packetLen(0x009e, 17) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x009f +packetLen(0x009f, 20) // CZ_ITEM_PICKUP + +// Packet: 0x00a0 +#if PACKETVER >= 20181114 +packetLen(0x00a0, 33) // ZC_ITEM_PICKUP_ACK +#elif PACKETVER >= 20180103 +packetLen(0x00a0, 23) // ZC_ITEM_PICKUP_ACK +#endif + +// Packet: 0x00a1 +packetLen(0x00a1, 6) // ZC_ITEM_DISAPPEAR + +// Packet: 0x00a2 +packetLen(0x00a2, 14) // CZ_ITEM_THROW + +// Packet: 0x00a3 +packetLen(0x00a3, -1) // ZC_NORMAL_ITEMLIST + +// Packet: 0x00a4 +packetLen(0x00a4, -1) // ZC_EQUIPMENT_ITEMLIST + +// Packet: 0x00a5 +packetLen(0x00a5, -1) // ZC_STORE_NORMAL_ITEMLIST + +// Packet: 0x00a6 +packetLen(0x00a6, -1) // ZC_STORE_EQUIPMENT_ITEMLIST + +// Packet: 0x00a7 +packetLen(0x00a7, 9) + +// Packet: 0x00a8 +packetLen(0x00a8, 7) // ZC_USE_ITEM_ACK + +// Packet: 0x00a9 +packetLen(0x00a9, 6) // CZ_REQ_WEAR_EQUIP + +// Packet: 0x00aa +packetLen(0x00aa, 9) // ZC_REQ_WEAR_EQUIP_ACK + +// Packet: 0x00ab +packetLen(0x00ab, 4) // CZ_REQ_TAKEOFF_EQUIP + +// Packet: 0x00ac +packetLen(0x00ac, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK + +// Packet: 0x00ae +packetLen(0x00ae, -1) // ZC_REQ_ITEM_EXPLANATION_ACK + +// Packet: 0x00af +packetLen(0x00af, 6) // ZC_ITEM_THROW_ACK + +// Packet: 0x00b0 +packetLen(0x00b0, 8) // ZC_PAR_CHANGE + +// Packet: 0x00b1 +packetLen(0x00b1, 8) // ZC_LONGPAR_CHANGE + +// Packet: 0x00b2 +packetLen(0x00b2, 3) // CZ_RESTART + +// Packet: 0x00b3 +packetLen(0x00b3, 3) // ZC_RESTART_ACK + +// Packet: 0x00b4 +packetLen(0x00b4, -1) // ZC_SAY_DIALOG + +// Packet: 0x00b5 +packetLen(0x00b5, 6) // ZC_WAIT_DIALOG + +// Packet: 0x00b6 +packetLen(0x00b6, 6) // ZC_CLOSE_DIALOG + +// Packet: 0x00b7 +packetLen(0x00b7, -1) // ZC_MENU_LIST + +// Packet: 0x00b8 +packetLen(0x00b8, 7) // CZ_CHOOSE_MENU + +// Packet: 0x00b9 +packetLen(0x00b9, 6) // CZ_REQ_NEXT_SCRIPT + +// Packet: 0x00ba +packetLen(0x00ba, 2) // CZ_REQ_STATUS + +// Packet: 0x00bb +packetLen(0x00bb, 5) // CZ_STATUS_CHANGE + +// Packet: 0x00bc +packetLen(0x00bc, 6) // ZC_STATUS_CHANGE_ACK + +// Packet: 0x00bd +packetLen(0x00bd, 44) // ZC_STATUS + +// Packet: 0x00be +packetLen(0x00be, 5) // ZC_STATUS_CHANGE + +// Packet: 0x00bf +packetLen(0x00bf, 3) // CZ_REQ_EMOTION + +// Packet: 0x00c0 +packetLen(0x00c0, 7) // ZC_EMOTION + +// Packet: 0x00c1 +packetLen(0x00c1, 2) // CZ_REQ_USER_COUNT + +// Packet: 0x00c2 +packetLen(0x00c2, 6) // ZC_USER_COUNT + +// Packet: 0x00c3 +packetLen(0x00c3, 8) // ZC_SPRITE_CHANGE + +// Packet: 0x00c4 +packetLen(0x00c4, 6) // ZC_SELECT_DEALTYPE + +// Packet: 0x00c5 +packetLen(0x00c5, 7) // CZ_ACK_SELECT_DEALTYPE + +// Packet: 0x00c6 +packetLen(0x00c6, -1) // ZC_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c7 +packetLen(0x00c7, -1) // ZC_PC_SELL_ITEMLIST + +// Packet: 0x00c8 +packetLen(0x00c8, -1) // CZ_PC_PURCHASE_ITEMLIST + +// Packet: 0x00c9 +packetLen(0x00c9, -1) // CZ_PC_SELL_ITEMLIST + +// Packet: 0x00ca +packetLen(0x00ca, 3) // ZC_PC_PURCHASE_RESULT + +// Packet: 0x00cb +packetLen(0x00cb, 3) // ZC_PC_SELL_RESULT + +// Packet: 0x00cc +packetLen(0x00cc, 6) // CZ_DISCONNECT_CHARACTER + +// Packet: 0x00cd +packetLen(0x00cd, 3) // ZC_ACK_DISCONNECT_CHARACTER + +// Packet: 0x00ce +packetLen(0x00ce, 2) // CZ_DISCONNECT_ALL_CHARACTER + +// Packet: 0x00cf +packetLen(0x00cf, 27) // CZ_SETTING_WHISPER_PC + +// Packet: 0x00d0 +packetLen(0x00d0, 3) // CZ_SETTING_WHISPER_STATE + +// Packet: 0x00d1 +packetLen(0x00d1, 4) // ZC_SETTING_WHISPER_PC + +// Packet: 0x00d2 +packetLen(0x00d2, 4) // ZC_SETTING_WHISPER_STATE + +// Packet: 0x00d3 +packetLen(0x00d3, 2) // CZ_REQ_WHISPER_LIST + +// Packet: 0x00d4 +packetLen(0x00d4, -1) // ZC_WHISPER_LIST + +// Packet: 0x00d5 +packetLen(0x00d5, -1) // CZ_CREATE_CHATROOM + +// Packet: 0x00d6 +packetLen(0x00d6, 3) // ZC_ACK_CREATE_CHATROOM + +// Packet: 0x00d7 +packetLen(0x00d7, -1) // ZC_ROOM_NEWENTRY + +// Packet: 0x00d8 +packetLen(0x00d8, 6) // ZC_DESTROY_ROOM + +// Packet: 0x00d9 +packetLen(0x00d9, 14) // CZ_REQ_ENTER_ROOM + +// Packet: 0x00da +packetLen(0x00da, 3) // ZC_REFUSE_ENTER_ROOM + +// Packet: 0x00db +packetLen(0x00db, -1) // ZC_ENTER_ROOM + +// Packet: 0x00dc +packetLen(0x00dc, 28) // ZC_MEMBER_NEWENTRY + +// Packet: 0x00dd +packetLen(0x00dd, 29) // ZC_MEMBER_EXIT + +// Packet: 0x00de +packetLen(0x00de, -1) // CZ_CHANGE_CHATROOM + +// Packet: 0x00df +packetLen(0x00df, -1) // ZC_CHANGE_CHATROOM + +// Packet: 0x00e0 +packetLen(0x00e0, 30) // CZ_REQ_ROLE_CHANGE + +// Packet: 0x00e1 +packetLen(0x00e1, 30) // ZC_ROLE_CHANGE + +// Packet: 0x00e2 +packetLen(0x00e2, 26) // CZ_REQ_EXPEL_MEMBER + +// Packet: 0x00e3 +packetLen(0x00e3, 2) // CZ_EXIT_ROOM + +// Packet: 0x00e4 +packetLen(0x00e4, 6) // CZ_REQ_EXCHANGE_ITEM + +// Packet: 0x00e5 +packetLen(0x00e5, 26) // ZC_REQ_EXCHANGE_ITEM + +// Packet: 0x00e6 +packetLen(0x00e6, 3) // CZ_ACK_EXCHANGE_ITEM + +// Packet: 0x00e7 +packetLen(0x00e7, 3) // ZC_ACK_EXCHANGE_ITEM + +// Packet: 0x00e8 +packetLen(0x00e8, 8) // CZ_ADD_EXCHANGE_ITEM + +// Packet: 0x00e9 +#if PACKETVER >= 20181114 +packetLen(0x00e9, 29) // ZC_ADD_EXCHANGE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x00e9, 19) // ZC_ADD_EXCHANGE_ITEM +#endif + +// Packet: 0x00ea +packetLen(0x00ea, 5) // ZC_ACK_ADD_EXCHANGE_ITEM + +// Packet: 0x00eb +packetLen(0x00eb, 2) // CZ_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ec +packetLen(0x00ec, 3) // ZC_CONCLUDE_EXCHANGE_ITEM + +// Packet: 0x00ed +packetLen(0x00ed, 2) // CZ_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ee +packetLen(0x00ee, 2) // ZC_CANCEL_EXCHANGE_ITEM + +// Packet: 0x00ef +packetLen(0x00ef, 2) // CZ_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f0 +packetLen(0x00f0, 3) // ZC_EXEC_EXCHANGE_ITEM + +// Packet: 0x00f1 +packetLen(0x00f1, 2) // ZC_EXCHANGEITEM_UNDO + +// Packet: 0x00f2 +packetLen(0x00f2, 6) // ZC_NOTIFY_STOREITEM_COUNTINFO + +// Packet: 0x00f3 +packetLen(0x00f3, -1) // CZ_REQUEST_CHAT + +// Packet: 0x00f4 +#if PACKETVER >= 20181114 +packetLen(0x00f4, 31) // ZC_ADD_ITEM_TO_STORE +#elif PACKETVER >= 20180103 +packetLen(0x00f4, 21) // ZC_ADD_ITEM_TO_STORE +#endif + +// Packet: 0x00f5 +packetLen(0x00f5, 11) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + +// Packet: 0x00f6 +packetLen(0x00f6, 8) // ZC_DELETE_ITEM_FROM_STORE + +// Packet: 0x00f7 +packetLen(0x00f7, 17) // CZ_REQUEST_TIME + +// Packet: 0x00f8 +packetLen(0x00f8, 2) // ZC_CLOSE_STORE + +// Packet: 0x00f9 +packetLen(0x00f9, 26) // CZ_MAKE_GROUP + +// Packet: 0x00fa +packetLen(0x00fa, 3) // ZC_ACK_MAKE_GROUP + +// Packet: 0x00fb +packetLen(0x00fb, -1) // ZC_GROUP_LIST + +// Packet: 0x00fc +packetLen(0x00fc, 6) // CZ_REQ_JOIN_GROUP + +// Packet: 0x00fd +packetLen(0x00fd, 27) // ZC_ACK_REQ_JOIN_GROUP + +// Packet: 0x00fe +packetLen(0x00fe, 30) // ZC_REQ_JOIN_GROUP + +// Packet: 0x00ff +packetLen(0x00ff, 10) // CZ_JOIN_GROUP + +// Packet: 0x0100 +packetLen(0x0100, 2) // CZ_REQ_LEAVE_GROUP + +// Packet: 0x0101 +packetLen(0x0101, 6) // ZC_GROUPINFO_CHANGE + +// Packet: 0x0102 +packetLen(0x0102, 6) // CZ_CHANGE_GROUPEXPOPTION + +// Packet: 0x0103 +packetLen(0x0103, 30) // CZ_REQ_EXPEL_GROUP_MEMBER + +// Packet: 0x0104 +packetLen(0x0104, 79) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0105 +packetLen(0x0105, 31) // ZC_DELETE_MEMBER_FROM_GROUP + +// Packet: 0x0106 +packetLen(0x0106, 10) // ZC_NOTIFY_HP_TO_GROUPM + +// Packet: 0x0107 +packetLen(0x0107, 10) // ZC_NOTIFY_POSITION_TO_GROUPM + +// Packet: 0x0108 +packetLen(0x0108, -1) // CZ_REQUEST_CHAT_PARTY + +// Packet: 0x0109 +packetLen(0x0109, -1) // ZC_NOTIFY_CHAT_PARTY + +// Packet: 0x010a +#if PACKETVER >= 20181114 +packetLen(0x010a, 6) // ZC_MVP_GETTING_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x010a, 4) // ZC_MVP_GETTING_ITEM +#endif + +// Packet: 0x010b +packetLen(0x010b, 6) // ZC_MVP_GETTING_SPECIAL_EXP + +// Packet: 0x010c +packetLen(0x010c, 6) // ZC_MVP + +// Packet: 0x010d +packetLen(0x010d, 2) // ZC_THROW_MVPITEM + +// Packet: 0x010e +packetLen(0x010e, 11) // ZC_SKILLINFO_UPDATE + +// Packet: 0x010f +packetLen(0x010f, -1) // ZC_SKILLINFO_LIST + +// Packet: 0x0110 +#if PACKETVER >= 20181114 +packetLen(0x0110, 14) // ZC_ACK_TOUSESKILL +#elif PACKETVER >= 20180103 +packetLen(0x0110, 10) // ZC_ACK_TOUSESKILL +#endif + +// Packet: 0x0111 +packetLen(0x0111, 39) // ZC_ADD_SKILL + +// Packet: 0x0112 +packetLen(0x0112, 4) // CZ_UPGRADE_SKILLLEVEL + +// Packet: 0x0113 +packetLen(0x0113, 25) // CZ_USE_SKILL + +// Packet: 0x0114 +packetLen(0x0114, 31) // ZC_NOTIFY_SKILL + +// Packet: 0x0115 +packetLen(0x0115, 35) // ZC_NOTIFY_SKILL_POSITION + +// Packet: 0x0116 +packetLen(0x0116, 17) // CZ_USE_SKILL_TOGROUND + +// Packet: 0x0117 +packetLen(0x0117, 18) // ZC_NOTIFY_GROUNDSKILL + +// Packet: 0x0118 +packetLen(0x0118, 2) // CZ_CANCEL_LOCKON + +// Packet: 0x0119 +packetLen(0x0119, 13) // ZC_STATE_CHANGE + +// Packet: 0x011a +packetLen(0x011a, 15) // ZC_USE_SKILL + +// Packet: 0x011b +packetLen(0x011b, 20) // CZ_SELECT_WARPPOINT + +// Packet: 0x011c +packetLen(0x011c, 68) // ZC_WARPLIST + +// Packet: 0x011d +packetLen(0x011d, 2) // CZ_REMEMBER_WARPPOINT + +// Packet: 0x011e +packetLen(0x011e, 3) // ZC_ACK_REMEMBER_WARPPOINT + +// Packet: 0x011f +packetLen(0x011f, 16) // ZC_SKILL_ENTRY + +// Packet: 0x0120 +packetLen(0x0120, 6) // ZC_SKILL_DISAPPEAR + +// Packet: 0x0121 +packetLen(0x0121, 14) // ZC_NOTIFY_CARTITEM_COUNTINFO + +// Packet: 0x0122 +packetLen(0x0122, -1) // ZC_CART_EQUIPMENT_ITEMLIST + +// Packet: 0x0123 +packetLen(0x0123, -1) // ZC_CART_NORMAL_ITEMLIST + +// Packet: 0x0124 +#if PACKETVER >= 20181114 +packetLen(0x0124, 31) // ZC_ADD_ITEM_TO_CART +#elif PACKETVER >= 20180103 +packetLen(0x0124, 21) // ZC_ADD_ITEM_TO_CART +#endif + +// Packet: 0x0125 +packetLen(0x0125, 8) // ZC_DELETE_ITEM_FROM_CART + +// Packet: 0x0126 +packetLen(0x0126, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_CART + +// Packet: 0x0127 +packetLen(0x0127, 8) // CZ_MOVE_ITEM_FROM_CART_TO_BODY + +// Packet: 0x0128 +packetLen(0x0128, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_CART + +// Packet: 0x0129 +packetLen(0x0129, 8) // CZ_MOVE_ITEM_FROM_CART_TO_STORE + +// Packet: 0x012a +packetLen(0x012a, 2) // CZ_REQ_CARTOFF + +// Packet: 0x012b +packetLen(0x012b, 2) // ZC_CARTOFF + +// Packet: 0x012c +packetLen(0x012c, 3) // ZC_ACK_ADDITEM_TO_CART + +// Packet: 0x012d +packetLen(0x012d, 4) // ZC_OPENSTORE + +// Packet: 0x012e +packetLen(0x012e, 2) // CZ_REQ_CLOSESTORE + +// Packet: 0x012f +packetLen(0x012f, -1) // CZ_REQ_OPENSTORE + +// Packet: 0x0130 +packetLen(0x0130, 6) // CZ_REQ_BUY_FROMMC + +// Packet: 0x0131 +packetLen(0x0131, 86) // ZC_STORE_ENTRY + +// Packet: 0x0132 +packetLen(0x0132, 6) // ZC_DISAPPEAR_ENTRY + +// Packet: 0x0133 +packetLen(0x0133, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0134 +packetLen(0x0134, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC + +// Packet: 0x0135 +packetLen(0x0135, 7) // ZC_PC_PURCHASE_RESULT_FROMMC + +// Packet: 0x0136 +packetLen(0x0136, -1) // ZC_PC_PURCHASE_MYITEMLIST + +// Packet: 0x0137 +packetLen(0x0137, 6) // ZC_DELETEITEM_FROM_MCSTORE + +// Packet: 0x0138 +packetLen(0x0138, 3) // CZ_PKMODE_CHANGE + +// Packet: 0x0139 +packetLen(0x0139, 16) // ZC_ATTACK_FAILURE_FOR_DISTANCE + +// Packet: 0x013a +packetLen(0x013a, 4) // ZC_ATTACK_RANGE + +// Packet: 0x013b +packetLen(0x013b, 4) // ZC_ACTION_FAILURE + +// Packet: 0x013c +packetLen(0x013c, 4) // ZC_EQUIP_ARROW + +// Packet: 0x013d +packetLen(0x013d, 6) // ZC_RECOVERY + +// Packet: 0x013e +packetLen(0x013e, 24) // ZC_USESKILL_ACK + +// Packet: 0x013f +packetLen(0x013f, 26) // CZ_ITEM_CREATE + +// Packet: 0x0140 +packetLen(0x0140, 22) // CZ_MOVETO_MAP + +// Packet: 0x0141 +packetLen(0x0141, 14) // ZC_COUPLESTATUS + +// Packet: 0x0142 +packetLen(0x0142, 6) // ZC_OPEN_EDITDLG + +// Packet: 0x0143 +packetLen(0x0143, 10) // CZ_INPUT_EDITDLG + +// Packet: 0x0144 +packetLen(0x0144, 23) // ZC_COMPASS + +// Packet: 0x0145 +packetLen(0x0145, 19) // ZC_SHOW_IMAGE + +// Packet: 0x0146 +packetLen(0x0146, 6) // CZ_CLOSE_DIALOG + +// Packet: 0x0147 +packetLen(0x0147, 39) // ZC_AUTORUN_SKILL + +// Packet: 0x0148 +packetLen(0x0148, 8) // ZC_RESURRECTION + +// Packet: 0x0149 +packetLen(0x0149, 9) // CZ_REQ_GIVE_MANNER_POINT + +// Packet: 0x014a +packetLen(0x014a, 6) // ZC_ACK_GIVE_MANNER_POINT + +// Packet: 0x014b +packetLen(0x014b, 27) // ZC_NOTIFY_MANNER_POINT_GIVEN + +// Packet: 0x014c +packetLen(0x014c, -1) // ZC_MYGUILD_BASIC_INFO + +// Packet: 0x014d +packetLen(0x014d, 2) // CZ_REQ_GUILD_MENUINTERFACE + +// Packet: 0x014e +packetLen(0x014e, 6) // ZC_ACK_GUILD_MENUINTERFACE + +// Packet: 0x014f +packetLen(0x014f, 6) // CZ_REQ_GUILD_MENU + +// Packet: 0x0150 +packetLen(0x0150, 110) // ZC_GUILD_INFO + +// Packet: 0x0151 +packetLen(0x0151, 6) // CZ_REQ_GUILD_EMBLEM_IMG + +// Packet: 0x0152 +packetLen(0x0152, -1) // ZC_GUILD_EMBLEM_IMG + +// Packet: 0x0153 +packetLen(0x0153, -1) // CZ_REGISTER_GUILD_EMBLEM_IMG + +// Packet: 0x0154 +packetLen(0x0154, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0155 +packetLen(0x0155, -1) // CZ_REQ_CHANGE_MEMBERPOS + +// Packet: 0x0156 +packetLen(0x0156, -1) // ZC_ACK_REQ_CHANGE_MEMBERS + +// Packet: 0x0157 +packetLen(0x0157, 6) // CZ_REQ_OPEN_MEMBER_INFO + +// Packet: 0x0159 +packetLen(0x0159, 54) // CZ_REQ_LEAVE_GUILD + +// Packet: 0x015a +packetLen(0x015a, 66) // ZC_ACK_LEAVE_GUILD + +// Packet: 0x015b +packetLen(0x015b, 54) // CZ_REQ_BAN_GUILD + +// Packet: 0x015c +packetLen(0x015c, 90) // ZC_ACK_BAN_GUILD + +// Packet: 0x015d +packetLen(0x015d, 42) // CZ_REQ_DISORGANIZE_GUILD + +// Packet: 0x015e +packetLen(0x015e, 6) // ZC_ACK_DISORGANIZE_GUILD_RESULT + +// Packet: 0x015f +packetLen(0x015f, 42) // ZC_ACK_DISORGANIZE_GUILD + +// Packet: 0x0160 +packetLen(0x0160, -1) // ZC_POSITION_INFO + +// Packet: 0x0161 +packetLen(0x0161, -1) // CZ_REG_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0162 +packetLen(0x0162, -1) // ZC_GUILD_SKILLINFO + +// Packet: 0x0163 +packetLen(0x0163, -1) // ZC_BAN_LIST + +// Packet: 0x0164 +packetLen(0x0164, -1) // ZC_OTHER_GUILD_LIST + +// Packet: 0x0165 +packetLen(0x0165, 30) // CZ_REQ_MAKE_GUILD + +// Packet: 0x0166 +packetLen(0x0166, -1) // ZC_POSITION_ID_NAME_INFO + +// Packet: 0x0167 +packetLen(0x0167, 3) // ZC_RESULT_MAKE_GUILD + +// Packet: 0x0168 +packetLen(0x0168, 14) // CZ_REQ_JOIN_GUILD + +// Packet: 0x0169 +packetLen(0x0169, 3) // ZC_ACK_REQ_JOIN_GUILD + +// Packet: 0x016a +packetLen(0x016a, 30) // ZC_REQ_JOIN_GUILD + +// Packet: 0x016b +packetLen(0x016b, 10) // CZ_JOIN_GUILD + +// Packet: 0x016c +packetLen(0x016c, 43) // ZC_UPDATE_GDID + +// Packet: 0x016d +packetLen(0x016d, 14) // ZC_UPDATE_CHARSTAT + +// Packet: 0x016e +packetLen(0x016e, 186) // CZ_GUILD_NOTICE + +// Packet: 0x016f +packetLen(0x016f, 182) // ZC_GUILD_NOTICE + +// Packet: 0x0170 +packetLen(0x0170, 14) // CZ_REQ_ALLY_GUILD + +// Packet: 0x0171 +packetLen(0x0171, 30) // ZC_REQ_ALLY_GUILD + +// Packet: 0x0172 +packetLen(0x0172, 10) // CZ_ALLY_GUILD + +// Packet: 0x0173 +packetLen(0x0173, 3) // ZC_ACK_REQ_ALLY_GUILD + +// Packet: 0x0174 +packetLen(0x0174, -1) // ZC_ACK_CHANGE_GUILD_POSITIONINFO + +// Packet: 0x0175 +packetLen(0x0175, 6) // CZ_REQ_GUILD_MEMBER_INFO + +// Packet: 0x0176 +packetLen(0x0176, 106) // ZC_ACK_GUILD_MEMBER_INFO + +// Packet: 0x0177 +packetLen(0x0177, -1) // ZC_ITEMIDENTIFY_LIST + +// Packet: 0x0178 +packetLen(0x0178, 4) // CZ_REQ_ITEMIDENTIFY + +// Packet: 0x0179 +packetLen(0x0179, 5) // ZC_ACK_ITEMIDENTIFY + +// Packet: 0x017a +packetLen(0x017a, 4) // CZ_REQ_ITEMCOMPOSITION_LIST + +// Packet: 0x017b +packetLen(0x017b, -1) // ZC_ITEMCOMPOSITION_LIST + +// Packet: 0x017c +packetLen(0x017c, 6) // CZ_REQ_ITEMCOMPOSITION + +// Packet: 0x017d +packetLen(0x017d, 7) // ZC_ACK_ITEMCOMPOSITION + +// Packet: 0x017e +packetLen(0x017e, -1) // CZ_GUILD_CHAT + +// Packet: 0x017f +packetLen(0x017f, -1) // ZC_GUILD_CHAT + +// Packet: 0x0180 +packetLen(0x0180, 6) // CZ_REQ_HOSTILE_GUILD + +// Packet: 0x0181 +packetLen(0x0181, 3) // ZC_ACK_REQ_HOSTILE_GUILD + +// Packet: 0x0182 +packetLen(0x0182, 106) // ZC_MEMBER_ADD + +// Packet: 0x0183 +packetLen(0x0183, 10) // CZ_REQ_DELETE_RELATED_GUILD + +// Packet: 0x0184 +packetLen(0x0184, 10) // ZC_DELETE_RELATED_GUILD + +// Packet: 0x0185 +packetLen(0x0185, 34) // ZC_ADD_RELATED_GUILD + +// Packet: 0x0187 +packetLen(0x0187, 6) // CH_UNKNOWN_PING + +// Packet: 0x0188 +packetLen(0x0188, 8) // ZC_ACK_ITEMREFINING + +// Packet: 0x0189 +packetLen(0x0189, 4) // ZC_NOTIFY_MAPINFO + +// Packet: 0x018a +packetLen(0x018a, 4) // CZ_REQ_DISCONNECT + +// Packet: 0x018b +packetLen(0x018b, 4) // ZC_ACK_REQ_DISCONNECT + +// Packet: 0x018c +packetLen(0x018c, 29) // ZC_MONSTER_INFO + +// Packet: 0x018d +packetLen(0x018d, -1) // ZC_MAKABLEITEMLIST + +// Packet: 0x018e +#if PACKETVER >= 20181114 +packetLen(0x018e, 18) // CZ_REQMAKINGITEM +#elif PACKETVER >= 20180103 +packetLen(0x018e, 10) // CZ_REQMAKINGITEM +#endif + +// Packet: 0x018f +#if PACKETVER >= 20181114 +packetLen(0x018f, 8) // ZC_ACK_REQMAKINGITEM +#elif PACKETVER >= 20180103 +packetLen(0x018f, 6) // ZC_ACK_REQMAKINGITEM +#endif + +// Packet: 0x0190 +packetLen(0x0190, 23) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + +// Packet: 0x0191 +packetLen(0x0191, 86) // ZC_TALKBOX_CHATCONTENTS + +// Packet: 0x0192 +packetLen(0x0192, 24) // ZC_UPDATE_MAPINFO + +// Packet: 0x0193 +packetLen(0x0193, 2) // CZ_REQNAME_BYGID + +// Packet: 0x0194 +packetLen(0x0194, 30) // ZC_ACK_REQNAME_BYGID + +// Packet: 0x0195 +packetLen(0x0195, 102) // ZC_ACK_REQNAMEALL + +// Packet: 0x0196 +packetLen(0x0196, 9) // ZC_MSG_STATE_CHANGE + +// Packet: 0x0197 +packetLen(0x0197, 4) // CZ_RESET + +// Packet: 0x0198 +packetLen(0x0198, 8) // CZ_CHANGE_MAPTYPE + +// Packet: 0x0199 +packetLen(0x0199, 4) // ZC_NOTIFY_MAPPROPERTY + +// Packet: 0x019a +packetLen(0x019a, 14) // ZC_NOTIFY_RANKING + +// Packet: 0x019b +packetLen(0x019b, 10) // ZC_NOTIFY_EFFECT + +// Packet: 0x019c +packetLen(0x019c, -1) // CZ_LOCALBROADCAST + +// Packet: 0x019d +packetLen(0x019d, 6) // CZ_CHANGE_EFFECTSTATE + +// Packet: 0x019e +packetLen(0x019e, 2) // ZC_START_CAPTURE + +// Packet: 0x019f +packetLen(0x019f, 6) // CZ_TRYCAPTURE_MONSTER + +// Packet: 0x01a0 +packetLen(0x01a0, 3) // ZC_TRYCAPTURE_MONSTER + +// Packet: 0x01a1 +packetLen(0x01a1, 3) // CZ_COMMAND_PET + +// Packet: 0x01a2 +packetLen(0x01a2, 37) // ZC_PROPERTY_PET + +// Packet: 0x01a3 +#if PACKETVER >= 20181114 +packetLen(0x01a3, 7) // ZC_FEED_PET +#elif PACKETVER >= 20180103 +packetLen(0x01a3, 5) // ZC_FEED_PET +#endif + +// Packet: 0x01a4 +packetLen(0x01a4, 11) // ZC_CHANGESTATE_PET + +// Packet: 0x01a5 +packetLen(0x01a5, 26) // CZ_RENAME_PET + +// Packet: 0x01a6 +packetLen(0x01a6, -1) // ZC_PETEGG_LIST + +// Packet: 0x01a7 +packetLen(0x01a7, 4) // CZ_SELECT_PETEGG + +// Packet: 0x01a8 +packetLen(0x01a8, 4) // CZ_PETEGG_INFO + +// Packet: 0x01a9 +packetLen(0x01a9, 6) // CZ_PET_ACT + +// Packet: 0x01aa +packetLen(0x01aa, 10) // ZC_PET_ACT + +// Packet: 0x01ab +packetLen(0x01ab, 12) // ZC_PAR_CHANGE_USER + +// Packet: 0x01ac +packetLen(0x01ac, 6) // ZC_SKILL_UPDATE + +// Packet: 0x01ad +packetLen(0x01ad, -1) // ZC_MAKINGARROW_LIST + +// Packet: 0x01ae +#if PACKETVER >= 20181114 +packetLen(0x01ae, 6) // CZ_REQ_MAKINGARROW +#elif PACKETVER >= 20180103 +packetLen(0x01ae, 4) // CZ_REQ_MAKINGARROW +#endif + +// Packet: 0x01af +packetLen(0x01af, 4) // CZ_REQ_CHANGECART + +// Packet: 0x01b0 +packetLen(0x01b0, 11) // ZC_NPCSPRITE_CHANGE + +// Packet: 0x01b1 +packetLen(0x01b1, 7) // ZC_SHOWDIGIT + +// Packet: 0x01b2 +packetLen(0x01b2, -1) // CZ_REQ_OPENSTORE2 + +// Packet: 0x01b3 +packetLen(0x01b3, 67) // ZC_SHOW_IMAGE2 + +// Packet: 0x01b4 +packetLen(0x01b4, 12) // ZC_CHANGE_GUILD + +// Packet: 0x01b5 +packetLen(0x01b5, 18) // SC_BILLING_INFO + +// Packet: 0x01b6 +packetLen(0x01b6, 114) // ZC_GUILD_INFO2 + +// Packet: 0x01b7 +packetLen(0x01b7, 6) // CZ_GUILD_ZENY + +// Packet: 0x01b8 +packetLen(0x01b8, 3) // ZC_GUILD_ZENY_ACK + +// Packet: 0x01b9 +packetLen(0x01b9, 6) // ZC_DISPEL + +// Packet: 0x01ba +packetLen(0x01ba, 26) // CZ_REMOVE_AID + +// Packet: 0x01bb +packetLen(0x01bb, 26) // CZ_SHIFT + +// Packet: 0x01bc +packetLen(0x01bc, 26) // CZ_RECALL + +// Packet: 0x01bd +packetLen(0x01bd, 26) // CZ_RECALL_GID + +// Packet: 0x01be +packetLen(0x01be, 2) // AC_ASK_PNGAMEROOM + +// Packet: 0x01bf +packetLen(0x01bf, 3) // CA_REPLY_PNGAMEROOM + +// Packet: 0x01c0 +packetLen(0x01c0, 2) // CZ_REQ_REMAINTIME + +// Packet: 0x01c1 +packetLen(0x01c1, 14) // ZC_REPLY_REMAINTIME + +// Packet: 0x01c2 +packetLen(0x01c2, 10) // ZC_INFO_REMAINTIME + +// Packet: 0x01c3 +packetLen(0x01c3, -1) // ZC_BROADCAST2 + +// Packet: 0x01c4 +#if PACKETVER >= 20181114 +packetLen(0x01c4, 32) // ZC_ADD_ITEM_TO_STORE2 +#elif PACKETVER >= 20180103 +packetLen(0x01c4, 22) // ZC_ADD_ITEM_TO_STORE2 +#endif + +// Packet: 0x01c5 +#if PACKETVER >= 20181114 +packetLen(0x01c5, 32) // ZC_ADD_ITEM_TO_CART2 +#elif PACKETVER >= 20180103 +packetLen(0x01c5, 22) // ZC_ADD_ITEM_TO_CART2 +#endif + +// Packet: 0x01c6 +packetLen(0x01c6, 4) // CS_REQ_ENCRYPTION + +// Packet: 0x01c7 +packetLen(0x01c7, 2) // SC_ACK_ENCRYPTION + +// Packet: 0x01c8 +#if PACKETVER >= 20181114 +packetLen(0x01c8, 15) // ZC_USE_ITEM_ACK2 +#elif PACKETVER >= 20180103 +packetLen(0x01c8, 13) // ZC_USE_ITEM_ACK2 +#endif + +// Packet: 0x01c9 +packetLen(0x01c9, 97) // ZC_SKILL_ENTRY2 + +// Packet: 0x01ca +packetLen(0x01ca, 3) // CZ_REQMAKINGHOMUN + +// Packet: 0x01cb +packetLen(0x01cb, 9) // CZ_MONSTER_TALK + +// Packet: 0x01cc +packetLen(0x01cc, 9) // ZC_MONSTER_TALK + +// Packet: 0x01cd +packetLen(0x01cd, 30) // ZC_AUTOSPELLLIST + +// Packet: 0x01ce +packetLen(0x01ce, 6) // CZ_SELECTAUTOSPELL + +// Packet: 0x01cf +packetLen(0x01cf, 28) // ZC_DEVOTIONLIST + +// Packet: 0x01d0 +packetLen(0x01d0, 8) // ZC_SPIRITS + +// Packet: 0x01d1 +packetLen(0x01d1, 14) // ZC_BLADESTOP + +// Packet: 0x01d2 +packetLen(0x01d2, 10) // ZC_COMBODELAY + +// Packet: 0x01d3 +packetLen(0x01d3, 35) // ZC_SOUND + +// Packet: 0x01d4 +packetLen(0x01d4, 6) // ZC_OPEN_EDITDLGSTR + +// Packet: 0x01d5 +packetLen(0x01d5, -1) // CZ_INPUT_EDITDLGSTR + +// Packet: 0x01d6 +packetLen(0x01d6, 4) // ZC_NOTIFY_MAPPROPERTY2 + +// Packet: 0x01d7 +#if PACKETVER >= 20181114 +packetLen(0x01d7, 15) // ZC_SPRITE_CHANGE2 +#elif PACKETVER >= 20180103 +packetLen(0x01d7, 11) // ZC_SPRITE_CHANGE2 +#endif + +// Packet: 0x01d8 +#if PACKETVER >= 20181114 +packetLen(0x01d8, 58) // ZC_NOTIFY_STANDENTRY2 +#elif PACKETVER >= 20180103 +packetLen(0x01d8, 54) // ZC_NOTIFY_STANDENTRY2 +#endif + +// Packet: 0x01d9 +#if PACKETVER >= 20181114 +packetLen(0x01d9, 57) // ZC_NOTIFY_NEWENTRY2 +#elif PACKETVER >= 20180103 +packetLen(0x01d9, 53) // ZC_NOTIFY_NEWENTRY2 +#endif + +// Packet: 0x01da +#if PACKETVER >= 20181114 +packetLen(0x01da, 64) // ZC_NOTIFY_MOVEENTRY2 +#elif PACKETVER >= 20180103 +packetLen(0x01da, 60) // ZC_NOTIFY_MOVEENTRY2 +#endif + +// Packet: 0x01db +packetLen(0x01db, 2) // CA_REQ_HASH + +// Packet: 0x01dc +packetLen(0x01dc, -1) // AC_ACK_HASH + +// Packet: 0x01dd +packetLen(0x01dd, 47) // CA_LOGIN2 + +// Packet: 0x01de +packetLen(0x01de, 33) // ZC_NOTIFY_SKILL2 + +// Packet: 0x01df +packetLen(0x01df, 6) // CZ_REQ_ACCOUNTNAME + +// Packet: 0x01e0 +packetLen(0x01e0, 30) // ZC_ACK_ACCOUNTNAME + +// Packet: 0x01e1 +packetLen(0x01e1, 8) // ZC_SPIRITS2 + +// Packet: 0x01e2 +packetLen(0x01e2, 34) // ZC_REQ_COUPLE + +// Packet: 0x01e3 +packetLen(0x01e3, 14) // CZ_JOIN_COUPLE + +// Packet: 0x01e4 +packetLen(0x01e4, 2) // ZC_START_COUPLE + +// Packet: 0x01e5 +packetLen(0x01e5, 6) // CZ_REQ_JOIN_COUPLE + +// Packet: 0x01e6 +packetLen(0x01e6, 26) // ZC_COUPLENAME + +// Packet: 0x01e7 +packetLen(0x01e7, 2) // CZ_DORIDORI + +// Packet: 0x01e8 +packetLen(0x01e8, 28) // CZ_MAKE_GROUP2 + +// Packet: 0x01e9 +packetLen(0x01e9, 81) // ZC_ADD_MEMBER_TO_GROUP2 + +// Packet: 0x01ea +packetLen(0x01ea, 6) // ZC_CONGRATULATION + +// Packet: 0x01eb +packetLen(0x01eb, 10) // ZC_NOTIFY_POSITION_TO_GUILDM + +// Packet: 0x01ec +packetLen(0x01ec, 26) // ZC_GUILD_MEMBER_MAP_CHANGE + +// Packet: 0x01ed +packetLen(0x01ed, 2) // CZ_CHOPOKGI + +// Packet: 0x01ee +packetLen(0x01ee, -1) // ZC_NORMAL_ITEMLIST2 + +// Packet: 0x01ef +packetLen(0x01ef, -1) // ZC_CART_NORMAL_ITEMLIST2 + +// Packet: 0x01f0 +packetLen(0x01f0, -1) // ZC_STORE_NORMAL_ITEMLIST2 + +// Packet: 0x01f1 +packetLen(0x01f1, -1) // AC_NOTIFY_ERROR + +// Packet: 0x01f2 +packetLen(0x01f2, 20) // ZC_UPDATE_CHARSTAT2 + +// Packet: 0x01f3 +packetLen(0x01f3, 10) // ZC_NOTIFY_EFFECT2 + +// Packet: 0x01f4 +packetLen(0x01f4, 32) // ZC_REQ_EXCHANGE_ITEM2 + +// Packet: 0x01f5 +packetLen(0x01f5, 9) // ZC_ACK_EXCHANGE_ITEM2 + +// Packet: 0x01f6 +packetLen(0x01f6, 34) // ZC_REQ_BABY + +// Packet: 0x01f7 +packetLen(0x01f7, 14) // CZ_JOIN_BABY + +// Packet: 0x01f8 +packetLen(0x01f8, 2) // ZC_START_BABY + +// Packet: 0x01f9 +packetLen(0x01f9, 6) // CZ_REQ_JOIN_BABY + +// Packet: 0x01fa +packetLen(0x01fa, 48) // CA_LOGIN3 + +// Packet: 0x01fb +packetLen(0x01fb, 56) // CH_DELETE_CHAR2 + +// Packet: 0x01fc +packetLen(0x01fc, -1) // ZC_REPAIRITEMLIST + +// Packet: 0x01fd +#if PACKETVER >= 20181114 +packetLen(0x01fd, 25) // CZ_REQ_ITEMREPAIR +#elif PACKETVER >= 20180103 +packetLen(0x01fd, 15) // CZ_REQ_ITEMREPAIR +#endif + +// Packet: 0x01fe +packetLen(0x01fe, 5) // ZC_ACK_ITEMREPAIR + +// Packet: 0x01ff +packetLen(0x01ff, 10) // ZC_HIGHJUMP + +// Packet: 0x0200 +packetLen(0x0200, 26) // CA_CONNECT_INFO_CHANGED + +// Packet: 0x0201 +packetLen(0x0201, -1) // ZC_FRIENDS_LIST + +// Packet: 0x0202 +#if PACKETVER >= 20180523 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180511 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180315 +packetLen(0x0202, 26) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180314 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180228 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180213 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180131 +packetLen(0x0202, 5) // CZ_ADD_FRIENDS +#elif PACKETVER >= 20180103 +packetLen(0x0202, 2) // CZ_ADD_FRIENDS +#endif + +// Packet: 0x0203 +packetLen(0x0203, 10) // CZ_DELETE_FRIENDS + +// Packet: 0x0204 +packetLen(0x0204, 18) // CA_EXE_HASHCHECK + +// Packet: 0x0205 +packetLen(0x0205, 26) // ZC_DIVORCE + +// Packet: 0x0206 +#if PACKETVER >= 20180328 +packetLen(0x0206, 35) // ZC_FRIENDS_STATE +#elif PACKETVER >= 20180103 +packetLen(0x0206, 11) // ZC_FRIENDS_STATE +#endif + +// Packet: 0x0207 +packetLen(0x0207, 34) // ZC_REQ_ADD_FRIENDS + +// Packet: 0x0208 +packetLen(0x0208, 14) // CZ_ACK_REQ_ADD_FRIENDS + +// Packet: 0x0209 +packetLen(0x0209, 36) // ZC_ADD_FRIENDS_LIST + +// Packet: 0x020a +packetLen(0x020a, 10) // ZC_DELETE_FRIENDS + +// Packet: 0x020d +packetLen(0x020d, -1) // HC_BLOCK_CHARACTER + +// Packet: 0x020e +packetLen(0x020e, 32) // ZC_STARSKILL + +// Packet: 0x0212 +packetLen(0x0212, 26) // CZ_REQ_GIVE_MANNER_BYNAME + +// Packet: 0x0213 +packetLen(0x0213, 26) // CZ_REQ_STATUS_GM + +// Packet: 0x0214 +packetLen(0x0214, 42) // ZC_ACK_STATUS_GM + +// Packet: 0x0215 +packetLen(0x0215, 6) // ZC_SKILLMSG + +// Packet: 0x0216 +packetLen(0x0216, 6) // ZC_BABYMSG + +// Packet: 0x0217 +packetLen(0x0217, 2) // CZ_BLACKSMITH_RANK + +// Packet: 0x0218 +packetLen(0x0218, 2) // CZ_ALCHEMIST_RANK + +// Packet: 0x0219 +packetLen(0x0219, 282) // ZC_BLACKSMITH_RANK + +// Packet: 0x021a +packetLen(0x021a, 282) // ZC_ALCHEMIST_RANK + +// Packet: 0x021b +packetLen(0x021b, 10) // ZC_BLACKSMITH_POINT + +// Packet: 0x021c +packetLen(0x021c, 10) // ZC_ALCHEMIST_POINT + +// Packet: 0x021d +packetLen(0x021d, 6) // CZ_LESSEFFECT + +// Packet: 0x021e +packetLen(0x021e, 6) // ZC_LESSEFFECT + +// Packet: 0x021f +packetLen(0x021f, 66) // ZC_NOTIFY_PKINFO + +// Packet: 0x0220 +packetLen(0x0220, 10) // ZC_NOTIFY_CRAZYKILLER + +// Packet: 0x0221 +packetLen(0x0221, -1) // ZC_NOTIFY_WEAPONITEMLIST + +// Packet: 0x0222 +packetLen(0x0222, 6) // CZ_REQ_WEAPONREFINE + +// Packet: 0x0223 +#if PACKETVER >= 20181114 +packetLen(0x0223, 10) // ZC_ACK_WEAPONREFINE +#elif PACKETVER >= 20180103 +packetLen(0x0223, 8) // ZC_ACK_WEAPONREFINE +#endif + +// Packet: 0x0224 +packetLen(0x0224, 10) // ZC_TAEKWON_POINT + +// Packet: 0x0225 +packetLen(0x0225, 2) // CZ_TAEKWON_RANK + +// Packet: 0x0226 +packetLen(0x0226, 282) // ZC_TAEKWON_RANK + +// Packet: 0x0227 +packetLen(0x0227, 18) // ZC_GAME_GUARD + +// Packet: 0x0228 +packetLen(0x0228, 18) // CZ_ACK_GAME_GUARD + +// Packet: 0x0229 +packetLen(0x0229, 15) // ZC_STATE_CHANGE3 + +// Packet: 0x022a +#if PACKETVER >= 20181114 +packetLen(0x022a, 62) // ZC_NOTIFY_STANDENTRY3 +#elif PACKETVER >= 20180103 +packetLen(0x022a, 58) // ZC_NOTIFY_STANDENTRY3 +#endif + +// Packet: 0x022b +#if PACKETVER >= 20181114 +packetLen(0x022b, 61) // ZC_NOTIFY_NEWENTRY3 +#elif PACKETVER >= 20180103 +packetLen(0x022b, 57) // ZC_NOTIFY_NEWENTRY3 +#endif + +// Packet: 0x022c +#if PACKETVER >= 20181114 +packetLen(0x022c, 69) // ZC_NOTIFY_MOVEENTRY3 +#elif PACKETVER >= 20180103 +packetLen(0x022c, 65) // ZC_NOTIFY_MOVEENTRY3 +#endif + +// Packet: 0x022d +#if PACKETVER >= 20180523 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20180511 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20180315 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20180314 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20180228 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20180221 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#elif PACKETVER >= 20180213 +packetLen(0x022d, 5) // CZ_COMMAND_MER +#elif PACKETVER >= 20180131 +packetLen(0x022d, 19) // CZ_COMMAND_MER +#elif PACKETVER >= 20180103 +packetLen(0x022d, 2) // CZ_COMMAND_MER +#endif + +// Packet: 0x022e +#if PACKETVER >= 20181114 +packetLen(0x022e, 73) // ZC_PROPERTY_HOMUN +#elif PACKETVER >= 20180103 +packetLen(0x022e, 71) // ZC_PROPERTY_HOMUN +#endif + +// Packet: 0x022f +#if PACKETVER >= 20181114 +packetLen(0x022f, 7) // ZC_FEED_MER +#elif PACKETVER >= 20180103 +packetLen(0x022f, 5) // ZC_FEED_MER +#endif + +// Packet: 0x0230 +packetLen(0x0230, 12) // ZC_CHANGESTATE_MER + +// Packet: 0x0231 +packetLen(0x0231, 26) // CZ_RENAME_MER + +// Packet: 0x0232 +packetLen(0x0232, 9) // CZ_REQUEST_MOVENPC + +// Packet: 0x0233 +packetLen(0x0233, 11) // CZ_REQUEST_ACTNPC + +// Packet: 0x0234 +packetLen(0x0234, 6) // CZ_REQUEST_MOVETOOWNER + +// Packet: 0x0235 +packetLen(0x0235, -1) // ZC_HOSKILLINFO_LIST + +// Packet: 0x0236 +packetLen(0x0236, 10) // ZC_KILLER_POINT + +// Packet: 0x0237 +packetLen(0x0237, 2) // CZ_KILLER_RANK + +// Packet: 0x0238 +packetLen(0x0238, 282) // ZC_KILLER_RANK + +// Packet: 0x0239 +packetLen(0x0239, 11) // ZC_HOSKILLINFO_UPDATE + +// Packet: 0x023a +packetLen(0x023a, 4) // ZC_REQ_STORE_PASSWORD + +// Packet: 0x023b +#if PACKETVER >= 20180523 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180511 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180315 +packetLen(0x023b, 36) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180228 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180213 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180131 +packetLen(0x023b, 26) // CZ_ACK_STORE_PASSWORD +#elif PACKETVER >= 20180103 +packetLen(0x023b, 2) // CZ_ACK_STORE_PASSWORD +#endif + +// Packet: 0x023c +packetLen(0x023c, 6) // ZC_RESULT_STORE_PASSWORD + +// Packet: 0x023d +packetLen(0x023d, 6) // AC_EVENT_RESULT + +// Packet: 0x023e +packetLen(0x023e, 8) // HC_REQUEST_CHARACTER_PASSWORD + +// Packet: 0x023f +packetLen(0x023f, 2) // CZ_MAIL_GET_LIST + +// Packet: 0x0240 +packetLen(0x0240, -1) // ZC_MAIL_REQ_GET_LIST + +// Packet: 0x0241 +packetLen(0x0241, 6) // CZ_MAIL_OPEN + +// Packet: 0x0242 +packetLen(0x0242, -1) // ZC_MAIL_REQ_OPEN + +// Packet: 0x0243 +packetLen(0x0243, 6) // CZ_MAIL_DELETE + +// Packet: 0x0244 +packetLen(0x0244, 6) // CZ_MAIL_GET_ITEM + +// Packet: 0x0245 +packetLen(0x0245, 3) // ZC_MAIL_REQ_GET_ITEM + +// Packet: 0x0246 +packetLen(0x0246, 4) // CZ_MAIL_RESET_ITEM + +// Packet: 0x0247 +packetLen(0x0247, 8) // CZ_MAIL_ADD_ITEM + +// Packet: 0x0248 +packetLen(0x0248, -1) // CZ_MAIL_SEND + +// Packet: 0x0249 +packetLen(0x0249, 3) // ZC_MAIL_REQ_SEND + +// Packet: 0x024a +packetLen(0x024a, 70) // ZC_MAIL_RECEIVE + +// Packet: 0x024b +packetLen(0x024b, 4) // CZ_AUCTION_CREATE + +// Packet: 0x024c +packetLen(0x024c, 8) // CZ_AUCTION_ADD_ITEM + +// Packet: 0x024d +packetLen(0x024d, 12) // CZ_AUCTION_ADD + +// Packet: 0x024e +packetLen(0x024e, 6) // CZ_AUCTION_ADD_CANCEL + +// Packet: 0x024f +packetLen(0x024f, 10) // CZ_AUCTION_BUY + +// Packet: 0x0250 +packetLen(0x0250, 3) // ZC_AUCTION_RESULT + +// Packet: 0x0251 +packetLen(0x0251, 34) // CZ_AUCTION_ITEM_SEARCH + +// Packet: 0x0252 +packetLen(0x0252, -1) // ZC_AUCTION_ITEM_REQ_SEARCH + +// Packet: 0x0253 +packetLen(0x0253, 3) // ZC_STARPLACE + +// Packet: 0x0254 +packetLen(0x0254, 3) // CZ_AGREE_STARPLACE + +// Packet: 0x0255 +packetLen(0x0255, 5) // ZC_ACK_MAIL_ADD_ITEM + +// Packet: 0x0256 +packetLen(0x0256, 5) // ZC_ACK_AUCTION_ADD_ITEM + +// Packet: 0x0257 +packetLen(0x0257, 8) // ZC_ACK_MAIL_DELETE + +// Packet: 0x0258 +packetLen(0x0258, 2) // CA_REQ_GAME_GUARD_CHECK + +// Packet: 0x0259 +packetLen(0x0259, 3) // AC_ACK_GAME_GUARD + +// Packet: 0x025a +packetLen(0x025a, -1) // ZC_MAKINGITEM_LIST + +// Packet: 0x025b +#if PACKETVER >= 20181114 +packetLen(0x025b, 8) // CZ_REQ_MAKINGITEM +#elif PACKETVER >= 20180103 +packetLen(0x025b, 6) // CZ_REQ_MAKINGITEM +#endif + +// Packet: 0x025c +packetLen(0x025c, 4) // CZ_AUCTION_REQ_MY_INFO + +// Packet: 0x025d +packetLen(0x025d, 6) // CZ_AUCTION_REQ_MY_SELL_STOP + +// Packet: 0x025e +packetLen(0x025e, 4) // ZC_AUCTION_ACK_MY_SELL_STOP + +// Packet: 0x025f +packetLen(0x025f, 6) // ZC_AUCTION_WINDOWS + +// Packet: 0x0260 +packetLen(0x0260, 6) // ZC_MAIL_WINDOWS + +// Packet: 0x0261 +packetLen(0x0261, 11) // AC_REQ_LOGIN_OLDEKEY + +// Packet: 0x0262 +packetLen(0x0262, 11) // AC_REQ_LOGIN_NEWEKEY + +// Packet: 0x0263 +packetLen(0x0263, 11) // AC_REQ_LOGIN_CARDPASS + +// Packet: 0x0264 +packetLen(0x0264, 20) // CA_ACK_LOGIN_OLDEKEY + +// Packet: 0x0265 +packetLen(0x0265, 20) // CA_ACK_LOGIN_NEWEKEY + +// Packet: 0x0266 +packetLen(0x0266, 30) // CA_ACK_LOGIN_CARDPASS + +// Packet: 0x0267 +packetLen(0x0267, 4) // AC_ACK_EKEY_FAIL_NOTEXIST + +// Packet: 0x0268 +packetLen(0x0268, 4) // AC_ACK_EKEY_FAIL_NOTUSESEKEY + +// Packet: 0x0269 +packetLen(0x0269, 4) // AC_ACK_EKEY_FAIL_NOTUSEDEKEY + +// Packet: 0x026a +packetLen(0x026a, 4) // AC_ACK_EKEY_FAIL_AUTHREFUSE + +// Packet: 0x026b +packetLen(0x026b, 4) // AC_ACK_EKEY_FAIL_INPUTEKEY + +// Packet: 0x026c +packetLen(0x026c, 4) // AC_ACK_EKEY_FAIL_NOTICE + +// Packet: 0x026d +packetLen(0x026d, 4) // AC_ACK_EKEY_FAIL_NEEDCARDPASS + +// Packet: 0x026f +packetLen(0x026f, 2) // AC_ACK_FIRST_LOGIN + +// Packet: 0x0270 +packetLen(0x0270, 2) // AC_REQ_LOGIN_ACCOUNT_INFO + +// Packet: 0x0271 +packetLen(0x0271, 40) // CA_ACK_LOGIN_ACCOUNT_INFO + +// Packet: 0x0272 +packetLen(0x0272, 44) // AC_ACK_PT_ID_INFO + +// Packet: 0x0273 +packetLen(0x0273, 30) // CZ_REQ_MAIL_RETURN + +// Packet: 0x0274 +packetLen(0x0274, 8) // ZC_ACK_MAIL_RETURN + +// Packet: 0x0275 +packetLen(0x0275, 37) // CH_ENTER2 + +// Packet: 0x0276 +packetLen(0x0276, -1) // AC_ACCEPT_LOGIN2 + +// Packet: 0x0277 +packetLen(0x0277, 84) // CA_LOGIN_PCBANG + +// Packet: 0x0278 +packetLen(0x0278, 2) // ZC_NOTIFY_PCBANG + +// Packet: 0x0279 +packetLen(0x0279, 2) // CZ_HUNTINGLIST + +// Packet: 0x027a +packetLen(0x027a, -1) // ZC_HUNTINGLIST + +// Packet: 0x027b +packetLen(0x027b, 14) // ZC_PCBANG_EFFECT + +// Packet: 0x027c +packetLen(0x027c, 60) // CA_LOGIN4 + +// Packet: 0x027d +packetLen(0x027d, 62) // ZC_PROPERTY_MERCE + +// Packet: 0x027e +packetLen(0x027e, -1) // ZC_SHANDA_PROTECT + +// Packet: 0x027f +packetLen(0x027f, 8) // CA_CLIENT_TYPE + +// Packet: 0x0280 +packetLen(0x0280, 12) // ZC_GANGSI_POINT + +// Packet: 0x0281 +#if PACKETVER >= 20180523 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180511 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180315 +packetLen(0x0281, 4) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180314 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180228 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180213 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180131 +packetLen(0x0281, -1) // CZ_GANGSI_RANK +#elif PACKETVER >= 20180103 +packetLen(0x0281, 2) // CZ_GANGSI_RANK +#endif + +// Packet: 0x0282 +packetLen(0x0282, 284) // ZC_GANGSI_RANK + +// Packet: 0x0283 +packetLen(0x0283, 6) // ZC_AID + +// Packet: 0x0284 +packetLen(0x0284, 14) // ZC_NOTIFY_EFFECT3 + +// Packet: 0x0285 +packetLen(0x0285, 6) // ZC_DEATH_QUESTION + +// Packet: 0x0286 +packetLen(0x0286, 4) // CZ_DEATH_QUESTION + +// Packet: 0x0287 +packetLen(0x0287, -1) // ZC_PC_CASH_POINT_ITEMLIST + +// Packet: 0x0288 +packetLen(0x0288, -1) // CZ_PC_BUY_CASH_POINT_ITEM + +// Packet: 0x0289 +packetLen(0x0289, 12) // ZC_PC_CASH_POINT_UPDATE + +// Packet: 0x028a +packetLen(0x028a, 18) // ZC_NPC_SHOWEFST_UPDATE + +// Packet: 0x028b +packetLen(0x028b, -1) // HC_CHARNOTBEENSELECTED + +// Packet: 0x028c +packetLen(0x028c, 46) // CH_SELECT_CHAR_GOINGTOBEUSED + +// Packet: 0x028d +packetLen(0x028d, 34) // CH_REQ_IS_VALID_CHARNAME + +// Packet: 0x028e +packetLen(0x028e, 4) // HC_ACK_IS_VALID_CHARNAME + +// Packet: 0x028f +packetLen(0x028f, 6) // CH_REQ_CHANGE_CHARNAME + +// Packet: 0x0290 +packetLen(0x0290, 4) // HC_ACK_CHANGE_CHARNAME + +// Packet: 0x0291 +packetLen(0x0291, 4) // ZC_MSG + +// Packet: 0x0292 +packetLen(0x0292, 2) // CZ_STANDING_RESURRECTION + +// Packet: 0x0293 +packetLen(0x0293, 70) // ZC_BOSS_INFO + +// Packet: 0x0294 +packetLen(0x0294, 10) // ZC_READ_BOOK + +// Packet: 0x0295 +packetLen(0x0295, -1) // ZC_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0296 +packetLen(0x0296, -1) // ZC_STORE_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0297 +packetLen(0x0297, -1) // ZC_CART_EQUIPMENT_ITEMLIST2 + +// Packet: 0x0298 +#if PACKETVER >= 20181114 +packetLen(0x0298, 10) // ZC_CASH_TIME_COUNTER +#elif PACKETVER >= 20180103 +packetLen(0x0298, 8) // ZC_CASH_TIME_COUNTER +#endif + +// Packet: 0x0299 +#if PACKETVER >= 20181114 +packetLen(0x0299, 8) // ZC_CASH_ITEM_DELETE +#elif PACKETVER >= 20180103 +packetLen(0x0299, 6) // ZC_CASH_ITEM_DELETE +#endif + +// Packet: 0x029a +#if PACKETVER >= 20181114 +packetLen(0x029a, 37) // ZC_ITEM_PICKUP_ACK2 +#elif PACKETVER >= 20180103 +packetLen(0x029a, 27) // ZC_ITEM_PICKUP_ACK2 +#endif + +// Packet: 0x029b +packetLen(0x029b, 80) // ZC_MER_INIT + +// Packet: 0x029c +packetLen(0x029c, 66) // ZC_MER_PROPERTY + +// Packet: 0x029d +packetLen(0x029d, -1) // ZC_MER_SKILLINFO_LIST + +// Packet: 0x029e +packetLen(0x029e, 11) // ZC_MER_SKILLINFO_UPDATE + +// Packet: 0x029f +packetLen(0x029f, 3) // CZ_MER_COMMAND + +// Packet: 0x02a2 +packetLen(0x02a2, 8) // ZC_MER_PAR_CHANGE + +// Packet: 0x02a5 +packetLen(0x02a5, 8) // CZ_KSY_EVENT + +// Packet: 0x02a6 +packetLen(0x02a6, -1) // ZC_HACKSH_CPX_MSG + +// Packet: 0x02a7 +packetLen(0x02a7, -1) // CZ_HACKSH_CPX_MSG + +// Packet: 0x02aa +packetLen(0x02aa, 4) // ZC_REQ_CASH_PASSWORD + +// Packet: 0x02ab +packetLen(0x02ab, 36) // CZ_ACK_CASH_PASSWORD + +// Packet: 0x02ac +packetLen(0x02ac, 6) // ZC_RESULT_CASH_PASSWORD + +// Packet: 0x02ad +packetLen(0x02ad, 8) // AC_REQUEST_SECOND_PASSWORD + +// Packet: 0x02b0 +packetLen(0x02b0, 85) // CA_LOGIN_HAN + +// Packet: 0x02b1 +packetLen(0x02b1, -1) // ZC_ALL_QUEST_LIST + +// Packet: 0x02b2 +packetLen(0x02b2, -1) // ZC_ALL_QUEST_MISSION + +// Packet: 0x02b3 +packetLen(0x02b3, 107) // ZC_ADD_QUEST + +// Packet: 0x02b4 +packetLen(0x02b4, 6) // ZC_DEL_QUEST + +// Packet: 0x02b5 +packetLen(0x02b5, -1) // ZC_UPDATE_MISSION_HUNT + +// Packet: 0x02b6 +packetLen(0x02b6, 7) // CZ_ACTIVE_QUEST + +// Packet: 0x02b7 +packetLen(0x02b7, 7) // ZC_ACTIVE_QUEST + +// Packet: 0x02b8 +#if PACKETVER >= 20181114 +packetLen(0x02b8, 32) // ZC_ITEM_PICKUP_PARTY +#elif PACKETVER >= 20180103 +packetLen(0x02b8, 22) // ZC_ITEM_PICKUP_PARTY +#endif + +// Packet: 0x02b9 +packetLen(0x02b9, 191) // ZC_SHORTCUT_KEY_LIST + +// Packet: 0x02ba +packetLen(0x02ba, 11) // CZ_SHORTCUT_KEY_CHANGE + +// Packet: 0x02bb +packetLen(0x02bb, 8) // ZC_EQUIPITEM_DAMAGED + +// Packet: 0x02bc +packetLen(0x02bc, 6) // ZC_NOTIFY_PCBANG_PLAYING_TIME + +// Packet: 0x02c1 +packetLen(0x02c1, -1) // ZC_NPC_CHAT + +// Packet: 0x02c2 +packetLen(0x02c2, -1) // ZC_FORMATSTRING_MSG + +// Packet: 0x02c4 +#if PACKETVER >= 20180523 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180511 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180315 +packetLen(0x02c4, 26) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180228 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180221 +packetLen(0x02c4, 6) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180213 +packetLen(0x02c4, 8) // CZ_PARTY_JOIN_REQ +#elif PACKETVER >= 20180103 +packetLen(0x02c4, 2) // CZ_PARTY_JOIN_REQ +#endif + +// Packet: 0x02c5 +packetLen(0x02c5, 30) // ZC_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c6 +packetLen(0x02c6, 30) // ZC_PARTY_JOIN_REQ + +// Packet: 0x02c7 +packetLen(0x02c7, 7) // CZ_PARTY_JOIN_REQ_ACK + +// Packet: 0x02c8 +packetLen(0x02c8, 3) // CZ_PARTY_CONFIG + +// Packet: 0x02c9 +packetLen(0x02c9, 3) // ZC_PARTY_CONFIG + +// Packet: 0x02ca +packetLen(0x02ca, 3) // HC_REFUSE_SELECTCHAR + +// Packet: 0x02cb +packetLen(0x02cb, 65) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_INFO + +// Packet: 0x02cc +packetLen(0x02cc, 4) // ZC_MEMORIALDUNGEON_SUBSCRIPTION_NOTIFY + +// Packet: 0x02cd +packetLen(0x02cd, 71) // ZC_MEMORIALDUNGEON_INFO + +// Packet: 0x02ce +packetLen(0x02ce, 10) // ZC_MEMORIALDUNGEON_NOTIFY + +// Packet: 0x02cf +packetLen(0x02cf, 6) // CZ_MEMORIALDUNGEON_COMMAND + +// Packet: 0x02d0 +packetLen(0x02d0, -1) // ZC_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d1 +packetLen(0x02d1, -1) // ZC_STORE_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d2 +packetLen(0x02d2, -1) // ZC_CART_EQUIPMENT_ITEMLIST3 + +// Packet: 0x02d3 +packetLen(0x02d3, 4) // ZC_NOTIFY_BIND_ON_EQUIP + +// Packet: 0x02d4 +#if PACKETVER >= 20181114 +packetLen(0x02d4, 39) // ZC_ITEM_PICKUP_ACK3 +#elif PACKETVER >= 20180103 +packetLen(0x02d4, 29) // ZC_ITEM_PICKUP_ACK3 +#endif + +// Packet: 0x02d5 +packetLen(0x02d5, 2) // ZC_ISVR_DISCONNECT + +// Packet: 0x02d6 +packetLen(0x02d6, 6) // CZ_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d7 +packetLen(0x02d7, -1) // ZC_EQUIPWIN_MICROSCOPE + +// Packet: 0x02d8 +packetLen(0x02d8, 10) // CZ_CONFIG + +// Packet: 0x02d9 +packetLen(0x02d9, 10) // ZC_CONFIG + +// Packet: 0x02da +packetLen(0x02da, 3) // ZC_CONFIG_NOTIFY + +// Packet: 0x02db +packetLen(0x02db, -1) // CZ_BATTLEFIELD_CHAT + +// Packet: 0x02dc +packetLen(0x02dc, -1) // ZC_BATTLEFIELD_CHAT + +// Packet: 0x02dd +packetLen(0x02dd, 32) // ZC_BATTLEFIELD_NOTIFY_CAMPINFO + +// Packet: 0x02de +packetLen(0x02de, 6) // ZC_BATTLEFIELD_NOTIFY_POINT + +// Packet: 0x02df +packetLen(0x02df, 36) // ZC_BATTLEFIELD_NOTIFY_POSITION + +// Packet: 0x02e0 +packetLen(0x02e0, 34) // ZC_BATTLEFIELD_NOTIFY_HP + +// Packet: 0x02e1 +packetLen(0x02e1, 33) // ZC_NOTIFY_ACT2 + +// Packet: 0x02e2 +packetLen(0x02e2, 20) // CZ_USE_ITEM_NEW_JAPEN + +// Packet: 0x02e3 +packetLen(0x02e3, 22) // CZ_USE_SKILL_NEW_JAPEN + +// Packet: 0x02e4 +packetLen(0x02e4, 11) // CZ_ITEM_PICKUP_NEW_JAPEN + +// Packet: 0x02e5 +packetLen(0x02e5, 9) // CZ_REQUEST_MOVE_NEW_JAPEN + +// Packet: 0x02e6 +packetLen(0x02e6, 6) // CZ_BOT_CHECK + +// Packet: 0x02e7 +packetLen(0x02e7, -1) // ZC_MAPPROPERTY + +// Packet: 0x02e8 +packetLen(0x02e8, -1) // ZC_NORMAL_ITEMLIST3 + +// Packet: 0x02e9 +packetLen(0x02e9, -1) // ZC_CART_NORMAL_ITEMLIST3 + +// Packet: 0x02ea +packetLen(0x02ea, -1) // ZC_STORE_NORMAL_ITEMLIST3 + +// Packet: 0x02eb +packetLen(0x02eb, 13) // ZC_ACCEPT_ENTER2 + +// Packet: 0x02ec +#if PACKETVER >= 20181114 +packetLen(0x02ec, 71) // ZC_NOTIFY_MOVEENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x02ec, 67) // ZC_NOTIFY_MOVEENTRY4 +#endif + +// Packet: 0x02ed +#if PACKETVER >= 20181114 +packetLen(0x02ed, 63) // ZC_NOTIFY_NEWENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x02ed, 59) // ZC_NOTIFY_NEWENTRY4 +#endif + +// Packet: 0x02ee +#if PACKETVER >= 20181114 +packetLen(0x02ee, 64) // ZC_NOTIFY_STANDENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x02ee, 60) // ZC_NOTIFY_STANDENTRY4 +#endif + +// Packet: 0x02ef +packetLen(0x02ef, 8) // ZC_NOTIFY_FONT + +// Packet: 0x02f0 +packetLen(0x02f0, 10) // ZC_PROGRESS + +// Packet: 0x02f1 +packetLen(0x02f1, 2) // CZ_PROGRESS + +// Packet: 0x02f2 +packetLen(0x02f2, 2) // ZC_PROGRESS_CANCEL + +// Packet: 0x02f3 +packetLen(0x02f3, -1) // CZ_IRMAIL_SEND + +// Packet: 0x02f4 +packetLen(0x02f4, 3) // ZC_IRMAIL_SEND_RES + +// Packet: 0x02f5 +packetLen(0x02f5, 7) // ZC_IRMAIL_NOTIFY + +// Packet: 0x02f6 +packetLen(0x02f6, 7) // CZ_IRMAIL_LIST + +// Packet: 0x035c +packetLen(0x035c, 2) // CZ_OPEN_SIMPLE_CASHSHOP_ITEMLIST + +// Packet: 0x035d +packetLen(0x035d, -1) // ZC_SIMPLE_CASHSHOP_POINT_ITEMLIST + +// Packet: 0x035e +packetLen(0x035e, 2) // CZ_CLOSE_WINDOW + +// Packet: 0x035f +#if PACKETVER >= 20180523 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180511 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180315 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180314 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180228 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180221 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180131 +packetLen(0x035f, 6) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180117 +packetLen(0x035f, 2) // CZ_REQUEST_MOVE2 +#elif PACKETVER >= 20180103 +packetLen(0x035f, 5) // CZ_REQUEST_MOVE2 +#endif + +// Packet: 0x0360 +#if PACKETVER >= 20180523 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180511 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180315 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180314 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180228 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180213 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180131 +packetLen(0x0360, 6) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180117 +packetLen(0x0360, 2) // CZ_REQUEST_TIME2 +#elif PACKETVER >= 20180103 +packetLen(0x0360, 18) // CZ_REQUEST_TIME2 +#endif + +// Packet: 0x0361 +#if PACKETVER >= 20180523 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180511 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180315 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180314 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180228 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180221 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180213 +packetLen(0x0361, 90) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180131 +packetLen(0x0361, 5) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180117 +packetLen(0x0361, 26) // CZ_CHANGE_DIRECTION2 +#elif PACKETVER >= 20180103 +packetLen(0x0361, 2) // CZ_CHANGE_DIRECTION2 +#endif + +// Packet: 0x0362 +#if PACKETVER >= 20180523 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180511 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180315 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180314 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180221 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180213 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180131 +packetLen(0x0362, 6) // CZ_ITEM_PICKUP2 +#elif PACKETVER >= 20180103 +packetLen(0x0362, 2) // CZ_ITEM_PICKUP2 +#endif + +// Packet: 0x0363 +#if PACKETVER >= 20180523 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180511 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180315 +packetLen(0x0363, 6) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180314 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180228 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180213 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180131 +packetLen(0x0363, 8) // CZ_ITEM_THROW2 +#elif PACKETVER >= 20180103 +packetLen(0x0363, 2) // CZ_ITEM_THROW2 +#endif + +// Packet: 0x0364 +#if PACKETVER >= 20180523 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180511 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180315 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180314 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180228 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180221 +packetLen(0x0364, 5) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180213 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180131 +packetLen(0x0364, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180117 +packetLen(0x0364, 6) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#elif PACKETVER >= 20180103 +packetLen(0x0364, 2) // CZ_MOVE_ITEM_FROM_BODY_TO_STORE2 +#endif + +// Packet: 0x0365 +#if PACKETVER >= 20180523 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180511 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180315 +packetLen(0x0365, 8) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180314 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180228 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180213 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180131 +packetLen(0x0365, 18) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#elif PACKETVER >= 20180103 +packetLen(0x0365, 2) // CZ_MOVE_ITEM_FROM_STORE_TO_BODY2 +#endif + +// Packet: 0x0366 +#if PACKETVER >= 20180523 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180511 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180315 +packetLen(0x0366, 10) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180314 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180228 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180213 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180207 +packetLen(0x0366, 90) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180117 +packetLen(0x0366, 2) // CZ_USE_SKILL_TOGROUND2 +#elif PACKETVER >= 20180103 +packetLen(0x0366, -1) // CZ_USE_SKILL_TOGROUND2 +#endif + +// Packet: 0x0367 +#if PACKETVER >= 20180523 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20180511 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20180315 +packetLen(0x0367, 90) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20180207 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20180131 +packetLen(0x0367, 36) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#elif PACKETVER >= 20180103 +packetLen(0x0367, 2) // CZ_USE_SKILL_TOGROUND_WITHTALKBOX2 +#endif + +// Packet: 0x0368 +#if PACKETVER >= 20180523 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20180511 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20180315 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20180314 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20180228 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20180213 +packetLen(0x0368, 2) // CZ_REQNAME2 +#elif PACKETVER >= 20180131 +packetLen(0x0368, 6) // CZ_REQNAME2 +#elif PACKETVER >= 20180103 +packetLen(0x0368, 2) // CZ_REQNAME2 +#endif + +// Packet: 0x0369 +#if PACKETVER >= 20180523 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180511 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180315 +packetLen(0x0369, 6) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180314 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180228 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180213 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180131 +packetLen(0x0369, 7) // CZ_REQNAME_BYGID2 +#elif PACKETVER >= 20180103 +packetLen(0x0369, 2) // CZ_REQNAME_BYGID2 +#endif + +// Packet: 0x03dd +packetLen(0x03dd, 18) // AHC_GAME_GUARD + +// Packet: 0x03de +packetLen(0x03de, 18) // CAH_ACK_GAME_GUARD + +// Packet: 0x0436 +#if PACKETVER >= 20180523 +packetLen(0x0436, 19) // CZ_ENTER2 +#elif PACKETVER >= 20180511 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20180315 +packetLen(0x0436, 19) // CZ_ENTER2 +#elif PACKETVER >= 20180314 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20180228 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20180213 +packetLen(0x0436, 2) // CZ_ENTER2 +#elif PACKETVER >= 20180131 +packetLen(0x0436, 4) // CZ_ENTER2 +#elif PACKETVER >= 20180103 +packetLen(0x0436, 2) // CZ_ENTER2 +#endif + +// Packet: 0x0437 +#if PACKETVER >= 20180523 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180511 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180315 +packetLen(0x0437, 7) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180314 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180228 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180213 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180131 +packetLen(0x0437, 5) // CZ_REQUEST_ACT2 +#elif PACKETVER >= 20180103 +packetLen(0x0437, 2) // CZ_REQUEST_ACT2 +#endif + +// Packet: 0x0438 +#if PACKETVER >= 20180523 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180511 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180315 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180314 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180228 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180221 +packetLen(0x0438, -1) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180213 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180131 +packetLen(0x0438, 10) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180117 +packetLen(0x0438, 8) // CZ_USE_SKILL2 +#elif PACKETVER >= 20180103 +packetLen(0x0438, 2) // CZ_USE_SKILL2 +#endif + +// Packet: 0x0439 +packetLen(0x0439, 8) // CZ_USE_ITEM2 + +// Packet: 0x043d +packetLen(0x043d, 8) // ZC_SKILL_POSTDELAY + +// Packet: 0x043e +packetLen(0x043e, -1) // ZC_SKILL_POSTDELAY_LIST + +// Packet: 0x043f +packetLen(0x043f, 25) // ZC_MSG_STATE_CHANGE2 + +// Packet: 0x0440 +packetLen(0x0440, 10) // ZC_MILLENNIUMSHIELD + +// Packet: 0x0441 +packetLen(0x0441, 4) // ZC_SKILLINFO_DELETE + +// Packet: 0x0442 +packetLen(0x0442, -1) // ZC_SKILL_SELECT_REQUEST + +// Packet: 0x0443 +packetLen(0x0443, 8) // CZ_SKILL_SELECT_RESPONSE + +// Packet: 0x0444 +packetLen(0x0444, -1) // ZC_SIMPLE_CASH_POINT_ITEMLIST + +// Packet: 0x0445 +#if PACKETVER >= 20181114 +packetLen(0x0445, 12) // CZ_SIMPLE_BUY_CASH_POINT_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x0445, 10) // CZ_SIMPLE_BUY_CASH_POINT_ITEM +#endif + +// Packet: 0x0446 +packetLen(0x0446, 14) // ZC_QUEST_NOTIFY_EFFECT + +// Packet: 0x0447 +packetLen(0x0447, 2) // CZ_BLOCKING_PLAY_CANCEL + +// Packet: 0x0448 +packetLen(0x0448, -1) // HC_CHARACTER_LIST + +// Packet: 0x0449 +packetLen(0x0449, 4) // ZC_HACKSH_ERROR_MSG + +// Packet: 0x044a +packetLen(0x044a, 6) // CZ_CLIENT_VERSION + +// Packet: 0x044b +packetLen(0x044b, 2) // CZ_CLOSE_SIMPLECASH_SHOP + +// Packet: 0x07d7 +packetLen(0x07d7, 8) // CZ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d8 +packetLen(0x07d8, 8) // ZC_REQ_GROUPINFO_CHANGE_V2 + +// Packet: 0x07d9 +packetLen(0x07d9, 268) // ZC_SHORTCUT_KEY_LIST_V2 + +// Packet: 0x07da +packetLen(0x07da, 6) // CZ_CHANGE_GROUP_MASTER + +// Packet: 0x07db +packetLen(0x07db, 8) // ZC_HO_PAR_CHANGE + +// Packet: 0x07dc +packetLen(0x07dc, 6) // CZ_SEEK_PARTY + +// Packet: 0x07dd +packetLen(0x07dd, 54) // ZC_SEEK_PARTY + +// Packet: 0x07de +packetLen(0x07de, 30) // CZ_SEEK_PARTY_MEMBER + +// Packet: 0x07df +packetLen(0x07df, 54) // ZC_SEEK_PARTY_MEMBER + +// Packet: 0x07e0 +packetLen(0x07e0, 58) // ZC_ES_NOTI_MYINFO + +// Packet: 0x07e1 +packetLen(0x07e1, 15) // ZC_SKILLINFO_UPDATE2 + +// Packet: 0x07e2 +packetLen(0x07e2, 8) // ZC_MSG_VALUE + +// Packet: 0x07e3 +packetLen(0x07e3, 6) // ZC_ITEMLISTWIN_OPEN + +// Packet: 0x07e4 +#if PACKETVER >= 20180523 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180511 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180315 +packetLen(0x07e4, -1) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180314 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180228 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180213 +packetLen(0x07e4, 2) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180131 +packetLen(0x07e4, 6) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180117 +packetLen(0x07e4, 36) // CZ_ITEMLISTWIN_RES +#elif PACKETVER >= 20180103 +packetLen(0x07e4, 5) // CZ_ITEMLISTWIN_RES +#endif + +// Packet: 0x07e5 +packetLen(0x07e5, 4) // CH_ENTER_CHECKBOT + +// Packet: 0x07e6 +packetLen(0x07e6, 8) // ZC_MSG_SKILL + +// Packet: 0x07e7 +packetLen(0x07e7, 32) // CH_CHECKBOT + +// Packet: 0x07e8 +packetLen(0x07e8, -1) // HC_CHECKBOT + +// Packet: 0x07e9 +packetLen(0x07e9, 5) // HC_CHECKBOT_RESULT + +// Packet: 0x07ea +packetLen(0x07ea, 2) // CZ_BATTLE_FIELD_LIST + +// Packet: 0x07eb +packetLen(0x07eb, -1) // ZC_BATTLE_FIELD_LIST + +// Packet: 0x07ec +#if PACKETVER >= 20180523 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180511 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180315 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180314 +packetLen(0x07ec, 19) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180228 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180213 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180131 +packetLen(0x07ec, 8) // CZ_JOIN_BATTLE_FIELD +#elif PACKETVER >= 20180103 +packetLen(0x07ec, 2) // CZ_JOIN_BATTLE_FIELD +#endif + +// Packet: 0x07ed +packetLen(0x07ed, 10) // ZC_JOIN_BATTLE_FIELD + +// Packet: 0x07ee +packetLen(0x07ee, 6) // CZ_CANCEL_BATTLE_FIELD + +// Packet: 0x07ef +packetLen(0x07ef, 8) // ZC_CANCEL_BATTLE_FIELD + +// Packet: 0x07f0 +packetLen(0x07f0, 6) // CZ_REQ_BATTLE_STATE_MONITOR + +// Packet: 0x07f1 +packetLen(0x07f1, 18) // ZC_ACK_BATTLE_STATE_MONITOR + +// Packet: 0x07f2 +packetLen(0x07f2, 8) // ZC_BATTLE_NOTI_START_STEP + +// Packet: 0x07f3 +packetLen(0x07f3, 6) // ZC_BATTLE_JOIN_NOTI_DEFER + +// Packet: 0x07f4 +packetLen(0x07f4, 3) // ZC_BATTLE_JOIN_DISABLE_STATE + +// Packet: 0x07f5 +packetLen(0x07f5, 6) // CZ_GM_FULLSTRIP + +// Packet: 0x07f6 +packetLen(0x07f6, 14) // ZC_NOTIFY_EXP + +// Packet: 0x07f7 +packetLen(0x07f7, -1) // ZC_NOTIFY_MOVEENTRY7 + +// Packet: 0x07f8 +packetLen(0x07f8, -1) // ZC_NOTIFY_NEWENTRY5 + +// Packet: 0x07f9 +packetLen(0x07f9, -1) // ZC_NOTIFY_STANDENTRY5 + +// Packet: 0x07fa +packetLen(0x07fa, 8) // ZC_DELETE_ITEM_FROM_BODY + +// Packet: 0x07fb +packetLen(0x07fb, 25) // ZC_USESKILL_ACK2 + +// Packet: 0x07fc +packetLen(0x07fc, 10) // ZC_CHANGE_GROUP_MASTER + +// Packet: 0x07fd +packetLen(0x07fd, -1) // ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN + +// Packet: 0x07fe +packetLen(0x07fe, 26) // ZC_PLAY_NPC_BGM + +// Packet: 0x0800 +packetLen(0x0800, -1) // ZC_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0801 +packetLen(0x0801, -1) // CZ_PC_PURCHASE_ITEMLIST_FROMMC2 + +// Packet: 0x0802 +#if PACKETVER >= 20180523 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180511 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180315 +packetLen(0x0802, 18) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180314 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180228 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180221 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180213 +packetLen(0x0802, 6) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180131 +packetLen(0x0802, 26) // CZ_PARTY_BOOKING_REQ_REGISTER +#elif PACKETVER >= 20180103 +packetLen(0x0802, 2) // CZ_PARTY_BOOKING_REQ_REGISTER +#endif + +// Packet: 0x0803 +packetLen(0x0803, 4) // ZC_PARTY_BOOKING_ACK_REGISTER + +// Packet: 0x0804 +packetLen(0x0804, 14) // CZ_PARTY_BOOKING_REQ_SEARCH + +// Packet: 0x0805 +packetLen(0x0805, -1) // ZC_PARTY_BOOKING_ACK_SEARCH + +// Packet: 0x0806 +packetLen(0x0806, 2) // CZ_PARTY_BOOKING_REQ_DELETE + +// Packet: 0x0807 +packetLen(0x0807, 4) // ZC_PARTY_BOOKING_ACK_DELETE + +// Packet: 0x0808 +packetLen(0x0808, 14) // CZ_PARTY_BOOKING_REQ_UPDATE + +// Packet: 0x0809 +packetLen(0x0809, 50) // ZC_PARTY_BOOKING_NOTIFY_INSERT + +// Packet: 0x080a +packetLen(0x080a, 18) // ZC_PARTY_BOOKING_NOTIFY_UPDATE + +// Packet: 0x080b +packetLen(0x080b, 6) // ZC_PARTY_BOOKING_NOTIFY_DELETE + +// Packet: 0x080c +packetLen(0x080c, 2) // CZ_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080d +packetLen(0x080d, 3) // ZC_SIMPLE_CASH_BTNSHOW + +// Packet: 0x080e +packetLen(0x080e, 14) // ZC_NOTIFY_HP_TO_GROUPM_R2 + +// Packet: 0x080f +#if PACKETVER >= 20181114 +packetLen(0x080f, 30) // ZC_ADD_EXCHANGE_ITEM2 +#elif PACKETVER >= 20180103 +packetLen(0x080f, 20) // ZC_ADD_EXCHANGE_ITEM2 +#endif + +// Packet: 0x0810 +packetLen(0x0810, 3) // ZC_OPEN_BUYING_STORE + +// Packet: 0x0811 +#if PACKETVER >= 20180523 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180511 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180315 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180314 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180228 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180213 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180131 +packetLen(0x0811, -1) // CZ_REQ_OPEN_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0811, 2) // CZ_REQ_OPEN_BUYING_STORE +#endif + +// Packet: 0x0812 +packetLen(0x0812, 8) // ZC_FAILED_OPEN_BUYING_STORE_TO_BUYER + +// Packet: 0x0813 +packetLen(0x0813, -1) // ZC_MYITEMLIST_BUYING_STORE + +// Packet: 0x0814 +packetLen(0x0814, 86) // ZC_BUYING_STORE_ENTRY + +// Packet: 0x0815 +#if PACKETVER >= 20180314 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20180228 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20180221 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20180213 +packetLen(0x0815, 10) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20180131 +packetLen(0x0815, -1) // CZ_REQ_CLOSE_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0815, 2) // CZ_REQ_CLOSE_BUYING_STORE +#endif + +// Packet: 0x0816 +packetLen(0x0816, 6) // ZC_DISAPPEAR_BUYING_STORE_ENTRY + +// Packet: 0x0817 +#if PACKETVER >= 20180315 +packetLen(0x0817, 6) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20180228 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20180221 +packetLen(0x0817, -1) // CZ_REQ_CLICK_TO_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0817, 2) // CZ_REQ_CLICK_TO_BUYING_STORE +#endif + +// Packet: 0x0818 +packetLen(0x0818, -1) // ZC_ACK_ITEMLIST_BUYING_STORE + +// Packet: 0x0819 +#if PACKETVER >= 20180523 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180511 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180315 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180314 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180228 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180213 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180131 +packetLen(0x0819, -1) // CZ_REQ_TRADE_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0819, 2) // CZ_REQ_TRADE_BUYING_STORE +#endif + +// Packet: 0x081a +packetLen(0x081a, 4) // ZC_FAILED_TRADE_BUYING_STORE_TO_BUYER + +// Packet: 0x081b +#if PACKETVER >= 20181114 +packetLen(0x081b, 12) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#elif PACKETVER >= 20180103 +packetLen(0x081b, 10) // ZC_UPDATE_ITEM_FROM_BUYING_STORE +#endif + +// Packet: 0x081c +packetLen(0x081c, 10) // ZC_ITEM_DELETE_BUYING_STORE + +// Packet: 0x081d +packetLen(0x081d, 22) // ZC_EL_INIT + +// Packet: 0x081e +packetLen(0x081e, 8) // ZC_EL_PAR_CHANGE + +// Packet: 0x081f +packetLen(0x081f, -1) // ZC_BROADCAST4 + +// Packet: 0x0820 +packetLen(0x0820, 11) // ZC_COSTUME_SPRITE_CHANGE + +// Packet: 0x0821 +packetLen(0x0821, 2) // AC_OTP_USER + +// Packet: 0x0822 +packetLen(0x0822, 9) // CA_OTP_AUTH_REQ + +// Packet: 0x0823 +packetLen(0x0823, -1) // AC_OTP_AUTH_ACK + +// Packet: 0x0824 +#if PACKETVER >= 20181114 +packetLen(0x0824, 8) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER +#elif PACKETVER >= 20180103 +packetLen(0x0824, 6) // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER +#endif + +// Packet: 0x0825 +packetLen(0x0825, -1) // CA_SSO_LOGIN_REQ + +// Packet: 0x0827 +packetLen(0x0827, 6) // CH_DELETE_CHAR3_RESERVED + +// Packet: 0x0828 +packetLen(0x0828, 14) // HC_DELETE_CHAR3_RESERVED + +// Packet: 0x0829 +packetLen(0x0829, 12) // CH_DELETE_CHAR3 + +// Packet: 0x082a +packetLen(0x082a, 10) // HC_DELETE_CHAR3 + +// Packet: 0x082b +packetLen(0x082b, 6) // CH_DELETE_CHAR3_CANCEL + +// Packet: 0x082c +packetLen(0x082c, 10) // HC_DELETE_CHAR3_CANCEL + +// Packet: 0x082d +packetLen(0x082d, -1) // HC_ACCEPT_ENTER2 + +// Packet: 0x0835 +#if PACKETVER >= 20180523 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20180511 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20180315 +packetLen(0x0835, -1) // CZ_SEARCH_STORE_INFO +#elif PACKETVER >= 20180103 +packetLen(0x0835, 2) // CZ_SEARCH_STORE_INFO +#endif + +// Packet: 0x0836 +packetLen(0x0836, -1) // ZC_SEARCH_STORE_INFO_ACK + +// Packet: 0x0837 +packetLen(0x0837, 3) // ZC_SEARCH_STORE_INFO_FAILED + +// Packet: 0x0838 +#if PACKETVER >= 20180314 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180228 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180213 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180131 +packetLen(0x0838, 12) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#elif PACKETVER >= 20180103 +packetLen(0x0838, 2) // CZ_SEARCH_STORE_INFO_NEXT_PAGE +#endif + +// Packet: 0x0839 +packetLen(0x0839, 66) // ZC_ACK_BAN_GUILD_SSO + +// Packet: 0x083a +packetLen(0x083a, 5) // ZC_OPEN_SEARCH_STORE_INFO + +// Packet: 0x083b +packetLen(0x083b, 2) // CZ_CLOSE_SEARCH_STORE_INFO + +// Packet: 0x083c +#if PACKETVER >= 20181114 +packetLen(0x083c, 14) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180523 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180511 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180315 +packetLen(0x083c, 12) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180314 +packetLen(0x083c, 5) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180228 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180213 +packetLen(0x083c, 2) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180131 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180117 +packetLen(0x083c, 6) // CZ_SSILIST_ITEM_CLICK +#elif PACKETVER >= 20180103 +packetLen(0x083c, 10) // CZ_SSILIST_ITEM_CLICK +#endif + +// Packet: 0x083d +packetLen(0x083d, 6) // ZC_SSILIST_ITEM_CLICK_ACK + +// Packet: 0x083e +packetLen(0x083e, 26) // AC_REFUSE_LOGIN2 + +// Packet: 0x0840 +packetLen(0x0840, -1) // HC_NOTIFY_ACCESSIBLE_MAPNAME + +// Packet: 0x0841 +packetLen(0x0841, 4) // CH_SELECT_ACCESSIBLE_MAPNAME + +// Packet: 0x0842 +packetLen(0x0842, 6) // CZ_RECALL_SSO + +// Packet: 0x0843 +packetLen(0x0843, 6) // CZ_REMOVE_AID_SSO + +// Packet: 0x0844 +packetLen(0x0844, 2) // CZ_SE_CASHSHOP_OPEN + +// Packet: 0x0845 +packetLen(0x0845, 10) // ZC_SE_CASHSHOP_OPEN + +// Packet: 0x0846 +packetLen(0x0846, 4) // CZ_REQ_SE_CASH_TAB_CODE + +// Packet: 0x0847 +packetLen(0x0847, -1) // ZC_ACK_SE_CASH_ITEM_LIST + +// Packet: 0x0848 +packetLen(0x0848, -1) // CZ_SE_PC_BUY_CASHITEM_LIST + +// Packet: 0x0849 +packetLen(0x0849, 16) // ZC_SE_PC_BUY_CASHITEM_RESULT + +// Packet: 0x084a +packetLen(0x084a, 2) // CZ_SE_CASHSHOP_CLOSE + +// Packet: 0x084b +#if PACKETVER >= 20181114 +packetLen(0x084b, 21) // ZC_ITEM_FALL_ENTRY4 +#elif PACKETVER >= 20180103 +packetLen(0x084b, 19) // ZC_ITEM_FALL_ENTRY4 +#endif + +// Packet: 0x084c +packetLen(0x084c, 10) // CZ_MACRO_USE_SKILL + +// Packet: 0x084d +packetLen(0x084d, 10) // CZ_MACRO_USE_SKILL_TOGROUND + +// Packet: 0x084e +packetLen(0x084e, 5) // CZ_MACRO_REQUEST_MOVE + +// Packet: 0x084f +packetLen(0x084f, 6) // CZ_MACRO_ITEM_PICKUP + +// Packet: 0x0850 +packetLen(0x0850, 7) // CZ_MACRO_REQUEST_ACT + +// Packet: 0x0851 +packetLen(0x0851, -1) // ZC_GPK_DYNCODE + +// Packet: 0x0852 +packetLen(0x0852, 2) // CZ_GPK_DYNCODE_RELOAD + +// Packet: 0x0853 +packetLen(0x0853, -1) // ZC_GPK_AUTH + +// Packet: 0x0854 +packetLen(0x0854, -1) // CZ_GPK_AUTH + +// Packet: 0x0855 +packetLen(0x0855, 6) // ZC_MACRO_ITEMPICKUP_FAIL + +// Packet: 0x0856 +packetLen(0x0856, -1) // ZC_NOTIFY_MOVEENTRY8 + +// Packet: 0x0857 +packetLen(0x0857, -1) // ZC_NOTIFY_STANDENTRY7 + +// Packet: 0x0858 +packetLen(0x0858, -1) // ZC_NOTIFY_NEWENTRY6 + +// Packet: 0x0859 +packetLen(0x0859, -1) // ZC_EQUIPWIN_MICROSCOPE2 + +// Packet: 0x085a +#if PACKETVER >= 20180221 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20180213 +packetLen(0x085a, -1) // ZC_REASSEMBLY_AUTH01 +#elif PACKETVER >= 20180103 +packetLen(0x085a, 2) // ZC_REASSEMBLY_AUTH01 +#endif + +// Packet: 0x085b +#if PACKETVER >= 20180228 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20180221 +packetLen(0x085b, 10) // ZC_REASSEMBLY_AUTH02 +#elif PACKETVER >= 20180103 +packetLen(0x085b, 2) // ZC_REASSEMBLY_AUTH02 +#endif + +// Packet: 0x085c +packetLen(0x085c, 2) // ZC_REASSEMBLY_AUTH03 + +// Packet: 0x085d +#if PACKETVER >= 20180315 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20180314 +packetLen(0x085d, 26) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20180221 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20180213 +packetLen(0x085d, 5) // ZC_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20180103 +packetLen(0x085d, 2) // ZC_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x085e +packetLen(0x085e, 2) // ZC_REASSEMBLY_AUTH05 + +// Packet: 0x085f +#if PACKETVER >= 20180523 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180511 +packetLen(0x085f, 6) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180315 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180314 +packetLen(0x085f, -1) // ZC_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180103 +packetLen(0x085f, 2) // ZC_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x0860 +#if PACKETVER >= 20180117 +packetLen(0x0860, 2) // ZC_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20180103 +packetLen(0x0860, 5) // ZC_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x0861 +packetLen(0x0861, 2) // ZC_REASSEMBLY_AUTH08 + +// Packet: 0x0862 +packetLen(0x0862, 2) // ZC_REASSEMBLY_AUTH09 + +// Packet: 0x0863 +#if PACKETVER >= 20180523 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180511 +packetLen(0x0863, 6) // ZC_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180103 +packetLen(0x0863, 2) // ZC_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x0864 +packetLen(0x0864, 2) // ZC_REASSEMBLY_AUTH11 + +// Packet: 0x0865 +packetLen(0x0865, 2) // ZC_REASSEMBLY_AUTH12 + +// Packet: 0x0866 +#if PACKETVER >= 20180315 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20180314 +packetLen(0x0866, 5) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20180131 +packetLen(0x0866, 2) // ZC_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20180103 +packetLen(0x0866, -1) // ZC_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0867 +packetLen(0x0867, 2) // ZC_REASSEMBLY_AUTH14 + +// Packet: 0x0868 +#if PACKETVER >= 20180221 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180213 +packetLen(0x0868, 18) // ZC_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180103 +packetLen(0x0868, 2) // ZC_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0869 +packetLen(0x0869, 2) // ZC_REASSEMBLY_AUTH16 + +// Packet: 0x086a +#if PACKETVER >= 20180228 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20180221 +packetLen(0x086a, 8) // ZC_REASSEMBLY_AUTH17 +#elif PACKETVER >= 20180103 +packetLen(0x086a, 2) // ZC_REASSEMBLY_AUTH17 +#endif + +// Packet: 0x086b +packetLen(0x086b, 2) // ZC_REASSEMBLY_AUTH18 + +// Packet: 0x086c +#if PACKETVER >= 20180523 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20180511 +packetLen(0x086c, 7) // ZC_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20180103 +packetLen(0x086c, 2) // ZC_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x086d +#if PACKETVER >= 20180117 +packetLen(0x086d, 2) // ZC_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20180103 +packetLen(0x086d, 26) // ZC_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x086e +#if PACKETVER >= 20180131 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20180117 +packetLen(0x086e, 10) // ZC_REASSEMBLY_AUTH21 +#elif PACKETVER >= 20180103 +packetLen(0x086e, 2) // ZC_REASSEMBLY_AUTH21 +#endif + +// Packet: 0x086f +#if PACKETVER >= 20180131 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180117 +packetLen(0x086f, 6) // ZC_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180103 +packetLen(0x086f, 2) // ZC_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x0870 +packetLen(0x0870, 2) // ZC_REASSEMBLY_AUTH23 + +// Packet: 0x0871 +#if PACKETVER >= 20180117 +packetLen(0x0871, 2) // ZC_REASSEMBLY_AUTH24 +#elif PACKETVER >= 20180103 +packetLen(0x0871, 6) // ZC_REASSEMBLY_AUTH24 +#endif + +// Packet: 0x0872 +#if PACKETVER >= 20180117 +packetLen(0x0872, 2) +#elif PACKETVER >= 20180103 +packetLen(0x0872, -1) +#endif + +// Packet: 0x0873 +packetLen(0x0873, 2) // ZC_REASSEMBLY_AUTH26 + +// Packet: 0x0874 +packetLen(0x0874, 2) // ZC_REASSEMBLY_AUTH27 + +// Packet: 0x0875 +packetLen(0x0875, 2) // ZC_REASSEMBLY_AUTH28 + +// Packet: 0x0876 +packetLen(0x0876, 2) // ZC_REASSEMBLY_AUTH29 + +// Packet: 0x0877 +#if PACKETVER >= 20180523 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180511 +packetLen(0x0877, 8) // ZC_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180103 +packetLen(0x0877, 2) // ZC_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x0878 +#if PACKETVER >= 20180315 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20180314 +packetLen(0x0878, 8) // ZC_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20180103 +packetLen(0x0878, 2) // ZC_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x0879 +packetLen(0x0879, 2) // ZC_REASSEMBLY_AUTH32 + +// Packet: 0x087a +packetLen(0x087a, 2) // ZC_REASSEMBLY_AUTH33 + +// Packet: 0x087b +#if PACKETVER >= 20180221 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180213 +packetLen(0x087b, 6) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180117 +packetLen(0x087b, 2) // ZC_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180103 +packetLen(0x087b, 8) // ZC_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x087c +packetLen(0x087c, 2) // ZC_REASSEMBLY_AUTH35 + +// Packet: 0x087d +#if PACKETVER >= 20180131 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20180117 +packetLen(0x087d, 19) // ZC_REASSEMBLY_AUTH36 +#elif PACKETVER >= 20180103 +packetLen(0x087d, 2) // ZC_REASSEMBLY_AUTH36 +#endif + +// Packet: 0x087e +#if PACKETVER >= 20180523 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20180511 +packetLen(0x087e, -1) // ZC_REASSEMBLY_AUTH37 +#elif PACKETVER >= 20180103 +packetLen(0x087e, 2) // ZC_REASSEMBLY_AUTH37 +#endif + +// Packet: 0x087f +packetLen(0x087f, 2) // ZC_REASSEMBLY_AUTH38 + +// Packet: 0x0880 +#if PACKETVER >= 20180523 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180511 +packetLen(0x0880, 6) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180228 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180221 +packetLen(0x0880, 19) // ZC_REASSEMBLY_AUTH39 +#elif PACKETVER >= 20180103 +packetLen(0x0880, 2) // ZC_REASSEMBLY_AUTH39 +#endif + +// Packet: 0x0881 +#if PACKETVER >= 20180131 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180117 +packetLen(0x0881, 10) // ZC_REASSEMBLY_AUTH40 +#elif PACKETVER >= 20180103 +packetLen(0x0881, 2) // ZC_REASSEMBLY_AUTH40 +#endif + +// Packet: 0x0882 +#if PACKETVER >= 20180221 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20180213 +packetLen(0x0882, 12) // ZC_REASSEMBLY_AUTH41 +#elif PACKETVER >= 20180103 +packetLen(0x0882, 2) // ZC_REASSEMBLY_AUTH41 +#endif + +// Packet: 0x0883 +packetLen(0x0883, 2) // ZC_REASSEMBLY_AUTH42 + +// Packet: 0x0884 +packetLen(0x0884, 2) // CZ_REASSEMBLY_AUTH01 + +// Packet: 0x0885 +packetLen(0x0885, 2) // CZ_REASSEMBLY_AUTH02 + +// Packet: 0x0886 +#if PACKETVER >= 20180131 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20180117 +packetLen(0x0886, 6) // CZ_REASSEMBLY_AUTH03 +#elif PACKETVER >= 20180103 +packetLen(0x0886, 2) // CZ_REASSEMBLY_AUTH03 +#endif + +// Packet: 0x0887 +#if PACKETVER >= 20180221 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20180213 +packetLen(0x0887, -1) // CZ_REASSEMBLY_AUTH04 +#elif PACKETVER >= 20180103 +packetLen(0x0887, 2) // CZ_REASSEMBLY_AUTH04 +#endif + +// Packet: 0x0888 +#if PACKETVER >= 20180221 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20180213 +packetLen(0x0888, 6) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20180117 +packetLen(0x0888, 2) // CZ_REASSEMBLY_AUTH05 +#elif PACKETVER >= 20180103 +packetLen(0x0888, 7) // CZ_REASSEMBLY_AUTH05 +#endif + +// Packet: 0x0889 +#if PACKETVER >= 20180523 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180511 +packetLen(0x0889, 8) // CZ_REASSEMBLY_AUTH06 +#elif PACKETVER >= 20180103 +packetLen(0x0889, 2) // CZ_REASSEMBLY_AUTH06 +#endif + +// Packet: 0x088a +#if PACKETVER >= 20180221 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20180213 +packetLen(0x088a, 4) // CZ_REASSEMBLY_AUTH07 +#elif PACKETVER >= 20180103 +packetLen(0x088a, 2) // CZ_REASSEMBLY_AUTH07 +#endif + +// Packet: 0x088b +packetLen(0x088b, 2) // CZ_REASSEMBLY_AUTH08 + +// Packet: 0x088c +packetLen(0x088c, 2) // CZ_REASSEMBLY_AUTH09 + +// Packet: 0x088d +#if PACKETVER >= 20180315 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180314 +packetLen(0x088d, 36) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180228 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180221 +packetLen(0x088d, 6) // CZ_REASSEMBLY_AUTH10 +#elif PACKETVER >= 20180103 +packetLen(0x088d, 2) // CZ_REASSEMBLY_AUTH10 +#endif + +// Packet: 0x088e +#if PACKETVER >= 20180221 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20180213 +packetLen(0x088e, 6) // CZ_REASSEMBLY_AUTH11 +#elif PACKETVER >= 20180103 +packetLen(0x088e, 2) // CZ_REASSEMBLY_AUTH11 +#endif + +// Packet: 0x088f +packetLen(0x088f, 2) // CZ_REASSEMBLY_AUTH12 + +// Packet: 0x0890 +#if PACKETVER >= 20180131 +packetLen(0x0890, 2) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20180117 +packetLen(0x0890, 8) // CZ_REASSEMBLY_AUTH13 +#elif PACKETVER >= 20180103 +packetLen(0x0890, 6) // CZ_REASSEMBLY_AUTH13 +#endif + +// Packet: 0x0891 +#if PACKETVER >= 20180315 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180314 +packetLen(0x0891, 8) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180131 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180117 +packetLen(0x0891, 6) // CZ_REASSEMBLY_AUTH14 +#elif PACKETVER >= 20180103 +packetLen(0x0891, 2) // CZ_REASSEMBLY_AUTH14 +#endif + +// Packet: 0x0892 +#if PACKETVER >= 20180228 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180221 +packetLen(0x0892, 6) // CZ_REASSEMBLY_AUTH15 +#elif PACKETVER >= 20180103 +packetLen(0x0892, 2) // CZ_REASSEMBLY_AUTH15 +#endif + +// Packet: 0x0893 +#if PACKETVER >= 20180523 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20180511 +packetLen(0x0893, 18) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20180131 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20180117 +packetLen(0x0893, 7) // CZ_REASSEMBLY_AUTH16 +#elif PACKETVER >= 20180103 +packetLen(0x0893, 2) // CZ_REASSEMBLY_AUTH16 +#endif + +// Packet: 0x0894 +packetLen(0x0894, 2) // CZ_REASSEMBLY_AUTH17 + +// Packet: 0x0895 +#if PACKETVER >= 20180228 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20180221 +packetLen(0x0895, 6) // CZ_REASSEMBLY_AUTH18 +#elif PACKETVER >= 20180103 +packetLen(0x0895, 2) // CZ_REASSEMBLY_AUTH18 +#endif + +// Packet: 0x0896 +#if PACKETVER >= 20180523 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20180511 +packetLen(0x0896, 19) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20180117 +packetLen(0x0896, 2) // CZ_REASSEMBLY_AUTH19 +#elif PACKETVER >= 20180103 +packetLen(0x0896, 10) // CZ_REASSEMBLY_AUTH19 +#endif + +// Packet: 0x0897 +#if PACKETVER >= 20180315 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20180314 +packetLen(0x0897, 6) // CZ_REASSEMBLY_AUTH20 +#elif PACKETVER >= 20180103 +packetLen(0x0897, 2) // CZ_REASSEMBLY_AUTH20 +#endif + +// Packet: 0x0898 +packetLen(0x0898, 2) // CZ_REASSEMBLY_AUTH21 + +// Packet: 0x0899 +#if PACKETVER >= 20180523 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180511 +packetLen(0x0899, 12) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180315 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180314 +packetLen(0x0899, 8) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180221 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180213 +packetLen(0x0899, 26) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180131 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180117 +packetLen(0x0899, -1) // CZ_REASSEMBLY_AUTH22 +#elif PACKETVER >= 20180103 +packetLen(0x0899, 2) // CZ_REASSEMBLY_AUTH22 +#endif + +// Packet: 0x089a +packetLen(0x089a, 2) // CZ_REASSEMBLY_AUTH23 + +// Packet: 0x089b +packetLen(0x089b, 2) // CZ_REASSEMBLY_AUTH24 + +// Packet: 0x089c +packetLen(0x089c, 2) // CZ_REASSEMBLY_AUTH25 + +// Packet: 0x089d +#if PACKETVER >= 20180131 +packetLen(0x089d, 2) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20180117 +packetLen(0x089d, -1) // CZ_REASSEMBLY_AUTH26 +#elif PACKETVER >= 20180103 +packetLen(0x089d, 8) // CZ_REASSEMBLY_AUTH26 +#endif + +// Packet: 0x089e +#if PACKETVER >= 20180315 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180314 +packetLen(0x089e, -1) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180131 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180117 +packetLen(0x089e, 5) // CZ_REASSEMBLY_AUTH27 +#elif PACKETVER >= 20180103 +packetLen(0x089e, 2) // CZ_REASSEMBLY_AUTH27 +#endif + +// Packet: 0x089f +packetLen(0x089f, 2) // CZ_REASSEMBLY_AUTH28 + +// Packet: 0x08a0 +packetLen(0x08a0, 2) // CZ_REASSEMBLY_AUTH29 + +// Packet: 0x08a1 +#if PACKETVER >= 20180315 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180314 +packetLen(0x08a1, 4) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180228 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180221 +packetLen(0x08a1, 5) // CZ_REASSEMBLY_AUTH30 +#elif PACKETVER >= 20180103 +packetLen(0x08a1, 2) // CZ_REASSEMBLY_AUTH30 +#endif + +// Packet: 0x08a2 +#if PACKETVER >= 20180523 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20180511 +packetLen(0x08a2, 6) // CZ_REASSEMBLY_AUTH31 +#elif PACKETVER >= 20180103 +packetLen(0x08a2, 2) // CZ_REASSEMBLY_AUTH31 +#endif + +// Packet: 0x08a3 +#if PACKETVER >= 20180228 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180221 +packetLen(0x08a3, 10) // CZ_REASSEMBLY_AUTH32 +#elif PACKETVER >= 20180103 +packetLen(0x08a3, 2) // CZ_REASSEMBLY_AUTH32 +#endif + +// Packet: 0x08a4 +packetLen(0x08a4, 2) // CZ_REASSEMBLY_AUTH33 + +// Packet: 0x08a5 +#if PACKETVER >= 20180523 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180511 +packetLen(0x08a5, 6) // CZ_REASSEMBLY_AUTH34 +#elif PACKETVER >= 20180103 +packetLen(0x08a5, 2) // CZ_REASSEMBLY_AUTH34 +#endif + +// Packet: 0x08a6 +#if PACKETVER >= 20180117 +packetLen(0x08a6, 2) // CZ_REASSEMBLY_AUTH35 +#elif PACKETVER >= 20180103 +packetLen(0x08a6, 6) // CZ_REASSEMBLY_AUTH35 +#endif + +// Packet: 0x08a7 +packetLen(0x08a7, 2) // CZ_REASSEMBLY_AUTH36 + +// Packet: 0x08a8 +packetLen(0x08a8, 2) // CZ_REASSEMBLY_AUTH37 + +// Packet: 0x08a9 +packetLen(0x08a9, 2) // CZ_REASSEMBLY_AUTH38 + +// Packet: 0x08aa +packetLen(0x08aa, 2) // CZ_REASSEMBLY_AUTH39 + +// Packet: 0x08ab +packetLen(0x08ab, 2) // CZ_REASSEMBLY_AUTH40 + +// Packet: 0x08ac +packetLen(0x08ac, 2) // CZ_REASSEMBLY_AUTH41 + +// Packet: 0x08ad +packetLen(0x08ad, 2) // CZ_REASSEMBLY_AUTH42 + +// Packet: 0x08af +packetLen(0x08af, 10) // HC_WAITING_LOGIN + +// Packet: 0x08b0 +packetLen(0x08b0, 17) // CH_WAITING_LOGIN + +// Packet: 0x08b1 +packetLen(0x08b1, -1) // ZC_MCSTORE_NOTMOVEITEM_LIST + +// Packet: 0x08b2 +packetLen(0x08b2, -1) // AC_REALNAME_AUTH + +// Packet: 0x08b3 +packetLen(0x08b3, -1) // ZC_SHOWSCRIPT + +// Packet: 0x08b4 +packetLen(0x08b4, 2) // ZC_START_COLLECTION + +// Packet: 0x08b5 +packetLen(0x08b5, 6) // CZ_TRYCOLLECTION + +// Packet: 0x08b6 +packetLen(0x08b6, 3) // ZC_TRYCOLLECTION + +// Packet: 0x08b8 +packetLen(0x08b8, 10) // CH_SECOND_PASSWD_ACK + +// Packet: 0x08b9 +packetLen(0x08b9, 12) // HC_SECOND_PASSWD_LOGIN + +// Packet: 0x08ba +packetLen(0x08ba, 10) // CH_MAKE_SECOND_PASSWD + +// Packet: 0x08bb +packetLen(0x08bb, 8) // HC_MAKE_SECOND_PASSWD + +// Packet: 0x08bc +packetLen(0x08bc, 10) // CH_DELETE_SECOND_PASSWD + +// Packet: 0x08bd +packetLen(0x08bd, 8) // HC_DELETE_SECOND_PASSWD + +// Packet: 0x08be +packetLen(0x08be, 14) // CH_EDIT_SECOND_PASSWD + +// Packet: 0x08bf +packetLen(0x08bf, 8) // HC_EDIT_SECOND_PASSWD + +// Packet: 0x08c0 +packetLen(0x08c0, -1) // ZC_ACK_SE_CASH_ITEM_LIST2 + +// Packet: 0x08c1 +packetLen(0x08c1, 2) // CZ_MACRO_START + +// Packet: 0x08c2 +packetLen(0x08c2, 2) // CZ_MACRO_STOP + +// Packet: 0x08c3 +packetLen(0x08c3, 10) // CH_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c4 +packetLen(0x08c4, 8) // HC_NOT_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c5 +packetLen(0x08c5, 6) // CH_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c6 +packetLen(0x08c6, 4) // HC_AVAILABLE_SECOND_PASSWD + +// Packet: 0x08c7 +packetLen(0x08c7, -1) // ZC_SKILL_ENTRY3 + +// Packet: 0x08c8 +packetLen(0x08c8, 34) // ZC_NOTIFY_ACT3 + +// Packet: 0x08c9 +packetLen(0x08c9, 2) // CZ_REQ_SCHEDULER_CASHITEM + +// Packet: 0x08ca +packetLen(0x08ca, -1) // ZC_ACK_SCHEDULER_CASHITEM + +// Packet: 0x08cb +packetLen(0x08cb, -1) // ZC_PERSONAL_INFOMATION + +// Packet: 0x08cc +packetLen(0x08cc, 109) // CA_LOGIN5 + +// Packet: 0x08cd +packetLen(0x08cd, 10) // ZC_STOPMOVE_FORCE + +// Packet: 0x08ce +packetLen(0x08ce, 2) // ZC_FAILED_GET_ITEM_FROM_ZONEDA + +// Packet: 0x08cf +packetLen(0x08cf, 10) // ZC_SPIRITS_ATTRIBUTE + +// Packet: 0x08d0 +packetLen(0x08d0, 9) // ZC_REQ_WEAR_EQUIP_ACK2 + +// Packet: 0x08d1 +packetLen(0x08d1, 7) // ZC_REQ_TAKEOFF_EQUIP_ACK2 + +// Packet: 0x08d2 +packetLen(0x08d2, 10) // ZC_FASTMOVE + +// Packet: 0x08d3 +packetLen(0x08d3, 10) // ZC_SE_CASHSHOP_UPDATE + +// Packet: 0x08d4 +packetLen(0x08d4, 8) // CH_REQ_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d5 +packetLen(0x08d5, -1) // HC_ACK_CHANGE_CHARACTER_SLOT + +// Packet: 0x08d6 +packetLen(0x08d6, 6) // ZC_CLEAR_DIALOG + +// Packet: 0x08d7 +packetLen(0x08d7, 28) // CZ_REQ_ENTRY_QUEUE_APPLY + +// Packet: 0x08d8 +packetLen(0x08d8, 27) // ZC_ACK_ENTRY_QUEUE_APPLY + +// Packet: 0x08d9 +packetLen(0x08d9, 30) // ZC_NOTIFY_ENTRY_QUEUE_APPLY + +// Packet: 0x08da +packetLen(0x08da, 26) // CZ_REQ_ENTRY_QUEUE_CANCEL + +// Packet: 0x08db +packetLen(0x08db, 27) // ZC_ACK_ENTRY_QUEUE_CANCEL + +// Packet: 0x08dc +packetLen(0x08dc, 26) // ZC_NOTIFY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08dd +packetLen(0x08dd, 27) // CZ_REPLY_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08de +packetLen(0x08de, 27) // ZC_REPLY_ACK_ENTRY_QUEUE_ADMISSION + +// Packet: 0x08df +packetLen(0x08df, 50) // ZC_NOTIFY_LOBBY_ADMISSION + +// Packet: 0x08e0 +packetLen(0x08e0, 51) // CZ_REPLY_LOBBY_ADMISSION + +// Packet: 0x08e1 +packetLen(0x08e1, 51) // ZC_REPLY_ACK_LOBBY_ADMISSION + +// Packet: 0x08e2 +packetLen(0x08e2, 27) // ZC_NAVIGATION_ACTIVE + +// Packet: 0x08e3 +packetLen(0x08e3, 157) // HC_UPDATE_CHARINFO + +// Packet: 0x08e4 +packetLen(0x08e4, 6) // AC_SHUTDOWN_INFO + +// Packet: 0x08fc +packetLen(0x08fc, 30) // CH_REQ_CHANGE_CHARACTERNAME + +// Packet: 0x08fd +packetLen(0x08fd, 6) // CH_ACK_CHANGE_CHARACTERNAME + +// Packet: 0x08fe +packetLen(0x08fe, -1) // ZC_HUNTING_QUEST_INFO + +// Packet: 0x08ff +packetLen(0x08ff, 24) // ZC_EFST_SET_ENTER + +// Packet: 0x0900 +packetLen(0x0900, -1) // ZC_INVENTORY_ITEMLIST_NORMAL + +// Packet: 0x0901 +packetLen(0x0901, -1) // ZC_INVENTORY_ITEMLIST_EQUIP + +// Packet: 0x0902 +packetLen(0x0902, -1) // ZC_CART_ITEMLIST_NORMAL + +// Packet: 0x0903 +packetLen(0x0903, -1) // ZC_CART_ITEMLIST_EQUIP + +// Packet: 0x0904 +packetLen(0x0904, -1) // ZC_STORE_ITEMLIST_NORMAL + +// Packet: 0x0905 +packetLen(0x0905, -1) // ZC_STORE_ITEMLIST_EQUIP + +// Packet: 0x0906 +packetLen(0x0906, -1) // ZC_MICROSCOPE + +// Packet: 0x0907 +packetLen(0x0907, 5) // CZ_INVENTORY_TAB + +// Packet: 0x0908 +packetLen(0x0908, 5) // ZC_INVENTORY_TAB + +// Packet: 0x090a +packetLen(0x090a, 26) // CZ_REQ_ENTRY_QUEUE_RANKING + +// Packet: 0x090d +packetLen(0x090d, -1) // ZC_PREMIUM_CAMPAIGN_INFO + +// Packet: 0x090e +packetLen(0x090e, 2) // ZC_ENTRY_QUEUE_INIT + +// Packet: 0x090f +packetLen(0x090f, -1) // ZC_NOTIFY_NEWENTRY7 + +// Packet: 0x0910 +packetLen(0x0910, 10) // CZ_REQ_PARTY_NAME + +// Packet: 0x0911 +packetLen(0x0911, 30) // ZC_ACK_PARTY_NAME + +// Packet: 0x0912 +packetLen(0x0912, 10) // CZ_REQ_GUILD_NAME + +// Packet: 0x0913 +packetLen(0x0913, 30) // ZC_ACK_GUILD_NAME + +// Packet: 0x0914 +packetLen(0x0914, -1) // ZC_NOTIFY_MOVEENTRY9 + +// Packet: 0x0915 +packetLen(0x0915, -1) // ZC_NOTIFY_STANDENTRY8 + +// Packet: 0x0916 +packetLen(0x0916, 26) // CZ_REQ_JOIN_GUILD2 + +// Packet: 0x0917 +#if PACKETVER >= 20180315 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180314 +packetLen(0x0917, -1) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180221 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180213 +packetLen(0x0917, 7) // ZC_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180103 +packetLen(0x0917, 2) // ZC_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0918 +#if PACKETVER >= 20180315 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20180314 +packetLen(0x0918, 7) // ZC_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20180103 +packetLen(0x0918, 2) // ZC_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0919 +#if PACKETVER >= 20180523 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180511 +packetLen(0x0919, 5) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180131 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180117 +packetLen(0x0919, 6) // ZC_REASSEMBLY_AUTH45 +#elif PACKETVER >= 20180103 +packetLen(0x0919, 2) // ZC_REASSEMBLY_AUTH45 +#endif + +// Packet: 0x091a +#if PACKETVER >= 20180523 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20180511 +packetLen(0x091a, -1) // ZC_REASSEMBLY_AUTH46 +#elif PACKETVER >= 20180103 +packetLen(0x091a, 2) // ZC_REASSEMBLY_AUTH46 +#endif + +// Packet: 0x091b +#if PACKETVER >= 20180228 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#elif PACKETVER >= 20180221 +packetLen(0x091b, 90) // ZC_PRNPC_STATE +#elif PACKETVER >= 20180103 +packetLen(0x091b, 2) // ZC_PRNPC_STATE +#endif + +// Packet: 0x091c +#if PACKETVER >= 20180131 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20180117 +packetLen(0x091c, 8) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#elif PACKETVER >= 20180103 +packetLen(0x091c, 2) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM +#endif + +// Packet: 0x091d +#if PACKETVER >= 20180523 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20180511 +packetLen(0x091d, -1) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20180221 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20180213 +packetLen(0x091d, 5) // ZC_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20180103 +packetLen(0x091d, 2) // ZC_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x091e +#if PACKETVER >= 20180117 +packetLen(0x091e, 2) // ZC_REASSEMBLY_AUTH50 +#elif PACKETVER >= 20180103 +packetLen(0x091e, 6) // ZC_REASSEMBLY_AUTH50 +#endif + +// Packet: 0x091f +#if PACKETVER >= 20180315 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20180314 +packetLen(0x091f, 10) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20180131 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20180117 +packetLen(0x091f, 90) // ZC_REASSEMBLY_AUTH51 +#elif PACKETVER >= 20180103 +packetLen(0x091f, 2) // ZC_REASSEMBLY_AUTH51 +#endif + +// Packet: 0x0920 +#if PACKETVER >= 20180523 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180511 +packetLen(0x0920, 4) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180315 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180314 +packetLen(0x0920, 6) // ZC_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180103 +packetLen(0x0920, 2) // ZC_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x0921 +#if PACKETVER >= 20180228 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180221 +packetLen(0x0921, -1) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180131 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180117 +packetLen(0x0921, 5) // ZC_REASSEMBLY_AUTH53 +#elif PACKETVER >= 20180103 +packetLen(0x0921, 2) // ZC_REASSEMBLY_AUTH53 +#endif + +// Packet: 0x0922 +#if PACKETVER >= 20180221 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20180213 +packetLen(0x0922, -1) // ZC_REASSEMBLY_AUTH54 +#elif PACKETVER >= 20180103 +packetLen(0x0922, 2) // ZC_REASSEMBLY_AUTH54 +#endif + +// Packet: 0x0923 +#if PACKETVER >= 20180315 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180314 +packetLen(0x0923, 12) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180228 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180221 +packetLen(0x0923, 5) // ZC_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180103 +packetLen(0x0923, 2) // ZC_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x0924 +#if PACKETVER >= 20180117 +packetLen(0x0924, 2) // ZC_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180103 +packetLen(0x0924, 4) // ZC_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x0925 +packetLen(0x0925, 2) // ZC_REASSEMBLY_AUTH57 + +// Packet: 0x0926 +packetLen(0x0926, 2) // ZC_REASSEMBLY_AUTH58 + +// Packet: 0x0927 +packetLen(0x0927, 2) // ZC_REASSEMBLY_AUTH59 + +// Packet: 0x0928 +packetLen(0x0928, 2) // ZC_REASSEMBLY_AUTH60 + +// Packet: 0x0929 +#if PACKETVER >= 20180131 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20180117 +packetLen(0x0929, 18) // ZC_REASSEMBLY_AUTH61 +#elif PACKETVER >= 20180103 +packetLen(0x0929, 2) // ZC_REASSEMBLY_AUTH61 +#endif + +// Packet: 0x092a +packetLen(0x092a, 2) // ZC_REASSEMBLY_AUTH62 + +// Packet: 0x092b +packetLen(0x092b, 2) // ZC_REASSEMBLY_AUTH63 + +// Packet: 0x092c +#if PACKETVER >= 20180523 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180511 +packetLen(0x092c, 10) // ZC_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180103 +packetLen(0x092c, 2) // ZC_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x092d +#if PACKETVER >= 20180523 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180511 +packetLen(0x092d, 26) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180228 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180221 +packetLen(0x092d, 26) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180131 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180117 +packetLen(0x092d, 4) // ZC_REASSEMBLY_AUTH65 +#elif PACKETVER >= 20180103 +packetLen(0x092d, 2) // ZC_REASSEMBLY_AUTH65 +#endif + +// Packet: 0x092e +#if PACKETVER >= 20180523 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180511 +packetLen(0x092e, -1) // ZC_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180103 +packetLen(0x092e, 2) // ZC_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x092f +packetLen(0x092f, 2) // ZC_REASSEMBLY_AUTH67 + +// Packet: 0x0930 +#if PACKETVER >= 20180315 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20180314 +packetLen(0x0930, 6) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20180228 +packetLen(0x0930, 36) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20180221 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20180213 +packetLen(0x0930, 8) // ZC_REASSEMBLY_AUTH68 +#elif PACKETVER >= 20180103 +packetLen(0x0930, 2) // ZC_REASSEMBLY_AUTH68 +#endif + +// Packet: 0x0931 +#if PACKETVER >= 20180315 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20180314 +packetLen(0x0931, 6) // ZC_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20180103 +packetLen(0x0931, 2) // ZC_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x0932 +#if PACKETVER >= 20180228 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20180221 +packetLen(0x0932, -1) // ZC_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20180103 +packetLen(0x0932, 2) // ZC_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x0933 +#if PACKETVER >= 20180131 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180117 +packetLen(0x0933, 12) // ZC_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180103 +packetLen(0x0933, 2) // ZC_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x0934 +packetLen(0x0934, 2) // ZC_REASSEMBLY_AUTH72 + +// Packet: 0x0935 +packetLen(0x0935, 2) // ZC_REASSEMBLY_AUTH73 + +// Packet: 0x0936 +packetLen(0x0936, 2) // ZC_REASSEMBLY_AUTH74 + +// Packet: 0x0937 +packetLen(0x0937, 2) // ZC_REASSEMBLY_AUTH75 + +// Packet: 0x0938 +#if PACKETVER >= 20180117 +packetLen(0x0938, 2) // ZC_REASSEMBLY_AUTH76 +#elif PACKETVER >= 20180103 +packetLen(0x0938, 90) // ZC_REASSEMBLY_AUTH76 +#endif + +// Packet: 0x0939 +packetLen(0x0939, 2) // ZC_REASSEMBLY_AUTH77 + +// Packet: 0x093a +packetLen(0x093a, 2) // ZC_REASSEMBLY_AUTH78 + +// Packet: 0x093b +#if PACKETVER >= 20180228 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20180221 +packetLen(0x093b, 12) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20180117 +packetLen(0x093b, 2) // ZC_REASSEMBLY_AUTH79 +#elif PACKETVER >= 20180103 +packetLen(0x093b, 26) // ZC_REASSEMBLY_AUTH79 +#endif + +// Packet: 0x093c +packetLen(0x093c, 2) // ZC_REASSEMBLY_AUTH80 + +// Packet: 0x093d +#if PACKETVER >= 20180228 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180221 +packetLen(0x093d, 26) // ZC_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180103 +packetLen(0x093d, 2) // ZC_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x093e +#if PACKETVER >= 20180228 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20180221 +packetLen(0x093e, 8) // ZC_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20180103 +packetLen(0x093e, 2) // ZC_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x093f +#if PACKETVER >= 20180315 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20180314 +packetLen(0x093f, 6) // ZC_REASSEMBLY_AUTH83 +#elif PACKETVER >= 20180103 +packetLen(0x093f, 2) // ZC_REASSEMBLY_AUTH83 +#endif + +// Packet: 0x0940 +#if PACKETVER >= 20180207 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180131 +packetLen(0x0940, 90) // ZC_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180103 +packetLen(0x0940, 2) // ZC_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x0941 +#if PACKETVER >= 20180221 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180213 +packetLen(0x0941, 19) // CZ_REASSEMBLY_AUTH43 +#elif PACKETVER >= 20180103 +packetLen(0x0941, 2) // CZ_REASSEMBLY_AUTH43 +#endif + +// Packet: 0x0942 +#if PACKETVER >= 20180523 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20180511 +packetLen(0x0942, 5) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20180228 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20180221 +packetLen(0x0942, 36) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20180213 +packetLen(0x0942, 8) // CZ_REASSEMBLY_AUTH44 +#elif PACKETVER >= 20180103 +packetLen(0x0942, 2) // CZ_REASSEMBLY_AUTH44 +#endif + +// Packet: 0x0943 +packetLen(0x0943, 2) // CZ_REASSEMBLY_AUTH45 + +// Packet: 0x0944 +packetLen(0x0944, 2) // CZ_REASSEMBLY_AUTH46 + +// Packet: 0x0945 +packetLen(0x0945, 2) // CZ_REASSEMBLY_AUTH47 + +// Packet: 0x0946 +#if PACKETVER >= 20180315 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180314 +packetLen(0x0946, 90) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180131 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180117 +packetLen(0x0946, 26) // CZ_REASSEMBLY_AUTH48 +#elif PACKETVER >= 20180103 +packetLen(0x0946, 2) // CZ_REASSEMBLY_AUTH48 +#endif + +// Packet: 0x0947 +#if PACKETVER >= 20180221 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20180213 +packetLen(0x0947, 6) // CZ_REASSEMBLY_AUTH49 +#elif PACKETVER >= 20180103 +packetLen(0x0947, 2) // CZ_REASSEMBLY_AUTH49 +#endif + +// Packet: 0x0948 +packetLen(0x0948, 2) // CZ_REASSEMBLY_AUTH50 + +// Packet: 0x0949 +packetLen(0x0949, 2) // CZ_REASSEMBLY_AUTH51 + +// Packet: 0x094a +#if PACKETVER >= 20180523 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180511 +packetLen(0x094a, 90) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180315 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180314 +packetLen(0x094a, 10) // CZ_REASSEMBLY_AUTH52 +#elif PACKETVER >= 20180103 +packetLen(0x094a, 2) // CZ_REASSEMBLY_AUTH52 +#endif + +// Packet: 0x094b +packetLen(0x094b, 2) // CZ_REASSEMBLY_AUTH53 + +// Packet: 0x094c +packetLen(0x094c, 2) // CZ_REASSEMBLY_AUTH54 + +// Packet: 0x094d +#if PACKETVER >= 20180221 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180213 +packetLen(0x094d, 10) // CZ_REASSEMBLY_AUTH55 +#elif PACKETVER >= 20180103 +packetLen(0x094d, 2) // CZ_REASSEMBLY_AUTH55 +#endif + +// Packet: 0x094e +#if PACKETVER >= 20180315 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180314 +packetLen(0x094e, 5) // CZ_REASSEMBLY_AUTH56 +#elif PACKETVER >= 20180103 +packetLen(0x094e, 2) // CZ_REASSEMBLY_AUTH56 +#endif + +// Packet: 0x094f +packetLen(0x094f, 2) // CZ_REASSEMBLY_AUTH57 + +// Packet: 0x0950 +packetLen(0x0950, 2) // CZ_REASSEMBLY_AUTH58 + +// Packet: 0x0951 +#if PACKETVER >= 20180228 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20180221 +packetLen(0x0951, 18) // CZ_REASSEMBLY_AUTH59 +#elif PACKETVER >= 20180103 +packetLen(0x0951, 2) // CZ_REASSEMBLY_AUTH59 +#endif + +// Packet: 0x0952 +#if PACKETVER >= 20180228 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20180221 +packetLen(0x0952, 4) // CZ_REASSEMBLY_AUTH60 +#elif PACKETVER >= 20180103 +packetLen(0x0952, 2) // CZ_REASSEMBLY_AUTH60 +#endif + +// Packet: 0x0953 +packetLen(0x0953, 2) // CZ_REASSEMBLY_AUTH61 + +// Packet: 0x0954 +#if PACKETVER >= 20180315 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20180314 +packetLen(0x0954, 18) // CZ_REASSEMBLY_AUTH62 +#elif PACKETVER >= 20180103 +packetLen(0x0954, 2) // CZ_REASSEMBLY_AUTH62 +#endif + +// Packet: 0x0955 +#if PACKETVER >= 20180523 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20180511 +packetLen(0x0955, 26) // CZ_REASSEMBLY_AUTH63 +#elif PACKETVER >= 20180103 +packetLen(0x0955, 2) // CZ_REASSEMBLY_AUTH63 +#endif + +// Packet: 0x0956 +#if PACKETVER >= 20180523 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180511 +packetLen(0x0956, 8) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180315 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180314 +packetLen(0x0956, 6) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180117 +packetLen(0x0956, 2) // CZ_REASSEMBLY_AUTH64 +#elif PACKETVER >= 20180103 +packetLen(0x0956, -1) // CZ_REASSEMBLY_AUTH64 +#endif + +// Packet: 0x0957 +packetLen(0x0957, 2) // CZ_REASSEMBLY_AUTH65 + +// Packet: 0x0958 +#if PACKETVER >= 20180315 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180314 +packetLen(0x0958, -1) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180228 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180221 +packetLen(0x0958, 7) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180213 +packetLen(0x0958, 26) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180117 +packetLen(0x0958, 2) // CZ_REASSEMBLY_AUTH66 +#elif PACKETVER >= 20180103 +packetLen(0x0958, 19) // CZ_REASSEMBLY_AUTH66 +#endif + +// Packet: 0x0959 +#if PACKETVER >= 20180228 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20180221 +packetLen(0x0959, 8) // CZ_REASSEMBLY_AUTH67 +#elif PACKETVER >= 20180103 +packetLen(0x0959, 2) // CZ_REASSEMBLY_AUTH67 +#endif + +// Packet: 0x095a +packetLen(0x095a, 2) // CZ_REASSEMBLY_AUTH68 + +// Packet: 0x095b +#if PACKETVER >= 20180117 +packetLen(0x095b, 2) // CZ_REASSEMBLY_AUTH69 +#elif PACKETVER >= 20180103 +packetLen(0x095b, 36) // CZ_REASSEMBLY_AUTH69 +#endif + +// Packet: 0x095c +#if PACKETVER >= 20180523 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20180511 +packetLen(0x095c, 10) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20180221 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20180213 +packetLen(0x095c, -1) // CZ_REASSEMBLY_AUTH70 +#elif PACKETVER >= 20180103 +packetLen(0x095c, 2) // CZ_REASSEMBLY_AUTH70 +#endif + +// Packet: 0x095d +#if PACKETVER >= 20180228 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180221 +packetLen(0x095d, 6) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180117 +packetLen(0x095d, 2) // CZ_REASSEMBLY_AUTH71 +#elif PACKETVER >= 20180103 +packetLen(0x095d, 6) // CZ_REASSEMBLY_AUTH71 +#endif + +// Packet: 0x095e +#if PACKETVER >= 20180131 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20180117 +packetLen(0x095e, -1) // CZ_REASSEMBLY_AUTH72 +#elif PACKETVER >= 20180103 +packetLen(0x095e, 2) // CZ_REASSEMBLY_AUTH72 +#endif + +// Packet: 0x095f +packetLen(0x095f, 2) // CZ_REASSEMBLY_AUTH73 + +// Packet: 0x0960 +packetLen(0x0960, 2) // CZ_REASSEMBLY_AUTH74 + +// Packet: 0x0961 +#if PACKETVER >= 20180523 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180511 +packetLen(0x0961, 5) // CZ_REASSEMBLY_AUTH75 +#elif PACKETVER >= 20180103 +packetLen(0x0961, 2) // CZ_REASSEMBLY_AUTH75 +#endif + +// Packet: 0x0962 +packetLen(0x0962, 2) // CZ_REASSEMBLY_AUTH76 + +// Packet: 0x0963 +#if PACKETVER >= 20180131 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20180117 +packetLen(0x0963, 5) // CZ_REASSEMBLY_AUTH77 +#elif PACKETVER >= 20180103 +packetLen(0x0963, 2) // CZ_REASSEMBLY_AUTH77 +#endif + +// Packet: 0x0964 +#if PACKETVER >= 20180117 +packetLen(0x0964, 2) // CZ_REASSEMBLY_AUTH78 +#elif PACKETVER >= 20180103 +packetLen(0x0964, 6) // CZ_REASSEMBLY_AUTH78 +#endif + +// Packet: 0x0965 +packetLen(0x0965, 2) // CZ_REASSEMBLY_AUTH79 + +// Packet: 0x0966 +#if PACKETVER >= 20180117 +packetLen(0x0966, 2) // CZ_REASSEMBLY_AUTH80 +#elif PACKETVER >= 20180103 +packetLen(0x0966, 8) // CZ_REASSEMBLY_AUTH80 +#endif + +// Packet: 0x0967 +#if PACKETVER >= 20180221 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180207 +packetLen(0x0967, 36) // CZ_REASSEMBLY_AUTH81 +#elif PACKETVER >= 20180103 +packetLen(0x0967, 2) // CZ_REASSEMBLY_AUTH81 +#endif + +// Packet: 0x0968 +#if PACKETVER >= 20180523 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20180511 +packetLen(0x0968, 36) // CZ_REASSEMBLY_AUTH82 +#elif PACKETVER >= 20180103 +packetLen(0x0968, 2) // CZ_REASSEMBLY_AUTH82 +#endif + +// Packet: 0x0969 +packetLen(0x0969, 2) // CZ_REASSEMBLY_AUTH83 + +// Packet: 0x096a +#if PACKETVER >= 20180314 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180228 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180213 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180131 +packetLen(0x096a, 6) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180117 +packetLen(0x096a, 2) // CZ_REASSEMBLY_AUTH84 +#elif PACKETVER >= 20180103 +packetLen(0x096a, 12) // CZ_REASSEMBLY_AUTH84 +#endif + +// Packet: 0x096b +packetLen(0x096b, 4) // ZC_PRNPC_STATE + +// Packet: 0x096c +packetLen(0x096c, 6) // ZC_PARTY_RECRUIT_CANCEL_VOLUNTEER_TO_PM + +// Packet: 0x096d +packetLen(0x096d, -1) // ZC_MERGE_ITEM_OPEN + +// Packet: 0x096e +packetLen(0x096e, -1) // CZ_REQ_MERGE_ITEM + +// Packet: 0x096f +packetLen(0x096f, 7) // ZC_ACK_MERGE_ITEM + +// Packet: 0x0970 +packetLen(0x0970, 31) // CH_MAKE_CHAR_NOT_STATS + +// Packet: 0x0971 +packetLen(0x0971, 6) // ZC_PARTY_RECRUIT_REFUSE_VOLUNTEER_TO_PM + +// Packet: 0x0972 +packetLen(0x0972, -1) // ZC_SAY_DIALOG2 + +// Packet: 0x0973 +packetLen(0x0973, 7) // ZC_WAIT_DIALOG2 + +// Packet: 0x0974 +packetLen(0x0974, 2) // CZ_CANCEL_MERGE_ITEM + +// Packet: 0x0975 +packetLen(0x0975, -1) // ZC_STORE_ITEMLIST_NORMAL_V2 + +// Packet: 0x0976 +packetLen(0x0976, -1) // ZC_STORE_ITEMLIST_EQUIP_V2 + +// Packet: 0x0977 +packetLen(0x0977, 14) // ZC_HP_INFO + +// Packet: 0x0978 +packetLen(0x0978, 6) // CZ_REQ_BEFORE_WORLD_INFO + +// Packet: 0x0979 +packetLen(0x0979, 50) // ZC_ACK_BEFORE_WORLD_INFO + +// Packet: 0x097a +packetLen(0x097a, -1) // ZC_ALL_QUEST_LIST2 + +// Packet: 0x097b +packetLen(0x097b, -1) // ZC_PERSONAL_INFOMATION2 + +// Packet: 0x097c +packetLen(0x097c, 4) // CZ_REQ_RANKING + +// Packet: 0x097d +packetLen(0x097d, 288) // ZC_ACK_RANKING + +// Packet: 0x097e +packetLen(0x097e, 12) // ZC_UPDATE_RANKING_POINT + +// Packet: 0x097f +packetLen(0x097f, -1) // ZC_SELECTCART + +// Packet: 0x0980 +packetLen(0x0980, 7) // CZ_SELECTCART + +// Packet: 0x0981 +packetLen(0x0981, -1) // ZC_PERSONAL_INFOMATION_CHN + +// Packet: 0x0982 +packetLen(0x0982, 7) // ZC_FATIGUE_CHN + +// Packet: 0x0983 +packetLen(0x0983, 29) // ZC_MSG_STATE_CHANGE3 + +// Packet: 0x0984 +packetLen(0x0984, 28) // ZC_EFST_SET_ENTER2 + +// Packet: 0x0985 +packetLen(0x0985, -1) // ZC_SKILL_POSTDELAY_LIST2 + +// Packet: 0x0986 +packetLen(0x0986, 10) // AC_SHUTDOWN_NOTIFY + +// Packet: 0x0987 +packetLen(0x0987, -1) // CA_LOGIN6 + +// Packet: 0x0988 +packetLen(0x0988, 6) // ZC_NOTIFY_CLAN_CONNECTINFO + +// Packet: 0x0989 +packetLen(0x0989, 2) // ZC_ACK_CLAN_LEAVE + +// Packet: 0x098a +packetLen(0x098a, -1) // ZC_CLANINFO + +// Packet: 0x098b +packetLen(0x098b, 2) // AC_REQ_NEW_USER + +// Packet: 0x098c +packetLen(0x098c, 4) // CA_ACK_NEW_USER + +// Packet: 0x098d +packetLen(0x098d, -1) // CZ_CLAN_CHAT + +// Packet: 0x098e +packetLen(0x098e, -1) // ZC_NOTIFY_CLAN_CHAT + +// Packet: 0x098f +packetLen(0x098f, -1) // CH_DELETE_CHAR3_EXT + +// Packet: 0x0990 +#if PACKETVER >= 20181114 +packetLen(0x0990, 41) // ZC_ITEM_PICKUP_ACK_V5 +#elif PACKETVER >= 20180103 +packetLen(0x0990, 31) // ZC_ITEM_PICKUP_ACK_V5 +#endif + +// Packet: 0x0991 +packetLen(0x0991, -1) // ZC_INVENTORY_ITEMLIST_NORMAL_V5 + +// Packet: 0x0992 +packetLen(0x0992, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V5 + +// Packet: 0x0993 +packetLen(0x0993, -1) // ZC_CART_ITEMLIST_NORMAL_V5 + +// Packet: 0x0994 +packetLen(0x0994, -1) // ZC_CART_ITEMLIST_EQUIP_V5 + +// Packet: 0x0995 +packetLen(0x0995, -1) // ZC_STORE_ITEMLIST_NORMAL_V5 + +// Packet: 0x0996 +packetLen(0x0996, -1) // ZC_STORE_ITEMLIST_EQUIP_V5 + +// Packet: 0x0997 +packetLen(0x0997, -1) // ZC_EQUIPWIN_MICROSCOPE_V5 + +// Packet: 0x0998 +packetLen(0x0998, 8) // CZ_REQ_WEAR_EQUIP_V5 + +// Packet: 0x0999 +packetLen(0x0999, 11) // ZC_ACK_WEAR_EQUIP_V5 + +// Packet: 0x099a +packetLen(0x099a, 9) // ZC_ACK_TAKEOFF_EQUIP_V5 + +// Packet: 0x099b +packetLen(0x099b, 8) // ZC_MAPPROPERTY_R2 + +// Packet: 0x099c +packetLen(0x099c, 6) // CH_REQ_CHARINFO_PER_PAGE + +// Packet: 0x099d +packetLen(0x099d, -1) // HC_ACK_CHARINFO_PER_PAGE + +// Packet: 0x099e +packetLen(0x099e, 12) // HC_QUEUE_ORDER + +// Packet: 0x099f +packetLen(0x099f, -1) // ZC_SKILL_ENTRY4 + +// Packet: 0x09a0 +packetLen(0x09a0, 6) // HC_CHARLIST_NOTIFY + +// Packet: 0x09a1 +packetLen(0x09a1, 2) // CH_CHARLIST_REQ + +// Packet: 0x09a2 +packetLen(0x09a2, 6) // AC_REQ_MOBILE_OTP + +// Packet: 0x09a3 +packetLen(0x09a3, -1) // CA_ACK_MOBILE_OTP + +// Packet: 0x09a4 +packetLen(0x09a4, 18) // ZC_DISPATCH_TIMING_INFO_CHN + +// Packet: 0x09a5 +packetLen(0x09a5, 7) // AC_REFUSE_LOGIN3 + +// Packet: 0x09a6 +packetLen(0x09a6, 12) // ZC_BANKING_CHECK + +// Packet: 0x09a7 +packetLen(0x09a7, 10) // CZ_REQ_BANKING_DEPOSIT + +// Packet: 0x09a8 +packetLen(0x09a8, 16) // ZC_ACK_BANKING_DEPOSIT + +// Packet: 0x09a9 +packetLen(0x09a9, 10) // CZ_REQ_BANKING_WITHDRAW + +// Packet: 0x09aa +packetLen(0x09aa, 16) // ZC_ACK_BANKING_WITHDRAW + +// Packet: 0x09ab +packetLen(0x09ab, 6) // CZ_REQ_BANKING_CHECK + +// Packet: 0x09ac +packetLen(0x09ac, -1) // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + +// Packet: 0x09ad +#if PACKETVER >= 20181114 +packetLen(0x09ad, 12) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#elif PACKETVER >= 20180103 +packetLen(0x09ad, 10) // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO +#endif + +// Packet: 0x09ae +#if PACKETVER >= 20181114 +packetLen(0x09ae, 19) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09ae, 17) // CZ_REQ_APPLY_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09af +packetLen(0x09af, 4) // ZC_ACK_APPLY_BARGAIN_SALE_ITEM + +// Packet: 0x09b0 +#if PACKETVER >= 20181114 +packetLen(0x09b0, 10) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09b0, 8) // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09b1 +packetLen(0x09b1, 4) // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM + +// Packet: 0x09b2 +#if PACKETVER >= 20181114 +packetLen(0x09b2, 10) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#elif PACKETVER >= 20180103 +packetLen(0x09b2, 8) // ZC_NOTIFY_BARGAIN_SALE_SELLING +#endif + +// Packet: 0x09b3 +#if PACKETVER >= 20181114 +packetLen(0x09b3, 6) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#elif PACKETVER >= 20180103 +packetLen(0x09b3, 4) // ZC_NOTIFY_BARGAIN_SALE_CLOSE +#endif + +// Packet: 0x09b4 +packetLen(0x09b4, 6) // CZ_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b5 +packetLen(0x09b5, 2) // ZC_OPEN_BARGAIN_SALE_TOOL + +// Packet: 0x09b6 +packetLen(0x09b6, 6) // CZ_REQ_OPEN_BANKING + +// Packet: 0x09b7 +packetLen(0x09b7, 4) // ZC_ACK_OPEN_BANKING + +// Packet: 0x09b8 +packetLen(0x09b8, 6) // CZ_REQ_CLOSE_BANKING + +// Packet: 0x09b9 +packetLen(0x09b9, 4) // ZC_ACK_CLOSE_BANKING + +// Packet: 0x09ba +packetLen(0x09ba, 2) // CZ_REQ_OPEN_GUILD_STORAGE + +// Packet: 0x09bb +packetLen(0x09bb, 6) // ZC_ACK_OPEN_GUILD_STORAGE + +// Packet: 0x09bc +packetLen(0x09bc, 6) // CZ_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09bd +packetLen(0x09bd, 2) // ZC_CLOSE_BARGAIN_SALE_TOOL + +// Packet: 0x09be +packetLen(0x09be, 2) // CZ_REQ_CLOSE_GUILD_STORAGE + +// Packet: 0x09bf +packetLen(0x09bf, 4) // ZC_ACK_CLOSE_GUILD_STORAGE + +// Packet: 0x09c1 +packetLen(0x09c1, 10) // ZC_C_MARKERINFO + +// Packet: 0x09c2 +packetLen(0x09c2, -1) // HC_SECRETSCAN_DATA + +// Packet: 0x09c3 +#if PACKETVER >= 20181114 +packetLen(0x09c3, 10) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09c3, 8) // CZ_REQ_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c4 +#if PACKETVER >= 20181114 +packetLen(0x09c4, 10) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x09c4, 8) // ZC_ACK_COUNT_BARGAIN_SALE_ITEM +#endif + +// Packet: 0x09c5 +packetLen(0x09c5, 1042) // CS_LOGIN_QUERY + +// Packet: 0x09c6 +packetLen(0x09c6, -1) // SC_LOGIN_ANSWER + +// Packet: 0x09c7 +packetLen(0x09c7, 18) // SC_LOGIN_ERROR + +// Packet: 0x09c8 +packetLen(0x09c8, -1) // CA_LOGIN_OTP + +// Packet: 0x09c9 +packetLen(0x09c9, -1) // SC_SOCT + +// Packet: 0x09ca +packetLen(0x09ca, -1) // ZC_SKILL_ENTRY5 + +// Packet: 0x09cb +packetLen(0x09cb, 17) // ZC_USE_SKILL2 + +// Packet: 0x09cc +packetLen(0x09cc, -1) // ZC_SECRETSCAN_DATA + +// Packet: 0x09cd +packetLen(0x09cd, 8) // ZC_MSG_COLOR + +// Packet: 0x09ce +packetLen(0x09ce, 102) // CZ_ITEM_CREATE_EX + +// Packet: 0x09cf +packetLen(0x09cf, -1) // ZC_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d0 +packetLen(0x09d0, -1) // CZ_NPROTECTGAMEGUARDCSAUTH + +// Packet: 0x09d1 +packetLen(0x09d1, 14) // ZC_PROGRESS_ACTOR + +// Packet: 0x09d2 +packetLen(0x09d2, -1) // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 + +// Packet: 0x09d3 +packetLen(0x09d3, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 + +// Packet: 0x09d4 +packetLen(0x09d4, 2) // CZ_NPC_TRADE_QUIT + +// Packet: 0x09d5 +packetLen(0x09d5, -1) // ZC_NPC_MARKET_OPEN + +// Packet: 0x09d6 +packetLen(0x09d6, -1) // CZ_NPC_MARKET_PURCHASE + +// Packet: 0x09d7 +packetLen(0x09d7, -1) // ZC_NPC_MARKET_PURCHASE_RESULT + +// Packet: 0x09d8 +packetLen(0x09d8, 2) // CZ_NPC_MARKET_CLOSE + +// Packet: 0x09d9 +packetLen(0x09d9, 4) // CZ_REQ_GUILDSTORAGE_LOG + +// Packet: 0x09da +packetLen(0x09da, -1) // ZC_ACK_GUILDSTORAGE_LOG + +// Packet: 0x09db +packetLen(0x09db, -1) // ZC_NOTIFY_MOVEENTRY10 + +// Packet: 0x09dc +packetLen(0x09dc, -1) // ZC_NOTIFY_NEWENTRY10 + +// Packet: 0x09dd +packetLen(0x09dd, -1) // ZC_NOTIFY_STANDENTRY10 + +// Packet: 0x09de +packetLen(0x09de, -1) // ZC_WHISPER02 + +// Packet: 0x09df +packetLen(0x09df, 7) // ZC_ACK_WHISPER02 + +// Packet: 0x09e0 +packetLen(0x09e0, -1) // SC_LOGIN_ANSWER_WITH_ID + +// Packet: 0x09e1 +packetLen(0x09e1, 8) // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + +// Packet: 0x09e2 +packetLen(0x09e2, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + +// Packet: 0x09e3 +packetLen(0x09e3, 8) // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + +// Packet: 0x09e4 +packetLen(0x09e4, 8) // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + +// Packet: 0x09e5 +packetLen(0x09e5, 18) // ZC_DELETEITEM_FROM_MCSTORE2 + +// Packet: 0x09e6 +#if PACKETVER >= 20181114 +packetLen(0x09e6, 24) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#elif PACKETVER >= 20180103 +packetLen(0x09e6, 22) // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 +#endif + +// Packet: 0x09e7 +packetLen(0x09e7, 3) // ZC_NOTIFY_UNREAD_RODEX + +// Packet: 0x09e8 +packetLen(0x09e8, 11) // CZ_OPEN_RODEXBOX + +// Packet: 0x09e9 +packetLen(0x09e9, 2) // CZ_CLOSE_RODEXBOX + +// Packet: 0x09ea +packetLen(0x09ea, 11) // CZ_REQ_READ_RODEX + +// Packet: 0x09eb +packetLen(0x09eb, -1) // ZC_ACK_READ_RODEX + +// Packet: 0x09ec +packetLen(0x09ec, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x09ed +packetLen(0x09ed, 3) // ZC_ACK_SEND_RODEX + +// Packet: 0x09ee +packetLen(0x09ee, 11) // CZ_REQ_NEXT_RODEX + +// Packet: 0x09ef +packetLen(0x09ef, 11) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x09f0 +packetLen(0x09f0, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x09f1 +packetLen(0x09f1, 11) // CZ_REQ_ZENY_FROM_RODEX + +// Packet: 0x09f2 +packetLen(0x09f2, 12) // ZC_ACK_ZENY_FROM_RODEX + +// Packet: 0x09f3 +packetLen(0x09f3, 11) // CZ_REQ_ITEM_FROM_RODEX + +// Packet: 0x09f4 +packetLen(0x09f4, 12) // ZC_ACK_ITEM_FROM_RODEX + +// Packet: 0x09f5 +packetLen(0x09f5, 11) // CZ_REQ_DELETE_RODEX + +// Packet: 0x09f6 +packetLen(0x09f6, 11) // ZC_ACK_DELETE_RODEX + +// Packet: 0x09f7 +#if PACKETVER >= 20181114 +packetLen(0x09f7, 77) // ZC_PROPERTY_HOMUN_2 +#elif PACKETVER >= 20180103 +packetLen(0x09f7, 75) // ZC_PROPERTY_HOMUN_2 +#endif + +// Packet: 0x09f8 +packetLen(0x09f8, -1) // ZC_ALL_QUEST_LIST3 + +// Packet: 0x09f9 +packetLen(0x09f9, 143) // ZC_ADD_QUEST_EX + +// Packet: 0x09fa +packetLen(0x09fa, -1) // ZC_UPDATE_MISSION_HUNT_EX + +// Packet: 0x09fb +packetLen(0x09fb, -1) // CZ_PET_EVOLUTION + +// Packet: 0x09fc +packetLen(0x09fc, 6) // ZC_PET_EVOLUTION_RESULT + +// Packet: 0x09fd +packetLen(0x09fd, -1) // ZC_NOTIFY_MOVEENTRY11 + +// Packet: 0x09fe +packetLen(0x09fe, -1) // ZC_NOTIFY_NEWENTRY11 + +// Packet: 0x09ff +packetLen(0x09ff, -1) // ZC_NOTIFY_STANDENTRY11 + +// Packet: 0x0a00 +packetLen(0x0a00, 269) // ZC_SHORTCUT_KEY_LIST_V3 + +// Packet: 0x0a01 +packetLen(0x0a01, 3) // CZ_SHORTCUTKEYBAR_ROTATE + +// Packet: 0x0a02 +packetLen(0x0a02, 4) // ZC_DRESSROOM_OPEN + +// Packet: 0x0a03 +packetLen(0x0a03, 2) // CZ_REQ_CANCEL_WRITE_RODEX + +// Packet: 0x0a04 +packetLen(0x0a04, 6) // CZ_REQ_ADD_ITEM_RODEX + +// Packet: 0x0a05 +#if PACKETVER >= 20181114 +packetLen(0x0a05, 63) // ZC_ACK_ADD_ITEM_RODEX +#elif PACKETVER >= 20180103 +packetLen(0x0a05, 53) // ZC_ACK_ADD_ITEM_RODEX +#endif + +// Packet: 0x0a06 +packetLen(0x0a06, 6) // CZ_REQ_REMOVE_RODEX_ITEM + +// Packet: 0x0a07 +packetLen(0x0a07, 9) // ZC_ACK_REMOVE_RODEX_ITEM + +// Packet: 0x0a08 +packetLen(0x0a08, 26) // CZ_REQ_OPEN_WRITE_RODEX + +// Packet: 0x0a09 +#if PACKETVER >= 20181114 +packetLen(0x0a09, 55) // ZC_ADD_EXCHANGE_ITEM3 +#elif PACKETVER >= 20180103 +packetLen(0x0a09, 45) // ZC_ADD_EXCHANGE_ITEM3 +#endif + +// Packet: 0x0a0a +#if PACKETVER >= 20181114 +packetLen(0x0a0a, 57) // ZC_ADD_ITEM_TO_STORE3 +#elif PACKETVER >= 20180103 +packetLen(0x0a0a, 47) // ZC_ADD_ITEM_TO_STORE3 +#endif + +// Packet: 0x0a0b +#if PACKETVER >= 20181114 +packetLen(0x0a0b, 57) // ZC_ADD_ITEM_TO_CART3 +#elif PACKETVER >= 20180103 +packetLen(0x0a0b, 47) // ZC_ADD_ITEM_TO_CART3 +#endif + +// Packet: 0x0a0c +#if PACKETVER >= 20181114 +packetLen(0x0a0c, 66) // ZC_ITEM_PICKUP_ACK_V6 +#elif PACKETVER >= 20180103 +packetLen(0x0a0c, 56) // ZC_ITEM_PICKUP_ACK_V6 +#endif + +// Packet: 0x0a0d +packetLen(0x0a0d, -1) // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a0e +packetLen(0x0a0e, 14) // ZC_BATTLEFIELD_NOTIFY_HP2 + +// Packet: 0x0a0f +packetLen(0x0a0f, -1) // ZC_CART_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a10 +packetLen(0x0a10, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a11 +packetLen(0x0a11, -1) // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 + +// Packet: 0x0a12 +packetLen(0x0a12, 27) // ZC_ACK_OPEN_WRITE_RODEX + +// Packet: 0x0a13 +packetLen(0x0a13, 26) // CZ_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a14 +packetLen(0x0a14, 10) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a15 +packetLen(0x0a15, 12) // ZC_GOLDPCCAFE_POINT + +// Packet: 0x0a16 +packetLen(0x0a16, 26) // CZ_DYNAMICNPC_CREATE_REQUEST + +// Packet: 0x0a17 +packetLen(0x0a17, 6) // ZC_DYNAMICNPC_CREATE_RESULT + +// Packet: 0x0a18 +packetLen(0x0a18, 14) // ZC_ACCEPT_ENTER3 + +// Packet: 0x0a19 +packetLen(0x0a19, 2) // CZ_REQ_OPEN_ROULETTE + +// Packet: 0x0a1a +#if PACKETVER >= 20181114 +packetLen(0x0a1a, 25) // ZC_ACK_OPEN_ROULETTE +#elif PACKETVER >= 20180103 +packetLen(0x0a1a, 23) // ZC_ACK_OPEN_ROULETTE +#endif + +// Packet: 0x0a1b +packetLen(0x0a1b, 2) // CZ_REQ_ROULETTE_INFO + +// Packet: 0x0a1c +packetLen(0x0a1c, -1) // ZC_ACK_ROULEITTE_INFO + +// Packet: 0x0a1d +packetLen(0x0a1d, 2) // CZ_REQ_CLOSE_ROULETTE + +// Packet: 0x0a1e +packetLen(0x0a1e, 3) // ZC_ACK_CLOSE_ROULETTE + +// Packet: 0x0a1f +packetLen(0x0a1f, 2) // CZ_REQ_GENERATE_ROULETTE + +// Packet: 0x0a20 +#if PACKETVER >= 20181114 +packetLen(0x0a20, 23) // ZC_ACK_GENERATE_ROULETTE +#elif PACKETVER >= 20180103 +packetLen(0x0a20, 21) // ZC_ACK_GENERATE_ROULETTE +#endif + +// Packet: 0x0a21 +packetLen(0x0a21, 3) // CZ_RECV_ROULETTE_ITEM + +// Packet: 0x0a22 +#if PACKETVER >= 20181114 +packetLen(0x0a22, 7) // ZC_RECV_ROULETTE_ITEM +#elif PACKETVER >= 20180103 +packetLen(0x0a22, 5) // ZC_RECV_ROULETTE_ITEM +#endif + +// Packet: 0x0a23 +packetLen(0x0a23, -1) // ZC_ALL_ACH_LIST + +// Packet: 0x0a24 +packetLen(0x0a24, 66) // ZC_ACH_UPDATE + +// Packet: 0x0a25 +packetLen(0x0a25, 6) // CZ_REQ_ACH_REWARD + +// Packet: 0x0a26 +packetLen(0x0a26, 7) // ZC_REQ_ACH_REWARD_ACK + +// Packet: 0x0a27 +packetLen(0x0a27, 8) // ZC_RECOVERY2 + +// Packet: 0x0a28 +packetLen(0x0a28, 3) // ZC_ACK_OPENSTORE2 + +// Packet: 0x0a29 +packetLen(0x0a29, 6) // ZC_REQ_AU_BOT + +// Packet: 0x0a2a +packetLen(0x0a2a, 6) // CZ_ACK_AU_BOT + +// Packet: 0x0a2b +packetLen(0x0a2b, 14) // ZC_SE_CASHSHOP_OPEN2 + +// Packet: 0x0a2c +packetLen(0x0a2c, 12) // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT + +// Packet: 0x0a2d +packetLen(0x0a2d, -1) // ZC_EQUIPWIN_MICROSCOPE_V6 + +// Packet: 0x0a2e +packetLen(0x0a2e, 6) // CZ_REQ_CHANGE_TITLE + +// Packet: 0x0a2f +packetLen(0x0a2f, 7) // ZC_ACK_CHANGE_TITLE + +// Packet: 0x0a30 +packetLen(0x0a30, 106) // ZC_ACK_REQNAMEALL2 + +// Packet: 0x0a31 +packetLen(0x0a31, -1) // ZC_RESULT_PACKAGE_ITEM_TEST + +// Packet: 0x0a32 +packetLen(0x0a32, 2) // ZC_OPEN_RODEX_THROUGH_NPC_ONLY + +// Packet: 0x0a33 +packetLen(0x0a33, 7) // ZC_UPDATE_ROULETTE_COIN + +// Packet: 0x0a34 +packetLen(0x0a34, 6) // ZC_UPDATE_TAIWANCASH + +// Packet: 0x0a35 +packetLen(0x0a35, 4) // CZ_REQ_ONECLICK_ITEMIDENTIFY + +// Packet: 0x0a36 +packetLen(0x0a36, 7) // ZC_HP_INFO_TINY + +// Packet: 0x0a37 +#if PACKETVER >= 20181114 +packetLen(0x0a37, 69) // ZC_ITEM_PICKUP_ACK_V7 +#elif PACKETVER >= 20180103 +packetLen(0x0a37, 59) // ZC_ITEM_PICKUP_ACK_V7 +#endif + +// Packet: 0x0a38 +packetLen(0x0a38, 3) // ZC_OPEN_UI + +// Packet: 0x0a39 +packetLen(0x0a39, 36) // CH_MAKE_CHAR + +// Packet: 0x0a3a +packetLen(0x0a3a, 12) + +// Packet: 0x0a3b +packetLen(0x0a3b, -1) // ZC_CUSTOM_HAT_EFFECT + +// Packet: 0x0a3c +packetLen(0x0a3c, -1) + +// Packet: 0x0a3d +#if PACKETVER >= 20181114 +packetLen(0x0a3d, 20) +#elif PACKETVER >= 20180103 +packetLen(0x0a3d, 18) +#endif + +// Packet: 0x0a3e +packetLen(0x0a3e, -1) + +// Packet: 0x0a3f +#if PACKETVER >= 20181114 +packetLen(0x0a3f, 11) +#elif PACKETVER >= 20180103 +packetLen(0x0a3f, 9) +#endif + +// Packet: 0x0a40 +packetLen(0x0a40, 11) + +// Packet: 0x0a41 +packetLen(0x0a41, 18) // ZC_AOE_EFFECT_SKILL + +// Packet: 0x0a42 +packetLen(0x0a42, 43) + +// Packet: 0x0a43 +packetLen(0x0a43, 85) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0a44 +packetLen(0x0a44, -1) // ZC_GROUP_LIST + +// Packet: 0x0a46 +packetLen(0x0a46, 14) + +// Packet: 0x0a47 +packetLen(0x0a47, 3) // ZC_STYLE_CHANGE_RES + +// Packet: 0x0a48 +packetLen(0x0a48, 2) + +// Packet: 0x0a49 +#if PACKETVER >= 20181114 +packetLen(0x0a49, 22) // CZ_PRIVATE_AIRSHIP_REQUEST +#elif PACKETVER >= 20180103 +packetLen(0x0a49, 20) // CZ_PRIVATE_AIRSHIP_REQUEST +#endif + +// Packet: 0x0a4a +packetLen(0x0a4a, 6) // ZC_PRIVATE_AIRSHIP_RESPONSE + +// Packet: 0x0a4b +packetLen(0x0a4b, 22) // ZC_AIRSHIP_MAPMOVE + +// Packet: 0x0a4c +packetLen(0x0a4c, 28) // ZC_AIRSHIP_SERVERMOVE + +// Packet: 0x0a4d +packetLen(0x0a4d, -1) + +// Packet: 0x0a4e +#if PACKETVER >= 20181114 +packetLen(0x0a4e, 6) +#elif PACKETVER >= 20180103 +packetLen(0x0a4e, 4) +#endif + +// Packet: 0x0a4f +packetLen(0x0a4f, -1) + +// Packet: 0x0a50 +packetLen(0x0a50, 4) + +// Packet: 0x0a51 +packetLen(0x0a51, 34) // ZC_CHECK_RECEIVE_CHARACTER_NAME + +// Packet: 0x0a52 +packetLen(0x0a52, 20) + +// Packet: 0x0a53 +packetLen(0x0a53, 10) + +// Packet: 0x0a54 +packetLen(0x0a54, -1) + +// Packet: 0x0a55 +packetLen(0x0a55, 2) + +// Packet: 0x0a56 +packetLen(0x0a56, 6) + +// Packet: 0x0a57 +packetLen(0x0a57, 6) + +// Packet: 0x0a58 +packetLen(0x0a58, 8) + +// Packet: 0x0a59 +packetLen(0x0a59, -1) + +// Packet: 0x0a5a +packetLen(0x0a5a, 2) + +// Packet: 0x0a5b +packetLen(0x0a5b, 7) + +// Packet: 0x0a5c +packetLen(0x0a5c, 18) + +// Packet: 0x0a5d +packetLen(0x0a5d, 6) + +// Packet: 0x0a68 +packetLen(0x0a68, 3) // CZ_REQ_OPEN_UI + +// Packet: 0x0a69 +packetLen(0x0a69, 6) + +// Packet: 0x0a6a +packetLen(0x0a6a, 12) + +// Packet: 0x0a6b +packetLen(0x0a6b, -1) + +// Packet: 0x0a6c +packetLen(0x0a6c, 7) + +// Packet: 0x0a6d +packetLen(0x0a6d, -1) + +// Packet: 0x0a6e +packetLen(0x0a6e, -1) // CZ_REQ_SEND_RODEX + +// Packet: 0x0a6f +packetLen(0x0a6f, -1) // ZC_FORMATSTRING_MSG_COLOR + +// Packet: 0x0a70 +packetLen(0x0a70, 2) + +// Packet: 0x0a71 +packetLen(0x0a71, -1) + +// Packet: 0x0a72 +packetLen(0x0a72, 61) + +// Packet: 0x0a73 +packetLen(0x0a73, 2) + +// Packet: 0x0a74 +packetLen(0x0a74, 8) + +// Packet: 0x0a76 +packetLen(0x0a76, 80) + +// Packet: 0x0a77 +packetLen(0x0a77, 15) + +// Packet: 0x0a78 +packetLen(0x0a78, 15) + +// Packet: 0x0a79 +packetLen(0x0a79, -1) + +// Packet: 0x0a7b +packetLen(0x0a7b, -1) + +// Packet: 0x0a7c +packetLen(0x0a7c, -1) + +// Packet: 0x0a7d +packetLen(0x0a7d, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0a7e +packetLen(0x0a7e, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS_READY + +// Packet: 0x0a7f +packetLen(0x0a7f, -1) // CZ_OFFLINE_STORE_CREATE + +// Packet: 0x0a80 +packetLen(0x0a80, 6) + +// Packet: 0x0a81 +packetLen(0x0a81, 4) + +// Packet: 0x0a82 +packetLen(0x0a82, 46) + +// Packet: 0x0a83 +packetLen(0x0a83, 46) + +// Packet: 0x0a84 +packetLen(0x0a84, 94) // ZC_GUILD_INFO + +// Packet: 0x0a85 +packetLen(0x0a85, 82) + +// Packet: 0x0a86 +packetLen(0x0a86, -1) + +// Packet: 0x0a87 +packetLen(0x0a87, -1) + +// Packet: 0x0a88 +packetLen(0x0a88, 2) + +// Packet: 0x0a89 +#if PACKETVER >= 20181114 +packetLen(0x0a89, 61) // ZC_NOTIFY_OFFLINE_STORE +#elif PACKETVER >= 20180103 +packetLen(0x0a89, 57) // ZC_NOTIFY_OFFLINE_STORE +#endif + +// Packet: 0x0a8a +packetLen(0x0a8a, 6) // ZC_OFFLINE_STORE_VANISH + +// Packet: 0x0a8b +packetLen(0x0a8b, 2) + +// Packet: 0x0a8c +packetLen(0x0a8c, 2) + +// Packet: 0x0a8d +packetLen(0x0a8d, -1) // ZC_OFFLINE_STORE_OWNER_ITEMS + +// Packet: 0x0a8e +packetLen(0x0a8e, 2) + +// Packet: 0x0a8f +packetLen(0x0a8f, 2) + +// Packet: 0x0a90 +packetLen(0x0a90, 3) + +// Packet: 0x0a91 +packetLen(0x0a91, -1) // ZC_OFFLINE_STORE_ITEMS + +// Packet: 0x0a92 +packetLen(0x0a92, -1) + +// Packet: 0x0a93 +packetLen(0x0a93, 3) + +// Packet: 0x0a94 +packetLen(0x0a94, 2) + +// Packet: 0x0a95 +packetLen(0x0a95, 4) + +// Packet: 0x0a96 +#if PACKETVER >= 20181114 +packetLen(0x0a96, 61) // ZC_ADD_EXCHANGE_ITEM4 +#elif PACKETVER >= 20180103 +packetLen(0x0a96, 51) // ZC_ADD_EXCHANGE_ITEM4 +#endif + +// Packet: 0x0a97 +packetLen(0x0a97, 8) // CZ_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a98 +packetLen(0x0a98, 10) // ZC_ALT_EQUIPMENT_EQUIP + +// Packet: 0x0a99 +packetLen(0x0a99, 4) + +// Packet: 0x0a9a +packetLen(0x0a9a, 10) // ZC_ALT_EQUIPMENT_REMOVE + +// Packet: 0x0a9b +packetLen(0x0a9b, -1) // ZC_ALT_EQUIPMENT_ITEMS + +// Packet: 0x0a9c +packetLen(0x0a9c, 2) + +// Packet: 0x0a9d +packetLen(0x0a9d, 4) + +// Packet: 0x0a9e +packetLen(0x0a9e, 2) + +// Packet: 0x0a9f +packetLen(0x0a9f, 2) + +// Packet: 0x0aa0 +packetLen(0x0aa0, 2) // ZC_REFINE_OPEN_WINDOW + +// Packet: 0x0aa1 +packetLen(0x0aa1, 4) // CZ_REFINE_ADD_ITEM + +// Packet: 0x0aa2 +packetLen(0x0aa2, -1) // ZC_REFINE_ADD_ITEM + +// Packet: 0x0aa3 +#if PACKETVER >= 20181114 +packetLen(0x0aa3, 9) // CZ_REFINE_ITEM_REQUEST +#elif PACKETVER >= 20180103 +packetLen(0x0aa3, 7) // CZ_REFINE_ITEM_REQUEST +#endif + +// Packet: 0x0aa4 +packetLen(0x0aa4, 2) // CZ_REFINE_WINDOW_CLOSE + +// Packet: 0x0aa5 +packetLen(0x0aa5, -1) // ZC_MEMBERMGR_INFO + +// Packet: 0x0aa6 +packetLen(0x0aa6, 36) // ZC_MEMBER_ADD + +// Packet: 0x0aa7 +packetLen(0x0aa7, 6) // ZC_INVENTORY_MOVE_FAILED + +// Packet: 0x0aa8 +packetLen(0x0aa8, 5) + +// Packet: 0x0aa9 +packetLen(0x0aa9, -1) + +// Packet: 0x0aaa +packetLen(0x0aaa, -1) + +// Packet: 0x0aab +packetLen(0x0aab, -1) + +// Packet: 0x0aac +packetLen(0x0aac, 69) + +// Packet: 0x0aad +packetLen(0x0aad, 51) + +// Packet: 0x0aae +packetLen(0x0aae, 2) + +// Packet: 0x0aaf +packetLen(0x0aaf, 6) + +// Packet: 0x0ab0 +packetLen(0x0ab0, 6) + +// Packet: 0x0ab1 +packetLen(0x0ab1, 14) + +// Packet: 0x0ab2 +packetLen(0x0ab2, 7) // ZC_GROUP_ISALIVE + +// Packet: 0x0ab3 +packetLen(0x0ab3, 19) + +// Packet: 0x0ab4 +#if PACKETVER >= 20181114 +packetLen(0x0ab4, 6) +#elif PACKETVER >= 20180103 +packetLen(0x0ab4, 4) +#endif + +// Packet: 0x0ab5 +packetLen(0x0ab5, 2) + +// Packet: 0x0ab6 +#if PACKETVER >= 20181114 +packetLen(0x0ab6, 8) +#elif PACKETVER >= 20180103 +packetLen(0x0ab6, 6) +#endif + +// Packet: 0x0ab7 +packetLen(0x0ab7, 4) + +// Packet: 0x0ab8 +packetLen(0x0ab8, 2) + +// Packet: 0x0ab9 +#if PACKETVER >= 20181114 +packetLen(0x0ab9, 47) // ZC_ITEM_PREVIEW +#elif PACKETVER >= 20180103 +packetLen(0x0ab9, 39) // ZC_ITEM_PREVIEW +#endif + +// Packet: 0x0aba +packetLen(0x0aba, 2) + +// Packet: 0x0abb +packetLen(0x0abb, 2) + +// Packet: 0x0abc +packetLen(0x0abc, -1) + +// Packet: 0x0abd +packetLen(0x0abd, 10) // ZC_PARTY_MEMBER_JOB_LEVEL + +// Packet: 0x0abe +packetLen(0x0abe, -1) // ZC_WARPLIST + +// Packet: 0x0abf +packetLen(0x0abf, -1) + +// Packet: 0x0ac0 +packetLen(0x0ac0, 26) // CZ_OPEN_RODEXBOX + +// Packet: 0x0ac1 +packetLen(0x0ac1, 26) // CZ_REQ_REFRESH_RODEX + +// Packet: 0x0ac2 +packetLen(0x0ac2, -1) // ZC_ACK_RODEX_LIST + +// Packet: 0x0ac3 +packetLen(0x0ac3, 2) + +// Packet: 0x0ac4 +packetLen(0x0ac4, -1) // AC_ACCEPT_LOGIN + +// Packet: 0x0ac5 +packetLen(0x0ac5, 156) // HC_NOTIFY_ZONESVR + +// Packet: 0x0ac6 +packetLen(0x0ac6, 156) + +// Packet: 0x0ac7 +packetLen(0x0ac7, 156) // ZC_NPCACK_SERVERMOVE + +// Packet: 0x0ac8 +packetLen(0x0ac8, 2) // ZC_UNKNOWN_CLEAN_ITEMS_LISTS + +// Packet: 0x0ac9 +packetLen(0x0ac9, -1) + +// Packet: 0x0aca +packetLen(0x0aca, 3) + +// Packet: 0x0acb +packetLen(0x0acb, 12) // ZC_PAR_CHANGE + +// Packet: 0x0acc +packetLen(0x0acc, 18) // ZC_NOTIFY_EXP + +// Packet: 0x0acd +packetLen(0x0acd, 23) + +// Packet: 0x0ace +packetLen(0x0ace, 4) + +// Packet: 0x0acf +packetLen(0x0acf, 68) // CA_LOGIN_OTP + +// Packet: 0x0ad0 +packetLen(0x0ad0, 11) // CA_OTP_CODE + +// Packet: 0x0ad1 +packetLen(0x0ad1, -1) + +// Packet: 0x0ad2 +packetLen(0x0ad2, 30) + +// Packet: 0x0ad3 +packetLen(0x0ad3, -1) + +// Packet: 0x0ad4 +packetLen(0x0ad4, -1) + +// Packet: 0x0ad5 +packetLen(0x0ad5, 2) + +// Packet: 0x0ad6 +packetLen(0x0ad6, 2) + +// Packet: 0x0ad7 +packetLen(0x0ad7, 8) + +// Packet: 0x0ad8 +packetLen(0x0ad8, 8) + +// Packet: 0x0ad9 +packetLen(0x0ad9, -1) + +// Packet: 0x0ada +#if PACKETVER >= 20181114 +packetLen(0x0ada, 32) // ZC_REFINE_STATUS +#elif PACKETVER >= 20180103 +packetLen(0x0ada, 30) // ZC_REFINE_STATUS +#endif + +// Packet: 0x0adb +packetLen(0x0adb, -1) + +// Packet: 0x0adc +packetLen(0x0adc, 6) // ZC_EQUIPWIN_OTHER + +// Packet: 0x0add +#if PACKETVER >= 20181114 +packetLen(0x0add, 24) // ZC_ITEM_FALL_ENTRY +#elif PACKETVER >= 20180103 +packetLen(0x0add, 22) // ZC_ITEM_FALL_ENTRY +#endif + +// Packet: 0x0ade +packetLen(0x0ade, 6) // ZC_OVERWEIGHT_PERCENT + +// Packet: 0x0adf +packetLen(0x0adf, 58) // ZC_ACK_REQNAME + +// Packet: 0x0ae0 +packetLen(0x0ae0, 30) + +// Packet: 0x0ae1 +packetLen(0x0ae1, 28) + +// Packet: 0x0ae2 +packetLen(0x0ae2, 7) // ZC_OPEN_UI + +// Packet: 0x0ae3 +packetLen(0x0ae3, -1) // AC_LOGIN_OTP + +// Packet: 0x0ae4 +packetLen(0x0ae4, 89) // ZC_ADD_MEMBER_TO_GROUP + +// Packet: 0x0ae5 +packetLen(0x0ae5, -1) // ZC_GROUP_LIST + +// Packet: 0x0ae6 +#if PACKETVER >= 20180131 +packetLen(0x0ae6, 10) +#elif PACKETVER >= 20180103 +packetLen(0x0ae6, 30) +#endif + +// Packet: 0x0ae7 +#if PACKETVER >= 20180328 +packetLen(0x0ae7, 38) +#elif PACKETVER >= 20180103 +packetLen(0x0ae7, 30) +#endif + +// Packet: 0x0ae8 +packetLen(0x0ae8, 2) + +// Packet: 0x0ae9 +#if PACKETVER >= 20180117 +packetLen(0x0ae9, 13) // HC_SECOND_PASSWD_LOGIN +#elif PACKETVER >= 20180103 +packetLen(0x0ae9, 64) // HC_SECOND_PASSWD_LOGIN +#endif + +// Packet: 0x0aea +#if PACKETVER >= 20180117 +// removed +#elif PACKETVER >= 20180103 +packetLen(0x0aea, 2) +#endif + +// Packet: 0x0aeb +#if PACKETVER >= 20180117 +// removed +#elif PACKETVER >= 20180103 +packetLen(0x0aeb, 11) +#endif + +// Packet: 0x0aec +packetLen(0x0aec, 2) + +// Packet: 0x0aed +packetLen(0x0aed, 2) + +// Packet: 0x0aee +packetLen(0x0aee, 2) + +// Packet: 0x0aef +#if PACKETVER >= 20180117 +packetLen(0x0aef, 2) // CZ_ATTENDANCE_REWARD_REQUEST +#endif + +// Packet: 0x0af0 +#if PACKETVER >= 20180117 +packetLen(0x0af0, 10) // ZC_UI_ACTION +#endif + +// Packet: 0x0af2 +#if PACKETVER >= 20180131 +packetLen(0x0af2, 40) +#endif + +// Packet: 0x0af3 +#if PACKETVER >= 20180131 +packetLen(0x0af3, -1) +#endif + +// Packet: 0x0af4 +#if PACKETVER >= 20180131 +packetLen(0x0af4, 11) // CZ_USE_SKILL_TOGROUND +#endif + +// Packet: 0x0af5 +#if PACKETVER >= 20180207 +packetLen(0x0af5, 3) +#endif + +// Packet: 0x0af6 +#if PACKETVER >= 20180207 +packetLen(0x0af6, 88) +#endif + +// Packet: 0x0af7 +#if PACKETVER >= 20180207 +packetLen(0x0af7, 32) // ZC_ACK_REQNAME_BYGID +#endif + +// Packet: 0x0af8 +#if PACKETVER >= 20180328 +packetLen(0x0af8, 11) +#endif + +// Packet: 0x0af9 +#if PACKETVER >= 20180328 +packetLen(0x0af9, 6) +#endif + +// Packet: 0x0afa +#if PACKETVER >= 20180328 +packetLen(0x0afa, 54) +#endif + +// Packet: 0x0afb +#if PACKETVER >= 20180425 +packetLen(0x0afb, -1) // ZC_AUTOSPELLLIST +#endif + +// Packet: 0x0afc +#if PACKETVER >= 20180523 +packetLen(0x0afc, 16) +#endif + +// Packet: 0x0afd +#if PACKETVER >= 20180605 +packetLen(0x0afd, -1) // ZC_GUILD_POSITION +#endif + +// Packet: 0x0afe +#if PACKETVER >= 20180605 +packetLen(0x0afe, -1) // ZC_UPDATE_MISSION_HUNT_EX +#endif + +// Packet: 0x0aff +#if PACKETVER >= 20180605 +packetLen(0x0aff, -1) // ZC_ALL_QUEST_LIST4 +#endif + +// Packet: 0x0b00 +#if PACKETVER >= 20180627 +packetLen(0x0b00, 8) +#endif + +// Packet: 0x0b01 +#if PACKETVER >= 20180627 +packetLen(0x0b01, 56) +#endif + +// Packet: 0x0b02 +#if PACKETVER >= 20180627 +packetLen(0x0b02, 26) // AC_REFUSE_LOGIN4 +#endif + +// Packet: 0x0b03 +#if PACKETVER >= 20180725 +packetLen(0x0b03, -1) // ZC_EQUIPWIN_MICROSCOPE_V7 +#endif + +// Packet: 0x0b04 +#if PACKETVER >= 20180808 +packetLen(0x0b04, 80) +#endif + +// Packet: 0x0b05 +#if PACKETVER >= 20181114 +packetLen(0x0b05, 63) // ZC_OFFLINE_STORE_VISIBLE +#elif PACKETVER >= 20180822 +packetLen(0x0b05, 59) // ZC_OFFLINE_STORE_VISIBLE +#endif + +// Packet: 0x0b06 +#if PACKETVER >= 20181010 +// removed +#elif PACKETVER >= 20180822 +packetLen(0x0b06, 53) +#endif + +// Packet: 0x0b07 +#if PACKETVER >= 20180822 +packetLen(0x0b07, -1) +#endif + +// Packet: 0x0b08 +#if PACKETVER >= 20180919 +packetLen(0x0b08, -1) // ZC_INVENTORY_START +#elif PACKETVER >= 20180905 +packetLen(0x0b08, 27) // ZC_INVENTORY_START +#elif PACKETVER >= 20180822 +packetLen(0x0b08, 26) // ZC_INVENTORY_START +#endif + +// Packet: 0x0b09 +#if PACKETVER >= 20180822 +packetLen(0x0b09, -1) // ZC_STORE_ITEMLIST_NORMAL_V6 +#endif + +// Packet: 0x0b0a +#if PACKETVER >= 20180822 +packetLen(0x0b0a, -1) // ZC_STORE_ITEMLIST_EQUIP_V6 +#endif + +// Packet: 0x0b0b +#if PACKETVER >= 20180905 +packetLen(0x0b0b, 4) // ZC_INVENTORY_END +#elif PACKETVER >= 20180822 +packetLen(0x0b0b, 3) // ZC_INVENTORY_END +#endif + +// Packet: 0x0b0c +#if PACKETVER >= 20180822 +packetLen(0x0b0c, 155) // ZC_ADD_QUEST_EX +#endif + +// Packet: 0x0b0d +#if PACKETVER >= 20180919 +packetLen(0x0b0d, 10) // ZC_REMOVE_EFFECT +#elif PACKETVER >= 20180905 +packetLen(0x0b0d, 6) // ZC_REMOVE_EFFECT +#endif + +// Packet: 0x0b0e +#if PACKETVER >= 20180919 +packetLen(0x0b0e, -1) +#endif + +// Packet: 0x0b0f +#if PACKETVER >= 20180919 +packetLen(0x0b0f, -1) +#endif + +// Packet: 0x0b10 +#if PACKETVER >= 20181010 +packetLen(0x0b10, 10) // CZ_START_USE_SKILL +#endif + +// Packet: 0x0b11 +#if PACKETVER >= 20181010 +packetLen(0x0b11, 4) // CZ_STOP_USE_SKILL +#endif + +// Packet: 0x0b12 +#if PACKETVER >= 20181024 +packetLen(0x0b12, 2) +#endif + +// Packet: 0x0b13 +#if PACKETVER >= 20181114 +packetLen(0x0b13, 48) // ZC_ITEM_PREVIEW +#elif PACKETVER >= 20181024 +packetLen(0x0b13, 40) // ZC_ITEM_PREVIEW +#endif + +// Packet: 0x0b14 +#if PACKETVER >= 20181114 +packetLen(0x0b14, 2) +#endif + +// Packet: 0x0b15 +#if PACKETVER >= 20181114 +packetLen(0x0b15, 7) +#endif + +// Packet: 0x0b16 +#if PACKETVER >= 20181114 +packetLen(0x0b16, 2) +#endif + +// Packet: 0x0b17 +#if PACKETVER >= 20181114 +packetLen(0x0b17, 3) +#endif + +// Packet: 0x0b18 +#if PACKETVER >= 20181114 +packetLen(0x0b18, 4) +#endif + +// Packet: 0x0b19 +#if PACKETVER >= 20181114 +packetLen(0x0b19, 2) +#endif + +// Packet: 0x0b1a +#if PACKETVER >= 20181212 +packetLen(0x0b1a, 29) +#endif + + +#endif /* COMMON_PACKETS2018_LEN_ZERO_H */ diff --git a/src/common/packets/packets_len_ad.h b/src/common/packets/packets_len_ad.h new file mode 100644 index 000000000..98f842dde --- /dev/null +++ b/src/common/packets/packets_len_ad.h @@ -0,0 +1,39 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS_LEN_AD_H +#define COMMON_PACKETS_LEN_AD_H + +/* This file is autogenerated, please do not commit manual changes */ + +#if PACKETVER >= 20080000 +#include "common/packets/packets2008_len_ad.h" +#elif PACKETVER >= 20070000 +#include "common/packets/packets2007_len_ad.h" +#elif PACKETVER >= 20060000 +#include "common/packets/packets2006_len_ad.h" +#elif PACKETVER >= 20050000 +#include "common/packets/packets2005_len_ad.h" +#elif PACKETVER >= 20040000 +#include "common/packets/packets2004_len_ad.h" +#endif + +#endif /* COMMON_PACKETS_LEN_AD_H */ diff --git a/src/common/packets/packets_len_main.h b/src/common/packets/packets_len_main.h new file mode 100644 index 000000000..b35715ca6 --- /dev/null +++ b/src/common/packets/packets_len_main.h @@ -0,0 +1,61 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS_LEN_MAIN_H +#define COMMON_PACKETS_LEN_MAIN_H + +/* This file is autogenerated, please do not commit manual changes */ + +#if PACKETVER >= 20180000 +#include "common/packets/packets2018_len_main.h" +#elif PACKETVER >= 20170000 +#include "common/packets/packets2017_len_main.h" +#elif PACKETVER >= 20160000 +#include "common/packets/packets2016_len_main.h" +#elif PACKETVER >= 20150000 +#include "common/packets/packets2015_len_main.h" +#elif PACKETVER >= 20140000 +#include "common/packets/packets2014_len_main.h" +#elif PACKETVER >= 20130000 +#include "common/packets/packets2013_len_main.h" +#elif PACKETVER >= 20120000 +#include "common/packets/packets2012_len_main.h" +#elif PACKETVER >= 20110000 +#include "common/packets/packets2011_len_main.h" +#elif PACKETVER >= 20100000 +#include "common/packets/packets2010_len_main.h" +#elif PACKETVER >= 20090000 +#include "common/packets/packets2009_len_main.h" +#elif PACKETVER >= 20080000 +#include "common/packets/packets2008_len_main.h" +#elif PACKETVER >= 20070000 +#include "common/packets/packets2007_len_main.h" +#elif PACKETVER >= 20060000 +#include "common/packets/packets2006_len_main.h" +#elif PACKETVER >= 20050000 +#include "common/packets/packets2005_len_main.h" +#elif PACKETVER >= 20040000 +#include "common/packets/packets2004_len_main.h" +#elif PACKETVER >= 20030000 +#include "common/packets/packets2003_len_main.h" +#endif + +#endif /* COMMON_PACKETS_LEN_MAIN_H */ diff --git a/src/common/packets/packets_len_re.h b/src/common/packets/packets_len_re.h new file mode 100644 index 000000000..86702ae7d --- /dev/null +++ b/src/common/packets/packets_len_re.h @@ -0,0 +1,51 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS_LEN_RE_H +#define COMMON_PACKETS_LEN_RE_H + +/* This file is autogenerated, please do not commit manual changes */ + +#if PACKETVER >= 20180000 +#include "common/packets/packets2018_len_re.h" +#elif PACKETVER >= 20170000 +#include "common/packets/packets2017_len_re.h" +#elif PACKETVER >= 20160000 +#include "common/packets/packets2016_len_re.h" +#elif PACKETVER >= 20150000 +#include "common/packets/packets2015_len_re.h" +#elif PACKETVER >= 20140000 +#include "common/packets/packets2014_len_re.h" +#elif PACKETVER >= 20130000 +#include "common/packets/packets2013_len_re.h" +#elif PACKETVER >= 20120000 +#include "common/packets/packets2012_len_re.h" +#elif PACKETVER >= 20110000 +#include "common/packets/packets2011_len_re.h" +#elif PACKETVER >= 20100000 +#include "common/packets/packets2010_len_re.h" +#elif PACKETVER >= 20090000 +#include "common/packets/packets2009_len_re.h" +#elif PACKETVER >= 20080000 +#include "common/packets/packets2008_len_re.h" +#endif + +#endif /* COMMON_PACKETS_LEN_RE_H */ diff --git a/src/common/packets/packets_len_sak.h b/src/common/packets/packets_len_sak.h new file mode 100644 index 000000000..f39f8ba5d --- /dev/null +++ b/src/common/packets/packets_len_sak.h @@ -0,0 +1,43 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS_LEN_SAK_H +#define COMMON_PACKETS_LEN_SAK_H + +/* This file is autogenerated, please do not commit manual changes */ + +#if PACKETVER >= 20090000 +#include "common/packets/packets2009_len_sak.h" +#elif PACKETVER >= 20080000 +#include "common/packets/packets2008_len_sak.h" +#elif PACKETVER >= 20070000 +#include "common/packets/packets2007_len_sak.h" +#elif PACKETVER >= 20060000 +#include "common/packets/packets2006_len_sak.h" +#elif PACKETVER >= 20050000 +#include "common/packets/packets2005_len_sak.h" +#elif PACKETVER >= 20040000 +#include "common/packets/packets2004_len_sak.h" +#elif PACKETVER >= 20030000 +#include "common/packets/packets2003_len_sak.h" +#endif + +#endif /* COMMON_PACKETS_LEN_SAK_H */ diff --git a/src/common/packets/packets_len_zero.h b/src/common/packets/packets_len_zero.h new file mode 100644 index 000000000..e0c63663e --- /dev/null +++ b/src/common/packets/packets_len_zero.h @@ -0,0 +1,33 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef COMMON_PACKETS_LEN_ZERO_H +#define COMMON_PACKETS_LEN_ZERO_H + +/* This file is autogenerated, please do not commit manual changes */ + +#if PACKETVER >= 20180000 +#include "common/packets/packets2018_len_zero.h" +#elif PACKETVER >= 20170000 +#include "common/packets/packets2017_len_zero.h" +#endif + +#endif /* COMMON_PACKETS_LEN_ZERO_H */ diff --git a/src/common/packets_len.h b/src/common/packets_len.h new file mode 100644 index 000000000..02f63ae0d --- /dev/null +++ b/src/common/packets_len.h @@ -0,0 +1,35 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2012-2018 Hercules Dev Team + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ +#ifndef COMMON_PACKETS_LEN_H +#define COMMON_PACKETS_LEN_H + +#if defined(PACKETVER_ZERO) +#include "common/packets/packets_len_zero.h" +#elif defined(PACKETVER_RE) +#include "common/packets/packets_len_re.h" +#elif defined(PACKETVER_SAK) +#include "common/packets/packets_len_sak.h" +#elif defined(PACKETVER_AD) +#include "common/packets/packets_len_ad.h" +#else +#include "common/packets/packets_len_main.h" +#endif + +#endif /* COMMON_PACKETS_LEN_H */ diff --git a/src/common/packetsstatic_len.h b/src/common/packetsstatic_len.h new file mode 100644 index 000000000..730516c27 --- /dev/null +++ b/src/common/packetsstatic_len.h @@ -0,0 +1,41 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2013-2018 Hercules Dev Team + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ +#ifndef COMMON_PACKETSSTATIC_LEN_H +#define COMMON_PACKETSSTATIC_LEN_H + +#ifdef packetLen +#error packetLen already defined +#endif + +#define DEFINE_PACKET_HEADER(name, id) \ + STATIC_ASSERT((int32)(PACKET_LEN_##id) == -1 || sizeof(struct PACKET_##name) == \ + (size_t)PACKET_LEN_##id, "Wrong size PACKET_"#name); \ + enum { HEADER_##name = id }; + +#define DEFINE_PACKET_ID(name, id) \ + enum { HEADER_##name = id }; + +#define packetLen(id, len) PACKET_LEN_##id = (len), +enum packet_lengths { +#include "common/packets_len.h" +}; +#undef packetLen + +#endif /* COMMON_PACKETSSTATIC_LEN_H */ diff --git a/src/common/socket.c b/src/common/socket.c index 290c7a1b3..95d8bf578 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -30,6 +30,7 @@ #include "common/memmgr.h" #include "common/mmo.h" #include "common/nullpo.h" +#include "common/packets.h" #include "common/showmsg.h" #include "common/strlib.h" #include "common/timer.h" @@ -301,10 +302,8 @@ static uint32 send_shortlist_set[(FD_SETSIZE+31)/32];// to know if specific fd's static int create_session(int fd, RecvFunc func_recv, SendFunc func_send, ParseFunc func_parse); -#ifndef MINICORE - static int ip_rules = 1; - static int connect_check(uint32 ip); -#endif // MINICORE +static int ip_rules = 1; +static int connect_check(uint32 ip); static const char *error_msg(void) { @@ -556,12 +555,10 @@ static int connect_client(int listen_fd) setsocketopts(fd,NULL); sockt->set_nonblocking(fd, 1); -#ifndef MINICORE if( ip_rules && !connect_check(ntohl(client_address.sin_addr.s_addr)) ) { sockt->close(fd); return -1; } -#endif // MINICORE #ifndef SOCKET_EPOLL // Select Based Event Dispatcher @@ -584,6 +581,7 @@ static int connect_client(int listen_fd) create_session(fd, recv_to_fifo, send_from_fifo, default_func_parse); sockt->session[fd]->client_addr = ntohl(client_address.sin_addr.s_addr); + sockt->session[fd]->flag.validate = sockt->validate; return fd; } @@ -653,7 +651,6 @@ static int make_listen_bind(uint32 ip, uint16 port) create_session(fd, connect_client, null_send, null_parse); sockt->session[fd]->client_addr = 0; // just listens sockt->session[fd]->rdata_tick = 0; // disable timeouts on this socket - return fd; } @@ -814,7 +811,36 @@ static int rfifoskip(int fd, size_t len) if (s->rdata_size < s->rdata_pos + len) { ShowError("RFIFOSKIP: skipped past end of read buffer! Adjusting from %"PRIuS" to %"PRIuS" (session #%d)\n", len, RFIFOREST(fd), fd); + Assert_report(0); len = RFIFOREST(fd); + } else { + const size_t lenRest = RFIFOREST(fd); + if (s->flag.validate == 1 && len == lenRest) { + if (lenRest >= 2) { + const uint32 cmd = (uint32)RFIFOW(fd, 0); + if (cmd < MIN_PACKET_DB || cmd > MAX_PACKET_DB) { + ShowError("Skip wrong packet id: 0x%04X\n", cmd); + Assert_report(0); + } else { + int packet_len = packets->db[cmd]; + if (packet_len == -1) { + if (lenRest < 4) { + ShowError("Skip packet with size smaller than 4\n"); + Assert_report(0); + } else { + packet_len = RFIFOW(fd, 2); + if (packet_len != lenRest) { + ShowError("Skip packet 0x%04X with dynamic size %"PRIuS", but must be size %d\n", cmd, lenRest, packet_len); + Assert_report(0); + } + } + } else if (packet_len != lenRest) { + ShowError("Skip packet 0x%04X with size %"PRIuS", but must be size %d\n", cmd, lenRest, packet_len); + Assert_report(0); + } + } + } + } } s->rdata_pos = s->rdata_pos + len; @@ -825,14 +851,12 @@ static int rfifoskip(int fd, size_t len) } /// advance the WFIFO cursor (marking 'len' bytes for sending) -static int wfifoset(int fd, size_t len) +static int wfifoset(int fd, size_t len, bool validate) { - size_t newreserve; - struct socket_data* s; - if (!sockt->session_is_valid(fd)) return 0; - s = sockt->session[fd]; + + struct socket_data* s = sockt->session[fd]; if (s == NULL || s->wdata == NULL) return 0; @@ -871,6 +895,10 @@ static int wfifoset(int fd, size_t len) } } + + if (validate && s->flag.validate == 1) + sockt->validateWfifo(fd, len); + s->wdata_size += len; #ifdef SHOW_SERVER_STATS socket_data_qo += len; @@ -881,7 +909,7 @@ static int wfifoset(int fd, size_t len) // always keep a WFIFO_SIZE reserve in the buffer // For inter-server connections, let the reserve be 1/4th of the link size. - newreserve = s->flag.server ? FIFOSIZE_SERVERLINK / 4 : WFIFO_SIZE; + size_t newreserve = s->flag.server ? FIFOSIZE_SERVERLINK / 4 : WFIFO_SIZE; // readjust the buffer to include the chosen reserve sockt->realloc_writefifo(fd, newreserve); @@ -893,6 +921,15 @@ static int wfifoset(int fd, size_t len) return 0; } +static void wfifohead(int fd, size_t len) +{ + Assert_retv(fd >= 0); + + sockt->session[fd]->last_head_size = (uint32)len; + if (sockt->session[fd]->wdata_size + len > sockt->session[fd]->max_wdata) + sockt->realloc_writefifo(fd, len); +} + static int do_sockets(int next) { #ifndef SOCKET_EPOLL @@ -1065,9 +1102,6 @@ static int do_sockets(int next) return 0; } -////////////////////////////// -#ifndef MINICORE -////////////////////////////// // IP rules and DDoS protection struct connect_history { @@ -1326,11 +1360,6 @@ static bool access_list_add(struct config_setting_t *setting, const char *list_n return true; } -////////////////////////////// -#endif // MINICORE -////////////////////////////// - -#ifndef MINICORE /** * Reads 'socket_configuration/ip_rules' and initializes required variables. * @@ -1387,9 +1416,7 @@ static bool socket_config_read_iprules(const char *filename, struct config_t *co return true; } -#endif // ! MINICORE -#ifndef MINICORE /** * Reads 'socket_configuration/ddos' and initializes required variables. * @@ -1419,7 +1446,6 @@ static bool socket_config_read_ddos(const char *filename, struct config_t *confi return true; } -#endif // ! MINICORE /** * Reads 'socket_configuration' and initializes required variables. @@ -1464,7 +1490,6 @@ static bool socket_config_read(const char *filename, bool imported) } #endif // SOCKET_EPOLL -#ifndef MINICORE { uint32 ui32 = 0; libconfig->setting_lookup_bool(setting, "debug", &access_debug); @@ -1477,7 +1502,6 @@ static bool socket_config_read(const char *filename, bool imported) retval = false; if (!socket_config_read_ddos(filename, &config, imported)) retval = false; -#endif // MINICORE // import should overwrite any previous configuration, so it should be called last if (libconfig->lookup_string(&config, "import", &import) == CONFIG_TRUE) { @@ -1496,12 +1520,10 @@ static bool socket_config_read(const char *filename, bool imported) static void socket_final(void) { int i; -#ifndef MINICORE if( connect_history ) db_destroy(connect_history); VECTOR_CLEAR(access_allow); VECTOR_CLEAR(access_deny); -#endif // MINICORE for( i = 1; i < sockt->fd_max; i++ ) if(sockt->session[i]) @@ -1686,10 +1708,8 @@ static void socket_init(void) } #endif // defined(HAVE_SETRLIMIT) && !defined(CYGWIN) -#ifndef MINICORE VECTOR_INIT(access_allow); VECTOR_INIT(access_deny); -#endif // ! MINICORE // Get initial local ips sockt->naddr_ = sockt->getips(sockt->addr_,16); @@ -1729,12 +1749,10 @@ static void socket_init(void) // should hold enough buffer (it is a vacuum so to speak) as it is never flushed. [Skotlex] create_session(0, null_recv, null_send, null_parse); -#ifndef MINICORE // Delete old connection history every 5 minutes connect_history = uidb_alloc(DB_OPT_RELEASE_DATA); timer->add_func_list(connect_check_clear, "connect_check_clear"); timer->add_interval(timer->gettick()+1000, connect_check_clear, 0, 0, 5*60*1000); -#endif // MINICORE ShowInfo("Server supports up to '"CL_WHITE"%"PRIu64""CL_RESET"' concurrent connections.\n", rlim_cur); } @@ -1818,6 +1836,11 @@ static void socket_datasync(int fd, bool send) { sizeof(struct guild_castle) }, { sizeof(struct fame_list) }, { PACKETVER }, + { PACKETVER_MAIN_NUM }, + { PACKETVER_RE_NUM }, + { PACKETVER_ZERO_NUM }, + { PACKETVER_AD_NUM }, + { PACKETVER_SAK_NUM }, }; unsigned short i; unsigned int alen = ARRAYLENGTH(data_list); @@ -2072,6 +2095,50 @@ static void socket_net_config_read(const char *filename) return; } +static void socket_validateWfifo(int fd, size_t len) +{ + if (len < 2) { + ShowError("Sent packet with size smaller than 2\n"); + Assert_retv(0); + return; + } + const uint32 cmd = (uint32)WFIFOW(fd, 0); + const uint32 last_head_size = sockt->session[fd]->last_head_size; + sockt->session[fd]->last_head_size = 0; + + if (cmd < MIN_PACKET_DB || cmd > MAX_PACKET_DB) { + ShowError("Sent wrong packet id: 0x%04X\n", cmd); + Assert_retv(0); + return; + } + if (len > 65535) { + ShowError("Sent packet with size bigger than 65535\n"); + Assert_retv(0); + return; + } + int packet_len = packets->db[cmd]; + const int len2 = (int)len; + if (packet_len == -1) { + if (len2 < 4) { + ShowError("Sent packet with size smaller than 4\n"); + Assert_retv(0); + return; + } + packet_len = WFIFOW(fd, 2); + if (packet_len != len2) { + ShowError("Sent packet 0x%04X with dynamic size %d, but must be size %d\n", cmd, len2, packet_len); + Assert_retv(0); + } + } else if (packet_len != len2) { + ShowError("Sent packet 0x%04X with size %d, but must be size %d\n", cmd, len2, packet_len); + Assert_retv(0); + } + if (last_head_size < (uint32)packet_len) { + ShowError("Reserved too small packet buffer for packet 0x%04X with size %u, but must be size %d\n", cmd, last_head_size, packet_len); + Assert_retv(0); + } +} + void socket_defaults(void) { sockt = &sockt_s; @@ -2083,6 +2150,7 @@ void socket_defaults(void) /* */ memset(&sockt->addr_, 0, sizeof(sockt->addr_)); sockt->naddr_ = 0; + sockt->validate = false; /* */ VECTOR_INIT(sockt->lan_subnets); VECTOR_INIT(sockt->allowed_ips); @@ -2100,6 +2168,7 @@ void socket_defaults(void) sockt->realloc_fifo = realloc_fifo; sockt->realloc_writefifo = realloc_writefifo; sockt->wfifoset = wfifoset; + sockt->wfifohead = wfifohead; sockt->rfifoskip = rfifoskip; sockt->close = socket_close; /* */ @@ -2122,4 +2191,5 @@ void socket_defaults(void) sockt->trusted_ip_check = socket_trusted_ip_check; sockt->net_config_read_sub = socket_net_config_read_sub; sockt->net_config_read = socket_net_config_read; + sockt->validateWfifo = socket_validateWfifo; } diff --git a/src/common/socket.h b/src/common/socket.h index 3c082e718..5e4251989 100644 --- a/src/common/socket.h +++ b/src/common/socket.h @@ -41,11 +41,7 @@ struct config_setting_t; // socket I/O macros #define RFIFOHEAD(fd) -#define WFIFOHEAD(fd, size) \ - do{ \ - if ((fd) && sockt->session[fd]->wdata_size + (size) > sockt->session[fd]->max_wdata) \ - sockt->realloc_writefifo((fd), (size)); \ - } while(0) +#define WFIFOHEAD(fd, size) sockt->wfifohead(fd, size) #define RFIFOP(fd,pos) ((const void *)(sockt->session[fd]->rdata + sockt->session[fd]->rdata_pos + (pos))) #define WFIFOP(fd,pos) ((void *)(sockt->session[fd]->wdata + sockt->session[fd]->wdata_size + (pos))) @@ -73,7 +69,8 @@ struct config_setting_t; } \ } while(0) -#define WFIFOSET(fd, len) (sockt->wfifoset(fd, len)) +#define WFIFOSET(fd, len) (sockt->wfifoset(fd, len, true)) +#define WFIFOSET2(fd, len) (sockt->wfifoset(fd, len, false)) #define RFIFOSKIP(fd, len) (sockt->rfifoskip(fd, len)) /* [Ind/Hercules] */ @@ -122,6 +119,7 @@ struct socket_data { unsigned char eof : 1; unsigned char server : 1; unsigned char ping : 2; + unsigned char validate : 1; } flag; uint32 client_addr; // remote client address @@ -130,6 +128,7 @@ struct socket_data { size_t max_rdata, max_wdata; size_t rdata_size, wdata_size; size_t rdata_pos; + uint32 last_head_size; time_t rdata_tick; // time of last recv (for detecting timeouts); zero when timeout is disabled RecvFunc func_recv; @@ -178,9 +177,11 @@ struct socket_interface { /* */ time_t stall_time; time_t last_tick; + /* */ uint32 addr_[16]; // ip addresses of local host (host byte order) int naddr_; // # of ip addresses + bool validate; struct socket_data **session; @@ -200,9 +201,11 @@ struct socket_interface { int (*make_connection) (uint32 ip, uint16 port, struct hSockOpt *opt); int (*realloc_fifo) (int fd, unsigned int rfifo_size, unsigned int wfifo_size); int (*realloc_writefifo) (int fd, size_t addition); - int (*wfifoset) (int fd, size_t len); + int (*wfifoset) (int fd, size_t len, bool validate); + void (*wfifohead) (int fd, size_t len); int (*rfifoskip) (int fd, size_t len); void (*close) (int fd); + void (*validateWfifo) (int fd, size_t len); /* */ bool (*session_is_valid) (int fd); bool (*session_is_active) (int fd); diff --git a/src/config/const.h b/src/config/const.h index 3b35e354e..4767b5721 100644 --- a/src/config/const.h +++ b/src/config/const.h @@ -114,11 +114,6 @@ } while(0) #endif -/* console_input doesn't go well with minicore */ -#ifdef MINICORE - #undef CONSOLE_INPUT -#endif - /** * End of File **/ diff --git a/src/login/HPMlogin.c b/src/login/HPMlogin.c index c13bd96a3..304db5501 100644 --- a/src/login/HPMlogin.c +++ b/src/login/HPMlogin.c @@ -30,6 +30,8 @@ #include "login/lclif.p.h" #include "login/login.h" #include "login/loginlog.h" +#include "login/packets_ac_struct.h" +#include "login/packets_ca_struct.h" #include "common/HPMi.h" #include "common/conf.h" #include "common/console.h" @@ -41,6 +43,7 @@ #include "common/memmgr.h" #include "common/mutex.h" #include "common/mmo.h" +#include "common/packets.h" #include "common/nullpo.h" #include "common/random.h" #include "common/showmsg.h" diff --git a/src/login/lclif.c b/src/login/lclif.c index 48a9c6b94..97871922d 100644 --- a/src/login/lclif.c +++ b/src/login/lclif.c @@ -24,6 +24,8 @@ #include "login/ipban.h" #include "login/login.h" #include "login/loginlog.h" +#include "login/packets_ac_struct.h" +#include "login/packets_ca_struct.h" #include "common/HPM.h" #include "common/cbasetypes.h" #include "common/db.h" @@ -49,10 +51,10 @@ struct lclif_interface *lclif; /// @copydoc lclif_interface::connection_error() static void lclif_connection_error(int fd, uint8 error) { - struct packet_SC_NOTIFY_BAN *packet = NULL; + struct PACKET_SC_NOTIFY_BAN *packet = NULL; WFIFOHEAD(fd, sizeof(*packet)); packet = WP2PTR(fd); - packet->packet_id = PACKET_ID_SC_NOTIFY_BAN; + packet->packet_id = HEADER_SC_NOTIFY_BAN; packet->error_code = error; WFIFOSET(fd, sizeof(*packet)); } @@ -68,7 +70,7 @@ static enum parsefunc_rcode lclif_parse_CA_CONNECT_INFO_CHANGED(int fd, struct l static enum parsefunc_rcode lclif_parse_CA_EXE_HASHCHECK(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_EXE_HASHCHECK(int fd, struct login_session_data *sd) { - const struct packet_CA_EXE_HASHCHECK *packet = RP2PTR(fd); + const struct PACKET_CA_EXE_HASHCHECK *packet = RP2PTR(fd); sd->has_client_hash = 1; memcpy(sd->client_hash, packet->hash_value, 16); return PACKET_VALID; @@ -78,7 +80,7 @@ static enum parsefunc_rcode lclif_parse_CA_EXE_HASHCHECK(int fd, struct login_se static enum parsefunc_rcode lclif_parse_CA_LOGIN(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_LOGIN(int fd, struct login_session_data *sd) { - const struct packet_CA_LOGIN *packet = RP2PTR(fd); + const struct PACKET_CA_LOGIN *packet = RP2PTR(fd); sd->version = packet->version; sd->clienttype = packet->clienttype; @@ -97,7 +99,7 @@ static enum parsefunc_rcode lclif_parse_CA_LOGIN(int fd, struct login_session_da static enum parsefunc_rcode lclif_parse_CA_LOGIN2(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_LOGIN2(int fd, struct login_session_data *sd) { - const struct packet_CA_LOGIN2 *packet = RP2PTR(fd); + const struct PACKET_CA_LOGIN2 *packet = RP2PTR(fd); sd->version = packet->version; sd->clienttype = packet->clienttype; @@ -113,7 +115,7 @@ static enum parsefunc_rcode lclif_parse_CA_LOGIN2(int fd, struct login_session_d static enum parsefunc_rcode lclif_parse_CA_LOGIN3(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_LOGIN3(int fd, struct login_session_data *sd) { - const struct packet_CA_LOGIN3 *packet = RP2PTR(fd); + const struct PACKET_CA_LOGIN3 *packet = RP2PTR(fd); sd->version = packet->version; sd->clienttype = packet->clienttype; @@ -131,7 +133,7 @@ static enum parsefunc_rcode lclif_parse_CA_LOGIN3(int fd, struct login_session_d static enum parsefunc_rcode lclif_parse_CA_LOGIN4(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_LOGIN4(int fd, struct login_session_data *sd) { - const struct packet_CA_LOGIN4 *packet = RP2PTR(fd); + const struct PACKET_CA_LOGIN4 *packet = RP2PTR(fd); sd->version = packet->version; sd->clienttype = packet->clienttype; @@ -149,7 +151,7 @@ static enum parsefunc_rcode lclif_parse_CA_LOGIN4(int fd, struct login_session_d static enum parsefunc_rcode lclif_parse_CA_LOGIN_PCBANG(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_LOGIN_PCBANG(int fd, struct login_session_data *sd) { - const struct packet_CA_LOGIN_PCBANG *packet = RP2PTR(fd); + const struct PACKET_CA_LOGIN_PCBANG *packet = RP2PTR(fd); sd->version = packet->version; sd->clienttype = packet->clienttype; @@ -171,7 +173,7 @@ static enum parsefunc_rcode lclif_parse_CA_LOGIN_PCBANG(int fd, struct login_ses static enum parsefunc_rcode lclif_parse_CA_LOGIN_HAN(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_LOGIN_HAN(int fd, struct login_session_data *sd) { - const struct packet_CA_LOGIN_HAN *packet = RP2PTR(fd); + const struct PACKET_CA_LOGIN_HAN *packet = RP2PTR(fd); sd->version = packet->version; sd->clienttype = packet->clienttype; @@ -194,11 +196,11 @@ static enum parsefunc_rcode lclif_parse_CA_LOGIN_HAN(int fd, struct login_sessio static enum parsefunc_rcode lclif_parse_CA_SSO_LOGIN_REQ(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_SSO_LOGIN_REQ(int fd, struct login_session_data *sd) { - const struct packet_CA_SSO_LOGIN_REQ *packet = RP2PTR(fd); + const struct PACKET_CA_SSO_LOGIN_REQ *packet = RP2PTR(fd); int tokenlen = (int)RFIFOREST(fd) - (int)sizeof(*packet); if (tokenlen > PASSWD_LEN || tokenlen < 1) { - ShowError("packet_CA_SSO_LOGIN_REQ: Token length is not between allowed password length, kicking player ('%s')", packet->id); + ShowError("PACKET_CA_SSO_LOGIN_REQ: Token length is not between allowed password length, kicking player ('%s')", packet->id); sockt->eof(fd); return PACKET_VALID; } @@ -220,11 +222,27 @@ static enum parsefunc_rcode lclif_parse_CA_SSO_LOGIN_REQ(int fd, struct login_se static enum parsefunc_rcode lclif_parse_CA_LOGIN_OTP(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_LOGIN_OTP(int fd, struct login_session_data *sd) { - //const struct packet_CA_LOGIN_OTP *packet = RP2PTR(fd); + //const struct PACKET_CA_LOGIN_OTP *packet = RP2PTR(fd); login->client_login_otp(fd, sd); return PACKET_VALID; } +/// @copydoc lclif_interface_private::parse_CA_ACK_MOBILE_OTP() +static enum parsefunc_rcode lclif_parse_CA_ACK_MOBILE_OTP(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); +static enum parsefunc_rcode lclif_parse_CA_ACK_MOBILE_OTP(int fd, struct login_session_data *sd) +{ + // TODO: parsing packet data + return PACKET_VALID; +} + +/// @copydoc lclif_interface_private::parse_CA_OTP_CODE() +static enum parsefunc_rcode lclif_parse_CA_OTP_CODE(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); +static enum parsefunc_rcode lclif_parse_CA_OTP_CODE(int fd, struct login_session_data *sd) +{ + // TODO: parsing packet data + return PACKET_VALID; +} + /// @copydoc lclif_interface_private::parse_CA_REQ_HASH() static enum parsefunc_rcode lclif_parse_CA_REQ_HASH(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static enum parsefunc_rcode lclif_parse_CA_REQ_HASH(int fd, struct login_session_data *sd) @@ -255,7 +273,7 @@ static bool lclif_send_server_list(struct login_session_data *sd) { int server_num = 0, i, n, length; uint32 ip; - struct packet_AC_ACCEPT_LOGIN *packet = NULL; + struct PACKET_AC_ACCEPT_LOGIN *packet = NULL; for (i = 0; i < ARRAYLENGTH(login->dbs->server); ++i) { if (sockt->session_is_active(login->dbs->server[i].fd)) @@ -272,9 +290,9 @@ static bool lclif_send_server_list(struct login_session_data *sd) packet = WP2PTR(sd->fd); #if PACKETVER < 20170315 - packet->packet_id = PACKET_ID_AC_ACCEPT_LOGIN; + packet->packet_id = HEADER_AC_ACCEPT_LOGIN; #else - packet->packet_id = PACKET_ID_AC_ACCEPT_LOGIN2; + packet->packet_id = HEADER_AC_ACCEPT_LOGIN2; #endif packet->packet_len = length; packet->auth_code = sd->login_id1; @@ -312,14 +330,14 @@ static bool lclif_send_server_list(struct login_session_data *sd) static void lclif_send_auth_failed(int fd, time_t ban, uint32 error) { #if PACKETVER >= 20180627 - struct packet_AC_REFUSE_LOGIN_R2 *packet = NULL; - int packet_id = PACKET_ID_AC_REFUSE_LOGIN_R3; + struct PACKET_AC_REFUSE_LOGIN_R2 *packet = NULL; + int packet_id = HEADER_AC_REFUSE_LOGIN_R3; #elif PACKETVER >= 20101123 - struct packet_AC_REFUSE_LOGIN_R2 *packet = NULL; - int packet_id = PACKET_ID_AC_REFUSE_LOGIN_R2; + struct PACKET_AC_REFUSE_LOGIN_R2 *packet = NULL; + int packet_id = HEADER_AC_REFUSE_LOGIN_R2; #else - struct packet_AC_REFUSE_LOGIN *packet = NULL; - int packet_id = PACKET_ID_AC_REFUSE_LOGIN; + struct PACKET_AC_REFUSE_LOGIN *packet = NULL; + int packet_id = HEADER_AC_REFUSE_LOGIN; #endif WFIFOHEAD(fd, sizeof(*packet)); packet = WP2PTR(fd); @@ -335,10 +353,10 @@ static void lclif_send_auth_failed(int fd, time_t ban, uint32 error) /// @copydoc lclif_interface::login_error() static void lclif_send_login_error(int fd, uint8 error) { - struct packet_AC_REFUSE_LOGIN *packet = NULL; + struct PACKET_AC_REFUSE_LOGIN *packet = NULL; WFIFOHEAD(fd, sizeof(*packet)); packet = WP2PTR(fd); - packet->packet_id = PACKET_ID_AC_REFUSE_LOGIN; + packet->packet_id = HEADER_AC_REFUSE_LOGIN; packet->error_code = error; memset(packet->block_date, '\0', sizeof(packet->block_date)); WFIFOSET(fd, sizeof(*packet)); @@ -348,12 +366,12 @@ static void lclif_send_login_error(int fd, uint8 error) static void lclif_send_coding_key(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static void lclif_send_coding_key(int fd, struct login_session_data *sd) { - struct packet_AC_ACK_HASH *packet = NULL; + struct PACKET_AC_ACK_HASH *packet = NULL; int16 size = sizeof(*packet) + sd->md5keylen; WFIFOHEAD(fd, size); packet = WP2PTR(fd); - packet->packet_id = PACKET_ID_AC_ACK_HASH; + packet->packet_id = HEADER_AC_ACK_HASH; packet->packet_len = size; memcpy(packet->secret, sd->md5key, sd->md5keylen); WFIFOSET(fd, size); @@ -476,10 +494,10 @@ static enum parsefunc_rcode lclif_parse_sub(int fd, struct login_session_data *s /// @copydoc lclif_interface::packet() static const struct login_packet_db *lclif_packet(int16 packet_id) { - if (packet_id == PACKET_ID_CA_CHARSERVERCONNECT) + if (packet_id == HEADER_CA_CHARSERVERCONNECT) return &lclif->p->dbs->packet_db[0]; - if (packet_id > MAX_PACKET_DB || packet_id < MIN_PACKET_DB) + if (packet_id > MAX_PACKET_LOGIN_DB || packet_id < MIN_PACKET_DB) return NULL; return &lclif->p->dbs->packet_db[packet_id]; @@ -503,8 +521,8 @@ static void packetdb_loaddb(void) int16 packet_len; LoginParseFunc **pFunc; } packet[] = { -#define packet_def(name) { PACKET_ID_ ## name, sizeof(struct packet_ ## name), &lclif->p->parse_ ## name } -#define packet_def2(name, len) { PACKET_ID_ ## name, (len), &lclif->p->parse_ ## name } +#define packet_def(name) { HEADER_ ## name, sizeof(struct PACKET_ ## name), &lclif->p->parse_ ## name } +#define packet_def2(name, len) { HEADER_ ## name, (len), &lclif->p->parse_ ## name } packet_def(CA_CONNECT_INFO_CHANGED), packet_def(CA_EXE_HASHCHECK), packet_def(CA_LOGIN), @@ -515,6 +533,12 @@ static void packetdb_loaddb(void) packet_def(CA_LOGIN_HAN), packet_def2(CA_SSO_LOGIN_REQ, -1), packet_def(CA_LOGIN_OTP), +#if PACKETVER_MAIN_NUM >= 20181114 || PACKETVER_RE_NUM >= 20181114 + packet_def(CA_ACK_MOBILE_OTP), +#endif +#if PACKETVER_MAIN_NUM >= 20181114 || PACKETVER_RE_NUM >= 20181114 || defined(PACKETVER_ZERO) + packet_def(CA_OTP_CODE), +#endif packet_def(CA_REQ_HASH), #undef packet_def #undef packet_def2 @@ -525,13 +549,13 @@ static void packetdb_loaddb(void) for (i = 0; i < length; ++i) { int16 packet_id = packet[i].packet_id; - Assert_retb(packet_id >= MIN_PACKET_DB && packet_id <= MAX_PACKET_DB); + Assert_retb(packet_id >= MIN_PACKET_DB && packet_id <= MAX_PACKET_LOGIN_DB); lclif->p->dbs->packet_db[packet_id].len = packet[i].packet_len; lclif->p->dbs->packet_db[packet_id].pFunc = packet[i].pFunc; } //Explict case, we will save character login packet in position 0 which is unused and not valid by normal - lclif->p->dbs->packet_db[0].len = sizeof(struct packet_CA_CHARSERVERCONNECT); + lclif->p->dbs->packet_db[0].len = sizeof(struct PACKET_CA_CHARSERVERCONNECT); lclif->p->dbs->packet_db[0].pFunc = &lclif->p->parse_CA_CHARSERVERCONNECT; } @@ -579,6 +603,8 @@ void lclif_defaults(void) lclif->p->parse_CA_LOGIN_HAN = lclif_parse_CA_LOGIN_HAN; lclif->p->parse_CA_SSO_LOGIN_REQ = lclif_parse_CA_SSO_LOGIN_REQ; lclif->p->parse_CA_LOGIN_OTP = lclif_parse_CA_LOGIN_OTP; + lclif->p->parse_CA_ACK_MOBILE_OTP = lclif_parse_CA_ACK_MOBILE_OTP; + lclif->p->parse_CA_OTP_CODE = lclif_parse_CA_OTP_CODE; lclif->p->parse_CA_REQ_HASH = lclif_parse_CA_REQ_HASH; lclif->p->parse_CA_CHARSERVERCONNECT = lclif_parse_CA_CHARSERVERCONNECT; } diff --git a/src/login/lclif.h b/src/login/lclif.h index d1e4317a2..26c061367 100644 --- a/src/login/lclif.h +++ b/src/login/lclif.h @@ -87,8 +87,8 @@ struct lclif_interface { * @param fd The client connection file descriptor. * @param ban The ban duration (if error == 6). * @param error The authentication error code. - * @see #PACKET_ID_AC_REFUSE_LOGIN. - * @see #PACKET_ID_AC_REFUSE_LOGIN_R2. + * @see #HEADER_AC_REFUSE_LOGIN. + * @see #HEADER_AC_REFUSE_LOGIN_R2. */ void (*auth_failed)(int fd, time_t ban, uint32 error); diff --git a/src/login/lclif.p.h b/src/login/lclif.p.h index 7fa8475f4..cc9805ea8 100644 --- a/src/login/lclif.p.h +++ b/src/login/lclif.p.h @@ -31,285 +31,23 @@ /* Definitions and macros */ /// Maximum amount of packets processed at once from the same client +#ifndef MAX_PROCESSED_PACKETS #define MAX_PROCESSED_PACKETS (3) +#endif // Packet DB +#ifndef MIN_PACKET_DB #define MIN_PACKET_DB 0x0064 -#define MAX_PACKET_DB 0x0acf - -/* Enums */ - -/// Packet IDs -enum login_packet_id { - // CA (Client to Login) - PACKET_ID_CA_LOGIN = 0x0064, - PACKET_ID_CA_LOGIN2 = 0x01dd, - PACKET_ID_CA_LOGIN3 = 0x01fa, - PACKET_ID_CA_CONNECT_INFO_CHANGED = 0x0200, - PACKET_ID_CA_EXE_HASHCHECK = 0x0204, - PACKET_ID_CA_LOGIN_PCBANG = 0x0277, - PACKET_ID_CA_LOGIN4 = 0x027c, - PACKET_ID_CA_LOGIN_HAN = 0x02b0, - PACKET_ID_CA_SSO_LOGIN_REQ = 0x0825, - PACKET_ID_CA_LOGIN_OTP = 0x0acf, - PACKET_ID_CA_REQ_HASH = 0x01db, - PACKET_ID_CA_CHARSERVERCONNECT = 0x2710, // Custom Hercules Packet - //PACKET_ID_CA_SSO_LOGIN_REQa = 0x825a, /* unused */ - - // AC (Login to Client) - - PACKET_ID_AC_ACCEPT_LOGIN = 0x0069, - PACKET_ID_AC_ACCEPT_LOGIN2 = 0x0ac4, - PACKET_ID_AC_REFUSE_LOGIN = 0x006a, - PACKET_ID_SC_NOTIFY_BAN = 0x0081, - PACKET_ID_AC_ACK_HASH = 0x01dc, - PACKET_ID_AC_REFUSE_LOGIN_R2 = 0x083e, - PACKET_ID_AC_REFUSE_LOGIN_R3 = 0x0b02, -}; - -/* Packets Structs */ -#if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute -#pragma pack(push, 1) -#endif // not NetBSD < 6 / Solaris - -/** - * Packet structure for CA_LOGIN. - */ -struct packet_CA_LOGIN { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_LOGIN) - uint32 version; ///< Client Version - char id[24]; ///< Username - char password[24]; ///< Password - uint8 clienttype; ///< Client Type -} __attribute__((packed)); - -/** - * Packet structure for CA_LOGIN2. - */ -struct packet_CA_LOGIN2 { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_LOGIN2) - uint32 version; ///< Client Version - char id[24]; ///< Username - uint8 password_md5[16]; ///< Password hash - uint8 clienttype; ///< Client Type -} __attribute__((packed)); - -/** - * Packet structure for CA_LOGIN3. - */ -struct packet_CA_LOGIN3 { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_LOGIN3) - uint32 version; ///< Client Version - char id[24]; ///< Username - uint8 password_md5[16]; ///< Password hash - uint8 clienttype; ///< Client Type - uint8 clientinfo; ///< Index of the connection in the clientinfo file (+10 if the command-line contains "pc") -} __attribute__((packed)); - -/** - * Packet structure for CA_LOGIN4. - */ -struct packet_CA_LOGIN4 { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_LOGIN4) - uint32 version; ///< Client Version - char id[24]; ///< Username - uint8 password_md5[16]; ///< Password hash - uint8 clienttype; ///< Client Type - char mac_address[13]; ///< MAC Address -} __attribute__((packed)); - -/** - * Packet structure for CA_LOGIN_PCBANG. - */ -struct packet_CA_LOGIN_PCBANG { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_LOGIN_PCBANG) - uint32 version; ///< Client Version - char id[24]; ///< Username - char password[24]; ///< Password - uint8 clienttype; ///< Client Type - char ip[16]; ///< IP Address - char mac_address[13]; ///< MAC Address -} __attribute__((packed)); - -/** - * Packet structure for CA_LOGIN_HAN. - */ -struct packet_CA_LOGIN_HAN { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_LOGIN_HAN) - uint32 version; ///< Client Version - char id[24]; ///< Username - char password[24]; ///< Password - uint8 clienttype; ///< Client Type - char ip[16]; ///< IP Address - char mac_address[13]; ///< MAC Address - uint8 is_han_game_user; ///< 'isGravityID' -} __attribute__((packed)); - -/** - * Packet structure for CA_SSO_LOGIN_REQ. - * - * Variable-length packet. - */ -struct packet_CA_SSO_LOGIN_REQ { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_SSO_LOGIN_REQ) - int16 packet_len; ///< Length (variable length) - uint32 version; ///< Clientver - uint8 clienttype; ///< Clienttype - char id[24]; ///< Username - char password[27]; ///< Password - int8 mac_address[17]; ///< MAC Address - char ip[15]; ///< IP Address - char t1[]; ///< SSO Login Token (variable length) -} __attribute__((packed)); - -/** - * Packet structure for CA_LOGIN_OTP. - */ -struct packet_CA_LOGIN_OTP { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_LOGIN_OTP) -#if PACKETVER >= 20171113 - uint32 devFlags; ///< flags including dev flag #endif - char login[25]; ///< Username - char password[32]; ///< Password encrypted by rijndael - char flagsStr[5]; ///< Unknown flags. Normally string: G000 -} __attribute__((packed)); - -#if 0 // Unused -struct packet_CA_SSO_LOGIN_REQa { - int16 packet_id; - int16 packet_len; - uint32 version; - uint8 clienttype; - char id[24]; - int8 mac_address[17]; - char ip[15]; - char t1[]; -} __attribute__((packed)); -#endif // unused - -/** - * Packet structure for CA_CONNECT_INFO_CHANGED. - * - * New alive packet. Used to verify if client is always alive. - */ -struct packet_CA_CONNECT_INFO_CHANGED { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_CONNECT_INFO_CHANGED) - char id[24]; ///< account.userid -} __attribute__((packed)); - -/** - * Packet structure for CA_EXE_HASHCHECK. - * - * (kRO 2004-05-31aSakexe langtype 0 and 6) - */ -struct packet_CA_EXE_HASHCHECK { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_EXE_HASHCHECK) - uint8 hash_value[16]; ///< Client MD5 hash -} __attribute__((packed)); - -/** - * Packet structure for CA_REQ_HASH. - */ -struct packet_CA_REQ_HASH { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_REQ_HASH) -} __attribute__((packed)); - -/** - * Packet structure for CA_CHARSERVERCONNECT. - * - * This packet is used internally, to signal a char-server connection. - */ -struct packet_CA_CHARSERVERCONNECT { - int16 packet_id; ///< Packet ID (#PACKET_ID_CA_CHARSERVERCONNECT) - char userid[24]; ///< Username - char password[24]; ///< Password - int32 unknown; - int32 ip; ///< Charserver IP - int16 port; ///< Charserver port - char name[20]; ///< Charserver name - int16 unknown2; - int16 type; ///< Charserver type - int16 new; ///< Whether charserver is to be marked as new -} __attribute__((packed)); - -/** - * Packet structure for SC_NOTIFY_BAN. - */ -struct packet_SC_NOTIFY_BAN { - int16 packet_id; ///< Packet ID (#PACKET_ID_SC_NOTIFY_BAN) - uint8 error_code; ///< Error code -} __attribute__((packed)); - -/** - * Packet structure for AC_REFUSE_LOGIN. - */ -struct packet_AC_REFUSE_LOGIN { - int16 packet_id; ///< Packet ID (#PACKET_ID_AC_REFUSE_LOGIN) - uint8 error_code; ///< Error code - char block_date[20]; ///< Ban expiration date -} __attribute__((packed)); - -/** - * Packet structure for AC_REFUSE_LOGIN_R2. - */ -struct packet_AC_REFUSE_LOGIN_R2 { - int16 packet_id; ///< Packet ID (#PACKET_ID_AC_REFUSE_LOGIN_R2) - uint32 error_code; ///< Error code - char block_date[20]; ///< Ban expiration date -} __attribute__((packed)); - -/** - * Packet structure for AC_ACCEPT_LOGIN. - * - * Variable-length packet. - */ -struct packet_AC_ACCEPT_LOGIN { - int16 packet_id; ///< Packet ID (#PACKET_ID_AC_ACCEPT_LOGIN) - int16 packet_len; ///< Packet length (variable length) - int32 auth_code; ///< Authentication code - uint32 aid; ///< Account ID - uint32 user_level; ///< User level - uint32 last_login_ip; ///< Last login IP - char last_login_time[26]; ///< Last login timestamp - uint8 sex; ///< Account sex -#if PACKETVER >= 20170315 - char twitter_auth_token[16]; - uint8 twitter_flag; +#ifndef MAX_PACKET_LOGIN_DB +#define MAX_PACKET_LOGIN_DB 0x0ad0 #endif - struct { - uint32 ip; ///< Server IP address - int16 port; ///< Server port - char name[20]; ///< Server name - uint16 usercount; ///< Online users - uint16 state; ///< Server state - uint16 property; ///< Server property -#if PACKETVER >= 20170315 - char unknown2[128]; -#endif - } server_list[]; ///< List of charservers -} __attribute__((packed)); - -/** - * Packet structure for AC_ACK_HASH. - * - * Variable-length packet - */ -struct packet_AC_ACK_HASH { - int16 packet_id; ///< Packet ID (#PACKET_ID_AC_ACK_HASH) - int16 packet_len; ///< Packet length (variable length) - uint8 secret[]; ///< Challenge string -} __attribute__((packed)); - -#if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute -#pragma pack(pop) -#endif // not NetBSD < 6 / Solaris /** * Login Client Interface additional data */ struct lclif_interface_dbs { - struct login_packet_db packet_db[MAX_PACKET_DB + 1]; ///< Packet database. + struct login_packet_db packet_db[MAX_PACKET_LOGIN_DB + 1]; ///< Packet database. }; /** @@ -332,18 +70,20 @@ struct lclif_interface_private { */ enum parsefunc_rcode (*parse_sub)(int fd, struct login_session_data *sd); - LoginParseFunc *parse_CA_CONNECT_INFO_CHANGED; ///< Packet handler for #packet_CA_CONNECT_INFO_CHANGED. - LoginParseFunc *parse_CA_EXE_HASHCHECK; ///< Packet handler for #packet_CA_EXE_HASHCHECK. - LoginParseFunc *parse_CA_LOGIN; ///< Packet handler for #packet_CA_LOGIN. - LoginParseFunc *parse_CA_LOGIN2; ///< Packet handler for #packet_CA_LOGIN2. - LoginParseFunc *parse_CA_LOGIN3; ///< Packet handler for #packet_CA_LOGIN3. - LoginParseFunc *parse_CA_LOGIN4; ///< Packet handler for #packet_CA_LOGIN4. - LoginParseFunc *parse_CA_LOGIN_PCBANG; ///< Packet handler for #packet_CA_LOGIN_PCBANG. - LoginParseFunc *parse_CA_LOGIN_HAN; ///< Packet handler for #packet_CA_LOGIN_HAN. - LoginParseFunc *parse_CA_SSO_LOGIN_REQ; ///< Packet handler for #packet_CA_SSO_LOGIN_REQ. - LoginParseFunc *parse_CA_LOGIN_OTP; ///< Packet handler for #packet_CA_LOGIN_OTP. - LoginParseFunc *parse_CA_REQ_HASH; ///< Packet handler for #packet_CA_REQ_HASH. - LoginParseFunc *parse_CA_CHARSERVERCONNECT; ///< Packet handler for #packet_CA_CHARSERVERCONNECT. + LoginParseFunc *parse_CA_CONNECT_INFO_CHANGED; ///< Packet handler for #PACKET_CA_CONNECT_INFO_CHANGED. + LoginParseFunc *parse_CA_EXE_HASHCHECK; ///< Packet handler for #PACKET_CA_EXE_HASHCHECK. + LoginParseFunc *parse_CA_LOGIN; ///< Packet handler for #PACKET_CA_LOGIN. + LoginParseFunc *parse_CA_LOGIN2; ///< Packet handler for #PACKET_CA_LOGIN2. + LoginParseFunc *parse_CA_LOGIN3; ///< Packet handler for #PACKET_CA_LOGIN3. + LoginParseFunc *parse_CA_LOGIN4; ///< Packet handler for #PACKET_CA_LOGIN4. + LoginParseFunc *parse_CA_LOGIN_PCBANG; ///< Packet handler for #PACKET_CA_LOGIN_PCBANG. + LoginParseFunc *parse_CA_LOGIN_HAN; ///< Packet handler for #PACKET_CA_LOGIN_HAN. + LoginParseFunc *parse_CA_SSO_LOGIN_REQ; ///< Packet handler for #PACKET_CA_SSO_LOGIN_REQ. + LoginParseFunc *parse_CA_LOGIN_OTP; ///< Packet handler for #PACKET_CA_LOGIN_OTP. + LoginParseFunc *parse_CA_ACK_MOBILE_OTP; ///< Packet handler for #PACKET_CA_ACK_MOBILE_OTP. + LoginParseFunc *parse_CA_OTP_CODE; ///< Packet handler for #PACKET_CA_OTP_CODE. + LoginParseFunc *parse_CA_REQ_HASH; ///< Packet handler for #PACKET_CA_REQ_HASH. + LoginParseFunc *parse_CA_CHARSERVERCONNECT; ///< Packet handler for #PACKET_CA_CHARSERVERCONNECT. }; #endif // LOGIN_LCLIF_P_H diff --git a/src/login/login.c b/src/login/login.c index d54348834..4c40677fa 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -27,6 +27,7 @@ #include "login/ipban.h" #include "login/loginlog.h" #include "login/lclif.h" +#include "login/packets_ac_struct.h" #include "common/HPM.h" #include "common/cbasetypes.h" #include "common/conf.h" @@ -35,6 +36,7 @@ #include "common/memmgr.h" #include "common/md5calc.h" #include "common/nullpo.h" +#include "common/packetsstatic_len.h" #include "common/random.h" #include "common/showmsg.h" #include "common/socket.h" @@ -1368,36 +1370,37 @@ static bool login_client_login(int fd, struct login_session_data *sd) static bool login_client_login_otp(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); static bool login_client_login_otp(int fd, struct login_session_data *sd) { +#if PACKETVER_MAIN_NUM >= 20170621 || PACKETVER_RE_NUM >= 20170621 || defined(PACKETVER_ZERO) // send ok response with fake token -#ifdef PACKETVER_ZERO -#if PACKETVER >= 20171127 - WFIFOHEAD(fd, 33); - WFIFOW(fd, 0) = 0x0ae3; - WFIFOW(fd, 2) = 33; // len - WFIFOL(fd, 4) = 0; // normal login - safestrncpy(WFIFOP(fd, 8), "S1000", 6); - safestrncpy(WFIFOP(fd, 28), "token", 6); - WFIFOSET(fd, 33); -#elif PACKETVER >= 20171123 - WFIFOHEAD(fd, 19); - WFIFOW(fd, 0) = 0x0ae3; - WFIFOW(fd, 2) = 19; // len - WFIFOL(fd, 4) = 0; // normal login - safestrncpy(WFIFOP(fd, 8), "S1000", 6); - safestrncpy(WFIFOP(fd, 14), "token", 6); - WFIFOSET(fd, 19); -#else - WFIFOHEAD(fd, 13); - WFIFOW(fd, 0) = 0x0ad1; - WFIFOW(fd, 2) = 13; // len - WFIFOL(fd, 4) = 0; // normal login - safestrncpy(WFIFOP(fd, 8), "token", 6); - WFIFOSET(fd, 13); -#endif + const int len = sizeof(struct PACKET_AC_LOGIN_OTP) + 6; // + "token" string + WFIFOHEAD(fd, len); + struct PACKET_AC_LOGIN_OTP *packet = WP2PTR(sd->fd); + memset(packet, 0, len); + packet->packet_id = HEADER_AC_LOGIN_OTP; + packet->packet_len = len; + packet->loginFlag = 0; // normal login +#if PACKETVER_MAIN_NUM >= 20171213 || PACKETVER_RE_NUM >= 20171213 || PACKETVER_ZERO_NUM >= 20171123 + safestrncpy(packet->loginFlag2, "S1000", 6); +#endif // PACKETVER_MAIN_NUM >= 20171213 || PACKETVER_RE_NUM >= 20171213 || PACKETVER_ZERO_NUM >= 20171123 + + safestrncpy(packet->token, "token", 6); + WFIFOSET(fd, len); return true; -#else // PACKETVER_ZERO +#else // PACKETVER_MAIN_NUM >= 20170621 || PACKETVER_RE_NUM >= 20170621 || defined(PACKETVER_ZERO) return false; -#endif // PACKETVER_ZERO +#endif // PACKETVER_MAIN_NUM >= 20170621 || PACKETVER_RE_NUM >= 20170621 || defined(PACKETVER_ZERO) +} + +static void login_client_login_mobile_otp_request(int fd, struct login_session_data *sd) __attribute__((nonnull (2))); +static void login_client_login_mobile_otp_request(int fd, struct login_session_data *sd) +{ +#if PACKETVER_MAIN_NUM >= 20181114 || PACKETVER_RE_NUM >= 20181114 || defined(PACKETVER_ZERO) + WFIFOHEAD(sd->fd, sizeof(struct PACKET_AC_REQ_MOBILE_OTP)); + struct PACKET_AC_REQ_MOBILE_OTP *packet = WP2PTR(sd->fd); + packet->packet_id = HEADER_AC_REQ_MOBILE_OTP; + packet->aid = sd->account_id; + WFIFOSET(fd, sizeof(struct PACKET_AC_REQ_MOBILE_OTP)); +#endif } static void login_char_server_connection_status(int fd, struct login_session_data* sd, uint8 status) __attribute__((nonnull (2))); @@ -1457,6 +1460,7 @@ static void login_parse_request_connection(int fd, struct login_session_data* sd sockt->session[fd]->func_parse = login->parse_fromchar; sockt->session[fd]->flag.server = 1; + sockt->session[fd]->flag.validate = 0; sockt->realloc_fifo(fd, FIFOSIZE_SERVERLINK, FIFOSIZE_SERVERLINK); // send connection success @@ -2175,6 +2179,7 @@ int do_init(int argc, char **argv) // set default parser as lclif->parse function sockt->set_defaultparse(lclif->parse); + sockt->validate = true; // every 10 minutes cleanup online account db. timer->add_func_list(login->online_data_cleanup, "login->online_data_cleanup"); @@ -2273,6 +2278,7 @@ void login_defaults(void) login->parse_fromchar = login_parse_fromchar; login->client_login = login_client_login; login->client_login_otp = login_client_login_otp; + login->client_login_mobile_otp_request = login_client_login_mobile_otp_request; login->parse_request_connection = login_parse_request_connection; login->auth_ok = login_auth_ok; login->auth_failed = login_auth_failed; diff --git a/src/login/login.h b/src/login/login.h index 8a863f5aa..7f74057c6 100644 --- a/src/login/login.h +++ b/src/login/login.h @@ -219,6 +219,7 @@ struct login_interface { void (*auth_failed) (struct login_session_data* sd, int result); bool (*client_login) (int fd, struct login_session_data *sd); bool (*client_login_otp) (int fd, struct login_session_data *sd); + void (*client_login_mobile_otp_request) (int fd, struct login_session_data *sd); void (*char_server_connection_status) (int fd, struct login_session_data* sd, uint8 status); void (*parse_request_connection) (int fd, struct login_session_data* sd, const char *ip, uint32 ipl); void (*config_set_defaults) (void); diff --git a/src/login/packets_ac_struct.h b/src/login/packets_ac_struct.h new file mode 100644 index 000000000..c9fb04f26 --- /dev/null +++ b/src/login/packets_ac_struct.h @@ -0,0 +1,156 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2016-2018 Hercules Dev Team + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ +#ifndef LOGIN_PACKETS_AC_STRUCT_H +#define LOGIN_PACKETS_AC_STRUCT_H + +#include "common/hercules.h" +#include "common/mmo.h" +#include "common/packetsstatic_len.h" + +/* Enums */ + +/// Packet IDs +enum login_ac_packet_id { + HEADER_AC_ACCEPT_LOGIN = 0x0069, + HEADER_AC_ACCEPT_LOGIN2 = 0x0ac4, + HEADER_AC_REFUSE_LOGIN = 0x006a, + HEADER_SC_NOTIFY_BAN = 0x0081, + HEADER_AC_ACK_HASH = 0x01dc, + HEADER_AC_REFUSE_LOGIN_R2 = 0x083e, + HEADER_AC_REFUSE_LOGIN_R3 = 0x0b02, +}; + +/* Packets Structs */ +#if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute +#pragma pack(push, 1) +#endif // not NetBSD < 6 / Solaris + +/** + * Packet structure for SC_NOTIFY_BAN. + */ +struct PACKET_SC_NOTIFY_BAN { + int16 packet_id; ///< Packet ID (#HEADER_SC_NOTIFY_BAN) + uint8 error_code; ///< Error code +} __attribute__((packed)); + +/** + * Packet structure for AC_REFUSE_LOGIN. + */ +struct PACKET_AC_REFUSE_LOGIN { + int16 packet_id; ///< Packet ID (#HEADER_AC_REFUSE_LOGIN) + uint8 error_code; ///< Error code + char block_date[20]; ///< Ban expiration date +} __attribute__((packed)); + +/** + * Packet structure for AC_REFUSE_LOGIN_R2. + */ +struct PACKET_AC_REFUSE_LOGIN_R2 { + int16 packet_id; ///< Packet ID (#HEADER_AC_REFUSE_LOGIN_R2) + uint32 error_code; ///< Error code + char block_date[20]; ///< Ban expiration date +} __attribute__((packed)); + +/** + * Packet structure for AC_ACCEPT_LOGIN. + * + * Variable-length packet. + */ +struct PACKET_AC_ACCEPT_LOGIN { + int16 packet_id; ///< Packet ID (#HEADER_AC_ACCEPT_LOGIN) + int16 packet_len; ///< Packet length (variable length) + int32 auth_code; ///< Authentication code + uint32 aid; ///< Account ID + uint32 user_level; ///< User level + uint32 last_login_ip; ///< Last login IP + char last_login_time[26]; ///< Last login timestamp + uint8 sex; ///< Account sex +#if PACKETVER >= 20170315 + char twitter_auth_token[16]; + uint8 twitter_flag; +#endif + struct { + uint32 ip; ///< Server IP address + int16 port; ///< Server port + char name[20]; ///< Server name + uint16 usercount; ///< Online users + uint16 state; ///< Server state + uint16 property; ///< Server property +#if PACKETVER >= 20170315 + char unknown2[128]; +#endif + } server_list[]; ///< List of charservers +} __attribute__((packed)); + +/** + * Packet structure for AC_ACK_HASH. + * + * Variable-length packet + */ +struct PACKET_AC_ACK_HASH { + int16 packet_id; ///< Packet ID (#HEADER_AC_ACK_HASH) + int16 packet_len; ///< Packet length (variable length) + uint8 secret[]; ///< Challenge string +} __attribute__((packed)); + +#if PACKETVER_MAIN_NUM >= 20181114 || PACKETVER_RE_NUM >= 20181114 || defined(PACKETVER_ZERO) +struct PACKET_AC_REQ_MOBILE_OTP { + int16 packet_id; ///< Packet ID (#HEADER_CA_SSO_LOGIN_REQ) + uint32 aid; ///< Account ID +} __attribute__((packed)); +DEFINE_PACKET_HEADER(AC_REQ_MOBILE_OTP, 0x09a2); +#endif + +#if PACKETVER_MAIN_NUM >= 20171213 || PACKETVER_RE_NUM >= 20171213 || PACKETVER_ZERO_NUM >= 20171808 +// AC_LOGIN_OTP2 +struct PACKET_AC_LOGIN_OTP { + int16 packet_id; + int16 packet_len; + int32 loginFlag; + char loginFlag2[20]; + char token[]; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(AC_LOGIN_OTP, 0x0ae3); +#elif PACKETVER_ZERO_NUM >= 20171123 +// AC_LOGIN_OTP2 +struct PACKET_AC_LOGIN_OTP { + int16 packet_id; + int16 packet_len; + int32 loginFlag; + char loginFlag2[6]; + char token[]; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(AC_LOGIN_OTP, 0x0ae3); +#elif PACKETVER_MAIN_NUM >= 20170621 || PACKETVER_RE_NUM >= 20170621 || defined(PACKETVER_ZERO) +// AC_LOGIN_OTP1 +struct PACKET_AC_LOGIN_OTP { + int16 packet_id; + int16 packet_len; + int32 loginFlag; + char token[]; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(AC_LOGIN_OTP, 0x0ad1); +#endif + +#if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute +#pragma pack(pop) +#endif // not NetBSD < 6 / Solaris + +#endif // LOGIN_PACKETS_AC_STRUCT_H diff --git a/src/login/packets_ca_struct.h b/src/login/packets_ca_struct.h new file mode 100644 index 000000000..0828c7293 --- /dev/null +++ b/src/login/packets_ca_struct.h @@ -0,0 +1,239 @@ +/** + * This file is part of Hercules. + * http://herc.ws - http://github.com/HerculesWS/Hercules + * + * Copyright (C) 2016-2018 Hercules Dev Team + * + * Hercules 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 3 of the License, or + * (at your option) any later version. + * + * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + */ +#ifndef LOGIN_PACKETS_CA_STRUCT_H +#define LOGIN_PACKETS_CA_STRUCT_H + +#include "common/hercules.h" +#include "common/mmo.h" +#include "common/packetsstatic_len.h" + +/* Enums */ + +/// Packet IDs +enum login_packet_ca_id { + HEADER_CA_LOGIN = 0x0064, + HEADER_CA_LOGIN2 = 0x01dd, + HEADER_CA_LOGIN3 = 0x01fa, + HEADER_CA_CONNECT_INFO_CHANGED = 0x0200, + HEADER_CA_EXE_HASHCHECK = 0x0204, + HEADER_CA_LOGIN_PCBANG = 0x0277, + HEADER_CA_LOGIN4 = 0x027c, + HEADER_CA_LOGIN_HAN = 0x02b0, + HEADER_CA_SSO_LOGIN_REQ = 0x0825, + HEADER_CA_LOGIN_OTP = 0x0acf, + HEADER_CA_REQ_HASH = 0x01db, + HEADER_CA_CHARSERVERCONNECT = 0x2710, // Custom Hercules Packet + //HEADER_CA_SSO_LOGIN_REQa = 0x825a, /* unused */ +}; + +/* Packets Structs */ +#if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute +#pragma pack(push, 1) +#endif // not NetBSD < 6 / Solaris + +/** + * Packet structure for CA_LOGIN. + */ +struct PACKET_CA_LOGIN { + int16 packet_id; ///< Packet ID (#HEADER_CA_LOGIN) + uint32 version; ///< Client Version + char id[24]; ///< Username + char password[24]; ///< Password + uint8 clienttype; ///< Client Type +} __attribute__((packed)); + +/** + * Packet structure for CA_LOGIN2. + */ +struct PACKET_CA_LOGIN2 { + int16 packet_id; ///< Packet ID (#HEADER_CA_LOGIN2) + uint32 version; ///< Client Version + char id[24]; ///< Username + uint8 password_md5[16]; ///< Password hash + uint8 clienttype; ///< Client Type +} __attribute__((packed)); + +/** + * Packet structure for CA_LOGIN3. + */ +struct PACKET_CA_LOGIN3 { + int16 packet_id; ///< Packet ID (#HEADER_CA_LOGIN3) + uint32 version; ///< Client Version + char id[24]; ///< Username + uint8 password_md5[16]; ///< Password hash + uint8 clienttype; ///< Client Type + uint8 clientinfo; ///< Index of the connection in the clientinfo file (+10 if the command-line contains "pc") +} __attribute__((packed)); + +/** + * Packet structure for CA_LOGIN4. + */ +struct PACKET_CA_LOGIN4 { + int16 packet_id; ///< Packet ID (#HEADER_CA_LOGIN4) + uint32 version; ///< Client Version + char id[24]; ///< Username + uint8 password_md5[16]; ///< Password hash + uint8 clienttype; ///< Client Type + char mac_address[13]; ///< MAC Address +} __attribute__((packed)); + +/** + * Packet structure for CA_LOGIN_PCBANG. + */ +struct PACKET_CA_LOGIN_PCBANG { + int16 packet_id; ///< Packet ID (#HEADER_CA_LOGIN_PCBANG) + uint32 version; ///< Client Version + char id[24]; ///< Username + char password[24]; ///< Password + uint8 clienttype; ///< Client Type + char ip[16]; ///< IP Address + char mac_address[13]; ///< MAC Address +} __attribute__((packed)); + +/** + * Packet structure for CA_LOGIN_HAN. + */ +struct PACKET_CA_LOGIN_HAN { + int16 packet_id; ///< Packet ID (#HEADER_CA_LOGIN_HAN) + uint32 version; ///< Client Version + char id[24]; ///< Username + char password[24]; ///< Password + uint8 clienttype; ///< Client Type + char ip[16]; ///< IP Address + char mac_address[13]; ///< MAC Address + uint8 is_han_game_user; ///< 'isGravityID' +} __attribute__((packed)); + +/** + * Packet structure for CA_SSO_LOGIN_REQ. + * + * Variable-length packet. + */ +struct PACKET_CA_SSO_LOGIN_REQ { + int16 packet_id; ///< Packet ID (#HEADER_CA_SSO_LOGIN_REQ) + int16 packet_len; ///< Length (variable length) + uint32 version; ///< Clientver + uint8 clienttype; ///< Clienttype + char id[24]; ///< Username + char password[27]; ///< Password + int8 mac_address[17]; ///< MAC Address + char ip[15]; ///< IP Address + char t1[]; ///< SSO Login Token (variable length) +} __attribute__((packed)); + +#if PACKETVER_MAIN_NUM >= 20181114 || PACKETVER_RE_NUM >= 20181114 +/** + * Packet structure for CA_SSO_LOGIN_REQ. + * + * Variable-length packet. + */ +struct PACKET_CA_ACK_MOBILE_OTP { + int16 packet_id; ///< Packet ID (#HEADER_CA_ACK_MOBILE_OTP) + int16 packet_len; ///< Length (variable length) + uint32 aid; ///< Account ID + char code[6]; ///< Code +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CA_ACK_MOBILE_OTP, 0x09a3); +#endif + +#if PACKETVER_MAIN_NUM >= 20181114 || PACKETVER_RE_NUM >= 20181114 || defined(PACKETVER_ZERO) +struct PACKET_CA_OTP_CODE { + int16 packet_id; ///< Packet ID (#HEADER_CA_OTP_CODE) + char code[9]; ///< Code +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CA_OTP_CODE, 0x0ad0); +#endif + +/** + * Packet structure for CA_LOGIN_OTP. + */ +struct PACKET_CA_LOGIN_OTP { + int16 packet_id; ///< Packet ID (#HEADER_CA_LOGIN_OTP) +#if PACKETVER >= 20171113 + uint32 devFlags; ///< flags including dev flag +#endif + char login[25]; ///< Username + char password[32]; ///< Password encrypted by rijndael + char flagsStr[5]; ///< Unknown flags. Normally string: G000 +} __attribute__((packed)); + +#if 0 // Unused +struct PACKET_CA_SSO_LOGIN_REQa { + int16 packet_id; + int16 packet_len; + uint32 version; + uint8 clienttype; + char id[24]; + int8 mac_address[17]; + char ip[15]; + char t1[]; +} __attribute__((packed)); +#endif // unused + +/** + * Packet structure for CA_CONNECT_INFO_CHANGED. + * + * New alive packet. Used to verify if client is always alive. + */ +struct PACKET_CA_CONNECT_INFO_CHANGED { + int16 packet_id; ///< Packet ID (#HEADER_CA_CONNECT_INFO_CHANGED) + char id[24]; ///< account.userid +} __attribute__((packed)); + +/** + * Packet structure for CA_EXE_HASHCHECK. + * + * (kRO 2004-05-31aSakexe langtype 0 and 6) + */ +struct PACKET_CA_EXE_HASHCHECK { + int16 packet_id; ///< Packet ID (#HEADER_CA_EXE_HASHCHECK) + uint8 hash_value[16]; ///< Client MD5 hash +} __attribute__((packed)); + +/** + * Packet structure for CA_REQ_HASH. + */ +struct PACKET_CA_REQ_HASH { + int16 packet_id; ///< Packet ID (#HEADER_CA_REQ_HASH) +} __attribute__((packed)); + +/** + * Packet structure for CA_CHARSERVERCONNECT. + * + * This packet is used internally, to signal a char-server connection. + */ +struct PACKET_CA_CHARSERVERCONNECT { + int16 packet_id; ///< Packet ID (#HEADER_CA_CHARSERVERCONNECT) + char userid[24]; ///< Username + char password[24]; ///< Password + int32 unknown; + int32 ip; ///< Charserver IP + int16 port; ///< Charserver port + char name[20]; ///< Charserver name + int16 unknown2; + int16 type; ///< Charserver type + int16 new; ///< Whether charserver is to be marked as new +} __attribute__((packed)); + +#if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute +#pragma pack(pop) +#endif // not NetBSD < 6 / Solaris + +#endif // LOGIN_PACKETS_CA_STRUCT_H diff --git a/src/map/HPMmap.c b/src/map/HPMmap.c index 091a53311..6eff37df8 100644 --- a/src/map/HPMmap.c +++ b/src/map/HPMmap.c @@ -38,6 +38,7 @@ #include "common/mapindex.h" #include "common/mmo.h" #include "common/nullpo.h" +#include "common/packets.h" #include "common/random.h" #include "common/showmsg.h" #include "common/socket.h" @@ -73,7 +74,6 @@ #include "map/mercenary.h" #include "map/mob.h" #include "map/npc.h" -#include "map/packets_struct.h" #include "map/party.h" #include "map/path.h" #include "map/pc.h" diff --git a/src/map/achievement.c b/src/map/achievement.c index 1fb513ea0..057ea29c3 100644 --- a/src/map/achievement.c +++ b/src/map/achievement.c @@ -760,18 +760,21 @@ static void achievement_validate_refine(struct map_session_data *sd, unsigned in struct item_data *id = NULL; nullpo_retv(sd); - Assert_retv(idx < MAX_INVENTORY); + Assert_retv(idx < sd->status.inventorySize); id = itemdb->exists(sd->status.inventory[idx].nameid); if (sd->achievements_received == false) return; - Assert_retv(idx < MAX_INVENTORY); Assert_retv(id != NULL); criteria.goal = sd->status.inventory[idx].refine; + // achievement should not trigger if refine is 0 + if (criteria.goal == 0) + return; + /* Universal */ achievement->validate_type(sd, success ? ACH_EQUIP_REFINE_SUCCESS : ACH_EQUIP_REFINE_FAILURE, @@ -1016,44 +1019,56 @@ static bool achievement_check_title(struct map_session_data *sd, int title_id) { return false; } -/** - * Achievement rewards are given to player - * @param sd session data - * @param ad achievement data - */ -static void achievement_get_rewards(struct map_session_data *sd, const struct achievement_data *ad) { - int i = 0; - struct achievement *ach = NULL; - +static void achievement_get_rewards_buffs(struct map_session_data *sd, const struct achievement_data *ad) +{ nullpo_retv(sd); nullpo_retv(ad); - if ((ach = achievement->ensure(sd, ad)) == NULL) - return; - - /* Buff */ if (ad->rewards.bonus != NULL) script->run(ad->rewards.bonus, 0, sd->bl.id, 0); +} - /* Give Items */ - for (i = 0; i < VECTOR_LENGTH(ad->rewards.item); i++) { - struct item it = { 0 }; - int total = 0; +// TODO: kro send items by rodex +static void achievement_get_rewards_items(struct map_session_data *sd, const struct achievement_data *ad) +{ + nullpo_retv(sd); + nullpo_retv(ad); - it.nameid = VECTOR_INDEX(ad->rewards.item, i).id; - total = VECTOR_INDEX(ad->rewards.item, i).amount; + struct item it = { 0 }; + it.identify = 1; - it.identify = 1; + for (int i = 0; i < VECTOR_LENGTH(ad->rewards.item); i++) { + it.nameid = VECTOR_INDEX(ad->rewards.item, i).id; + int total = VECTOR_INDEX(ad->rewards.item, i).amount; //Check if it's stackable. if (!itemdb->isstackable(it.nameid)) { - int j = 0; - for (j = 0; j < total; ++j) - pc->additem(sd, &it, (it.amount = 1), LOG_TYPE_SCRIPT); + it.amount = 1; + for (int j = 0; j < total; ++j) + pc->additem(sd, &it, 1, LOG_TYPE_SCRIPT); } else { - pc->additem(sd, &it, (it.amount = total), LOG_TYPE_SCRIPT); + it.amount = total; + pc->additem(sd, &it, total, LOG_TYPE_SCRIPT); } } +} + +/** + * Achievement rewards are given to player + * @param sd session data + * @param ad achievement data + */ +static bool achievement_get_rewards(struct map_session_data *sd, const struct achievement_data *ad) +{ + nullpo_retr(false, sd); + nullpo_retr(false, ad); + + struct achievement *ach = achievement->ensure(sd, ad); + if (ach == NULL) + return false; + + /* Buff */ + achievement->get_rewards_buffs(sd, ad); ach->rewarded_at = time(NULL); @@ -1062,9 +1077,14 @@ static void achievement_get_rewards(struct map_session_data *sd, const struct ac VECTOR_PUSH(sd->title_ids, ad->rewards.title_id); clif->achievement_send_list(sd->fd, sd); } else { - clif->achievement_reward_ack(sd->fd, sd, ad); clif->achievement_send_update(sd->fd, sd, ad); // send update. + clif->achievement_reward_ack(sd->fd, sd, ad); } + + /* Give Items */ + achievement->get_rewards_items(sd, ad); + + return true; } /** @@ -1977,4 +1997,6 @@ void achievement_defaults(void) achievement->init_titles = achievement_init_titles; achievement->check_title = achievement_check_title; achievement->get_rewards = achievement_get_rewards; + achievement->get_rewards_buffs = achievement_get_rewards_buffs; + achievement->get_rewards_items = achievement_get_rewards_items; } diff --git a/src/map/achievement.h b/src/map/achievement.h index beba120a2..de5eaa060 100644 --- a/src/map/achievement.h +++ b/src/map/achievement.h @@ -277,7 +277,9 @@ struct achievement_interface { /* */ void (*init_titles) (struct map_session_data *sd); bool (*check_title) (struct map_session_data *sd, int title_id); - void (*get_rewards) (struct map_session_data *sd, const struct achievement_data *ad); + bool (*get_rewards) (struct map_session_data *sd, const struct achievement_data *ad); + void (*get_rewards_buffs) (struct map_session_data *sd, const struct achievement_data *ad); + void (*get_rewards_items) (struct map_session_data *sd, const struct achievement_data *ad); }; #ifdef HERCULES_CORE diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 2538f797c..0a1fd6da3 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -62,6 +62,7 @@ #include "common/memmgr.h" #include "common/mmo.h" // MAX_CARTS #include "common/nullpo.h" +#include "common/packets.h" #include "common/random.h" #include "common/showmsg.h" #include "common/socket.h" @@ -262,12 +263,15 @@ ACMD(send) if (len) { // show packet length - safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,904), type, clif->packet(type)->len); // Packet 0x%x length: %d + Assert_retr(false, type <= MAX_PACKET_DB && type >= MIN_PACKET_DB); + len = packets->db[type]; + safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,904), type, len); // Packet 0x%x length: %d clif->message(fd, atcmd_output); return true; } - len = clif->packet(type)->len; + Assert_retr(false, type <= MAX_PACKET_DB && type >= MIN_PACKET_DB); + len = packets->db[type]; if (len == -1) { // dynamic packet @@ -415,7 +419,7 @@ ACMD(send) SKIP_VALUE(message); } - if (clif->packet(type)->len == -1) { // send dynamic packet + if (packets->db[type] == -1) { // send dynamic packet WFIFOW(sd->fd,2)=TOW(off); WFIFOSET(sd->fd,off); } else {// send static packet @@ -1131,7 +1135,7 @@ ACMD(heal) } if ( hp > 0 && sp >= 0 ) { - if(!status->heal(&sd->bl, hp, sp, 0)) + if (status->heal(&sd->bl, hp, sp, STATUS_HEAL_DEFAULT) == 0) clif->message(fd, msg_fd(fd,157)); // HP and SP are already with the good value. else clif->message(fd, msg_fd(fd,17)); // HP, SP recovered. @@ -1148,7 +1152,7 @@ ACMD(heal) //Opposing signs. if ( hp ) { if (hp > 0) - status->heal(&sd->bl, hp, 0, 0); + status->heal(&sd->bl, hp, 0, STATUS_HEAL_DEFAULT); else { status->damage(NULL, &sd->bl, -hp, 0, 0, 0); clif->damage(&sd->bl,&sd->bl, 0, 0, -hp, 0, BDT_ENDURE, 0); @@ -1157,7 +1161,7 @@ ACMD(heal) if ( sp ) { if (sp > 0) - status->heal(&sd->bl, 0, sp, 0); + status->heal(&sd->bl, 0, sp, STATUS_HEAL_DEFAULT); else status->damage(NULL, &sd->bl, 0, -sp, 0, 0); } @@ -1355,9 +1359,7 @@ ACMD(item2) *------------------------------------------*/ ACMD(itemreset) { - int i; - - for (i = 0; i < MAX_INVENTORY; i++) { + for (int i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].amount && sd->status.inventory[i].equip == 0) { pc->delitem(sd, i, sd->status.inventory[i].amount, 0, DELITEM_NORMAL, LOG_TYPE_COMMAND); } @@ -1776,18 +1778,7 @@ ACMD(bodystyle) memset(atcmd_output, '\0', sizeof(atcmd_output)); - if ((sd->job & MAPID_THIRDMASK) != MAPID_GUILLOTINE_CROSS - && (sd->job & MAPID_THIRDMASK) != MAPID_GENETIC - && (sd->job & MAPID_THIRDMASK) != MAPID_MECHANIC - && (sd->job & MAPID_THIRDMASK) != MAPID_ROYAL_GUARD - && (sd->job & MAPID_THIRDMASK) != MAPID_ARCH_BISHOP - && (sd->job & MAPID_THIRDMASK) != MAPID_RANGER - && (sd->job & MAPID_THIRDMASK) != MAPID_WARLOCK - && (sd->job & MAPID_THIRDMASK) != MAPID_SHADOW_CHASER - && (sd->job & MAPID_THIRDMASK) != MAPID_MINSTRELWANDERER - && (sd->job & MAPID_THIRDMASK) != MAPID_SORCERER - && (sd->job & MAPID_THIRDMASK) != MAPID_SURA - ) { + if (!pc->has_second_costume(sd)) { clif->message(fd, msg_fd(fd, 35)); // This job has no alternate body styles. return false; } @@ -4281,10 +4272,8 @@ ACMD(partyspy) *------------------------------------------*/ ACMD(repairall) { - int count, i; - - count = 0; - for (i = 0; i < MAX_INVENTORY; i++) { + int count = 0; + for (int i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].card[0] == CARD0_PET) continue; if (sd->status.inventory[i].nameid && (sd->status.inventory[i].attribute & ATTR_BROKEN) != 0) { @@ -5293,9 +5282,7 @@ ACMD(follow) *------------------------------------------*/ ACMD(dropall) { - int i; - - for (i = 0; i < MAX_INVENTORY; i++) { + for (int i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].amount) { if(sd->status.inventory[i].equip != 0) pc->unequipitem(sd, i, PCUNEQUIPITEM_RECALC|PCUNEQUIPITEM_FORCE); @@ -5311,8 +5298,6 @@ ACMD(dropall) *------------------------------------------*/ ACMD(storeall) { - int i; - if (sd->state.storage_flag != STORAGE_FLAG_NORMAL) { //Open storage. if (storage->open(sd) == 1) { @@ -5326,7 +5311,7 @@ ACMD(storeall) return false; } - for (i = 0; i < MAX_INVENTORY; i++) { + for (int i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].amount) { if(sd->status.inventory[i].equip != 0) pc->unequipitem(sd, i, PCUNEQUIPITEM_RECALC|PCUNEQUIPITEM_FORCE); @@ -6721,9 +6706,9 @@ ACMD(refreshall) *------------------------------------------*/ ACMD(identify) { - int i,num; + int num = 0; - for (i=num=0;i<MAX_INVENTORY;i++) { + for (int i = 0; i < sd->status.inventorySize; i++) { if(sd->status.inventory[i].nameid > 0 && sd->status.inventory[i].identify!=1){ num++; } @@ -8263,7 +8248,7 @@ ACMD(itemlist) } else if( strcmpi(info->command, "itemlist") == 0 ) { location = "inventory"; items = sd->status.inventory; - size = MAX_INVENTORY; + size = sd->status.inventorySize; } else return false; @@ -9003,9 +8988,7 @@ static void atcommand_channel_help(int fd, const char *command, bool can_create) clif->message(fd, msg_fd(fd,1428));// - binds global chat to <channel name>, making anything you type in global be sent to the channel safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1429),command);// -- %s unbind clif->message(fd, atcmd_output); - clif->message(fd, msg_fd(fd,1430));// - unbinds your global chat from its attached channel (if binded) - safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1429),command);// -- %s unbind - clif->message(fd, atcmd_output); + clif->message(fd, msg_fd(fd,1430));// - unbinds your global chat from its attached channel (if bound) if( can_create ) { safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1456),command);// -- %s ban <channel name> <character name> clif->message(fd, atcmd_output); @@ -9030,7 +9013,6 @@ ACMD(channel) { struct channel_data *chan; char subcmd[HCS_NAME_LENGTH], sub1[HCS_NAME_LENGTH], sub2[HCS_NAME_LENGTH], sub3[HCS_NAME_LENGTH]; - unsigned char k = 0; sub1[0] = sub2[0] = sub3[0] = '\0'; if (!*message || sscanf(message, "%19s %19s %19s %19s", subcmd, sub1, sub2, sub3) < 1) { @@ -9067,7 +9049,7 @@ ACMD(channel) } else if (strcmpi(subcmd,"list") == 0) { // sub1 = list type; sub2 = unused; sub3 = unused if (sub1[0] != '\0' && strcmpi(sub1,"colors") == 0) { - for (k = 0; k < channel->config->colors_count; k++) { + for (int k = 0; k < channel->config->colors_count; k++) { safesnprintf(atcmd_output, sizeof(atcmd_output), "[ %s list colors ] : %s", command, channel->config->colors_name[k]); clif->messagecolor_self(fd, channel->config->colors[k], atcmd_output); @@ -9096,6 +9078,7 @@ ACMD(channel) } } else if (strcmpi(subcmd,"setcolor") == 0) { // sub1 = channel name; sub2 = color; sub3 = unused + int k; if (sub1[0] != '#') { clif->message(fd, msg_fd(fd,1405));// Channel name must start with a '#' return false; @@ -9113,10 +9096,7 @@ ACMD(channel) return false; } - for (k = 0; k < channel->config->colors_count; k++) { - if (strcmpi(sub2, channel->config->colors_name[k]) == 0) - break; - } + ARR_FIND(0, channel->config->colors_count, k, strcmpi(sub2, channel->config->colors_name[k]) == 0); if (k == channel->config->colors_count) { safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1411), sub2);// Unknown color '%s' clif->message(fd, atcmd_output); @@ -9127,51 +9107,45 @@ ACMD(channel) clif->message(fd, atcmd_output); } else if (strcmpi(subcmd,"leave") == 0) { // sub1 = channel name; sub2 = unused; sub3 = unused + int k; if (sub1[0] != '#') { clif->message(fd, msg_fd(fd,1405));// Channel name must start with a '#' return false; } - for (k = 0; k < sd->channel_count; k++) { - if (strcmpi(sub1+1,sd->channels[k]->name) == 0) - break; - } - if (k == sd->channel_count) { + ARR_FIND(0, VECTOR_LENGTH(sd->channels), k, strcmpi(sub1 + 1, VECTOR_INDEX(sd->channels, k)->name) == 0); + if (k == VECTOR_LENGTH(sd->channels)) { safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1425),sub1);// You're not part of the '%s' channel clif->message(fd, atcmd_output); return false; } - if (sd->channels[k]->type == HCS_TYPE_ALLY) { - do { - for (k = 0; k < sd->channel_count; k++) { - if (sd->channels[k]->type == HCS_TYPE_ALLY) { - channel->leave(sd->channels[k],sd); - break; - } + if (VECTOR_INDEX(sd->channels, k)->type == HCS_TYPE_ALLY) { + for (k = VECTOR_LENGTH(sd->channels) - 1; k >= 0; k--) { + // Loop downward to avoid issues when channel->leave() compacts the array + if (VECTOR_INDEX(sd->channels, k)->type == HCS_TYPE_ALLY) { + channel->leave(VECTOR_INDEX(sd->channels, k), sd); } - } while (k != sd->channel_count); + } } else { - channel->leave(sd->channels[k],sd); + channel->leave(VECTOR_INDEX(sd->channels, k), sd); } safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1426),sub1); // You've left the '%s' channel clif->message(fd, atcmd_output); } else if (strcmpi(subcmd,"bindto") == 0) { // sub1 = channel name; sub2 = unused; sub3 = unused + int k; if (sub1[0] != '#') { clif->message(fd, msg_fd(fd,1405));// Channel name must start with a '#' return false; } - for (k = 0; k < sd->channel_count; k++) { - if (strcmpi(sub1+1,sd->channels[k]->name) == 0) - break; - } - if (k == sd->channel_count) { + ARR_FIND(0, VECTOR_LENGTH(sd->channels), k, strcmpi(sub1 + 1, VECTOR_INDEX(sd->channels, k)->name) == 0); + if (k == VECTOR_LENGTH(sd->channels)) { safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1425),sub1);// You're not part of the '%s' channel clif->message(fd, atcmd_output); return false; } - sd->gcbind = sd->channels[k]; + sd->gcbind = VECTOR_INDEX(sd->channels, k); safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1431),sub1); // Your global chat is now bound to the '%s' channel clif->message(fd, atcmd_output); } else if (strcmpi(subcmd,"unbind") == 0) { @@ -9343,6 +9317,7 @@ ACMD(channel) dbi_destroy(iter); } else if (strcmpi(subcmd,"setopt") == 0) { // sub1 = channel name; sub2 = option name; sub3 = value + int k; const char* opt_str[3] = { "None", "JoinAnnounce", @@ -9398,8 +9373,8 @@ ACMD(channel) } else { int v = atoi(sub3); if (k == HCS_OPT_MSG_DELAY) { - if (v < 0 || v > 10) { - safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd,1451), v, opt_str[k]);// value '%d' for option '%s' is out of range (limit is 0-10) + if (v < 0 || v > channel->config->channel_opt_msg_delay) { + safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd, 1451), v, opt_str[k], channel->config->channel_opt_msg_delay);// value '%d' for option '%s' is out of range (limit is 0-%d) clif->message(fd, atcmd_output); return false; } @@ -9810,6 +9785,24 @@ ACMD(reloadclans) return true; } +// show camera window or change camera parameters +ACMD(camerainfo) +{ + if (*message == '\0') { + clif->camera_showWindow(sd); + return true; + } + float range = 0; + float rotation = 0; + float latitude = 0; + if (sscanf(message, "%15f %15f %15f", &range, &rotation, &latitude) < 3) { + clif->message(fd, msg_fd(fd, 452)); // usage @camerainfo range rotation latitude + return false; + } + clif->camera_change(sd, range, rotation, latitude, SELF); + return true; +} + /** * Fills the reference of available commands in atcommand DBMap **/ @@ -10092,6 +10085,7 @@ static void atcommand_basecommands(void) ACMD_DEF(leaveclan), ACMD_DEF(reloadclans), ACMD_DEF(setzone), + ACMD_DEF(camerainfo), }; int i; diff --git a/src/map/battle.c b/src/map/battle.c index fceb30be1..f51240810 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -1365,24 +1365,28 @@ static int64 battle_calc_defense(int attack_type, struct block_list *src, struct #endif } - if( battle_config.vit_penalty_type && battle_config.vit_penalty_target&target->type ) { - unsigned char target_count; //256 max targets should be a sane max - target_count = unit->counttargeted(target); - if(target_count >= battle_config.vit_penalty_count) { - if(battle_config.vit_penalty_type == 1) { - if( !tsc || !tsc->data[SC_STEELBODY] ) - def1 = (def1 * (100 - (target_count - (battle_config.vit_penalty_count - 1))*battle_config.vit_penalty_num))/100; - def2 = (def2 * (100 - (target_count - (battle_config.vit_penalty_count - 1))*battle_config.vit_penalty_num))/100; - } else { //Assume type 2 - if( !tsc || !tsc->data[SC_STEELBODY] ) - def1 -= (target_count - (battle_config.vit_penalty_count - 1))*battle_config.vit_penalty_num; - def2 -= (target_count - (battle_config.vit_penalty_count - 1))*battle_config.vit_penalty_num; + if (battle_config.vit_penalty_type != 0 && (battle_config.vit_penalty_target & target->type) != 0) { + int target_count = unit->counttargeted(target); + if (target_count >= battle_config.vit_penalty_count) { + int penalty = (target_count - (battle_config.vit_penalty_count - 1)) * battle_config.vit_penalty_num; + if (battle_config.vit_penalty_type == 1) { + if (tsc == NULL || tsc->data[SC_STEELBODY] == NULL) + def1 = def1 * (100 - penalty) / 100; + def2 = def2 * (100 - penalty) / 100; + } else { // Assume type 2 + if (tsc == NULL || tsc->data[SC_STEELBODY] == NULL) + def1 -= penalty; + def2 -= penalty; } } #ifndef RENEWAL - if(skill_id == AM_ACIDTERROR) def1 = 0; //Acid Terror ignores only armor defense. [Skotlex] + if (skill_id == AM_ACIDTERROR) + def1 = 0; // Acid Terror ignores only armor defense. [Skotlex] #endif - if(def2 < 1) def2 = 1; + if (def1 < 0) + def1 = 0; + if (def2 < 1) + def2 = 1; } //Vitality reduction from rodatazone: http://rodatazone.simgaming.net/mechanics/substats.php#def if (tsd) { @@ -2872,7 +2876,7 @@ static int64 battle_calc_damage(struct block_list *src, struct block_list *bl, s if( sc->data[SC__MAELSTROM] && (flag&BF_MAGIC) && skill_id && (skill->get_inf(skill_id)&INF_GROUND_SKILL) ) { // {(Maelstrom Skill LevelxAbsorbed Skill Level)+(Caster's Job/5)}/2 int sp = (sc->data[SC__MAELSTROM]->val1 * skill_lv + (t_sd ? t_sd->status.job_level / 5 : 0)) / 2; - status->heal(bl, 0, sp, 3); + status->heal(bl, 0, sp, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT); d->dmg_lv = ATK_BLOCK; return 0; } @@ -3243,7 +3247,7 @@ static int64 battle_calc_damage(struct block_list *src, struct block_list *bl, s //(since battle_drain is strictly for players currently) if ((sce=sc->data[SC_HAMI_BLOODLUST]) && flag&BF_WEAPON && damage > 0 && rnd()%100 < sce->val3) - status->heal(src, damage*sce->val4/100, 0, 3); + status->heal(src, damage*sce->val4/100, 0, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT); if( (sce = sc->data[SC_FORCEOFVANGUARD]) && flag&BF_WEAPON && rnd()%100 < sce->val2 && sc->fv_counter <= sce->val3 ) @@ -4224,16 +4228,16 @@ static struct Damage battle_calc_misc_attack(struct block_list *src, struct bloc hitrate = 80; //Default hitrate #endif - if(battle_config.agi_penalty_type && battle_config.agi_penalty_target&target->type) { - unsigned char attacker_count; //256 max targets should be a sane max - attacker_count = unit->counttargeted(target); - if(attacker_count >= battle_config.agi_penalty_count) - { + if (battle_config.agi_penalty_type != 0 && (battle_config.agi_penalty_target & target->type) != 0) { + int attacker_count = unit->counttargeted(target); + if (attacker_count >= battle_config.agi_penalty_count) { + int penalty = (attacker_count - (battle_config.agi_penalty_count - 1)) * battle_config.agi_penalty_num; if (battle_config.agi_penalty_type == 1) - flee = (flee * (100 - (attacker_count - (battle_config.agi_penalty_count - 1))*battle_config.agi_penalty_num))/100; + flee = flee * (100 - penalty) / 100; else // assume type 2: absolute reduction - flee -= (attacker_count - (battle_config.agi_penalty_count - 1))*battle_config.agi_penalty_num; - if(flee < 1) flee = 1; + flee -= penalty; + if (flee < 1) + flee = 1; } } @@ -4339,6 +4343,8 @@ static struct Damage battle_calc_misc_attack(struct block_list *src, struct bloc } break; } + + battle->reflect_trap(target, src, &md, skill_id); return md; } @@ -4749,15 +4755,16 @@ static struct Damage battle_calc_weapon_attack(struct block_list *src, struct bl short hitrate = 80; //Default hitrate #endif - if(battle_config.agi_penalty_type && battle_config.agi_penalty_target&target->type) { - unsigned char attacker_count; //256 max targets should be a sane max - attacker_count = unit->counttargeted(target); - if(attacker_count >= battle_config.agi_penalty_count) { + if (battle_config.agi_penalty_type != 0 && (battle_config.agi_penalty_target & target->type) != 0) { + int attacker_count = unit->counttargeted(target); + if (attacker_count >= battle_config.agi_penalty_count) { + int penalty = (attacker_count - (battle_config.agi_penalty_count - 1)) * battle_config.agi_penalty_num; if (battle_config.agi_penalty_type == 1) - flee = (flee * (100 - (attacker_count - (battle_config.agi_penalty_count - 1))*battle_config.agi_penalty_num))/100; - else //asume type 2: absolute reduction - flee -= (attacker_count - (battle_config.agi_penalty_count - 1))*battle_config.agi_penalty_num; - if(flee < 1) flee = 1; + flee = flee * (100 - penalty) / 100; + else // asume type 2: absolute reduction + flee -= penalty; + if (flee < 1) + flee = 1; } } @@ -6008,6 +6015,37 @@ static void battle_reflect_damage(struct block_list *target, struct block_list * #undef NORMALIZE_RDAMAGE } +/** + * Reflects damage from certain traps, if battle_config.trap_reflect is true. + * @param target : Player who triggered the trap + * @param src : Player who set the trap + * @param md : Trap damage structure + * @param skill_id : Trap skill ID + */ +static void battle_reflect_trap(struct block_list *target, struct block_list *src, struct Damage *md, uint16 skill_id) +{ + if (battle_config.trap_reflect == true) { + if (src != target) { // Don't reflect your own damage + switch (skill_id) { + case HT_CLAYMORETRAP: + case HT_LANDMINE: + case HT_FREEZINGTRAP: + case HT_BLASTMINE: + // Needs official info + //case RA_CLUSTERBOMB: + //case RA_FIRINGTRAP: + //case RA_ICEBOUNDTRAP: + //case GN_THORNS_TRAP: + //case KO_MAKIBISHI: + case MA_LANDMINE: + case MA_FREEZINGTRAP: + battle->reflect_damage(target, src, md, skill_id); + break; + } + } + } +} + static void battle_drain(struct map_session_data *sd, struct block_list *tbl, int64 rdamage, int64 ldamage, int race, int boss) { struct weapon_data *wd; @@ -6061,7 +6099,7 @@ static void battle_drain(struct map_session_data *sd, struct block_list *tbl, in if (!thp && !tsp) return; - status->heal(&sd->bl, thp, tsp, battle_config.show_hp_sp_drain ? 3 : 1); + status->heal(&sd->bl, thp, tsp, STATUS_HEAL_FORCED | (battle_config.show_hp_sp_drain ? STATUS_HEAL_SHOWEFFECT : STATUS_HEAL_DEFAULT)); if (rhp || rsp) status_zap(tbl, rhp, rsp); @@ -7325,6 +7363,7 @@ static const struct battle_data { * Hercules **/ { "skill_trap_type", &battle_config.skill_trap_type, 0, 0, 1, }, + { "trap_reflect", &battle_config.trap_reflect, 1, 0, 1, }, { "item_restricted_consumption_type", &battle_config.item_restricted_consumption_type,1, 0, 1, }, { "unequip_restricted_equipment", &battle_config.unequip_restricted_equipment, 0, 0, 3, }, { "max_walk_path", &battle_config.max_walk_path, 17, 1, MAX_WALKPATH, }, @@ -7371,6 +7410,9 @@ static const struct battle_data { { "storage_use_item", &battle_config.storage_use_item, 0, 0, 1, }, { "features/enable_attendance_system", &battle_config.feature_enable_attendance_system,1, 0, 1, }, { "features/feature_attendance_endtime",&battle_config.feature_attendance_endtime, 1, 0, 99999999, }, + { "min_item_buy_price", &battle_config.min_item_buy_price, 1, 0, INT_MAX, }, + { "min_item_sell_price", &battle_config.min_item_sell_price, 0, 0, INT_MAX, }, + { "display_fake_hp_when_dead", &battle_config.display_fake_hp_when_dead, 1, 0, 1, }, }; static bool battle_set_value_sub(int index, int value) @@ -7614,6 +7656,7 @@ void battle_defaults(void) battle->delay_damage = battle_delay_damage; battle->drain = battle_drain; battle->reflect_damage = battle_reflect_damage; + battle->reflect_trap = battle_reflect_trap; battle->attr_ratio = battle_attr_ratio; battle->attr_fix = battle_attr_fix; battle->calc_cardfix = battle_calc_cardfix; diff --git a/src/map/battle.h b/src/map/battle.h index 3458a72dd..d2fd92450 100644 --- a/src/map/battle.h +++ b/src/map/battle.h @@ -506,6 +506,7 @@ struct Battle_Config { /** Hercules **/ int skill_trap_type; + int trap_reflect; int item_restricted_consumption_type; int unequip_restricted_equipment; int max_walk_path; @@ -570,6 +571,11 @@ struct Battle_Config { int feature_enable_attendance_system; int feature_attendance_endtime; + + int min_item_buy_price; + int min_item_sell_price; + + int display_fake_hp_when_dead; }; /* criteria for battle_config.idletime_critera */ @@ -637,6 +643,8 @@ struct battle_interface { void (*drain) (struct map_session_data *sd, struct block_list *tbl, int64 rdamage, int64 ldamage, int race, int boss); /* damage reflect */ void (*reflect_damage) (struct block_list *target, struct block_list *src, struct Damage *wd,uint16 skill_id); + /* trap reflect */ + void(*reflect_trap) (struct block_list *target, struct block_list *src, struct Damage *md, uint16 skill_id); /* attribute rate */ int (*attr_ratio) (int atk_elem, int def_type, int def_lv); /* applies attribute modifiers */ diff --git a/src/map/channel.c b/src/map/channel.c index f1946385d..e27e9fb0b 100644 --- a/src/map/channel.c +++ b/src/map/channel.c @@ -276,7 +276,9 @@ static void channel_send(struct channel_data *chan, struct map_session_data *sd, if (sd && chan->msg_delay != 0 && DIFF_TICK(sd->hchsysch_tick + chan->msg_delay*1000, timer->gettick()) > 0 && !pc_has_permission(sd, PC_PERM_HCHSYS_ADMIN)) { - clif->messagecolor_self(sd->fd, COLOR_RED, msg_sd(sd,1455)); + char output[CHAT_SIZE_MAX]; + sprintf(output, msg_sd(sd, 1455), DIFF_TICK(sd->hchsysch_tick + chan->msg_delay * 1000, timer->gettick()) / 1000); // "You cannot send a message to this channel for another %d seconds." + clif->messagecolor_self(sd->fd, COLOR_RED, output); return; } else if (sd) { int i; @@ -317,8 +319,8 @@ static void channel_join_sub(struct channel_data *chan, struct map_session_data if (idb_put(chan->users, sd->status.char_id, sd)) return; - RECREATE(sd->channels, struct channel_data *, ++sd->channel_count); - sd->channels[sd->channel_count - 1] = chan; + VECTOR_ENSURE(sd->channels, 1, 1); + VECTOR_PUSH(sd->channels, chan); if (!stealth && (chan->options&HCS_OPT_ANNOUNCE_JOIN)) { char message[60]; @@ -327,7 +329,7 @@ static void channel_join_sub(struct channel_data *chan, struct map_session_data } /* someone is cheating, we kindly disconnect the bastard */ - if (sd->channel_count > 200) { + if (VECTOR_LENGTH(sd->channels) > 200) { sockt->eof(sd->fd); } @@ -409,32 +411,16 @@ static enum channel_operation_status channel_join(struct channel_data *chan, str */ static void channel_leave_sub(struct channel_data *chan, struct map_session_data *sd) { - unsigned char i; + int i; nullpo_retv(chan); nullpo_retv(sd); - for (i = 0; i < sd->channel_count; i++) { - if (sd->channels[i] == chan) { - sd->channels[i] = NULL; - break; - } - } - if (i < sd->channel_count) { - unsigned char cursor = 0; - for (i = 0; i < sd->channel_count; i++) { - if (sd->channels[i] == NULL) - continue; - if (cursor != i) { - sd->channels[cursor] = sd->channels[i]; - } - cursor++; - } - if (!(sd->channel_count = cursor)) { - aFree(sd->channels); - sd->channels = NULL; - } + ARR_FIND(0, VECTOR_LENGTH(sd->channels), i, VECTOR_INDEX(sd->channels, i) == chan); + if (i < VECTOR_LENGTH(sd->channels)) { + VECTOR_ERASE(sd->channels, i); } } + /** * Leaves a channel. * @@ -473,14 +459,9 @@ static void channel_leave(struct channel_data *chan, struct map_session_data *sd static void channel_quit(struct map_session_data *sd) { nullpo_retv(sd); - while (sd->channel_count > 0) { + while (VECTOR_LENGTH(sd->channels) > 0) { // Loop downward to avoid unnecessary array compactions by channel_leave - struct channel_data *chan = sd->channels[sd->channel_count-1]; - - if (chan == NULL) { - sd->channel_count--; - continue; - } + struct channel_data *chan = VECTOR_LAST(sd->channels); channel->leave(chan, sd); } @@ -583,13 +564,12 @@ static void channel_guild_leave_alliance(const struct guild *g_source, const str */ static void channel_quit_guild(struct map_session_data *sd) { - unsigned char i; - nullpo_retv(sd); - for (i = 0; i < sd->channel_count; i++) { - struct channel_data *chan = sd->channels[i]; + for (int i = VECTOR_LENGTH(sd->channels) - 1; i >= 0; i--) { + // Loop downward to avoid issues when channel->leave() compacts the array + struct channel_data *chan = VECTOR_INDEX(sd->channels, i); - if (chan == NULL || chan->type != HCS_TYPE_ALLY) + if (chan->type != HCS_TYPE_ALLY) continue; channel->leave(chan, sd); @@ -622,7 +602,8 @@ static void read_channels_config(void) irc_autojoin = 0, irc_flood_protection_rate = 0, irc_flood_protection_burst = 0, - irc_flood_protection_enabled = 0; + irc_flood_protection_enabled = 0, + channel_opt_msg_delay = 10; if( !libconfig->setting_lookup_string(settings, "map_local_channel_name", &local_name) ) local_name = "map"; @@ -818,6 +799,16 @@ static void read_channels_config(void) } } + libconfig->setting_lookup_int(settings, "channel_opt_msg_delay", &channel_opt_msg_delay); + if (channel_opt_msg_delay < 0) { + ShowWarning("channels.conf: channel_opt_msg_delay value '%d' must be from 0-255. Defaulting to 0...\n", channel_opt_msg_delay); + channel_opt_msg_delay = 0; + } else if (channel_opt_msg_delay > 255) { + ShowWarning("channels.conf: channel_opt_msg_delay value '%d' must be from 0-255. Defaulting to 255...\n", channel_opt_msg_delay); + channel_opt_msg_delay = 255; + } + channel->config->channel_opt_msg_delay = channel_opt_msg_delay; + ShowStatus("Done reading '"CL_WHITE"%u"CL_RESET"' channels in '"CL_WHITE"%s"CL_RESET"'.\n", db_size(channel->db), config_filename); } libconfig->destroy(&channels_conf); @@ -842,7 +833,6 @@ static void do_final_channel(void) { struct DBIterator *iter = db_iterator(channel->db); struct channel_data *chan; - unsigned char i; for( chan = dbi_first(iter); dbi_exists(iter); chan = dbi_next(iter) ) { channel->delete(chan); @@ -850,7 +840,7 @@ static void do_final_channel(void) dbi_destroy(iter); - for(i = 0; i < channel->config->colors_count; i++) { + for (int i = 0; i < channel->config->colors_count; i++) { aFree(channel->config->colors_name[i]); } diff --git a/src/map/channel.h b/src/map/channel.h index 4ac3c6037..c56227c66 100644 --- a/src/map/channel.h +++ b/src/map/channel.h @@ -75,6 +75,7 @@ struct Channel_Config { char irc_server[40], irc_channel[50], irc_nick[40], irc_nick_pw[30]; unsigned short irc_server_port; bool irc_use_ghost; + int channel_opt_msg_delay; }; struct channel_ban_entry { diff --git a/src/map/chrif.c b/src/map/chrif.c index 43ea7ebe3..a3277d4c2 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -975,14 +975,14 @@ static bool chrif_divorceack(int char_id, int partner_id) if( ( sd = map->charid2sd(char_id) ) != NULL && sd->status.partner_id == partner_id ) { sd->status.partner_id = 0; - for(i = 0; i < MAX_INVENTORY; i++) + for (i = 0; i < sd->status.inventorySize; i++) if (sd->status.inventory[i].nameid == WEDDING_RING_M || sd->status.inventory[i].nameid == WEDDING_RING_F) pc->delitem(sd, i, 1, 0, DELITEM_NORMAL, LOG_TYPE_DIVORCE); } if( ( sd = map->charid2sd(partner_id) ) != NULL && sd->status.partner_id == char_id ) { sd->status.partner_id = 0; - for(i = 0; i < MAX_INVENTORY; i++) + for (i = 0; i < sd->status.inventorySize; i++) if (sd->status.inventory[i].nameid == WEDDING_RING_M || sd->status.inventory[i].nameid == WEDDING_RING_F) pc->delitem(sd, i, 1, 0, DELITEM_NORMAL, LOG_TYPE_DIVORCE); } @@ -1592,6 +1592,7 @@ static int check_connect_char_server(int tid, int64 tick, int id, intptr_t data) sockt->session[chrif->fd]->func_parse = chrif->parse; sockt->session[chrif->fd]->flag.server = 1; + sockt->session[chrif->fd]->flag.validate = 0; sockt->realloc_fifo(chrif->fd, FIFOSIZE_SERVERLINK, FIFOSIZE_SERVERLINK); chrif->connect(chrif->fd); diff --git a/src/map/clif.c b/src/map/clif.c index b9942d72c..e8780c6ff 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -65,6 +65,7 @@ #include "common/memmgr.h" #include "common/mmo.h" // NEW_CARTS, char_achievements #include "common/nullpo.h" +#include "common/packets.h" #include "common/random.h" #include "common/showmsg.h" #include "common/socket.h" @@ -91,8 +92,9 @@ static struct ZC_STORE_ITEMLIST_EQUIP storelist_equip; static struct packet_viewequip_ack viewequip_list; #if PACKETVER >= 20131223 static struct packet_npc_market_result_ack npcmarket_result; -static struct packet_npc_market_open npcmarket_open; #endif +// temporart buffer for send big packets +char packet_buf[0xffff]; //#define DUMP_UNKNOWN_PACKET //#define DUMP_INVALID_PACKET @@ -889,7 +891,7 @@ static void clif_clearflooritem(struct flooritem_data *fitem, int fd) /// 2 = logged out /// 3 = teleport /// 4 = trickdead -static void clif_clearunit_single(int id, clr_type type, int fd) +static void clif_clearunit_single(int id, enum clr_type type, int fd) { WFIFOHEAD(fd, packet_len(0x80)); WFIFOW(fd,0) = 0x80; @@ -906,7 +908,7 @@ static void clif_clearunit_single(int id, clr_type type, int fd) /// 2 = logged out /// 3 = teleport /// 4 = trickdead -static void clif_clearunit_area(struct block_list *bl, clr_type type) +static void clif_clearunit_area(struct block_list *bl, enum clr_type type) { unsigned char buf[8]; @@ -935,12 +937,12 @@ static void clif_clearunit_area(struct block_list *bl, clr_type type) static int clif_clearunit_delayed_sub(int tid, int64 tick, int id, intptr_t data) { struct block_list *bl = (struct block_list *)data; - clif->clearunit_area(bl, (clr_type) id); + clif->clearunit_area(bl, (enum clr_type) id); ers_free(clif->delay_clearunit_ers,bl); return 0; } -static void clif_clearunit_delayed(struct block_list *bl, clr_type type, int64 tick) +static void clif_clearunit_delayed(struct block_list *bl, enum clr_type type, int64 tick) { struct block_list *tbl; @@ -1115,7 +1117,7 @@ static void clif_set_unit_idle(struct block_list *bl, struct map_session_data *t p.head = vd->hair_style; p.weapon = vd->weapon; p.accessory = vd->head_bottom; -#if PACKETVER < 7 || PACKETVER_RE_NUM >= 20180704 +#if PACKETVER < 7 || PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 p.shield = vd->shield; #endif p.accessory2 = vd->head_top; @@ -1272,7 +1274,7 @@ static void clif_spawn_unit(struct block_list *bl, enum send_target target) p.head = vd->hair_style; p.weapon = vd->weapon; p.accessory = vd->head_bottom; -#if PACKETVER < 7 || PACKETVER_RE_NUM >= 20180704 +#if PACKETVER < 7 || PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 p.shield = vd->shield; #endif p.accessory2 = vd->head_top; @@ -1381,7 +1383,7 @@ static void clif_set_unit_walking(struct block_list *bl, struct map_session_data p.weapon = vd->weapon; p.accessory = vd->head_bottom; p.moveStartTime = (unsigned int)timer->gettick(); -#if PACKETVER < 7 || PACKETVER_RE_NUM >= 20180704 +#if PACKETVER < 7 || PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 p.shield = vd->shield; #endif p.accessory2 = vd->head_top; @@ -1626,6 +1628,7 @@ static bool clif_spawn(struct block_list *bl) /// 022e <name>.24B <modified>.B <level>.W <hunger>.W <intimacy>.W <equip id>.W <atk>.W <matk>.W <hit>.W <crit>.W <def>.W <mdef>.W <flee>.W <aspd>.W <hp>.W <max hp>.W <sp>.W <max sp>.W <exp>.L <max exp>.L <skill points>.W <atk range>.W static void clif_hominfo(struct map_session_data *sd, struct homun_data *hd, int flag) { +#if PACKETVER_MAIN_NUM >= 20101005 || PACKETVER_RE_NUM >= 20080827 || defined(PACKETVER_ZERO_NUM) struct status_data *hstatus; enum homun_type htype; struct PACKET_ZC_PROPERTY_HOMUN p; @@ -1637,7 +1640,7 @@ static void clif_hominfo(struct map_session_data *sd, struct homun_data *hd, int htype = homun->class2type(hd->homunculus.class_); memset(&p, 0, sizeof(p)); - p.packetType = hominfoType; + p.packetType = HEADER_ZC_PROPERTY_HOMUN; memcpy(p.name, hd->homunculus.name, NAME_LENGTH); // Bit field, bit 0 : rename_flag (1 = already renamed), bit 1 : homunc vaporized (1 = true), bit 2 : homunc dead (1 = true) p.flags = (!battle_config.hom_rename && hd->homunculus.rename_flag ? 0x1 : 0x0) | (hd->homunculus.vaporize == HOM_ST_REST ? 0x2 : 0) | (hd->homunculus.hp > 0 ? 0x4 : 0); @@ -1703,6 +1706,7 @@ static void clif_hominfo(struct map_session_data *sd, struct homun_data *hd, int p.skillPoints = hd->homunculus.skillpts; p.range = status_get_range(&hd->bl); clif->send(&p, sizeof(p), &sd->bl, SELF); +#endif } /// Notification about a change in homunuculus' state (ZC_CHANGESTATE_MER). @@ -2159,14 +2163,14 @@ static void clif_buylist(struct map_session_data *sd, struct npc_data *nd) /// 00c7 <packet len>.W { <index>.W <price>.L <overcharge price>.L }* static void clif_selllist(struct map_session_data *sd) { - int fd,i,c=0,val; + int c = 0, val; nullpo_retv(sd); - fd=sd->fd; - WFIFOHEAD(fd, MAX_INVENTORY * 10 + 4); + int fd = sd->fd; + WFIFOHEAD(fd, sd->status.inventorySize * 10 + 4); WFIFOW(fd,0)=0xc7; - for( i = 0; i < MAX_INVENTORY; i++ ) + for (int i = 0; i < sd->status.inventorySize; i++) { if( sd->status.inventory[i].nameid > 0 && sd->inventory_data[i] ) { @@ -2593,7 +2597,7 @@ static void clif_additem(struct map_session_data *sd, int n, int amount, int fai p.count = amount; if( !fail ) { - if( n < 0 || n >= MAX_INVENTORY || sd->status.inventory[n].nameid <=0 || sd->inventory_data[n] == NULL ) + if (n < 0 || n >= sd->status.inventorySize || sd->status.inventory[n].nameid <= 0 || sd->inventory_data[n] == NULL) return; if (sd->inventory_data[n]->view_id > 0) @@ -2801,11 +2805,11 @@ static void clif_item_normal(short idx, struct NORMALITEM_INFO *p, struct item * static void clif_inventoryList(struct map_session_data *sd) { -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 clif->inventoryStart(sd, INVTYPE_INVENTORY, ""); #endif clif->inventoryItems(sd, INVTYPE_INVENTORY); -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 clif->inventoryEnd(sd, INVTYPE_INVENTORY); #endif } @@ -2815,7 +2819,7 @@ static void clif_inventoryItems(struct map_session_data *sd, enum inventory_type int i, normal = 0, equip = 0; nullpo_retv(sd); - for( i = 0; i < MAX_INVENTORY; i++ ) { + for (i = 0; i < sd->status.inventorySize; i++) { if( sd->status.inventory[i].nameid <= 0 || sd->inventory_data[i] == NULL ) continue; @@ -2828,7 +2832,7 @@ static void clif_inventoryItems(struct map_session_data *sd, enum inventory_type if (normal) { itemlist_normal.PacketType = inventorylistnormalType; itemlist_normal.PacketLength = (sizeof(itemlist_normal) - sizeof(itemlist_normal.list)) + (sizeof(struct NORMALITEM_INFO) * normal); -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 itemlist_normal.invType = type; #endif @@ -2841,7 +2845,7 @@ static void clif_inventoryItems(struct map_session_data *sd, enum inventory_type if( equip ) { itemlist_equip.PacketType = inventorylistequipType; itemlist_equip.PacketLength = (sizeof(itemlist_equip) - sizeof(itemlist_equip.list)) + (sizeof(struct EQUIPITEM_INFO) * equip); -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 itemlist_equip.invType = type; #endif @@ -2849,7 +2853,7 @@ static void clif_inventoryItems(struct map_session_data *sd, enum inventory_type } /* on 20120925 onwards this is a field on clif_item_equip/normal */ #if PACKETVER >= 20111122 && PACKETVER < 20120925 - for( i = 0; i < MAX_INVENTORY; i++ ) { + for (i = 0; i < sd->status.inventorySize; i++) { if( sd->status.inventory[i].nameid <= 0 || sd->inventory_data[i] == NULL ) continue; @@ -2861,7 +2865,7 @@ static void clif_inventoryItems(struct map_session_data *sd, enum inventory_type static void clif_equipList(struct map_session_data *sd) { -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 clif->inventoryStart(sd, INVTYPE_INVENTORY, ""); clif->inventoryItems(sd, INVTYPE_INVENTORY); clif->inventoryEnd(sd, INVTYPE_INVENTORY); @@ -2877,7 +2881,7 @@ static void clif_equipItems(struct map_session_data *sd, enum inventory_type typ int i, equip = 0; nullpo_retv(sd); - for( i = 0; i < MAX_INVENTORY; i++ ) { + for (i = 0; i < sd->status.inventorySize; i++) { if( sd->status.inventory[i].nameid <= 0 || sd->inventory_data[i] == NULL ) continue; @@ -2888,7 +2892,7 @@ static void clif_equipItems(struct map_session_data *sd, enum inventory_type typ if (equip) { itemlist_equip.PacketType = inventorylistequipType; itemlist_equip.PacketLength = (sizeof(itemlist_equip) - sizeof(itemlist_equip.list)) + (sizeof(struct EQUIPITEM_INFO) * equip); -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 itemlist_equip.invType = type; #endif @@ -2897,7 +2901,7 @@ static void clif_equipItems(struct map_session_data *sd, enum inventory_type typ /* on 20120925 onwards this is a field on clif_item_equip */ #if PACKETVER >= 20111122 && PACKETVER < 20120925 - for( i = 0; i < MAX_INVENTORY; i++ ) { + for (i = 0; i < sd->status.inventorySize; i++) { if( sd->status.inventory[i].nameid <= 0 || sd->inventory_data[i] == NULL ) continue; @@ -2926,7 +2930,7 @@ static void clif_guildStorageList(struct map_session_data *sd, struct item *item static void clif_inventoryStart(struct map_session_data *sd, enum inventory_type type, const char *name) { -#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 nullpo_retv(sd); nullpo_retv(name); @@ -2934,10 +2938,10 @@ static void clif_inventoryStart(struct map_session_data *sd, enum inventory_type memset(buf, 0, sizeof(buf)); struct ZC_INVENTORY_START *p = (struct ZC_INVENTORY_START *)buf; p->packetType = 0xb08; -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 p->invType = type; #endif -#if PACKETVER_RE_NUM >= 20180919 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180919 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 int strLen = (int)safestrnlen(name, 24); if (strLen > 24) strLen = 24; @@ -2954,12 +2958,12 @@ static void clif_inventoryStart(struct map_session_data *sd, enum inventory_type static void clif_inventoryEnd(struct map_session_data *sd, enum inventory_type type) { -#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 nullpo_retv(sd); struct ZC_INVENTORY_END p; p.packetType = 0xb0b; -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 p.invType = type; #endif p.flag = 0; @@ -2995,10 +2999,10 @@ static void clif_storageItems(struct map_session_data *sd, enum inventory_type t storelist_normal.PacketType = storageListNormalType; storelist_normal.PacketLength = ( sizeof( storelist_normal ) - sizeof( storelist_normal.list ) ) + (sizeof(struct NORMALITEM_INFO) * normal); -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 storelist_normal.invType = type; #endif -#if PACKETVER >= 20120925 && PACKETVER_RE_NUM < 20180829 && PACKETVER_ZERO_NUM < 20180919 +#if PACKETVER >= 20120925 && PACKETVER_RE_NUM < 20180829 && PACKETVER_ZERO_NUM < 20180919 && PACKETVER_MAIN_NUM < 20181002 safestrncpy(storelist_normal.name, "Storage", NAME_LENGTH); #endif @@ -3009,10 +3013,10 @@ static void clif_storageItems(struct map_session_data *sd, enum inventory_type t storelist_equip.PacketType = storageListEquipType; storelist_equip.PacketLength = ( sizeof( storelist_equip ) - sizeof( storelist_equip.list ) ) + (sizeof(struct EQUIPITEM_INFO) * equip); -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 storelist_equip.invType = type; #endif -#if PACKETVER >= 20120925 && PACKETVER_RE_NUM < 20180829 && PACKETVER_ZERO_NUM < 20180919 +#if PACKETVER >= 20120925 && PACKETVER_RE_NUM < 20180829 && PACKETVER_ZERO_NUM < 20180919 && PACKETVER_MAIN_NUM < 20181002 safestrncpy(storelist_equip.name, "Storage", NAME_LENGTH); #endif @@ -3025,11 +3029,11 @@ static void clif_storageItems(struct map_session_data *sd, enum inventory_type t static void clif_cartList(struct map_session_data *sd) { -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 clif->inventoryStart(sd, INVTYPE_CART, ""); #endif clif->cartItems(sd, INVTYPE_CART); -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 clif->inventoryEnd(sd, INVTYPE_CART); #endif } @@ -3055,7 +3059,7 @@ static void clif_cartItems(struct map_session_data *sd, enum inventory_type type if (normal) { itemlist_normal.PacketType = cartlistnormalType; itemlist_normal.PacketLength = (sizeof(itemlist_normal) - sizeof(itemlist_normal.list)) + (sizeof(struct NORMALITEM_INFO) * normal); -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 itemlist_normal.invType = type; #endif @@ -3065,7 +3069,7 @@ static void clif_cartItems(struct map_session_data *sd, enum inventory_type type if (equip) { itemlist_equip.PacketType = cartlistequipType; itemlist_equip.PacketLength = (sizeof(itemlist_equip) - sizeof(itemlist_equip.list)) + (sizeof(struct EQUIPITEM_INFO) * equip); -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 itemlist_equip.invType = type; #endif @@ -3073,6 +3077,121 @@ static void clif_cartItems(struct map_session_data *sd, enum inventory_type type } } +static void clif_inventoryExpansionInfo(struct map_session_data *sd) +{ +#if PACKETVER_ZERO_NUM >= 20181212 + nullpo_retv(sd); + + const int fd = sd->fd; + WFIFOHEAD(fd, sizeof(struct PACKET_ZC_INVENTORY_EXPANSION_INFO)); + struct PACKET_ZC_INVENTORY_EXPANSION_INFO *p = WFIFOP(fd, 0); + p->packetType = HEADER_ZC_INVENTORY_EXPANSION_INFO; + p->expansionSize = sd->status.inventorySize - FIXED_INVENTORY_SIZE; + WFIFOSET(fd, sizeof(struct PACKET_ZC_INVENTORY_EXPANSION_INFO)); +#endif +} + +static void clif_inventoryExpandAck(struct map_session_data *sd, enum expand_inventory result, int itemId) +{ +#if PACKETVER_ZERO_NUM >= 20181212 + nullpo_retv(sd); + + const int fd = sd->fd; + WFIFOHEAD(fd, sizeof(struct PACKET_ZC_ACK_INVENTORY_EXPAND)); + struct PACKET_ZC_ACK_INVENTORY_EXPAND *p = WFIFOP(fd, 0); + p->packetType = HEADER_ZC_ACK_INVENTORY_EXPAND; + p->result = result; + p->itemId = itemId; + WFIFOSET(fd, sizeof(struct PACKET_ZC_ACK_INVENTORY_EXPAND)); +#endif +} + +static void clif_inventoryExpandResult(struct map_session_data *sd, enum expand_inventory_result result) +{ +#if PACKETVER_ZERO_NUM >= 20181212 + nullpo_retv(sd); + + const int fd = sd->fd; + WFIFOHEAD(fd, sizeof(struct PACKET_ZC_ACK_INVENTORY_EXPAND_RESULT)); + struct PACKET_ZC_ACK_INVENTORY_EXPAND_RESULT *p = WFIFOP(fd, 0); + p->packetType = HEADER_ZC_ACK_INVENTORY_EXPAND_RESULT; + p->result = result; + WFIFOSET(fd, sizeof(struct PACKET_ZC_ACK_INVENTORY_EXPAND_RESULT)); +#endif +} + +static void clif_parse_inventoryExpansion(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); +static void clif_parse_inventoryExpansion(int fd, struct map_session_data *sd) +{ +#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 + if (pc_isdead(sd) || pc_cant_act(sd)) { + clif->inventoryExpandAck(sd, EXPAND_INVENTORY_OTHER_WORK, 0); + return; + } + if (sd->status.inventorySize == MAX_INVENTORY) { + clif->inventoryExpandAck(sd, EXPAND_INVENTORY_MAX_SIZE, 0); + return; + } + + char evname[EVENT_NAME_LENGTH]; + struct event_data *ev = NULL; + + safestrncpy(evname, "inventory_expansion::OnInvExpandRequest", EVENT_NAME_LENGTH); + if ((ev = strdb_get(npc->ev_db, evname))) { + script->run_npc(ev->nd->u.scr.script, ev->pos, sd->bl.id, ev->nd->bl.id); + } else { + ShowError("clif_parse_inventoryExpansion: event '%s' not found, operation failed.\n", evname); + } +#endif +} + +static void clif_parse_inventoryExpansionConfirmed(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); +static void clif_parse_inventoryExpansionConfirmed(int fd, struct map_session_data *sd) +{ +#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 + if (pc_isdead(sd) || pc_cant_act(sd)) { + clif->inventoryExpandResult(sd, EXPAND_INVENTORY_RESULT_OTHER_WORK); + return; + } + if (sd->status.inventorySize == MAX_INVENTORY) { + clif->inventoryExpandResult(sd, EXPAND_INVENTORY_RESULT_MAX_SIZE); + return; + } + + char evname[EVENT_NAME_LENGTH]; + struct event_data *ev = NULL; + + safestrncpy(evname, "inventory_expansion::OnInvExpandConfirmed", EVENT_NAME_LENGTH); + if ((ev = strdb_get(npc->ev_db, evname))) { + script->run_npc(ev->nd->u.scr.script, ev->pos, sd->bl.id, ev->nd->bl.id); + } else { + ShowError("clif_parse_inventoryExpansionConfirmed: event '%s' not found, operation failed.\n", evname); + } +#endif +} + +static void clif_parse_inventoryExpansionRejected(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); +static void clif_parse_inventoryExpansionRejected(int fd, struct map_session_data *sd) +{ +#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 + char evname[EVENT_NAME_LENGTH]; + struct event_data *ev = NULL; + + safestrncpy(evname, "inventory_expansion::OnInvExpandRejected", EVENT_NAME_LENGTH); + if ((ev = strdb_get(npc->ev_db, evname))) { + script->run_npc(ev->nd->u.scr.script, ev->pos, sd->bl.id, ev->nd->bl.id); + } else { + ShowError("clif_parse_inventoryExpansionRejected: event '%s' not found, operation failed.\n", evname); + } +#endif +} + +// CZ_REQ_REMAINTIME +static void clif_parse_reqRemainTime(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); +static void clif_parse_reqRemainTime(int fd, struct map_session_data *sd) +{ +} + /// Removes cart (ZC_CARTOFF). /// 012b /// Client behavior: @@ -3256,7 +3375,12 @@ static void clif_updatestatus(struct map_session_data *sd, int type) WFIFOL(fd,4)=sd->battle_status.max_sp; break; case SP_HP: - WFIFOL(fd,4)=sd->battle_status.hp; + if (sd->battle_status.hp == 0 && battle_config.display_fake_hp_when_dead) { + // On official servers, the HP displayed when dead is the HP that the character will have at respawn. + WFIFOL(fd, 4) = status->get_restart_hp(sd, &sd->battle_status); + } else { + WFIFOL(fd, 4) = sd->battle_status.hp; + } break; case SP_SP: WFIFOL(fd,4)=sd->battle_status.sp; @@ -3830,6 +3954,7 @@ static void clif_equipitemack(struct map_session_data *sd, int n, int pos, enum p.index = n+2; p.wearLocation = pos; #if PACKETVER >= 20100629 + Assert_retv(n >= 0 && n < sd->status.inventorySize); if (result == EIA_SUCCESS && sd->inventory_data[n]->equip&EQP_VISIBLE) p.wItemSpriteNumber = sd->inventory_data[n]->view_sprite; else @@ -3971,7 +4096,7 @@ static void clif_useitemack(struct map_session_data *sd, int index, int amount, nullpo_retv(sd); - if (index < 0 || index >= MAX_INVENTORY) + if (index < 0 || index >= sd->status.inventorySize) return; fd = sd->fd; @@ -4320,7 +4445,7 @@ static void clif_tradeadditem(struct map_session_data *sd, struct map_session_da if (index != 0) { index -= 2; //index fix - Assert_retv(index >= 0 && index < MAX_INVENTORY); + Assert_retv(index >= 0 && index < sd->status.inventorySize); if(sd->inventory_data[index] && sd->inventory_data[index]->view_id > 0) p.itemId = sd->inventory_data[index]->view_id; else @@ -6383,10 +6508,10 @@ static void clif_use_card(struct map_session_data *sd, int idx) if (!pc->can_insert_card(sd, idx)) return; - WFIFOHEAD(fd, MAX_INVENTORY * 2 + 4); + WFIFOHEAD(fd, sd->status.inventorySize * 2 + 4); WFIFOW(fd, 0) = 0x17b; - for (i = c = 0; i < MAX_INVENTORY; i++) { + for (i = c = 0; i < sd->status.inventorySize; i++) { if (!pc->can_insert_card_into(sd, idx, i)) continue; WFIFOW(fd, 4 + c * 2) = i + 2; @@ -6430,9 +6555,9 @@ static void clif_item_identify_list(struct map_session_data *sd) fd=sd->fd; - WFIFOHEAD(fd,MAX_INVENTORY * 2 + 4); + WFIFOHEAD(fd, sd->status.inventorySize * 2 + 4); WFIFOW(fd,0)=0x177; - for(i=c=0;i<MAX_INVENTORY;i++){ + for (i = c = 0; i < sd->status.inventorySize; i++) { if(sd->status.inventory[i].nameid > 0 && !sd->status.inventory[i].identify){ WFIFOW(fd,c*2+4)=i+2; c++; @@ -6477,11 +6602,11 @@ static void clif_item_repair_list(struct map_session_data *sd, struct map_sessio fd = sd->fd; - len = MAX_INVENTORY * sizeof(struct PACKET_ZC_REPAIRITEMLIST_sub) + sizeof(struct PACKET_ZC_REPAIRITEMLIST); + len = dstsd->status.inventorySize * sizeof(struct PACKET_ZC_REPAIRITEMLIST_sub) + sizeof(struct PACKET_ZC_REPAIRITEMLIST); WFIFOHEAD(fd, len); p = WFIFOP(fd, 0); p->packetType = 0x1fc; - for (i = c = 0; i < MAX_INVENTORY; i++) { + for (i = c = 0; i < sd->status.inventorySize; i++) { int nameid = dstsd->status.inventory[i].nameid; if (nameid > 0 && (dstsd->status.inventory[i].attribute & ATTR_BROKEN) != 0) { // && skill_can_repair(sd,nameid)) { p->items[c].index = i; @@ -6557,11 +6682,11 @@ static void clif_item_refine_list(struct map_session_data *sd) skill_lv = pc->checkskill(sd, WS_WEAPONREFINE); fd = sd->fd; - len = MAX_INVENTORY * sizeof(struct PACKET_ZC_NOTIFY_WEAPONITEMLIST_sub) + sizeof(struct PACKET_ZC_NOTIFY_WEAPONITEMLIST); + len = sd->status.inventorySize * sizeof(struct PACKET_ZC_NOTIFY_WEAPONITEMLIST_sub) + sizeof(struct PACKET_ZC_NOTIFY_WEAPONITEMLIST); WFIFOHEAD(fd, len); p = WFIFOP(fd, 0); p->packetType = 0x221; - for (i = c = 0; i < MAX_INVENTORY; i++) { + for (i = c = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].nameid > 0 && sd->status.inventory[i].identify && itemdb_wlv(sd->status.inventory[i].nameid) >= 1 && !sd->inventory_data[i]->flag.no_refine @@ -7023,7 +7148,7 @@ static void clif_partyinvitationstate(struct map_session_data *sd) WFIFOHEAD(fd, packet_len(0x2c9)); WFIFOW(fd, 0) = 0x2c9; - WFIFOB(fd, 2) = sd->status.allow_party ? 1 : 0; + WFIFOB(fd, 2) = sd->status.allow_party ? 0 : 1; WFIFOSET(fd, packet_len(0x2c9)); } @@ -7391,9 +7516,9 @@ static void clif_sendegg(struct map_session_data *sd) return; } - WFIFOHEAD(fd, MAX_INVENTORY * 2 + 4); + WFIFOHEAD(fd, sd->status.inventorySize * 2 + 4); WFIFOW(fd,0) = 0x1a6; - for (i = n = 0; i < MAX_INVENTORY; i++) { + for (i = n = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].nameid <= 0 || sd->inventory_data[i] == NULL || sd->inventory_data[i]->type!=IT_PETEGG || sd->status.inventory[i].amount <= 0) continue; WFIFOW(fd, n * 2 + 4) = i + 2; @@ -7515,46 +7640,47 @@ static void clif_pet_food(struct map_session_data *sd, int foodid, int fail) /// 01cd { <skill id>.L }*7 static void clif_autospell(struct map_session_data *sd, uint16 skill_lv) { - int fd; - +#if PACKETVER_MAIN_NUM >= 20090406 || defined(PACKETVER_RE) || defined(PACKETVER_ZERO) || PACKETVER_SAK_NUM >= 20080618 nullpo_retv(sd); - fd=sd->fd; - WFIFOHEAD(fd,packet_len(0x1cd)); - WFIFOW(fd, 0)=0x1cd; + int fd = sd->fd; +#if PACKETVER_MAIN_NUM >= 20181128 || PACKETVER_RE_NUM >= 20181031 + // reserve space for 7 skills + WFIFOHEAD(fd, sizeof(struct PACKET_ZC_AUTOSPELLLIST) + 4 * 7); +#else + WFIFOHEAD(fd, sizeof(struct PACKET_ZC_AUTOSPELLLIST)); +#endif + struct PACKET_ZC_AUTOSPELLLIST *p = WFIFOP(fd, 0); + memset(p, 0, sizeof(struct PACKET_ZC_AUTOSPELLLIST)); + p->packetType = HEADER_ZC_AUTOSPELLLIST; + int index = 0; - if(skill_lv>0 && pc->checkskill(sd,MG_NAPALMBEAT)>0) - WFIFOL(fd,2)= MG_NAPALMBEAT; - else - WFIFOL(fd,2)= 0x00000000; - if(skill_lv>1 && pc->checkskill(sd,MG_COLDBOLT)>0) - WFIFOL(fd,6)= MG_COLDBOLT; - else - WFIFOL(fd,6)= 0x00000000; - if(skill_lv>1 && pc->checkskill(sd,MG_FIREBOLT)>0) - WFIFOL(fd,10)= MG_FIREBOLT; - else - WFIFOL(fd,10)= 0x00000000; - if(skill_lv>1 && pc->checkskill(sd,MG_LIGHTNINGBOLT)>0) - WFIFOL(fd,14)= MG_LIGHTNINGBOLT; - else - WFIFOL(fd,14)= 0x00000000; - if(skill_lv>4 && pc->checkskill(sd,MG_SOULSTRIKE)>0) - WFIFOL(fd,18)= MG_SOULSTRIKE; - else - WFIFOL(fd,18)= 0x00000000; - if(skill_lv>7 && pc->checkskill(sd,MG_FIREBALL)>0) - WFIFOL(fd,22)= MG_FIREBALL; - else - WFIFOL(fd,22)= 0x00000000; - if(skill_lv>9 && pc->checkskill(sd,MG_FROSTDIVER)>0) - WFIFOL(fd,26)= MG_FROSTDIVER; - else - WFIFOL(fd,26)= 0x00000000; + if (skill_lv > 0 && pc->checkskill(sd, MG_NAPALMBEAT) > 0) + p->skills[index++] = MG_NAPALMBEAT; + if (skill_lv > 1 && pc->checkskill(sd, MG_COLDBOLT) > 0) + p->skills[index++] = MG_COLDBOLT; + if (skill_lv > 1 && pc->checkskill(sd, MG_FIREBOLT) > 0) + p->skills[index++] = MG_FIREBOLT; + if (skill_lv > 1 && pc->checkskill(sd, MG_LIGHTNINGBOLT) > 0) + p->skills[index++] = MG_LIGHTNINGBOLT; + if (skill_lv > 4 && pc->checkskill(sd, MG_SOULSTRIKE) > 0) + p->skills[index++] = MG_SOULSTRIKE; + if (skill_lv > 7 && pc->checkskill(sd, MG_FIREBALL) > 0) + p->skills[index++] = MG_FIREBALL; + if (skill_lv > 9 && pc->checkskill(sd, MG_FROSTDIVER) > 0) + p->skills[index++] = MG_FROSTDIVER; + +#if PACKETVER_MAIN_NUM >= 20181128 || PACKETVER_RE_NUM >= 20181031 + const int len = sizeof(struct PACKET_ZC_AUTOSPELLLIST) + index * 4; + p->packetLength = len; +#else + const int len = sizeof(struct PACKET_ZC_AUTOSPELLLIST); +#endif + WFIFOSET(fd, len); - WFIFOSET(fd,packet_len(0x1cd)); sd->menuskill_id = SA_AUTOSPELL; sd->menuskill_val = skill_lv; +#endif } /// Devotion's visual effect (ZC_DEVOTIONLIST). @@ -7733,6 +7859,7 @@ static void clif_mvp_noitem(struct map_session_data *sd) /// 1 = "You are already in a Guild." /// 2 = "That Guild Name already exists." /// 3 = "You need the necessary item to create a Guild." +/// 4 = "Can't create a Guild in this area." static void clif_guild_created(struct map_session_data *sd, int flag) { int fd; @@ -8219,6 +8346,7 @@ static void clif_guild_invite(struct map_session_data *sd, struct guild *g) /// 1 = Offer rejected. /// 2 = Offer accepted. /// 3 = Guild full. +/// 4 = Offline or not exists static void clif_guild_inviteack(struct map_session_data *sd, int flag) { int fd; @@ -8875,6 +9003,45 @@ static void clif_specialeffect_value(struct block_list *bl, int effect_id, int n clif->send(buf, packet_len(0x284), bl, SELF); } } + +/// Remove special effects (ZC_REMOVE_EFFECT). +/// 0b0d <id>.L <effect id>.L +/// effect id: +/// @see doc/effect_list.txt +static void clif_removeSpecialEffect(struct block_list *bl, int effectId, enum send_target target) +{ +#if PACKETVER_MAIN_NUM >= 20181002 || PACKETVER_RE_NUM >= 20181002 || PACKETVER_ZERO_NUM >= 20181010 + nullpo_retv(bl); + + struct PACKET_ZC_REMOVE_EFFECT p; + p.packetType = 0xb0d; + p.aid = bl->id; + p.effectId = effectId; + + clif->send(&p, sizeof(p), bl, target); + + if (clif->isdisguised(bl)) { + p.aid = -bl->id; + clif->send(&p, sizeof(p), bl, SELF); + } +#endif +} + +static void clif_removeSpecialEffect_single(struct block_list *bl, int effectId, struct block_list *targetBl) +{ +#if PACKETVER_MAIN_NUM >= 20181002 || PACKETVER_RE_NUM >= 20181002 || PACKETVER_ZERO_NUM >= 20181010 + nullpo_retv(bl); + nullpo_retv(targetBl); + + struct PACKET_ZC_REMOVE_EFFECT p; + p.packetType = 0xb0d; + p.aid = bl->id; + p.effectId = effectId; + + clif->send(&p, sizeof(p), targetBl, SELF); +#endif +} + /** * Modification of clif_messagecolor to send colored messages to players to chat log only (doesn't display overhead). * @@ -8934,6 +9101,34 @@ static void clif_messagecolor(struct block_list *bl, uint32 color, const char *m clif->send(buf, WBUFW(buf,2), bl, AREA_CHAT_WOC); } +// Message without owner, not logged in chat +static void clif_serviceMessageColor(struct map_session_data *sd, uint32 color, const char *msg) +{ +#if PACKETVER_MAIN_NUM >= 20170830 || PACKETVER_RE_NUM >= 20170830 || defined(PACKETVER_ZERO) + nullpo_retv(sd); + nullpo_retv(msg); + + int msg_len = (int)strlen(msg) + 1; + + if (msg_len > 512) { + ShowWarning("clif_serviceMessageColor: Truncating too long message '%s' (len=%d).\n", msg, msg_len); + msg_len = 512; + } + + const int len = sizeof(struct PACKET_ZC_SERVICE_MESSAGE_COLOR) + msg_len; + const int fd = sd->fd; + WFIFOHEAD(fd, len); + struct PACKET_ZC_SERVICE_MESSAGE_COLOR *p = WFIFOP(fd, 0); + + p->packetType = HEADER_ZC_SERVICE_MESSAGE_COLOR; + p->packetLength = len; + p->color = RGB2BGR(color); + safestrncpy(p->message, msg, msg_len); + + WFIFOSET(fd, len); +#endif +} + /** * Notifies the client that the storage window is still open * @@ -9643,7 +9838,9 @@ static void clif_msgtable_str_color(struct map_session_data *sd, enum clif_messa p->PacketType = 0xa6f; p->PacketLength = len; p->messageId = msg_id; +#if PACKETVER >= 20160406 p->color = color; +#endif safestrncpy(p->messageString, value, message_len); p->messageString[message_len] = 0; @@ -11053,8 +11250,8 @@ static void clif_parse_WisMessage(int fd, struct map_session_data *sd) if (chan) { int k; - ARR_FIND(0, sd->channel_count, k, sd->channels[k] == chan); - if (k < sd->channel_count || channel->join(chan, sd, "", true) == HCS_STATUS_OK) { + ARR_FIND(0, VECTOR_LENGTH(sd->channels), k, VECTOR_INDEX(sd->channels, k) == chan); + if (k < VECTOR_LENGTH(sd->channels) || channel->join(chan, sd, "", true) == HCS_STATUS_OK) { channel->send(chan,sd,message); } else { clif->message(fd, msg_fd(fd,1402)); //You're not in that channel, type '@join <#channel_name>' @@ -11234,7 +11431,7 @@ static void clif_parse_UseItem(int fd, struct map_session_data *sd) pc->update_idle_time(sd, BCIDLE_USEITEM); n = RFIFOW(fd,packet_db[RFIFOW(fd,0)].pos[0])-2; - if (n < 0 || n >= MAX_INVENTORY) + if (n < 0 || n >= sd->status.inventorySize) return; if (!pc->useitem(sd,n)) clif->useitemack(sd,n,0,false); //Send an empty ack packet or the client gets stuck. @@ -11255,7 +11452,7 @@ static void clif_parse_EquipItem(int fd, struct map_session_data *sd) } index = p->index - 2; - if (index >= MAX_INVENTORY) + if (index >= sd->status.inventorySize) return; //Out of bounds check. if( sd->npc_id ) { @@ -11379,6 +11576,8 @@ static void clif_parse_NpcBuySellSelected(int fd, struct map_session_data *sd) /// 1 = "You do not have enough zeny." /// 2 = "You are over your Weight Limit." /// 3 = "Out of the maximum capacity, you have too many items." +/// 9 = "Amounts are exceeded the possession of the item is not available for purchase." +/// 10 = "Props open-air store sales will be traded in RODEX" static void clif_npc_buy_result(struct map_session_data *sd, unsigned char result) { int fd; @@ -11932,33 +12131,24 @@ static void clif_parse_UseSkillToPos_mercenary(struct mercenary_data *md, struct unit->skilluse_pos(&md->bl, x, y, skill_id, skill_lv); } -static void clif_parse_UseSkillToId(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); -/// Request to use a targeted skill. -/// 0113 <skill lv>.W <skill id>.W <target id>.L (CZ_USE_SKILL) -/// 0438 <skill lv>.W <skill id>.W <target id>.L (CZ_USE_SKILL2) -/// There are various variants of this packet, some of them have padding between fields. -static void clif_parse_UseSkillToId(int fd, struct map_session_data *sd) +static void clif_useSkillToIdReal(int fd, struct map_session_data *sd, int skill_id, int skill_lv, int target_id) __attribute__((nonnull (2))); +static void clif_useSkillToIdReal(int fd, struct map_session_data *sd, int skill_id, int skill_lv, int target_id) { - uint16 skill_id, skill_lv; - int tmp, target_id; int64 tick = timer->gettick(); - skill_lv = RFIFOW(fd,packet_db[RFIFOW(fd,0)].pos[0]); - skill_id = RFIFOW(fd,packet_db[RFIFOW(fd,0)].pos[1]); - target_id = RFIFOL(fd,packet_db[RFIFOW(fd,0)].pos[2]); + if (skill_lv < 1) + skill_lv = 1; //No clue, I have seen the client do this with guild skills :/ [Skotlex] - if( skill_lv < 1 ) skill_lv = 1; //No clue, I have seen the client do this with guild skills :/ [Skotlex] - - tmp = skill->get_inf(skill_id); - if (tmp&INF_GROUND_SKILL || !tmp) + int tmp = skill->get_inf(skill_id); + if (tmp & INF_GROUND_SKILL || !tmp) return; //Using a ground/passive skill on a target? WRONG. - if( skill_id >= HM_SKILLBASE && skill_id < HM_SKILLBASE + MAX_HOMUNSKILL ) { + if (skill_id >= HM_SKILLBASE && skill_id < HM_SKILLBASE + MAX_HOMUNSKILL) { clif->pUseSkillToId_homun(sd->hd, sd, tick, skill_id, skill_lv, target_id); return; } - if( skill_id >= MC_SKILLBASE && skill_id < MC_SKILLBASE + MAX_MERCSKILL ) { + if (skill_id >= MC_SKILLBASE && skill_id < MC_SKILLBASE + MAX_MERCSKILL) { clif->pUseSkillToId_mercenary(sd->md, sd, tick, skill_id, skill_lv, target_id); return; } @@ -11975,51 +12165,52 @@ static void clif_parse_UseSkillToId(int fd, struct map_session_data *sd) return; } - if( pc_cant_act(sd) - && skill_id != RK_REFRESH - && !(skill_id == SR_GENTLETOUCH_CURE && (sd->sc.opt1 == OPT1_STONE || sd->sc.opt1 == OPT1_FREEZE || sd->sc.opt1 == OPT1_STUN)) - && (sd->state.storage_flag != STORAGE_FLAG_CLOSED && !(tmp&INF_SELF_SKILL)) // SELF skills can be used with the storage open, issue: 8027 - ) + if (pc_cant_act(sd) + && skill_id != RK_REFRESH + && !(skill_id == SR_GENTLETOUCH_CURE && (sd->sc.opt1 == OPT1_STONE || sd->sc.opt1 == OPT1_FREEZE || sd->sc.opt1 == OPT1_STUN)) + && (sd->state.storage_flag != STORAGE_FLAG_CLOSED && !(tmp&INF_SELF_SKILL)) // SELF skills can be used with the storage open, issue: 8027 + ) { return; + } - if( pc_issit(sd) ) + if (pc_issit(sd)) return; - if( skill->not_ok(skill_id, sd) ) + if (skill->not_ok(skill_id, sd)) return; - if( sd->bl.id != target_id && tmp&INF_SELF_SKILL ) + if (sd->bl.id != target_id && tmp & INF_SELF_SKILL) target_id = sd->bl.id; // never trust the client - if( target_id < 0 && -target_id == sd->bl.id ) // for disguises [Valaris] + if (target_id < 0 && -target_id == sd->bl.id) // for disguises [Valaris] target_id = sd->bl.id; - if( sd->ud.skilltimer != INVALID_TIMER ) { - if( skill_id != SA_CASTCANCEL && skill_id != SO_SPELLFIST ) + if (sd->ud.skilltimer != INVALID_TIMER) { + if (skill_id != SA_CASTCANCEL && skill_id != SO_SPELLFIST) return; - } else if( DIFF_TICK(tick, sd->ud.canact_tick) < 0 ) { - if( sd->skillitem != skill_id ) { + } else if (DIFF_TICK(tick, sd->ud.canact_tick) < 0) { + if (sd->skillitem != skill_id) { clif->skill_fail(sd, skill_id, USESKILL_FAIL_SKILLINTERVAL, 0, 0); return; } } - if( sd->sc.option&OPTION_COSTUME ) + if (sd->sc.option & OPTION_COSTUME) return; - if( sd->sc.data[SC_BASILICA] && (skill_id != HP_BASILICA || sd->sc.data[SC_BASILICA]->val4 != sd->bl.id) ) + if (sd->sc.data[SC_BASILICA] && (skill_id != HP_BASILICA || sd->sc.data[SC_BASILICA]->val4 != sd->bl.id)) return; // On basilica only caster can use Basilica again to stop it. - if( sd->menuskill_id ) { - if( sd->menuskill_id == SA_TAMINGMONSTER ) { + if (sd->menuskill_id) { + if (sd->menuskill_id == SA_TAMINGMONSTER) { clif_menuskill_clear(sd); //Cancel pet capture. - } else if( sd->menuskill_id != SA_AUTOSPELL ) + } else if (sd->menuskill_id != SA_AUTOSPELL) return; //Can't use skills while a menu is open. } - if( sd->skillitem == skill_id ) { - if( skill_lv != sd->skillitemlv ) + if (sd->skillitem == skill_id) { + if (skill_lv != sd->skillitemlv) skill_lv = sd->skillitemlv; - if( !(tmp&INF_SELF_SKILL) ) + if (!(tmp&INF_SELF_SKILL)) pc->delinvincibletimer(sd); // Target skills through items cancel invincibility. [Inkfish] unit->skilluse_id(&sd->bl, target_id, skill_id, skill_lv); return; @@ -12028,22 +12219,56 @@ static void clif_parse_UseSkillToId(int fd, struct map_session_data *sd) sd->skillitem = sd->skillitemlv = 0; if (skill_id >= GD_SKILLBASE && skill_id < GD_MAX) { - if( sd->state.gmaster_flag ) + if (sd->state.gmaster_flag) skill_lv = guild->checkskill(sd->guild, skill_id); else skill_lv = 0; } else { tmp = pc->checkskill(sd, skill_id); - if( skill_lv > tmp ) + if (skill_lv > tmp) skill_lv = tmp; } pc->delinvincibletimer(sd); - if( skill_lv ) + if (skill_lv) unit->skilluse_id(&sd->bl, target_id, skill_id, skill_lv); } +static void clif_parse_UseSkillToId(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); +/// Request to use a targeted skill. +/// 0113 <skill lv>.W <skill id>.W <target id>.L (CZ_USE_SKILL) +/// 0438 <skill lv>.W <skill id>.W <target id>.L (CZ_USE_SKILL2) +/// There are various variants of this packet, some of them have padding between fields. +static void clif_parse_UseSkillToId(int fd, struct map_session_data *sd) +{ + clif->useSkillToIdReal(fd, + sd, + RFIFOW(fd, packet_db[RFIFOW(fd, 0)].pos[1]), + RFIFOW(fd, packet_db[RFIFOW(fd, 0)].pos[0]), + RFIFOL(fd, packet_db[RFIFOW(fd, 0)].pos[2])); +} + +static void clif_parse_startUseSkillToId(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); +static void clif_parse_startUseSkillToId(int fd, struct map_session_data *sd) +{ +#if PACKETVER_MAIN_NUM >= 20181002 || PACKETVER_RE_NUM >= 20181002 || PACKETVER_ZERO_NUM >= 20181010 + const struct PACKET_CZ_START_USE_SKILL *p = RFIFOP(fd, 0); + clif->useSkillToIdReal(fd, sd, p->skillId, p->skillLv, p->targetId); +#endif +} + +static void clif_parse_stopUseSkillToId(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); +static void clif_parse_stopUseSkillToId(int fd, struct map_session_data *sd) +{ +#if PACKETVER_MAIN_NUM >= 20181002 || PACKETVER_RE_NUM >= 20181002 || PACKETVER_ZERO_NUM >= 20181010 + const struct PACKET_CZ_STOP_USE_SKILL *p = RFIFOP(fd, 0); + if (p->skillId != GC_ROLLINGCUTTER) { + ShowWarning("Packet CZ_STOP_USE_SKILL usage for unknown skill: %d\n", p->skillId); + } +#endif +} + /*========================================== * Client tells server he'd like to use AoE skill id 'skill_id' of level 'skill_lv' on 'x','y' location *------------------------------------------*/ @@ -12315,7 +12540,7 @@ static void clif_parse_NpcSelectMenu(int fd, struct map_session_data *sd) int npc_id = RFIFOL(fd,2); uint8 select = RFIFOB(fd,6); - if( (select > sd->npc_menu && select != 0xff) || select == 0 ) { + if( (select > sd->npc_menu && select != MAX_MENU_OPTIONS) || select == 0 ) { #ifdef SECURE_NPCTIMEOUT if( sd->npc_idle_timer != INVALID_TIMER ) { #endif @@ -12420,7 +12645,7 @@ static void clif_parse_OneClick_ItemIdentify(int fd, struct map_session_data *sd short idx = RFIFOW(fd, packet_db[cmd].pos[0]) - 2; int n; - if (idx < 0 || idx >= MAX_INVENTORY || sd->inventory_data[idx] == NULL || sd->status.inventory[idx].nameid <= 0) + if (idx < 0 || idx >= sd->status.inventorySize || sd->inventory_data[idx] == NULL || sd->status.inventory[idx].nameid <= 0) return; if ((n = pc->have_magnifier(sd) ) != INDEX_NOT_FOUND && @@ -12440,7 +12665,7 @@ static void clif_parse_SelectArrow(int fd, struct map_session_data *sd) clif_menuskill_clear(sd); return; } -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 itemId = RFIFOL(fd, 2); #else itemId = RFIFOW(fd, 2); @@ -12570,7 +12795,7 @@ static void clif_parse_MoveToKafra(int fd, struct map_session_data *sd) item_index = RFIFOW(fd,packet_db[RFIFOW(fd,0)].pos[0])-2; item_amount = RFIFOL(fd,packet_db[RFIFOW(fd,0)].pos[1]); - if (item_index < 0 || item_index >= MAX_INVENTORY || item_amount < 1) + if (item_index < 0 || item_index >= sd->status.inventorySize || item_amount < 1) return; if (sd->state.storage_flag == STORAGE_FLAG_NORMAL) @@ -14221,10 +14446,10 @@ static void clif_parse_pet_evolution(int fd, struct map_session_data *sd) return; } - ARR_FIND(0, MAX_INVENTORY, idx, sd->status.inventory[idx].card[0] == CARD0_PET && + ARR_FIND(0, sd->status.inventorySize, idx, sd->status.inventory[idx].card[0] == CARD0_PET && sd->status.pet_id == MakeDWord(sd->status.inventory[idx].card[1], sd->status.inventory[idx].card[2])); - if (idx == MAX_INVENTORY) { + if (idx == sd->status.inventorySize) { clif->petEvolutionResult(fd, PET_EVOL_NO_PETEGG); return; } @@ -16209,7 +16434,7 @@ static void clif_parse_Auction_setitem(int fd, struct map_session_data *sd) if( sd->auction.amount > 0 ) sd->auction.amount = 0; - if( idx < 0 || idx >= MAX_INVENTORY ) { + if (idx < 0 || idx >= sd->status.inventorySize) { ShowWarning("Character %s trying to set invalid item index in auctions.\n", sd->status.name); return; } @@ -16284,7 +16509,7 @@ static void clif_parse_Auction_register(int fd, struct map_session_data *sd) if (!battle_config.feature_auction) return; - Assert_retv(sd->auction.index >= 0 && sd->auction.index < MAX_INVENTORY); + Assert_retv(sd->auction.index >= 0 && sd->auction.index < sd->status.inventorySize); memset(&auction, 0, sizeof(auction)); auction.price = RFIFOL(fd,2); @@ -16791,13 +17016,13 @@ static void clif_parse_cz_config(int fd, struct map_session_data *sd) static void clif_parse_PartyTick(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); /// Request to change party invitation tick. /// value: -/// 0 = disabled -/// 1 = enabled +/// 0 = enabled +/// 1 = disabled static void clif_parse_PartyTick(int fd, struct map_session_data *sd) { - bool flag = RFIFOB(fd,6)?true:false; - sd->status.allow_party = flag; - clif->partytickack(sd, flag); + const struct PACKET_CZ_PARTY_CONFIG *const p = RFIFOP(fd, 0); + sd->status.allow_party = p->refuseInvite ? false : true; + clif->partytickack(sd, sd->status.allow_party); } /// Questlog System [Kevin] [Inkfish] @@ -16845,7 +17070,11 @@ static void clif_quest_send_list(struct map_session_data *sd) real_len += sizeof(info->objectives[j]); mob_data = mob->db(qi->objectives[j].mob); -#if PACKETVER >= 20150513 +#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017 + info->objectives[j].huntIdent = sd->quest_log[i].quest_id; + info->objectives[j].huntIdent2 = j; + info->objectives[j].mobType = 0; // Info Needed +#elif PACKETVER >= 20150513 info->objectives[j].huntIdent = (sd->quest_log[i].quest_id * 1000) + j; info->objectives[j].mobType = 0; // Info Needed #endif @@ -16934,7 +17163,11 @@ static void clif_quest_add(struct map_session_data *sd, struct quest *qd) monster = mob->db(qi->objectives[i].mob); -#if PACKETVER >= 20150513 +#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017 + packet->objectives[i].huntIdent = qd->quest_id; + packet->objectives[i].huntIdent2 = i; + packet->objectives[i].mobType = 0; // Info Needed +#elif PACKETVER >= 20150513 packet->objectives[i].huntIdent = (qd->quest_id * 1000) + i; packet->objectives[i].mobType = 0; // Info Needed #endif @@ -16995,7 +17228,10 @@ static void clif_quest_update_objective(struct map_session_data *sd, struct ques real_len += sizeof(packet->objectives[i]); packet->objectives[i].questID = qd->quest_id; -#if PACKETVER >= 20150513 +#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017 + packet->objectives[i].huntIdent = qd->quest_id; + packet->objectives[i].huntIdent2 = i; +#elif PACKETVER >= 20150513 packet->objectives[i].huntIdent = (qd->quest_id * 1000) + i; #else packet->objectives[i].mob_id = qi->objectives[i].mob; @@ -17570,6 +17806,7 @@ static int clif_instance(int instance_id, int type, int flag) case 2: // S 0x2cc <Standby Position>.W // To announce Instancing queue creation if no maps available + // flag is priority, negative value mean cancel reservation WBUFW(buf,0) = 0x02CC; WBUFW(buf,2) = flag; clif->send(buf,packet_len(0x02CC),&sd->bl,target); @@ -17752,8 +17989,8 @@ static void clif_parse_ItemListWindowSelected(int fd, struct map_session_data *s return; // Canceled by player. } - if (n > MAX_INVENTORY) - n = MAX_INVENTORY; // It should be impossible to have more than that. + if (n > sd->status.inventorySize) + n = sd->status.inventorySize; // It should be impossible to have more than that. if (sd->menuskill_id != SO_EL_ANALYSIS && sd->menuskill_id != GN_CHANGEMATERIAL) { clif_menuskill_clear(sd); @@ -18427,7 +18664,7 @@ static void clif_parse_debug(int fd, struct map_session_data *sd) cmd = RFIFOW(fd,0); if( sd ) { - packet_len = packet_db[cmd].len; + packet_len = packets->db[cmd]; if( packet_len == -1 ) {// variable length packet_len = RFIFOW(fd,2); // clif_parse ensures, that this amount of data is already received @@ -18506,7 +18743,7 @@ static int clif_spellbook_list(struct map_session_data *sd) WFIFOHEAD(fd, 8 * 8 + 8); WFIFOW(fd,0) = 0x1ad; - for( i = 0, c = 0; i < MAX_INVENTORY; i ++ ) + for (i = 0, c = 0; i < sd->status.inventorySize; i ++ ) { if( itemdb_is_spellbook(sd->status.inventory[i].nameid) ) { @@ -18546,7 +18783,7 @@ static int clif_magicdecoy_list(struct map_session_data *sd, uint16 skill_lv, sh WFIFOHEAD(fd, 8 * 8 + 8); WFIFOW(fd,0) = 0x1ad; // This is the official packet. [pakpil] - for( i = 0, c = 0; i < MAX_INVENTORY; i ++ ) { + for (i = 0, c = 0; i < sd->status.inventorySize; i ++) { if( itemdb_is_element(sd->status.inventory[i].nameid) ) { WFIFOW(fd, c * 2 + 4) = sd->status.inventory[i].nameid; c ++; @@ -18583,7 +18820,7 @@ static int clif_poison_list(struct map_session_data *sd, uint16 skill_lv) WFIFOHEAD(fd, 8 * 8 + 8); WFIFOW(fd,0) = 0x1ad; // This is the official packet. [pakpil] - for( i = 0, c = 0; i < MAX_INVENTORY; i ++ ) { + for (i = 0, c = 0; i < sd->status.inventorySize; i ++) { if( itemdb_is_poison(sd->status.inventory[i].nameid) ) { WFIFOW(fd, c * 2 + 4) = sd->status.inventory[i].nameid; c ++; @@ -18724,7 +18961,7 @@ static void clif_parse_MoveItem(int fd, struct map_session_data *sd) index = RFIFOW(fd,2)-2; - if (index < 0 || index >= MAX_INVENTORY) + if (index < 0 || index >= sd->status.inventorySize) return; if ( sd->status.inventory[index].favorite && RFIFOB(fd, 4) == 1 ) @@ -18851,8 +19088,20 @@ static void clif_monster_hp_bar(struct mob_data *md, struct map_session_data *sd } /* [Ind/Hercules] placeholder for unsupported incoming packets (avoids server disconnecting client) */ -static void __attribute__ ((unused)) clif_parse_dull(int fd, struct map_session_data *sd) +static void clif_parse_dull(int fd, struct map_session_data *sd) { + const int cmd = clif->cmd; + Assert_retv(cmd <= MAX_PACKET_DB && cmd >= MIN_PACKET_DB); + + int packet_len = packets->db[cmd]; + if (packet_len == -1) { // variable-length packet + packet_len = RFIFOW(fd, 2); + } + if (sd) { + ShowWarning("Unhandled packet 0x%04X (length %d), %s session #%d, %d/%d (AID/CID)\n", (uint32)cmd, packet_len, sd->state.active ? "authed" : "unauthed", fd, sd->status.account_id, sd->status.char_id); + } else { + ShowWarning("Unhandled packet 0x%04X (length %d), session #%d\n", (uint32)cmd, packet_len, fd); + } return; } @@ -19637,31 +19886,31 @@ static void clif_parse_NPCShopClosed(int fd, struct map_session_data *sd) /* NPC Market (by Ind after an extensive debugging of the packet, only possible thanks to Yommy <3) */ static void clif_npc_market_open(struct map_session_data *sd, struct npc_data *nd) { -#if PACKETVER >= 20131223 - struct npc_item_list *shop; - unsigned short shop_size, i, c; - +#if PACKETVER_MAIN_NUM >= 20131120 || PACKETVER_RE_NUM >= 20131106 || defined(PACKETVER_ZERO) nullpo_retv(sd); nullpo_retv(nd); - shop = nd->u.scr.shop->item; - shop_size = nd->u.scr.shop->items; - npcmarket_open.PacketType = npcmarketopenType; + struct npc_item_list *shop = nd->u.scr.shop->item; + const int shop_size = nd->u.scr.shop->items; - for(i = 0, c = 0; i < shop_size; i++) { + int c = 0; + int maxCount = (sizeof(packet_buf) - sizeof(struct PACKET_ZC_NPC_MARKET_OPEN)) / sizeof(struct PACKET_ZC_NPC_MARKET_OPEN_sub); + struct PACKET_ZC_NPC_MARKET_OPEN *packet = (struct PACKET_ZC_NPC_MARKET_OPEN*)&packet_buf[0]; + packet->packetType = HEADER_ZC_NPC_MARKET_OPEN; + + for (int i = 0; i < shop_size && c < maxCount; i++) { struct item_data *id = NULL; if (shop[i].nameid && (id = itemdb->exists(shop[i].nameid)) != NULL) { - npcmarket_open.list[c].nameid = shop[i].nameid; - npcmarket_open.list[c].price = shop[i].value; - npcmarket_open.list[c].qty = shop[i].qty; - npcmarket_open.list[c].type = itemtype(id->type); - npcmarket_open.list[c].view = ( id->view_id > 0 ) ? id->view_id : id->nameid; + packet->list[c].nameid = shop[i].nameid; + packet->list[c].price = shop[i].value; + packet->list[c].qty = shop[i].qty; + packet->list[c].type = itemtype(id->type); + packet->list[c].weight = id->weight; c++; } } - npcmarket_open.PacketLength = 4 + ( sizeof(npcmarket_open.list[0]) * c ); - - clif->send(&npcmarket_open,npcmarket_open.PacketLength,&sd->bl,SELF); + packet->packetLength = sizeof(struct PACKET_ZC_NPC_MARKET_OPEN) + sizeof(struct PACKET_ZC_NPC_MARKET_OPEN_sub) * c; + clif->send(packet, packet->packetLength, &sd->bl, SELF); #endif } @@ -19718,7 +19967,7 @@ static void clif_parse_NPCMarketPurchase(int fd, struct map_session_data *sd) int count = (p->PacketLength - 4) / sizeof p->list[0]; struct itemlist item_list; - Assert_retv(count >= 0 && count <= MAX_INVENTORY); + Assert_retv(count >= 0 && count <= sd->status.inventorySize); VECTOR_INIT(item_list); VECTOR_ENSURE(item_list, count, 1); @@ -19765,7 +20014,7 @@ static void clif_parse_RouletteOpen(int fd, struct map_session_data *sd) } p.PacketType = 0xa1a; - p.Result = 0; + p.Result = OPEN_ROULETTE_SUCCESS; p.Serial = 0; p.Step = sd->roulette.stage - 1; p.Idx = (char)sd->roulette.prizeIdx; @@ -20024,7 +20273,7 @@ static bool clif_parse_roulette_db(void) /** * **/ -static void clif_roulette_generate_ack(struct map_session_data *sd, unsigned char result, short stage, short prizeIdx, int bonusItemID) +static void clif_roulette_generate_ack(struct map_session_data *sd, enum GENERATE_ROULETTE_ACK result, short stage, short prizeIdx, int bonusItemID) { #if PACKETVER >= 20140612 struct packet_roulette_generate_ack p; @@ -20056,7 +20305,7 @@ static void clif_openmergeitem(int fd, struct map_session_data *sd) nullpo_retv(sd); memset(&merge_items,'\0',sizeof(merge_items)); - for (i = 0; i < MAX_INVENTORY; i++) { + for (i = 0; i < sd->status.inventorySize; i++) { struct item *item_data = &sd->status.inventory[i]; if (item_data->nameid == 0 || !itemdb->isstackable(item_data->nameid) || item_data->bound != IBT_NONE) @@ -20117,7 +20366,7 @@ static void clif_ackmergeitems(int fd, struct map_session_data *sd) nullpo_retv(sd); length = (RFIFOW(fd,2) - 4)/2; - if (length >= MAX_INVENTORY || length < 2) { + if (length >= sd->status.inventorySize || length < 2) { WFIFOHEAD(fd,7); WFIFOW(fd,0) = 0x96f; WFIFOW(fd,2) = 0; @@ -20131,7 +20380,7 @@ static void clif_ackmergeitems(int fd, struct map_session_data *sd) int16 idx = RFIFOW(fd,i*2+4) - 2; struct item *it = NULL; - if (idx < 0 || idx >= MAX_INVENTORY) + if (idx < 0 || idx >= sd->status.inventorySize) continue; it = &sd->status.inventory[idx]; @@ -20181,7 +20430,7 @@ static void clif_ackmergeitems(int fd, struct map_session_data *sd) item_data.unique_id = itemdb->unique_id(sd); pc->additem(sd,&item_data,count,LOG_TYPE_NPC); - ARR_FIND(0,MAX_INVENTORY,i,item_data.unique_id == sd->status.inventory[i].unique_id); + ARR_FIND(0, sd->status.inventorySize, i, item_data.unique_id == sd->status.inventory[i].unique_id); WFIFOHEAD(fd,7); WFIFOW(fd,0) = 0x96f; @@ -20300,21 +20549,21 @@ static const char *clif_get_bl_name(const struct block_list *bl) */ static void clif_clan_basicinfo(struct map_session_data *sd) { -#if PACKETVER >= 20120716 +#if PACKETVER_MAIN_NUM >= 20130626 || PACKETVER_RE_NUM >= 20130605 || defined(PACKETVER_ZERO) int len, i, fd; struct clan *c, *ally, *antagonist; struct PACKET_ZC_CLANINFO *packet = NULL; - nullpo_retv(sd); nullpo_retv(c = sd->clan); len = sizeof(struct PACKET_ZC_CLANINFO); fd = sd->fd; - WFIFOHEAD(fd, len); + const int maxEntries = 100; // max entries with clan names + WFIFOHEAD(fd, len + maxEntries * 24); packet = WFIFOP(fd, 0); - packet->PacketType = clanBasicInfo; + packet->PacketType = HEADER_ZC_CLANINFO; packet->ClanID = c->clan_id; safestrncpy(packet->ClanName, c->name, NAME_LENGTH); @@ -20325,24 +20574,27 @@ static void clif_clan_basicinfo(struct map_session_data *sd) packet->AllyCount = VECTOR_LENGTH(c->allies); packet->AntagonistCount = VECTOR_LENGTH(c->antagonists); + int cnt = 0; // All allies and antagonists are assumed as valid entries // since it only gets inside the vector after the validation // on clan->config_read - for (i = 0; i < VECTOR_LENGTH(c->allies); i++) { + for (i = 0; i < VECTOR_LENGTH(c->allies) && cnt < maxEntries; i++) { struct clan_relationship *al = &VECTOR_INDEX(c->allies, i); if ((ally = clan->search(al->clan_id)) != NULL) { safestrncpy(WFIFOP(fd, len), ally->name, NAME_LENGTH); len += NAME_LENGTH; + cnt ++; } } - for (i = 0; i < VECTOR_LENGTH(c->antagonists); i++) { + for (i = 0; i < VECTOR_LENGTH(c->antagonists) && cnt < maxEntries; i++) { struct clan_relationship *an = &VECTOR_INDEX(c->antagonists, i); if ((antagonist = clan->search(an->clan_id)) != NULL) { safestrncpy(WFIFOP(fd, len), antagonist->name, NAME_LENGTH); len += NAME_LENGTH; + cnt ++; } } @@ -20473,7 +20725,7 @@ static unsigned short clif_parse_cmd_optional(int fd, struct map_session_data *s unsigned short cmd = RFIFOW(fd,0); // filter out invalid / unsupported packets - if( cmd > MAX_PACKET_DB || cmd < MIN_PACKET_DB || packet_db[cmd].len == 0 ) { + if( cmd > MAX_PACKET_DB || cmd < MIN_PACKET_DB || packets->db[cmd] == 0 ) { if( sd ) sd->parse_cmd_func = clif_parse_cmd_decrypt; return clif_parse_cmd_decrypt(fd, sd); @@ -20638,7 +20890,7 @@ static void clif_achievement_reward_ack(int fd, struct map_session_data *sd, con nullpo_retv(ad); p.packet_id = achievementRewardAckType; - p.received = 1; + p.failed = 0; p.ach_id = ad->id; clif->send(&p, packet_len(achievementRewardAckType), &sd->bl, SELF); @@ -20737,7 +20989,7 @@ static void clif_rodex_add_item_result(struct map_session_data *sd, int16 idx, i int fd, j; nullpo_retv(sd); - if (idx < 0 || idx >= MAX_INVENTORY) + if (idx < 0 || idx >= sd->status.inventorySize) return; fd = sd->fd; @@ -20790,7 +21042,7 @@ static void clif_rodex_remove_item_result(struct map_session_data *sd, int16 idx int fd; nullpo_retv(sd); - Assert_retv(idx >= 0 && idx < MAX_INVENTORY); + Assert_retv(idx >= 0 && idx < sd->status.inventorySize); fd = sd->fd; @@ -21573,7 +21825,7 @@ static void clif_ui_action(struct map_session_data *sd, int32 UIType, int32 data static void clif_parse_private_airship_request(int fd, struct map_session_data *sd) __attribute__((nonnull(2))); static void clif_parse_private_airship_request(int fd, struct map_session_data *sd) { -#if PACKETVER_RE_NUM >= 20180321 || PACKETVER_MAIN_NUM >= 20180620 +#if PACKETVER_RE_NUM >= 20180321 || PACKETVER_MAIN_NUM >= 20180620 || defined(PACKETVER_ZERO) char evname[EVENT_NAME_LENGTH]; struct event_data *ev = NULL; const struct PACKET_CZ_PRIVATE_AIRSHIP_REQUEST *p = RP2PTR(fd); @@ -21593,7 +21845,7 @@ static void clif_parse_private_airship_request(int fd, struct map_session_data * static void clif_private_airship_response(struct map_session_data *sd, uint32 flag) { -#if PACKETVER_RE_NUM >= 20180321 || PACKETVER_MAIN_NUM >= 20180620 +#if PACKETVER_RE_NUM >= 20180321 || PACKETVER_MAIN_NUM >= 20180620 || defined(PACKETVER_ZERO) struct PACKET_ZC_PRIVATE_AIRSHIP_RESPONSE p; nullpo_retv(sd); @@ -21882,6 +22134,87 @@ static void clif_parse_memorial_dungeon_command(int fd, struct map_session_data } } +static void clif_camera_showWindow(struct map_session_data *sd) +{ +#if PACKETVER >= 20160525 + nullpo_retv(sd); + struct PACKET_ZC_CAMERA_INFO p; + p.packetType = HEADER_ZC_CAMERA_INFO; + p.action = 1; + p.range = 0; + p.rotation = 0; + p.latitude = 0; + clif->send(&p, sizeof(p), &sd->bl, SELF); +#endif +} + +static void clif_camera_change(struct map_session_data *sd, float range, float rotation, float latitude, enum send_target target) +{ +#if PACKETVER >= 20160525 + nullpo_retv(sd); + struct PACKET_ZC_CAMERA_INFO p; + p.packetType = HEADER_ZC_CAMERA_INFO; + p.action = 0; + p.range = range; + p.rotation = rotation; + p.latitude = latitude; + clif->send(&p, sizeof(p), &sd->bl, target); +#endif +} + +static void clif_parse_cameraInfo(int fd, struct map_session_data *sd) __attribute__((nonnull (2))); +static void clif_parse_cameraInfo(int fd, struct map_session_data *sd) +{ +#if PACKETVER >= 20160525 + const struct PACKET_CZ_CAMERA_INFO *const p = RFIFOP(fd, 0); + char command[100]; + if (p->action == 1) { + sprintf(command, "%ccamerainfo", atcommand->at_symbol); + } else { + sprintf(command, "%ccamerainfo %15f %15f %15f", atcommand->at_symbol, p->range, p->rotation, p->latitude); + } + atcommand->exec(fd, sd, command, true); +#endif +} + +// show item preview in already opened preview window +static void clif_item_preview(struct map_session_data *sd, int n) +{ +#if PACKETVER_MAIN_NUM >= 20170726 || PACKETVER_RE_NUM >= 20170621 || defined(PACKETVER_ZERO) + nullpo_retv(sd); + Assert_retv(n >= 0 && n < sd->status.inventorySize); + + struct PACKET_ZC_ITEM_PREVIEW p; + p.packetType = HEADER_ZC_ITEM_PREVIEW; + p.index = n + 2; +#if PACKETVER_MAIN_NUM >= 20181017 || PACKETVER_RE_NUM >= 20181017 || PACKETVER_ZERO_NUM >= 20181024 + p.isDamaged = (sd->status.inventory[n].attribute & ATTR_BROKEN) != 0 ? 1 : 0; +#endif + p.refiningLevel = sd->status.inventory[n].refine; + clif->addcards(&p.slot, &sd->status.inventory[n]); + clif->add_item_options(&p.option_data[0], &sd->status.inventory[n]); + clif->send(&p, sizeof(p), &sd->bl, SELF); +#endif +} + +// insert cardId into equipped item in pos equipment slot into slot cardSlot. +static bool clif_enchant_equipment(struct map_session_data *sd, enum equip_pos pos, int cardSlot, int cardId) +{ +#if PACKETVER_MAIN_NUM >= 20160831 || PACKETVER_RE_NUM >= 20151118 || defined(PACKETVER_ZERO) + nullpo_ret(sd); + Assert_ret(cardSlot >= 0 && cardSlot < MAX_SLOTS); + struct PACKET_ZC_ENCHANT_EQUIPMENT p; + p.packetType = HEADER_ZC_ENCHANT_EQUIPMENT; + p.wearState = pos; + p.cardSlot = cardSlot; + p.itemId = cardId; + clif->send(&p, sizeof(p), &sd->bl, SELF); + return true; +#else + return false; +#endif +} + /*========================================== * Main client packet processing function *------------------------------------------*/ @@ -21933,6 +22266,7 @@ static int clif_parse(int fd) parse_cmd_func = clif->parse_cmd; cmd = parse_cmd_func(fd,sd); + clif->cmd = cmd; if (VECTOR_LENGTH(HPM->packets[hpClif_Parse]) > 0) { int result = HPM->parse_packets(fd,cmd,hpClif_Parse); @@ -21943,7 +22277,7 @@ static int clif_parse(int fd) } // filter out invalid / unsupported packets - if (cmd > MAX_PACKET_DB || cmd < MIN_PACKET_DB || packet_db[cmd].len == 0) { + if (cmd > MAX_PACKET_DB || cmd < MIN_PACKET_DB || packets->db[cmd] == 0) { ShowWarning("clif_parse: Received unsupported packet (packet 0x%04x (0x%04x), %"PRIuS" bytes received), disconnecting session #%d.\n", (unsigned int)cmd, RFIFOW(fd,0), RFIFOREST(fd), fd); #ifdef DUMP_INVALID_PACKET @@ -21954,7 +22288,7 @@ static int clif_parse(int fd) } // determine real packet length - if ( ( packet_len = packet_db[cmd].len ) == -1) { // variable-length packet + if ((packet_len = packets->db[cmd]) == -1) { // variable-length packet if (RFIFOREST(fd) < 4) return 0; @@ -21996,8 +22330,8 @@ static int clif_parse(int fd) else packet_db[cmd].func(fd, sd); } -#ifdef DUMP_UNKNOWN_PACKET else { +#ifdef DUMP_UNKNOWN_PACKET const char* packet_txt = "save/packet.txt"; FILE* fp; @@ -22023,8 +22357,10 @@ static int clif_parse(int fd) ShowDump(RFIFOP(fd,0), packet_len); } - } +#else + clif->pDull(fd, sd); #endif + } RFIFOSKIP(fd, packet_len); @@ -22041,12 +22377,12 @@ static int clif_parse(int fd) */ static const struct s_packet_db *clif_packet(int packet_id) { - if (packet_id < MIN_PACKET_DB || packet_id > MAX_PACKET_DB || packet_db[packet_id].len == 0) + if (packet_id < MIN_PACKET_DB || packet_id > MAX_PACKET_DB || packets->db[packet_id] == 0) return NULL; return &packet_db[packet_id]; } -static void __attribute__ ((unused)) packetdb_addpacket(short cmd, int len, ...) +static void __attribute__ ((unused)) packetdb_addpacket(int cmd, ...) { va_list va; int i; @@ -22063,21 +22399,19 @@ static void __attribute__ ((unused)) packetdb_addpacket(short cmd, int len, ...) return; } - packet_db[cmd].len = len; - - va_start(va,len); + va_start(va, cmd); pos = va_arg(va, int); va_end(va); - if( pos == 0xFFFF ) { /* nothing more to do */ + if (pos == 0xFFFF) { /* nothing more to do */ return; } - va_start(va,len); + va_start(va, cmd); - func = va_arg(va,pFunc); + func = va_arg(va, pFunc); packet_db[cmd].func = func; @@ -22096,14 +22430,14 @@ static void packetdb_loaddb(void) { memset(packet_db,0,sizeof(packet_db)); -#define packet(id, size, ...) packetdb_addpacket((id), (size), ##__VA_ARGS__, 0xFFFF) -#include "packets.h" /* load structure data */ +#define packet(id, ...) packetdb_addpacket((id), ##__VA_ARGS__, 0xFFFF) +#include "map/packets.h" /* load structure data */ #ifdef PACKETVER_ZERO -#include "packets_shuffle_zero.h" +#include "map/packets_shuffle_zero.h" #elif defined(PACKETVER_RE) -#include "packets_shuffle_re.h" +#include "map/packets_shuffle_re.h" #else // PACKETVER_ZERO -#include "packets_shuffle_main.h" +#include "map/packets_shuffle_main.h" #endif // PACKETVER_ZERO #undef packet #define packetKeys(a,b,c) do { clif->cryptKey[0] = (a); clif->cryptKey[1] = (b); clif->cryptKey[2] = (c); } while(0) @@ -22111,9 +22445,9 @@ static void packetdb_loaddb(void) packetKeys(OBFUSCATIONKEY1,OBFUSCATIONKEY2,OBFUSCATIONKEY3); #else // defined(OBFUSCATIONKEY1) && defined(OBFUSCATIONKEY2) && defined(OBFUSCATIONKEY3) #ifdef PACKETVER_ZERO -#include "packets_keys_zero.h" +#include "map/packets_keys_zero.h" #else // PACKETVER_ZERO -#include "packets_keys_main.h" +#include "map/packets_keys_main.h" #endif // PACKETVER_ZERO #endif // defined(OBFUSCATIONKEY1) && defined(OBFUSCATIONKEY2) && defined(OBFUSCATIONKEY3) #undef packetKeys @@ -22150,6 +22484,7 @@ static int do_init_clif(bool minimal) packetdb_loaddb(); sockt->set_defaultparse(clif->parse); + sockt->validate = true; if (sockt->make_listen_bind(clif->bind_ip,clif->map_port) == -1) { ShowFatalError("Failed to bind to port '"CL_WHITE"%d"CL_RESET"'\n",clif->map_port); exit(EXIT_FAILURE); @@ -22196,6 +22531,7 @@ void clif_defaults(void) clif->map_port = 5121; clif->ally_only = false; clif->delayed_damage_ers = NULL; + clif->cmd = -1; /* core */ clif->init = do_init_clif; clif->final = do_final_clif; @@ -22338,6 +22674,12 @@ void clif_defaults(void) clif->equipItems = clif_equipItems; clif->cartList = clif_cartList; clif->cartItems = clif_cartItems; + clif->inventoryExpansionInfo = clif_inventoryExpansionInfo; + clif->inventoryExpandAck = clif_inventoryExpandAck; + clif->inventoryExpandResult = clif_inventoryExpandResult; + clif->pInventoryExpansion = clif_parse_inventoryExpansion; + clif->pInventoryExpansionConfirmed = clif_parse_inventoryExpansionConfirmed; + clif->pInventoryExpansionRejected = clif_parse_inventoryExpansionRejected; clif->favorite_item = clif_favorite_item; clif->clearcart = clif_clearcart; clif->item_identify_list = clif_item_identify_list; @@ -22430,6 +22772,8 @@ void clif_defaults(void) clif->specialeffect = clif_specialeffect; clif->specialeffect_single = clif_specialeffect_single; clif->specialeffect_value = clif_specialeffect_value; + clif->removeSpecialEffect = clif_removeSpecialEffect; + clif->removeSpecialEffect_single = clif_removeSpecialEffect_single; clif->millenniumshield = clif_millenniumshield; clif->spiritcharm = clif_charm; clif->charm_single = clif_charm_single; @@ -22457,6 +22801,7 @@ void clif_defaults(void) clif->broadcast2 = clif_broadcast2; clif->messagecolor_self = clif_messagecolor_self; clif->messagecolor = clif_messagecolor; + clif->serviceMessageColor = clif_serviceMessageColor; clif->disp_overhead = clif_disp_overhead; clif->notify_playerchat = clif_notify_playerchat; clif->msgtable_skill = clif_msgtable_skill; @@ -22781,6 +23126,9 @@ void clif_defaults(void) clif->pUseSkillToId = clif_parse_UseSkillToId; clif->pUseSkillToId_homun = clif_parse_UseSkillToId_homun; clif->pUseSkillToId_mercenary = clif_parse_UseSkillToId_mercenary; + clif->pStartUseSkillToId = clif_parse_startUseSkillToId; + clif->pStopUseSkillToId = clif_parse_stopUseSkillToId; + clif->useSkillToIdReal = clif_useSkillToIdReal; clif->pUseSkillToPos = clif_parse_UseSkillToPos; clif->pUseSkillToPosSub = clif_parse_UseSkillToPosSub; clif->pUseSkillToPos_homun = clif_parse_UseSkillToPos_homun; @@ -23040,9 +23388,16 @@ void clif_defaults(void) clif->cz_req_style_change_sub = clif_cz_req_style_change_sub; clif->style_change_response = clif_style_change_response; + clif->camera_showWindow = clif_camera_showWindow; + clif->camera_change = clif_camera_change; + clif->pCameraInfo = clif_parse_cameraInfo; + clif->item_preview = clif_item_preview; + clif->enchant_equipment = clif_enchant_equipment; + // -- Pet Evolution clif->pPetEvolution = clif_parse_pet_evolution; clif->petEvolutionResult = clif_pet_evolution_result; clif->pMemorialDungeonCommand = clif_parse_memorial_dungeon_command; + clif->pReqRemainTime = clif_parse_reqRemainTime; } diff --git a/src/map/clif.h b/src/map/clif.h index 86e53e1e9..91a91b5d3 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -64,7 +64,7 @@ enum rodex_get_items; /** * Defines **/ -#define packet_len(cmd) packet_db[cmd].len +#define packet_len(cmd) packets->db[cmd] #define clif_menuskill_clear(sd) ((sd)->menuskill_id = (sd)->menuskill_val = (sd)->menuskill_val2 = 0) #define clif_disp_onlyself(sd, mes) clif->disp_message(&(sd)->bl, (mes), SELF) #define MAX_ROULETTE_LEVEL 7 /** client-defined value **/ @@ -237,13 +237,13 @@ typedef enum emotion_type { E_MAX } emotion_type; -typedef enum clr_type { +enum clr_type { CLR_OUTSIGHT = 0, CLR_DEAD, CLR_RESPAWN, CLR_TELEPORT, CLR_TRICKDEAD, -} clr_type; +}; enum map_property { // clif_map_property MAPPROPERTY_NOTHING = 0, @@ -493,13 +493,17 @@ enum RECV_ROULETTE_ITEM_ACK { }; enum GENERATE_ROULETTE_ACK { - GENERATE_ROULETTE_SUCCESS = 0x0, - GENERATE_ROULETTE_FAILED = 0x1, - GENERATE_ROULETTE_NO_ENOUGH_POINT = 0x2, - GENERATE_ROULETTE_LOSING = 0x3, + GENERATE_ROULETTE_SUCCESS = 0x0, + GENERATE_ROULETTE_FAILED = 0x1, + GENERATE_ROULETTE_NO_ENOUGH_POINT = 0x2, + GENERATE_ROULETTE_LOSING = 0x3, + GENERATE_ROULETTE_NO_ENOUGH_INVENTORY_SPACE = 0x4, +#if PACKETVER >= 20141001 + GENERATE_ROULETTE_CANT_PLAY = 0x5, +#endif }; -enum OPEN_ROULETTE_ACK{ +enum OPEN_ROULETTE_ACK { OPEN_ROULETTE_SUCCESS = 0x0, OPEN_ROULETTE_FAILED = 0x1, }; @@ -583,8 +587,8 @@ enum zc_ui_types { **/ enum cz_ui_types { CZ_STYLIST_UI = 1, - //unknown = 2, - //unknown = 3, + CZ_MACRO_REGISTER_UI = 2, + CZ_MACRO_DETECTOR_UI = 3, CZ_ATTENDANCE_UI = 5 }; @@ -626,7 +630,6 @@ enum inventory_type { **/ typedef void (*pFunc)(int, struct map_session_data *); //cant help but put it first struct s_packet_db { - short len; pFunc func; short pos[MAX_PACKET_POS]; }; @@ -674,6 +677,22 @@ enum memorial_dungeon_command { COMMAND_MEMORIALDUNGEON_DESTROY_FORCE = 0x3, }; +enum expand_inventory { + EXPAND_INVENTORY_ASK_CONFIRMATION = 0, + EXPAND_INVENTORY_FAILED = 1, + EXPAND_INVENTORY_OTHER_WORK = 2, + EXPAND_INVENTORY_MISSING_ITEM = 3, + EXPAND_INVENTORY_MAX_SIZE = 4 +}; + +enum expand_inventory_result { + EXPAND_INVENTORY_RESULT_SUCCESS = 0, + EXPAND_INVENTORY_RESULT_FAILED = 1, + EXPAND_INVENTORY_RESULT_OTHER_WORK = 2, + EXPAND_INVENTORY_RESULT_MISSING_ITEM = 3, + EXPAND_INVENTORY_RESULT_MAX_SIZE = 4 +}; + /** * Clif.c Interface **/ @@ -684,6 +703,7 @@ struct clif_interface { uint16 map_port; char map_ip_str[128]; int map_fd; + int cmd; /* for clif_clearunit_delayed */ struct eri *delay_clearunit_ers; /* Cash Shop [Ind/Hercules] */ @@ -752,9 +772,9 @@ struct clif_interface { void (*package_announce) (struct map_session_data *sd, int nameid, int containerid); void (*item_drop_announce) (struct map_session_data *sd, int nameid, char *monsterName); /* unit-related */ - void (*clearunit_single) (int id, clr_type type, int fd); - void (*clearunit_area) (struct block_list* bl, clr_type type); - void (*clearunit_delayed) (struct block_list* bl, clr_type type, int64 tick); + void (*clearunit_single) (int id, enum clr_type type, int fd); + void (*clearunit_area) (struct block_list* bl, enum clr_type type); + void (*clearunit_delayed) (struct block_list* bl, enum clr_type type, int64 tick); void (*walkok) (struct map_session_data *sd); void (*move) (struct unit_data *ud); void (*move2) (struct block_list *bl, struct view_data *vd, struct unit_data *ud); @@ -847,6 +867,12 @@ struct clif_interface { void (*equipItems) (struct map_session_data *sd, enum inventory_type type); void (*cartList) (struct map_session_data *sd); void (*cartItems) (struct map_session_data *sd, enum inventory_type type); + void (*inventoryExpansionInfo) (struct map_session_data *sd); + void (*inventoryExpandAck) (struct map_session_data *sd, enum expand_inventory result, int itemId); + void (*inventoryExpandResult) (struct map_session_data *sd, enum expand_inventory_result result); + void (*pInventoryExpansion) (int fd, struct map_session_data *sd); + void (*pInventoryExpansionConfirmed) (int fd, struct map_session_data *sd); + void (*pInventoryExpansionRejected) (int fd, struct map_session_data *sd); void (*favorite_item) (struct map_session_data* sd, unsigned short index); void (*clearcart) (int fd); void (*item_identify_list) (struct map_session_data *sd); @@ -939,6 +965,8 @@ struct clif_interface { void (*specialeffect) (struct block_list* bl, int type, enum send_target target); void (*specialeffect_single) (struct block_list* bl, int type, int fd); void (*specialeffect_value) (struct block_list* bl, int effect_id, int num, send_target target); + void (*removeSpecialEffect) (struct block_list *bl, int effectId, enum send_target target); + void (*removeSpecialEffect_single) (struct block_list *bl, int effectId, struct block_list *targetBl); void (*millenniumshield) (struct block_list *bl, short shields ); void (*spiritcharm) (struct map_session_data *sd); void (*charm_single) (int fd, struct map_session_data *sd); @@ -966,6 +994,7 @@ struct clif_interface { void (*broadcast2) (struct block_list *bl, const char *mes, int len, unsigned int fontColor, short fontType, short fontSize, short fontAlign, short fontY, enum send_target target); void (*messagecolor_self) (int fd, uint32 color, const char *msg); void (*messagecolor) (struct block_list* bl, uint32 color, const char* msg); + void (*serviceMessageColor) (struct map_session_data *sd, uint32 color, const char *msg); void (*disp_overhead) (struct block_list *bl, const char *mes, enum send_target target, struct block_list *target_bl); void (*notify_playerchat) (struct block_list *bl, const char *mes); void (*msgtable) (struct map_session_data* sd, enum clif_messages msg_id); @@ -1217,7 +1246,7 @@ struct clif_interface { void (*npc_market_purchase_ack) (struct map_session_data *sd, const struct itemlist *item_list, unsigned char response); /* */ bool (*parse_roulette_db) (void); - void (*roulette_generate_ack) (struct map_session_data *sd, unsigned char result, short stage, short prizeIdx, int bonusItemID); + void (*roulette_generate_ack) (struct map_session_data *sd, enum GENERATE_ROULETTE_ACK result, short stage, short prizeIdx, int bonusItemID); /* Merge Items */ void (*openmergeitem) (int fd, struct map_session_data *sd); void (*cancelmergeitem) (int fd, struct map_session_data *sd); @@ -1283,7 +1312,10 @@ struct clif_interface { void (*pChangeCart) (int fd,struct map_session_data *sd); void (*pStatusUp) (int fd,struct map_session_data *sd); void (*pSkillUp) (int fd,struct map_session_data *sd); + void (*useSkillToIdReal) (int fd, struct map_session_data *sd, int skill_id, int skill_lv, int target_id); void (*pUseSkillToId) (int fd, struct map_session_data *sd); + void (*pStartUseSkillToId) (int fd, struct map_session_data *sd); + void (*pStopUseSkillToId) (int fd, struct map_session_data *sd); void (*pUseSkillToId_homun) (struct homun_data *hd, struct map_session_data *sd, int64 tick, uint16 skill_id, uint16 skill_lv, int target_id); void (*pUseSkillToId_mercenary) (struct mercenary_data *md, struct map_session_data *sd, int64 tick, uint16 skill_id, uint16 skill_lv, int target_id); void (*pUseSkillToPos) (int fd, struct map_session_data *sd); @@ -1549,6 +1581,12 @@ struct clif_interface { void (*petEvolutionResult) (int fd, enum pet_evolution_result result); void (*party_dead_notification) (struct map_session_data *sd); void (*pMemorialDungeonCommand) (int fd, struct map_session_data *sd); + void (*camera_showWindow) (struct map_session_data *sd); + void (*camera_change) (struct map_session_data *sd, float range, float rotation, float latitude, enum send_target target); + void (*pCameraInfo) (int fd, struct map_session_data *sd); + void (*item_preview) (struct map_session_data *sd, int n); + bool (*enchant_equipment) (struct map_session_data *sd, enum equip_pos pos, int cardSlot, int cardId); + void (*pReqRemainTime) (int fd, struct map_session_data *sd); }; #ifdef HERCULES_CORE diff --git a/src/map/guild.c b/src/map/guild.c index 780d21326..17bf7fa6b 100644 --- a/src/map/guild.c +++ b/src/map/guild.c @@ -721,7 +721,6 @@ static int guild_reply_invite(struct map_session_data *sd, int guild_id, int fla } else {// accepted - struct guild_member m; struct guild* g; int i; @@ -741,8 +740,8 @@ static int guild_reply_invite(struct map_session_data *sd, int guild_id, int fla return 0; } - guild->makemember(&m,sd); - intif->guild_addmember(guild_id, &m); + guild->makemember(&g->member[i], sd); + intif->guild_addmember(guild_id, &g->member[i]); //TODO: send a minimap update to this player } @@ -829,6 +828,11 @@ static int guild_member_added(int guild_id, int account_id, int char_id, int fla //Next line commented because it do nothing, look at guild_recv_info [LuzZza] //clif->charnameupdate(sd); //Update display name [Skotlex] + // Makes the character join their respective guild's channel for #ally chat + if (channel->config->ally && channel->config->ally_autojoin) { + channel->join(g->channel, sd, "", true); + } + return 0; } diff --git a/src/map/irc-bot.c b/src/map/irc-bot.c index 6f37fa4a6..996107fea 100644 --- a/src/map/irc-bot.c +++ b/src/map/irc-bot.c @@ -63,6 +63,7 @@ static int irc_connect_timer(int tid, int64 tick, int id, intptr_t data) if ((ircbot->fd = sockt->make_connection(ircbot->ip, channel->config->irc_server_port, &opt)) > 0) { sockt->session[ircbot->fd]->func_parse = ircbot->parse; sockt->session[ircbot->fd]->flag.server = 1; + sockt->session[ircbot->fd]->flag.validate = 0; timer->add(timer->gettick() + 3000, ircbot->identify_timer, 0, 0); ircbot->isOn = true; } diff --git a/src/map/itemdb.h b/src/map/itemdb.h index d92940445..0c08efbeb 100644 --- a/src/map/itemdb.h +++ b/src/map/itemdb.h @@ -38,7 +38,7 @@ struct hplugin_data_store; #endif #ifndef MAX_ITEM_ID -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 #define MAX_ITEM_ID 0x20000 #else #define MAX_ITEM_ID 0xFFFF @@ -72,8 +72,8 @@ struct hplugin_data_store; #if MAX_ITEM_ID < MAX_ITEMDB #error "MAX_ITEM_ID must be bigger or same with MAX_ITEMDB" #endif -#if MAX_ITEM_ID > 0xFFFF && PACKETVER_RE_NUM < 20180704 -#error "For clients before 20180704 RE, MAX_ITEM_ID must be smaller than 0x10000" +#if MAX_ITEM_ID > 0xFFFF && PACKETVER_MAIN_NUM < 20181121 && PACKETVER_RE_NUM < 20180704 && PACKETVER_ZERO_NUM < 20181114 +#error "For clients before 20181121 Main and 20180704 RE and 20181114 zero, MAX_ITEM_ID must be smaller than 0x10000" #endif enum item_itemid { diff --git a/src/map/mail.c b/src/map/mail.c index d67e658fd..0a4b91e34 100644 --- a/src/map/mail.c +++ b/src/map/mail.c @@ -100,7 +100,7 @@ static unsigned char mail_setitem(struct map_session_data *sd, int idx, int amou idx -= 2; mail->removeitem(sd, 0); - if( idx < 0 || idx >= MAX_INVENTORY ) + if (idx < 0 || idx >= sd->status.inventorySize) return 1; if( amount <= 0 || amount > sd->status.inventory[idx].amount ) return 1; @@ -128,7 +128,7 @@ static bool mail_setattachment(struct map_session_data *sd, struct mail_message return false; n = sd->mail.index; - Assert_retr(false, n >= 0 && n < MAX_INVENTORY); + Assert_retr(false, n >= 0 && n < sd->status.inventorySize); if( sd->mail.amount ) { if( sd->status.inventory[n].nameid != sd->mail.nameid ) diff --git a/src/map/map.c b/src/map/map.c index 343f219b8..93e86f80b 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -635,6 +635,18 @@ static int map_foreachinmap(int (*func)(struct block_list*, va_list), int16 m, i return returnCount; } +static int map_forcountinmap(int (*func)(struct block_list*, va_list), int16 m, int count, int type, ...) +{ + int returnCount; + va_list ap; + + va_start(ap, type); + returnCount = map->vforcountinarea(func, m, 0, 0, map->list[m].xs, map->list[m].ys, count, type, ap); + va_end(ap); + + return returnCount; +} + /** * Applies func to every block_list object of bl_type type on all maps * of instance instance_id. @@ -3695,7 +3707,7 @@ static void map_zonedb_reload(void) { // first, reset maps to their initial zones: for (int i = 0; i < map->count; i++) { - map->zone_remove(i); + map->zone_remove_all(i); if (battle_config.pk_mode) { map->list[i].flag.pvp = 1; @@ -4676,6 +4688,27 @@ static void map_zone_remove(int m) map->list[m].zone_mf = NULL; map->list[m].zone_mf_count = 0; } +// this one removes every flag, even if they were previously turned on before +// the current zone was applied +static void map_zone_remove_all(int m) +{ + Assert_retv(m >= 0 && m < map->count); + + for (unsigned short k = 0; k < map->list[m].zone_mf_count; k++) { + char flag[MAP_ZONE_MAPFLAG_LENGTH]; + + memcpy(flag, map->list[m].zone_mf[k], MAP_ZONE_MAPFLAG_LENGTH); + strtok(flag, "\t"); + + npc->parse_mapflag(map->list[m].name, "", flag, "off", "", "", "", NULL); + aFree(map->list[m].zone_mf[k]); + map->list[m].zone_mf[k] = NULL; + } + + aFree(map->list[m].zone_mf); + map->list[m].zone_mf = NULL; + map->list[m].zone_mf_count = 0; +} static inline void map_zone_mf_cache_add(int m, char *rflag) { Assert_retv(m >= 0 && m < map->count); @@ -6828,6 +6861,7 @@ void map_defaults(void) /* funcs */ map->zone_init = map_zone_init; map->zone_remove = map_zone_remove; + map->zone_remove_all = map_zone_remove_all; map->zone_apply = map_zone_apply; map->zone_change = map_zone_change; map->zone_change2 = map_zone_change2; @@ -6901,6 +6935,7 @@ void map_defaults(void) map->foreachinpath = map_foreachinpath; map->vforeachinmap = map_vforeachinmap; map->foreachinmap = map_foreachinmap; + map->forcountinmap = map_forcountinmap; map->vforeachininstance = map_vforeachininstance; map->foreachininstance = map_foreachininstance; diff --git a/src/map/map.h b/src/map/map.h index d50666d4b..4267c2c88 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -815,6 +815,7 @@ struct questinfo { struct s_homunculus homunculus; int homunculus_type; VECTOR_DECL(struct questinfo_qreq) quest_requirement; + int mercenary_class; }; @@ -1219,6 +1220,7 @@ END_ZEROED_BLOCK; /* funcs */ void (*zone_init) (void); void (*zone_remove) (int m); + void (*zone_remove_all) (int m); void (*zone_apply) (int m, struct map_zone_data *zone, const char* start, const char* buffer, const char* filepath); void (*zone_change) (int m, struct map_zone_data *zone, const char* start, const char* buffer, const char* filepath); void (*zone_change2) (int m, struct map_zone_data *zone); @@ -1292,6 +1294,7 @@ END_ZEROED_BLOCK; int (*foreachinpath) (int (*func)(struct block_list*,va_list), int16 m, int16 x0, int16 y0, int16 x1, int16 y1, int16 range, int length, int type, ...); int (*vforeachinmap) (int (*func)(struct block_list*,va_list), int16 m, int type, va_list args); int (*foreachinmap) (int (*func)(struct block_list*,va_list), int16 m, int type, ...); + int (*forcountinmap) (int (*func)(struct block_list*,va_list), int16 m, int count, int type, ...); int (*vforeachininstance)(int (*func)(struct block_list*,va_list), int16 instance_id, int type, va_list ap); int (*foreachininstance)(int (*func)(struct block_list*,va_list), int16 instance_id, int type,...); diff --git a/src/map/messages_main.h b/src/map/messages_main.h index f26fdb50b..bb01d24cb 100644 --- a/src/map/messages_main.h +++ b/src/map/messages_main.h @@ -3,6 +3,7 @@ * http://herc.ws - http://github.com/HerculesWS/Hercules * * Copyright (C) 2013-2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,7 +24,7 @@ /* This file is autogenerated, please do not commit manual changes -Latest version: 20180829 +Latest version: 20181212 */ enum clif_messages { @@ -4629,9 +4630,11 @@ Thief Knight */ MSG_KNIGHT = 0x364, -/*20040913 to latest +/*20040913 to 20181128 Prieset Priest +20181205 to latest +Priest */ MSG_PRIEST = 0x365, /*20040913 to latest @@ -5268,9 +5271,11 @@ WhiteSmith Sniper */ MSG_HUNTER_H = 0x3dc, -/*20050613 to latest +/*20050613 to 20181128 Saaassin Cross Assassin Cross +20181205 to latest +Assassin Cross */ MSG_ASSASSIN_H = 0x3dd, /*20050613 to latest @@ -5298,9 +5303,11 @@ Sniper_W Sniper */ MSG_HUNTER_H_W = 0x3e2, -/*20050613 to latest +/*20050613 to 20181128 Saaassin Cross_W Assassin Cross +20181205 to latest +Assassin Cross_W */ MSG_ASSASSIN_H_W = 0x3e3, /*20050613 to latest @@ -17569,9 +17576,11 @@ DEATH: %.1f%% (Basic 100.0%% VIP Bonus %.1f%% + %s %.1f%%) MSG_ID_AFB = 0xafb, #endif #if PACKETVER >= 20150826 -/*20150826 to latest +/*20150826 to 20180919 해당 태그는 이름으로 사용하실 수 없습니다. Name with this tag cannot be used. +20181002 to latest + 해당 내용은 이름으로 사용하실 수 없습니다. */ MSG_ID_AFC = 0xafc, #endif @@ -21285,6 +21294,160 @@ NOW LOADING.. */ MSG_ID_DD5 = 0xdd5, #endif +#if PACKETVER >= 20181002 +/*20181002 to latest +삭제 +*/ + MSG_ID_DD6 = 0xdd6, +/*20181002 to latest +답장 +*/ + MSG_ID_DD7 = 0xdd7, +/*20181002 to latest +전송 +*/ + MSG_ID_DD8 = 0xdd8, +/*20181002 to latest +이름확인 +*/ + MSG_ID_DD9 = 0xdd9, +/*20181002 to latest +공지 +Notice +*/ + MSG_ID_DDA = 0xdda, +/*20181002 to latest +일반 +General +*/ + MSG_ID_DDB = 0xddb, +/*20181002 to latest +반송 +Clear +*/ + MSG_ID_DDC = 0xddc, +/*20181002 to latest +검색 +Search +*/ + MSG_ID_DDD = 0xddd, +#endif +#if PACKETVER >= 20181031 +/*20181031 to latest +펫 먹이주기에 실패했습니다. 먹이를 줄 수 없는 상태입니다. +*/ + MSG_ID_DDE = 0xdde, +/*20181031 to latest +호문 먹이주기에 실패했습니다. 먹이를 줄 수 없는 상태입니다. +*/ + MSG_ID_DDF = 0xddf, +/*20181031 to latest +화폐 +*/ + MSG_ID_DE0 = 0xde0, +/*20181031 to latest +%s %d개 +*/ + MSG_ID_DE1 = 0xde1, +/*20181031 to latest +교환에 실패하였습니다. +*/ + MSG_ID_DE2 = 0xde2, +/*20181031 to latest +교환이 잘 이루어졌습니다. +*/ + MSG_ID_DE3 = 0xde3, +/*20181031 to latest +교환에 필요한 재화가 부족합니다. +*/ + MSG_ID_DE4 = 0xde4, +/*20181031 to latest +해당 아이템은 이미 판매되어 재고가 부족합니다. +*/ + MSG_ID_DE5 = 0xde5, +/*20181031 to latest +사망 +*/ + MSG_ID_DE6 = 0xde6, +/*20181031 to latest +PvP +*/ + MSG_ID_DE7 = 0xde7, +/*20181031 to latest +아이템 소지 확장 +*/ + MSG_ID_DE8 = 0xde8, +/*20181031 to 20181031 +(^0000ff%s^000000)을 소모하여, 아이템 최대 소지 종류수를 확장하시겠습니까? +(^0000ff%d^000000)에서 (^0000ff%d^000000)로 확장됩니다. +^ff0000※ 소모된 아이템 및 확장된 최대 소지 종류수는 되돌릴 수 없습니다.^000000 +20181107 to latest +^0000ff%s^000000을 소모하여, 아이템 최대 소지 종류수를 확장하시겠습니까? +(^0000ff%d^000000)에서 (^0000ff%d^000000)로 확장됩니다. +^ff0000※ 소모된 아이템 및 확장된 최대 소지 종류수는 되돌릴 수 없습니다.^000000 +*/ + MSG_ID_DE9 = 0xde9, +/*20181031 to 20181031 +아이템 소지 종류 수 확장에 실패하였습니다. +20181107 to latest +아이템 최대 소지 종류수 확장에 실패하였습니다. +*/ + MSG_ID_DEA = 0xdea, +/*20181031 to 20181031 +아이템 소지 종류 수 확장을 위해, 다른 작업을 종료하여 주시기 바랍니다. +20181107 to latest +아이템 최대 소지 종류수 확장을 위해, 다른 작업을 종료하여 주시기 바랍니다. +*/ + MSG_ID_DEB = 0xdeb, +/*20181031 to 20181031 +아이템 소지 확장에 필요한 아이템을 소지하고 있지 않습니다. +20181107 to latest +아이템 최대 소지 종류수 확장에 필요한 아이템을 소지하고 있지 않습니다. +*/ + MSG_ID_DEC = 0xdec, +/*20181031 to 20181031 +이미 아이템 소지 종류 수 확장이 최대로 적용 중입니다. +20181107 to latest +더 이상 아이템 최대 소지 종류수를 확장 할 수 없습니다. +*/ + MSG_ID_DED = 0xded, +/*20181031 to 20181031 +아이템 소지 확장에 성공하였습니다. +20181107 to latest +아이템 최대 소지 종류수 확장에 성공하였습니다. +*/ + MSG_ID_DEE = 0xdee, +#endif +#if PACKETVER >= 20181121 +/*20181121 to latest +같은 아이템을 %d개 이상 가질 수 없습니다. +*/ + MSG_ID_DEF = 0xdef, +/*20181121 to latest +소지 한계량 초과로 구입이 불가능합니다. +*/ + MSG_ID_DF0 = 0xdf0, +/*20181121 to latest +해당 아이템은 한 번에 한 개만 살 수 있습니다. +*/ + MSG_ID_DF1 = 0xdf1, +#endif +#if PACKETVER >= 20181205 +/*20181205 to latest +성제 +*/ + MSG_ID_DF2 = 0xdf2, +/*20181205 to latest +소울리퍼 +*/ + MSG_ID_DF3 = 0xdf3, +#endif +#if PACKETVER >= 20181212 +/*20181212 to latest +설정한 내용은 정상 종료 시 서버에 저장됩니다. +*/ + MSG_ID_DF4 = 0xdf4, +#endif }; #endif /* MAP_MESSAGES_MAIN_H */ diff --git a/src/map/messages_re.h b/src/map/messages_re.h index c263150e3..8b75d608d 100644 --- a/src/map/messages_re.h +++ b/src/map/messages_re.h @@ -3,6 +3,7 @@ * http://herc.ws - http://github.com/HerculesWS/Hercules * * Copyright (C) 2013-2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,7 +24,7 @@ /* This file is autogenerated, please do not commit manual changes -Latest version: 20180919 +Latest version: 20181212 */ enum clif_messages { @@ -4394,9 +4395,11 @@ Thief Knight */ MSG_KNIGHT = 0x364, -/*20080827 to latest +/*20080827 to 20181128 Prieset Priest +20181205 to latest +Priest */ MSG_PRIEST = 0x365, /*20080827 to latest @@ -4971,9 +4974,11 @@ WhiteSmith Sniper */ MSG_HUNTER_H = 0x3dc, -/*20080827 to latest +/*20080827 to 20181128 Saaassin Cross Assassin Cross +20181205 to latest +Assassin Cross */ MSG_ASSASSIN_H = 0x3dd, /*20080827 to latest @@ -5001,9 +5006,11 @@ Sniper_W Sniper */ MSG_HUNTER_H_W = 0x3e2, -/*20080827 to latest +/*20080827 to 20181128 Saaassin Cross_W Assassin Cross +20181205 to latest +Assassin Cross_W */ MSG_ASSASSIN_H_W = 0x3e3, /*20080827 to latest @@ -17045,9 +17052,11 @@ DEATH: %.1f%% (Basic 100.0%% VIP Bonus %.1f%% + %s %.1f%%) MSG_ID_AFB = 0xafb, #endif #if PACKETVER >= 20150826 -/*20150826 to latest +/*20150826 to 20180919 해당 태그는 이름으로 사용하실 수 없습니다. Name with this tag cannot be used. +20181002 to latest + 해당 내용은 이름으로 사용하실 수 없습니다. */ MSG_ID_AFC = 0xafc, #endif @@ -20802,6 +20811,122 @@ Search */ MSG_ID_DDD = 0xddd, #endif +#if PACKETVER >= 20181031 +/*20181031 to latest +펫 먹이주기에 실패했습니다. 먹이를 줄 수 없는 상태입니다. +*/ + MSG_ID_DDE = 0xdde, +/*20181031 to latest +호문 먹이주기에 실패했습니다. 먹이를 줄 수 없는 상태입니다. +*/ + MSG_ID_DDF = 0xddf, +/*20181031 to latest +화폐 +*/ + MSG_ID_DE0 = 0xde0, +/*20181031 to latest +%s %d개 +*/ + MSG_ID_DE1 = 0xde1, +/*20181031 to latest +교환에 실패하였습니다. +*/ + MSG_ID_DE2 = 0xde2, +/*20181031 to latest +교환이 잘 이루어졌습니다. +*/ + MSG_ID_DE3 = 0xde3, +/*20181031 to latest +교환에 필요한 재화가 부족합니다. +*/ + MSG_ID_DE4 = 0xde4, +/*20181031 to latest +해당 아이템은 이미 판매되어 재고가 부족합니다. +*/ + MSG_ID_DE5 = 0xde5, +/*20181031 to latest +사망 +*/ + MSG_ID_DE6 = 0xde6, +/*20181031 to latest +PvP +*/ + MSG_ID_DE7 = 0xde7, +/*20181031 to latest +아이템 소지 확장 +*/ + MSG_ID_DE8 = 0xde8, +/*20181031 to 20181031 +(^0000ff%s^000000)을 소모하여, 아이템 최대 소지 종류수를 확장하시겠습니까? +(^0000ff%d^000000)에서 (^0000ff%d^000000)로 확장됩니다. +^ff0000※ 소모된 아이템 및 확장된 최대 소지 종류수는 되돌릴 수 없습니다.^000000 +20181107 to latest +^0000ff%s^000000을 소모하여, 아이템 최대 소지 종류수를 확장하시겠습니까? +(^0000ff%d^000000)에서 (^0000ff%d^000000)로 확장됩니다. +^ff0000※ 소모된 아이템 및 확장된 최대 소지 종류수는 되돌릴 수 없습니다.^000000 +*/ + MSG_ID_DE9 = 0xde9, +/*20181031 to 20181031 +아이템 소지 종류 수 확장에 실패하였습니다. +20181107 to latest +아이템 최대 소지 종류수 확장에 실패하였습니다. +*/ + MSG_ID_DEA = 0xdea, +/*20181031 to 20181031 +아이템 소지 종류 수 확장을 위해, 다른 작업을 종료하여 주시기 바랍니다. +20181107 to latest +아이템 최대 소지 종류수 확장을 위해, 다른 작업을 종료하여 주시기 바랍니다. +*/ + MSG_ID_DEB = 0xdeb, +/*20181031 to 20181031 +아이템 소지 확장에 필요한 아이템을 소지하고 있지 않습니다. +20181107 to latest +아이템 최대 소지 종류수 확장에 필요한 아이템을 소지하고 있지 않습니다. +*/ + MSG_ID_DEC = 0xdec, +/*20181031 to 20181031 +이미 아이템 소지 종류 수 확장이 최대로 적용 중입니다. +20181107 to latest +더 이상 아이템 최대 소지 종류수를 확장 할 수 없습니다. +*/ + MSG_ID_DED = 0xded, +/*20181031 to 20181031 +아이템 소지 확장에 성공하였습니다. +20181107 to latest +아이템 최대 소지 종류수 확장에 성공하였습니다. +*/ + MSG_ID_DEE = 0xdee, +#endif +#if PACKETVER >= 20181121 +/*20181121 to latest +같은 아이템을 %d개 이상 가질 수 없습니다. +*/ + MSG_ID_DEF = 0xdef, +/*20181121 to latest +소지 한계량 초과로 구입이 불가능합니다. +*/ + MSG_ID_DF0 = 0xdf0, +/*20181121 to latest +해당 아이템은 한 번에 한 개만 살 수 있습니다. +*/ + MSG_ID_DF1 = 0xdf1, +#endif +#if PACKETVER >= 20181205 +/*20181205 to latest +성제 +*/ + MSG_ID_DF2 = 0xdf2, +/*20181205 to latest +소울리퍼 +*/ + MSG_ID_DF3 = 0xdf3, +#endif +#if PACKETVER >= 20181212 +/*20181212 to latest +설정한 내용은 정상 종료 시 서버에 저장됩니다. +*/ + MSG_ID_DF4 = 0xdf4, +#endif }; #endif /* MAP_MESSAGES_RE_H */ diff --git a/src/map/messages_zero.h b/src/map/messages_zero.h index c562bb07c..f7f4cf360 100644 --- a/src/map/messages_zero.h +++ b/src/map/messages_zero.h @@ -3,6 +3,7 @@ * http://herc.ws - http://github.com/HerculesWS/Hercules * * Copyright (C) 2013-2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,7 +24,7 @@ /* This file is autogenerated, please do not commit manual changes -Latest version: 20180919 +Latest version: 20181212 */ enum clif_messages { @@ -4382,9 +4383,11 @@ Thief Knight */ MSG_KNIGHT = 0x364, -/*20171018 to latest +/*20171018 to 20181128 Prieset Priest +20181212 to latest +Priest */ MSG_PRIEST = 0x365, /*20171018 to latest @@ -4959,9 +4962,11 @@ WhiteSmith Sniper */ MSG_HUNTER_H = 0x3dc, -/*20171018 to latest +/*20171018 to 20181128 Saaassin Cross Assassin Cross +20181212 to latest +Assassin Cross */ MSG_ASSASSIN_H = 0x3dd, /*20171018 to latest @@ -4989,9 +4994,11 @@ Sniper_W Sniper */ MSG_HUNTER_H_W = 0x3e2, -/*20171018 to latest +/*20171018 to 20181128 Saaassin Cross_W Assassin Cross +20181212 to latest +Assassin Cross_W */ MSG_ASSASSIN_H_W = 0x3e3, /*20171018 to latest @@ -13926,9 +13933,11 @@ DEATH : %.1f%% ( basic 100.0%% VIP Bonus %.1f%% + %s %.1f%%) DEATH: %.1f%% (Basic 100.0%% VIP Bonus %.1f%% + %s %.1f%%) */ MSG_ID_AFB = 0xafb, -/*20171018 to latest +/*20171018 to 20180928 해당 태그는 이름으로 사용하실 수 없습니다. Name with this tag cannot be used. +20181010 to latest + 해당 내용은 이름으로 사용하실 수 없습니다. */ MSG_ID_AFC = 0xafc, /*20171018 to latest @@ -17420,6 +17429,106 @@ Search */ MSG_ID_DDD = 0xddd, #endif +#if PACKETVER >= 20181024 +/*20181024 to latest +펫 먹이주기에 실패했습니다. 먹이를 줄 수 없는 상태입니다. +*/ + MSG_ID_DDE = 0xdde, +/*20181024 to latest +호문 먹이주기에 실패했습니다. 먹이를 줄 수 없는 상태입니다. +*/ + MSG_ID_DDF = 0xddf, +/*20181024 to latest +화폐 +*/ + MSG_ID_DE0 = 0xde0, +/*20181024 to latest +%s %d개 +*/ + MSG_ID_DE1 = 0xde1, +/*20181024 to latest +교환에 실패하였습니다. +*/ + MSG_ID_DE2 = 0xde2, +/*20181024 to latest +교환이 잘 이루어졌습니다. +*/ + MSG_ID_DE3 = 0xde3, +/*20181024 to latest +교환에 필요한 재화가 부족합니다. +*/ + MSG_ID_DE4 = 0xde4, +/*20181024 to latest +해당 아이템은 이미 판매되어 재고가 부족합니다. +*/ + MSG_ID_DE5 = 0xde5, +/*20181024 to latest +사망 +*/ + MSG_ID_DE6 = 0xde6, +/*20181024 to latest +PvP +*/ + MSG_ID_DE7 = 0xde7, +#endif +#if PACKETVER >= 20181114 +/*20181114 to latest +아이템 소지 확장 +*/ + MSG_ID_DE8 = 0xde8, +/*20181114 to latest +^0000ff%s^000000을 소모하여, 아이템 최대 소지 종류수를 확장하시겠습니까? +(^0000ff%d^000000)에서 (^0000ff%d^000000)로 확장됩니다. +^ff0000※ 소모된 아이템 및 확장된 최대 소지 종류수는 되돌릴 수 없습니다.^000000 +*/ + MSG_ID_DE9 = 0xde9, +/*20181114 to latest +아이템 최대 소지 종류수 확장에 실패하였습니다. +*/ + MSG_ID_DEA = 0xdea, +/*20181114 to latest +아이템 최대 소지 종류수 확장을 위해, 다른 작업을 종료하여 주시기 바랍니다. +*/ + MSG_ID_DEB = 0xdeb, +/*20181114 to latest +아이템 최대 소지 종류수 확장에 필요한 아이템을 소지하고 있지 않습니다. +*/ + MSG_ID_DEC = 0xdec, +/*20181114 to latest +더 이상 아이템 최대 소지 종류수를 확장 할 수 없습니다. +*/ + MSG_ID_DED = 0xded, +/*20181114 to latest +아이템 최대 소지 종류수 확장에 성공하였습니다. +*/ + MSG_ID_DEE = 0xdee, +/*20181114 to latest +같은 아이템을 %d개 이상 가질 수 없습니다. +*/ + MSG_ID_DEF = 0xdef, +/*20181114 to latest +소지 한계량 초과로 구입이 불가능합니다. +*/ + MSG_ID_DF0 = 0xdf0, +/*20181114 to latest +해당 아이템은 한 번에 한 개만 살 수 있습니다. +*/ + MSG_ID_DF1 = 0xdf1, +#endif +#if PACKETVER >= 20181212 +/*20181212 to latest +성제 +*/ + MSG_ID_DF2 = 0xdf2, +/*20181212 to latest +소울리퍼 +*/ + MSG_ID_DF3 = 0xdf3, +/*20181212 to latest +설정한 내용은 정상 종료 시 서버에 저장됩니다. +*/ + MSG_ID_DF4 = 0xdf4, +#endif }; #endif /* MAP_MESSAGES_ZERO_H */ diff --git a/src/map/mob.c b/src/map/mob.c index 765acafe7..d82e49bcc 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2546,7 +2546,7 @@ static int mob_dead(struct mob_data *md, struct block_list *src, int type) if(sd) { // process script-granted extra drop bonuses int itemid = 0; - for (i = 0; i < ARRAYLENGTH(sd->add_drop) && (sd->add_drop[i].id || sd->add_drop[i].group); i++) + for (i = 0; i < ARRAYLENGTH(sd->add_drop) && (sd->add_drop[i].id != 0 || sd->add_drop[i].is_group); i++) { if ( sd->add_drop[i].race == -md->class_ || ( sd->add_drop[i].race > 0 && ( @@ -2568,7 +2568,7 @@ static int mob_dead(struct mob_data *md, struct block_list *src, int type) if (rnd()%10000 >= drop_rate) continue; - itemid = (sd->add_drop[i].id > 0) ? sd->add_drop[i].id : itemdb->chain_item(sd->add_drop[i].group,&drop_rate); + itemid = (!sd->add_drop[i].is_group) ? sd->add_drop[i].id : itemdb->chain_item(sd->add_drop[i].id, &drop_rate); if( itemid ) mob->item_drop(md, dlist, mob->setdropitem(itemid,1,NULL), 0, drop_rate, homkillonly); } diff --git a/src/map/npc.c b/src/map/npc.c index a8bf7d371..fd11b6c5f 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -1948,7 +1948,11 @@ static int npc_buylist(struct map_session_data *sd, struct itemlist *item_list) break; case ADDITEM_OVERAMOUNT: +#if PACKETVER >= 20110705 + return 9; +#else return 2; +#endif } value = pc->modifybuyvalue(sd,value); @@ -2231,7 +2235,7 @@ static int npc_selllist(struct map_session_data *sd, struct itemlist *item_list) struct itemlist_entry *entry = &VECTOR_INDEX(*item_list, i); int nameid, value, idx = entry->id; - if (idx >= MAX_INVENTORY || idx < 0 || entry->amount < 0) { + if (idx >= sd->status.inventorySize || idx < 0 || entry->amount < 0) { return 1; } @@ -4971,6 +4975,7 @@ static int npc_reload(void) npc->npc_mob = npc->npc_cache_mob = npc->npc_delay_mob = 0; // reset mapflags + map->zone_reload(); map->flags_init(); // Reprocess npc files and reload constants @@ -4980,7 +4985,6 @@ static int npc_reload(void) instance->reload(); - map->zone_reload(); map->zone_init(); npc->motd = npc->name2id("HerculesMOTD"); /* [Ind/Hercules] */ diff --git a/src/map/packets.h b/src/map/packets.h index a897601b3..81b861f78 100644 --- a/src/map/packets.h +++ b/src/map/packets.h @@ -24,2990 +24,1623 @@ #define MAP_PACKETS_H #ifndef packet - #define packet(a,b,...) + #define packet(a,...) #endif /* * packet syntax - * - packet(packet_id,length) + * - packet(packet_id) * OR - * - packet(packet_id,length,function,offset ( specifies the offset of a packet field in bytes from the begin of the packet ),...) - * - Example: packet(0x0072,19,clif->pWantToConnection,2,6,10,14,18); + * - packet(packet_id,function,offset ( specifies the offset of a packet field in bytes from the begin of the packet),...) + * - Example: packet(0x0072,clif->pWantToConnection,2,6,10,14,18); */ -packet(0x0064,55); -packet(0x0065,17); -packet(0x0066,6); -packet(0x0067,37); -packet(0x0068,46); -packet(0x0069,-1); -packet(0x006a,23); -packet(0x006b,-1); -packet(0x006c,3); -packet(0x006d,108); -packet(0x006e,3); -packet(0x006f,2); -packet(0x0070,6); -packet(0x0071,28); -packet(0x0072,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER -packet(0x0073,11); -packet(0x0074,3); -packet(0x0075,-1); -packet(0x0076,9); -packet(0x0077,5); -packet(0x0078,54); -packet(0x0079,53); -packet(0x007a,58); -packet(0x007b,60); -packet(0x007c,41); -packet(0x007d,2,clif->pLoadEndAck,0); -packet(0x007e,6,clif->pTickSend,2); // CZ_REQUEST_TIME -packet(0x007f,6); -packet(0x0080,7); -packet(0x0081,3); -packet(0x0082,2); -packet(0x0083,2); -packet(0x0084,2); -packet(0x0085,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE -packet(0x0086,16); -packet(0x0087,12); -packet(0x0088,10); -packet(0x0089,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT -packet(0x008a,29); -packet(0x008b,2); -packet(0x008c,-1,clif->pGlobalMessage,2,4); -packet(0x008d,-1); -packet(0x008e,-1); -//packet(0x008f,-1); -packet(0x0090,7,clif->pNpcClicked,2); -packet(0x0091,22); // ZC_NPCACK_MAPMOVE -packet(0x0092,28); // ZC_NPCACK_SERVERMOVE -packet(0x0093,2); -packet(0x0094,6,clif->pGetCharNameRequest,2); // CZ_REQNAME -packet(0x0095,30); -packet(0x0096,-1,clif->pWisMessage,2,4,28); -packet(0x0097,-1); -packet(0x0098,3); -packet(0x0099,-1,clif->pBroadcast,2,4); -packet(0x009a,-1); -packet(0x009b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION -packet(0x009c,9); -packet(0x009d,17); -packet(0x009e,17); -packet(0x009f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP -packet(0x00a0,23); -packet(0x00a1,6); -packet(0x00a2,6,clif->pDropItem,2,4); // CZ_ITEM_THROW -packet(0x00a3,-1); -packet(0x00a4,-1); -packet(0x00a5,-1); -packet(0x00a6,-1); -packet(0x00a7,8,clif->pUseItem,2,4); -packet(0x00a8,7); -packet(0x00a9,6,clif->pEquipItem,2,4); -packet(0x00aa,7); -packet(0x00ab,4,clif->pUnequipItem,2); -packet(0x00ac,7); -//packet(0x00ad,-1); -packet(0x00ae,-1); -packet(0x00af,6); -packet(0x00b0,8); -packet(0x00b1,8); -packet(0x00b2,3,clif->pRestart,2); -packet(0x00b3,3); -packet(0x00b4,-1); -packet(0x00b5,6); -packet(0x00b6,6); -packet(0x00b7,-1); -packet(0x00b8,7,clif->pNpcSelectMenu,2,6); -packet(0x00b9,6,clif->pNpcNextClicked,2); -packet(0x00ba,2); -packet(0x00bb,5,clif->pStatusUp,2,4); -packet(0x00bc,6); -packet(0x00bd,44); -packet(0x00be,5); -packet(0x00bf,3,clif->pEmotion,2); -packet(0x00c0,7); -packet(0x00c1,2,clif->pHowManyConnections,0); -packet(0x00c2,6); -packet(0x00c3,8); -packet(0x00c4,6); -packet(0x00c5,7,clif->pNpcBuySellSelected,2,6); -packet(0x00c6,-1); -packet(0x00c7,-1); -packet(0x00c8,-1,clif->pNpcBuyListSend,2,4); -packet(0x00c9,-1,clif->pNpcSellListSend,2,4); -packet(0x00ca,3); -packet(0x00cb,3); -packet(0x00cc,6,clif->pGMKick,2); -packet(0x00cd,3); -packet(0x00ce,2,clif->pGMKickAll,0); -packet(0x00cf,27,clif->pPMIgnore,2,26); -packet(0x00d0,3,clif->pPMIgnoreAll,2); -packet(0x00d1,4); -packet(0x00d2,4); -packet(0x00d3,2,clif->pPMIgnoreList,0); -packet(0x00d4,-1); -packet(0x00d5,-1,clif->pCreateChatRoom,2,4,6,7,15); -packet(0x00d6,3); -packet(0x00d7,-1); -packet(0x00d8,6); -packet(0x00d9,14,clif->pChatAddMember,2,6); -packet(0x00da,3); -packet(0x00db,-1); -packet(0x00dc,28); -packet(0x00dd,29); -packet(0x00de,-1,clif->pChatRoomStatusChange,2,4,6,7,15); -packet(0x00df,-1); -packet(0x00e0,30,clif->pChangeChatOwner,2,6); -packet(0x00e1,30); -packet(0x00e2,26,clif->pKickFromChat,2); -packet(0x00e3,2,clif->pChatLeave,0); -packet(0x00e4,6,clif->pTradeRequest,2); -packet(0x00e5,26); -packet(0x00e6,3,clif->pTradeAck,2); -packet(0x00e7,3); -packet(0x00e8,8,clif->pTradeAddItem,2,4); -packet(0x00e9,19); -packet(0x00ea,5); -packet(0x00eb,2,clif->pTradeOk,0); -packet(0x00ec,3); -packet(0x00ed,2,clif->pTradeCancel,0); -packet(0x00ee,2); -packet(0x00ef,2,clif->pTradeCommit,0); -packet(0x00f0,3); -packet(0x00f1,2); -packet(0x00f2,6); -packet(0x00f3,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE -packet(0x00f4,21); -packet(0x00f5,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY -packet(0x00f6,8); -packet(0x00f7,2,clif->pCloseKafra,0); -packet(0x00f8,2); -packet(0x00f9,26,clif->pCreateParty,2); -packet(0x00fa,3); -packet(0x00fb,-1); -packet(0x00fc,6,clif->pPartyInvite,2); -packet(0x00fd,27); -packet(0x00fe,30); -packet(0x00ff,10,clif->pReplyPartyInvite,2,6); -packet(0x0100,2,clif->pLeaveParty,0); -packet(0x0101,6); -packet(0x0102,6,clif->pPartyChangeOption,2); -packet(0x0103,30,clif->pRemovePartyMember,2,6); -packet(0x0104,79); -packet(0x0105,31); -packet(0x0106,10); -packet(0x0107,10); -packet(0x0108,-1,clif->pPartyMessage,2,4); -packet(0x0109,-1); -packet(0x010a,4); -packet(0x010b,6); -packet(0x010c,6); -packet(0x010d,2); -packet(0x010e,11); -packet(0x010f,-1); -packet(0x0110,10); -packet(0x0111,39); -packet(0x0112,4,clif->pSkillUp,2); -packet(0x0113,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL -packet(0x0114,31); -packet(0x0115,35); -packet(0x0116,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND -packet(0x0117,18); -packet(0x0118,2,clif->pStopAttack,0); -packet(0x0119,13); -packet(0x011a,15); -packet(0x011b,20,clif->pUseSkillMap,2,4); -packet(0x011c,68); // ZC_WARPLIST -packet(0x011d,2,clif->pRequestMemo,0); -packet(0x011e,3); -packet(0x011f,16); -packet(0x0120,6); -packet(0x0121,14); -packet(0x0122,-1); -packet(0x0123,-1); -packet(0x0124,21); -packet(0x0125,8); -packet(0x0126,8,clif->pPutItemToCart,2,4); -packet(0x0127,8,clif->pGetItemFromCart,2,4); -packet(0x0128,8,clif->pMoveFromKafraToCart,2,4); -packet(0x0129,8,clif->pMoveToKafraFromCart,2,4); -packet(0x012a,2,clif->pRemoveOption,0); -packet(0x012b,2); -packet(0x012c,3); -packet(0x012d,4); -packet(0x012e,2,clif->pCloseVending,0); -packet(0x012f,-1); -packet(0x0130,6,clif->pVendingListReq,2); -packet(0x0131,86); -packet(0x0132,6); -packet(0x0133,-1); -packet(0x0134,-1,clif->pPurchaseReq,2,4,8); -packet(0x0135,7); -packet(0x0136,-1); -packet(0x0137,6); -packet(0x0138,3); -packet(0x0139,16); -packet(0x013a,4); -packet(0x013b,4); -packet(0x013c,4); -packet(0x013d,6); -packet(0x013e,24); -packet(0x013f,26,clif->pGM_Monster_Item,2); -packet(0x0140,22,clif->pMapMove,2,18,20); -packet(0x0141,14); -packet(0x0142,6); -packet(0x0143,10,clif->pNpcAmountInput,2,6); -packet(0x0144,23); -packet(0x0145,19); -packet(0x0146,6,clif->pNpcCloseClicked,2); -packet(0x0147,39); -packet(0x0148,8); -packet(0x0149,9,clif->pGMReqNoChat,2,6,7); -packet(0x014a,6); -packet(0x014b,27); -packet(0x014c,-1); -packet(0x014d,2,clif->pGuildCheckMaster,0); -packet(0x014e,6); -packet(0x014f,6,clif->pGuildRequestInfo,2); -packet(0x0150,110); -packet(0x0151,6,clif->pGuildRequestEmblem,2); -packet(0x0152,-1); -packet(0x0153,-1,clif->pGuildChangeEmblem,2,4); -packet(0x0154,-1); -packet(0x0155,-1,clif->pGuildChangeMemberPosition,2); -packet(0x0156,-1); -packet(0x0157,6); -packet(0x0158,-1); -packet(0x0159,54,clif->pGuildLeave,2,6,10,14); -packet(0x015a,66); -packet(0x015b,54,clif->pGuildExpulsion,2,6,10,14); -packet(0x015c,90); -packet(0x015d,42,clif->pGuildBreak,2); -packet(0x015e,6); -packet(0x015f,42); -packet(0x0160,-1); -packet(0x0161,-1,clif->pGuildChangePositionInfo,2); -packet(0x0162,-1); -packet(0x0163,-1); -packet(0x0164,-1); -packet(0x0165,30,clif->pCreateGuild,6); -packet(0x0166,-1); -packet(0x0167,3); -packet(0x0168,14,clif->pGuildInvite,2); -packet(0x0169,3); -packet(0x016a,30); -packet(0x016b,10,clif->pGuildReplyInvite,2,6); -packet(0x016c,43); -packet(0x016d,14); -packet(0x016e,186,clif->pGuildChangeNotice,2,6,66); -packet(0x016f,182); -packet(0x0170,14,clif->pGuildRequestAlliance,2); -packet(0x0171,30); -packet(0x0172,10,clif->pGuildReplyAlliance,2,6); -packet(0x0173,3); -packet(0x0174,-1); -packet(0x0175,6); -packet(0x0176,106); -packet(0x0177,-1); -packet(0x0178,4,clif->pItemIdentify,2); -packet(0x0179,5); -packet(0x017a,4,clif->pUseCard,2); -packet(0x017b,-1); -packet(0x017c,6,clif->pInsertCard,2,4); -packet(0x017d,7); -packet(0x017e,-1,clif->pGuildMessage,2,4); -packet(0x017f,-1); -packet(0x0180,6,clif->pGuildOpposition,2); -packet(0x0181,3); -packet(0x0182,106); -packet(0x0183,10,clif->pGuildDelAlliance,2,6); -packet(0x0184,10); -packet(0x0185,34); -//packet(0x0186,-1); -packet(0x0187,6); -packet(0x0188,8); -packet(0x0189,4); -packet(0x018a,4,clif->pQuitGame,0); -packet(0x018b,4); -packet(0x018c,29); -packet(0x018d,-1); -packet(0x018e,10,clif->pProduceMix,2,4,6,8); -packet(0x018f,6); -packet(0x0190,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX -packet(0x0191,86); -packet(0x0192,24); -packet(0x0193,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID -packet(0x0194,30); -packet(0x0195,102); -packet(0x0196,9); -packet(0x0197,4,clif->pResetChar,2); -packet(0x0198,8,clif->pGMChangeMapType,2,4,6); -packet(0x0199,4); -packet(0x019a,14); -packet(0x019b,10); -packet(0x019c,-1,clif->pLocalBroadcast,2,4); -packet(0x019d,6,clif->pGMHide,0); -packet(0x019e,2); -packet(0x019f,6,clif->pCatchPet,2); -packet(0x01a0,3); -packet(0x01a1,3,clif->pPetMenu,2); -packet(0x01a2,35); -packet(0x01a3,5); -packet(0x01a4,11); -packet(0x01a5,26,clif->pChangePetName,2); -packet(0x01a6,-1); -packet(0x01a7,4,clif->pSelectEgg,2); -packet(0x01a8,4); -packet(0x01a9,6,clif->pSendEmotion,2); -packet(0x01aa,10); -packet(0x01ab,12); -packet(0x01ac,6); -packet(0x01ad,-1); -packet(0x01ae,4,clif->pSelectArrow,2); -packet(0x01af,4,clif->pChangeCart,2); -packet(0x01b0,11); -packet(0x01b1,7); -packet(0x01b2,-1,clif->pOpenVending,2,4,84,85); -packet(0x01b3,67); -packet(0x01b4,12); -packet(0x01b5,18); -packet(0x01b6,114); -packet(0x01b7,6); -packet(0x01b8,3); -packet(0x01b9,6); -packet(0x01ba,26,clif->pGMShift,2); -packet(0x01bb,26,clif->pGMShift,2); -packet(0x01bc,26,clif->pGMRecall,2); -packet(0x01bd,26,clif->pGMRecall,2); -packet(0x01be,2); -packet(0x01bf,3); -packet(0x01c0,2); -packet(0x01c1,14); -packet(0x01c2,10); -packet(0x01c3,-1); -packet(0x01c4,22); -packet(0x01c5,22); -packet(0x01c6,4); -packet(0x01c7,2); -packet(0x01c8,13); -packet(0x01c9,97); -//packet(0x01ca,-1); -packet(0x01cb,9); -packet(0x01cc,9); -packet(0x01cd,30); -packet(0x01ce,6,clif->pAutoSpell,2); -packet(0x01cf,28); -packet(0x01d0,8); -packet(0x01d1,14); -packet(0x01d2,10); -packet(0x01d3,35); -packet(0x01d4,6); -packet(0x01d5,-1,clif->pNpcStringInput,2,4,8); -packet(0x01d6,4); -packet(0x01d7,11); -packet(0x01d8,54); -packet(0x01d9,53); -packet(0x01da,60); -packet(0x01db,2); -packet(0x01dc,-1); -packet(0x01dd,47); -packet(0x01de,33); -packet(0x01df,6,clif->pGMReqAccountName,2); -packet(0x01e0,30); -packet(0x01e1,8); -packet(0x01e2,34); -packet(0x01e3,14); -packet(0x01e4,2); -packet(0x01e5,6); -packet(0x01e6,26); -packet(0x01e7,2,clif->pNoviceDoriDori,0); -packet(0x01e8,28,clif->pCreateParty2,2); -packet(0x01e9,81); -packet(0x01ea,6); -packet(0x01eb,10); -packet(0x01ec,26); -packet(0x01ed,2,clif->pNoviceExplosionSpirits,0); -packet(0x01ee,-1); -packet(0x01ef,-1); -packet(0x01f0,-1); -packet(0x01f1,-1); -packet(0x01f2,20); -packet(0x01f3,10); -packet(0x01f4,32); -packet(0x01f5,9); -packet(0x01f6,34); -packet(0x01f7,14,clif->pAdopt_reply,0); -packet(0x01f8,2); -packet(0x01f9,6,clif->pAdopt_request,0); -packet(0x01fa,48); -packet(0x01fb,56); -packet(0x01fc,-1); -packet(0x01fd,4,clif->pRepairItem,2); -packet(0x01fe,5); -packet(0x01ff,10); -packet(0x0200,26); -packet(0x0201,-1); -packet(0x0202,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS -packet(0x0203,10,clif->pFriendsListRemove,2,6); -packet(0x0204,18); -packet(0x0205,26); -packet(0x0206,11); -packet(0x0207,34); -packet(0x0208,11,clif->pFriendsListReply,2,6,10); -packet(0x0209,36); -packet(0x020a,10); -//packet(0x020b,-1); -//packet(0x020c,-1); -packet(0x020d,-1); -packet(0x974,2,clif->cancelmergeitem); -packet(0x96e,-1,clif->ackmergeitems); +packet(0x0072,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER +packet(0x007d,clif->pLoadEndAck,0); +packet(0x007e,clif->pTickSend,2); // CZ_REQUEST_TIME +packet(0x0085,clif->pWalkToXY,2); // CZ_REQUEST_MOVE +packet(0x0089,clif->pActionRequest,2,6); // CZ_REQUEST_ACT +packet(0x008c,clif->pGlobalMessage,2,4); +packet(0x0090,clif->pNpcClicked,2); +packet(0x0094,clif->pGetCharNameRequest,2); // CZ_REQNAME +packet(0x0096,clif->pWisMessage,2,4,28); +packet(0x0099,clif->pBroadcast,2,4); +packet(0x009b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION +packet(0x009f,clif->pTakeItem,2); // CZ_ITEM_PICKUP +packet(0x00a2,clif->pDropItem,2,4); // CZ_ITEM_THROW +packet(0x00a7,clif->pUseItem,2,4); +packet(0x00a9,clif->pEquipItem,2,4); +packet(0x00ab,clif->pUnequipItem,2); +packet(0x00b2,clif->pRestart,2); +packet(0x00b8,clif->pNpcSelectMenu,2,6); +packet(0x00b9,clif->pNpcNextClicked,2); +packet(0x00bb,clif->pStatusUp,2,4); +packet(0x00bf,clif->pEmotion,2); +packet(0x00c1,clif->pHowManyConnections,0); +packet(0x00c5,clif->pNpcBuySellSelected,2,6); +packet(0x00c8,clif->pNpcBuyListSend,2,4); +packet(0x00c9,clif->pNpcSellListSend,2,4); +packet(0x00cc,clif->pGMKick,2); +packet(0x00ce,clif->pGMKickAll,0); +packet(0x00cf,clif->pPMIgnore,2,26); +packet(0x00d0,clif->pPMIgnoreAll,2); +packet(0x00d3,clif->pPMIgnoreList,0); +packet(0x00d5,clif->pCreateChatRoom,2,4,6,7,15); +packet(0x00d9,clif->pChatAddMember,2,6); +packet(0x00de,clif->pChatRoomStatusChange,2,4,6,7,15); +packet(0x00e0,clif->pChangeChatOwner,2,6); +packet(0x00e2,clif->pKickFromChat,2); +packet(0x00e3,clif->pChatLeave,0); +packet(0x00e4,clif->pTradeRequest,2); +packet(0x00e6,clif->pTradeAck,2); +packet(0x00e8,clif->pTradeAddItem,2,4); +packet(0x00eb,clif->pTradeOk,0); +packet(0x00ed,clif->pTradeCancel,0); +packet(0x00ef,clif->pTradeCommit,0); +packet(0x00f3,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE +packet(0x00f5,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY +packet(0x00f7,clif->pCloseKafra,0); +packet(0x00f9,clif->pCreateParty,2); +packet(0x00fc,clif->pPartyInvite,2); +packet(0x00ff,clif->pReplyPartyInvite,2,6); +packet(0x0100,clif->pLeaveParty,0); +packet(0x0102,clif->pPartyChangeOption,2); +packet(0x0103,clif->pRemovePartyMember,2,6); +packet(0x0108,clif->pPartyMessage,2,4); +packet(0x0112,clif->pSkillUp,2); +packet(0x0113,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL +packet(0x0116,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND +packet(0x0118,clif->pStopAttack,0); +packet(0x011b,clif->pUseSkillMap,2,4); +packet(0x011d,clif->pRequestMemo,0); +packet(0x0126,clif->pPutItemToCart,2,4); +packet(0x0127,clif->pGetItemFromCart,2,4); +packet(0x0128,clif->pMoveFromKafraToCart,2,4); +packet(0x0129,clif->pMoveToKafraFromCart,2,4); +packet(0x012a,clif->pRemoveOption,0); +packet(0x012e,clif->pCloseVending,0); +packet(0x0130,clif->pVendingListReq,2); +packet(0x0134,clif->pPurchaseReq,2,4,8); +packet(0x013f,clif->pGM_Monster_Item,2); +packet(0x0140,clif->pMapMove,2,18,20); +packet(0x0143,clif->pNpcAmountInput,2,6); +packet(0x0146,clif->pNpcCloseClicked,2); +packet(0x0149,clif->pGMReqNoChat,2,6,7); +packet(0x014d,clif->pGuildCheckMaster,0); +packet(0x014f,clif->pGuildRequestInfo,2); +packet(0x0151,clif->pGuildRequestEmblem,2); +packet(0x0153,clif->pGuildChangeEmblem,2,4); +packet(0x0155,clif->pGuildChangeMemberPosition,2); +packet(0x0159,clif->pGuildLeave,2,6,10,14); +packet(0x015b,clif->pGuildExpulsion,2,6,10,14); +packet(0x015d,clif->pGuildBreak,2); +packet(0x0161,clif->pGuildChangePositionInfo,2); +packet(0x0165,clif->pCreateGuild,6); +packet(0x0168,clif->pGuildInvite,2); +packet(0x016b,clif->pGuildReplyInvite,2,6); +packet(0x016e,clif->pGuildChangeNotice,2,6,66); +packet(0x0170,clif->pGuildRequestAlliance,2); +packet(0x0172,clif->pGuildReplyAlliance,2,6); +packet(0x0178,clif->pItemIdentify,2); +packet(0x017a,clif->pUseCard,2); +packet(0x017c,clif->pInsertCard,2,4); +packet(0x017e,clif->pGuildMessage,2,4); +packet(0x0180,clif->pGuildOpposition,2); +packet(0x0183,clif->pGuildDelAlliance,2,6); +packet(0x018a,clif->pQuitGame,0); +packet(0x018e,clif->pProduceMix,2,4,6,8); +packet(0x0190,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX +packet(0x0193,clif->pSolveCharName,2); // CZ_REQNAME_BYGID +packet(0x0197,clif->pResetChar,2); +packet(0x0198,clif->pGMChangeMapType,2,4,6); +packet(0x019c,clif->pLocalBroadcast,2,4); +packet(0x019d,clif->pGMHide,0); +packet(0x019f,clif->pCatchPet,2); +packet(0x01a1,clif->pPetMenu,2); +packet(0x01a5,clif->pChangePetName,2); +packet(0x01a7,clif->pSelectEgg,2); +packet(0x01a9,clif->pSendEmotion,2); +packet(0x01ae,clif->pSelectArrow,2); +packet(0x01af,clif->pChangeCart,2); +packet(0x01b2,clif->pOpenVending,2,4,84,85); +packet(0x01ba,clif->pGMShift,2); +packet(0x01bb,clif->pGMShift,2); +packet(0x01bc,clif->pGMRecall,2); +packet(0x01bd,clif->pGMRecall,2); +packet(0x01c0,clif->pReqRemainTime); +packet(0x01ce,clif->pAutoSpell,2); +packet(0x01d5,clif->pNpcStringInput,2,4,8); +packet(0x01df,clif->pGMReqAccountName,2); +packet(0x01e7,clif->pNoviceDoriDori,0); +packet(0x01e8,clif->pCreateParty2,2); +packet(0x01ed,clif->pNoviceExplosionSpirits,0); +packet(0x01f7,clif->pAdopt_reply,0); +packet(0x01f9,clif->pAdopt_request,0); +packet(0x01fd,clif->pRepairItem,2); +packet(0x0202,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS +packet(0x0203,clif->pFriendsListRemove,2,6); +packet(0x0208,clif->pFriendsListReply,2,6,10); +packet(0x974,clif->cancelmergeitem); +packet(0x96e,clif->ackmergeitems); //2004-07-05aSakexe #if PACKETVER >= 20040705 - packet(0x0072,22,clif->pWantToConnection,5,9,13,17,21); - packet(0x0085,8,clif->pWalkToXY,5); - packet(0x00a7,13,clif->pUseItem,5,9); - packet(0x0113,15,clif->pUseSkillToId,4,9,11); - packet(0x0116,15,clif->pUseSkillToPos,4,9,11,13); - packet(0x0190,95,clif->pUseSkillToPosMoreInfo,4,9,11,13,15); - packet(0x0208,14,clif->pFriendsListReply,2,6,10); - packet(0x020e,24); + packet(0x0072,clif->pWantToConnection,5,9,13,17,21); + packet(0x0085,clif->pWalkToXY,5); + packet(0x00a7,clif->pUseItem,5,9); + packet(0x0113,clif->pUseSkillToId,4,9,11); + packet(0x0116,clif->pUseSkillToPos,4,9,11,13); + packet(0x0190,clif->pUseSkillToPosMoreInfo,4,9,11,13,15); + packet(0x0208,clif->pFriendsListReply,2,6,10); #endif //2004-07-13aSakexe #if PACKETVER >= 20040713 - packet(0x0072,39,clif->pWantToConnection,12,22,30,34,38); - packet(0x0085,9,clif->pWalkToXY,6); - packet(0x009b,13,clif->pChangeDir,5,12); - packet(0x009f,10,clif->pTakeItem,6); - packet(0x00a7,17,clif->pUseItem,6,13); - packet(0x0113,19,clif->pUseSkillToId,7,9,15); - packet(0x0116,19,clif->pUseSkillToPos,7,9,15,17); - packet(0x0190,99,clif->pUseSkillToPosMoreInfo,7,9,15,17,19); + packet(0x0072,clif->pWantToConnection,12,22,30,34,38); + packet(0x0085,clif->pWalkToXY,6); + packet(0x009b,clif->pChangeDir,5,12); + packet(0x009f,clif->pTakeItem,6); + packet(0x00a7,clif->pUseItem,6,13); + packet(0x0113,clif->pUseSkillToId,7,9,15); + packet(0x0116,clif->pUseSkillToPos,7,9,15,17); + packet(0x0190,clif->pUseSkillToPosMoreInfo,7,9,15,17,19); #endif //2004-07-26aSakexe #if PACKETVER >= 20040726 - packet(0x0072,14,clif->pDropItem,5,12); - packet(0x007e,33,clif->pWantToConnection,12,18,24,28,32); - packet(0x0085,20,clif->pUseSkillToId,7,12,16); - packet(0x0089,15,clif->pGetCharNameRequest,11); - packet(0x008c,23,clif->pUseSkillToPos,3,6,17,21); - packet(0x0094,10,clif->pTakeItem,6); - packet(0x009b,6,clif->pWalkToXY,3); - packet(0x009f,13,clif->pChangeDir,5,12); - packet(0x00a2,103,clif->pUseSkillToPosMoreInfo,3,6,17,21,23); - packet(0x00a7,12,clif->pSolveCharName,8); - packet(0x00f3,-1,clif->pGlobalMessage,2,4); - packet(0x00f5,17,clif->pUseItem,6,12); - packet(0x00f7,10,clif->pTickSend,6); - packet(0x0113,16,clif->pMoveToKafra,5,12); - packet(0x0116,2,clif->pCloseKafra,0); - packet(0x0190,26,clif->pMoveFromKafra,10,22); - packet(0x0193,9,clif->pActionRequest,3,8); + packet(0x0072,clif->pDropItem,5,12); + packet(0x007e,clif->pWantToConnection,12,18,24,28,32); + packet(0x0085,clif->pUseSkillToId,7,12,16); + packet(0x0089,clif->pGetCharNameRequest,11); + packet(0x008c,clif->pUseSkillToPos,3,6,17,21); + packet(0x0094,clif->pTakeItem,6); + packet(0x009b,clif->pWalkToXY,3); + packet(0x009f,clif->pChangeDir,5,12); + packet(0x00a2,clif->pUseSkillToPosMoreInfo,3,6,17,21,23); + packet(0x00a7,clif->pSolveCharName,8); + packet(0x00f3,clif->pGlobalMessage,2,4); + packet(0x00f5,clif->pUseItem,6,12); + packet(0x00f7,clif->pTickSend,6); + packet(0x0113,clif->pMoveToKafra,5,12); + packet(0x0116,clif->pCloseKafra,0); + packet(0x0190,clif->pMoveFromKafra,10,22); + packet(0x0193,clif->pActionRequest,3,8); #endif //2004-08-09aSakexe #if PACKETVER >= 20040809 - packet(0x0072,17,clif->pDropItem,8,15); - packet(0x007e,37,clif->pWantToConnection,9,21,28,32,36); - packet(0x0085,26,clif->pUseSkillToId,11,18,22); - packet(0x0089,12,clif->pGetCharNameRequest,8); - packet(0x008c,40,clif->pUseSkillToPos,5,15,29,38); - packet(0x0094,13,clif->pTakeItem,9); - packet(0x009b,15,clif->pWalkToXY,12); - packet(0x009f,12,clif->pChangeDir,7,11); - packet(0x00a2,120,clif->pUseSkillToPosMoreInfo,5,15,29,38,40); - packet(0x00a7,11,clif->pSolveCharName,7); - packet(0x00f5,24,clif->pUseItem,9,20); - packet(0x00f7,13,clif->pTickSend,9); - packet(0x0113,23,clif->pMoveToKafra,5,19); - packet(0x0190,26,clif->pMoveFromKafra,11,22); - packet(0x0193,18,clif->pActionRequest,7,17); + packet(0x0072,clif->pDropItem,8,15); + packet(0x007e,clif->pWantToConnection,9,21,28,32,36); + packet(0x0085,clif->pUseSkillToId,11,18,22); + packet(0x0089,clif->pGetCharNameRequest,8); + packet(0x008c,clif->pUseSkillToPos,5,15,29,38); + packet(0x0094,clif->pTakeItem,9); + packet(0x009b,clif->pWalkToXY,12); + packet(0x009f,clif->pChangeDir,7,11); + packet(0x00a2,clif->pUseSkillToPosMoreInfo,5,15,29,38,40); + packet(0x00a7,clif->pSolveCharName,7); + packet(0x00f5,clif->pUseItem,9,20); + packet(0x00f7,clif->pTickSend,9); + packet(0x0113,clif->pMoveToKafra,5,19); + packet(0x0190,clif->pMoveFromKafra,11,22); + packet(0x0193,clif->pActionRequest,7,17); #endif //2004-08-16aSakexe #if PACKETVER >= 20040816 - packet(0x0212,26,clif->pGMRc,2); - packet(0x0213,26,clif->pCheck,2); - packet(0x0214,42); + packet(0x0212,clif->pGMRc,2); + packet(0x0213,clif->pCheck,2); #endif //2004-08-17aSakexe #if PACKETVER >= 20040817 - packet(0x020f,10,clif->pPVPInfo,2,6); - packet(0x0210,22); + packet(0x020f,clif->pPVPInfo,2,6); #endif //2004-09-06aSakexe #if PACKETVER >= 20040906 - packet(0x0072,20,clif->pUseItem,9,20); - packet(0x007e,19,clif->pMoveToKafra,3,15); - packet(0x0085,23,clif->pActionRequest,9,22); - packet(0x0089,9,clif->pWalkToXY,6); - packet(0x008c,105,clif->pUseSkillToPosMoreInfo,10,14,18,23,25); - packet(0x0094,17,clif->pDropItem,6,15); - packet(0x009b,14,clif->pGetCharNameRequest,10); - packet(0x009f,-1,clif->pGlobalMessage,2,4); - packet(0x00a2,14,clif->pSolveCharName,10); - packet(0x00a7,25,clif->pUseSkillToPos,10,14,18,23); - packet(0x00f3,10,clif->pChangeDir,4,9); - packet(0x00f5,34,clif->pWantToConnection,7,15,25,29,33); - packet(0x00f7,2,clif->pCloseKafra,0); - packet(0x0113,11,clif->pTakeItem,7); - packet(0x0116,11,clif->pTickSend,7); - packet(0x0190,22,clif->pUseSkillToId,9,15,18); - packet(0x0193,17,clif->pMoveFromKafra,3,13); + packet(0x0072,clif->pUseItem,9,20); + packet(0x007e,clif->pMoveToKafra,3,15); + packet(0x0085,clif->pActionRequest,9,22); + packet(0x0089,clif->pWalkToXY,6); + packet(0x008c,clif->pUseSkillToPosMoreInfo,10,14,18,23,25); + packet(0x0094,clif->pDropItem,6,15); + packet(0x009b,clif->pGetCharNameRequest,10); + packet(0x009f,clif->pGlobalMessage,2,4); + packet(0x00a2,clif->pSolveCharName,10); + packet(0x00a7,clif->pUseSkillToPos,10,14,18,23); + packet(0x00f3,clif->pChangeDir,4,9); + packet(0x00f5,clif->pWantToConnection,7,15,25,29,33); + packet(0x00f7,clif->pCloseKafra,0); + packet(0x0113,clif->pTakeItem,7); + packet(0x0116,clif->pTickSend,7); + packet(0x0190,clif->pUseSkillToId,9,15,18); + packet(0x0193,clif->pMoveFromKafra,3,13); #endif //2004-09-20aSakexe #if PACKETVER >= 20040920 - packet(0x0072,18,clif->pUseItem,10,14); - packet(0x007e,25,clif->pMoveToKafra,6,21); - packet(0x0085,9,clif->pActionRequest,3,8); - packet(0x0089,14,clif->pWalkToXY,11); - packet(0x008c,109,clif->pUseSkillToPosMoreInfo,16,20,23,27,29); - packet(0x0094,19,clif->pDropItem,12,17); - packet(0x009b,10,clif->pGetCharNameRequest,6); - packet(0x00a2,10,clif->pSolveCharName,6); - packet(0x00a7,29,clif->pUseSkillToPos,6,20,23,27); - packet(0x00f3,18,clif->pChangeDir,8,17); - packet(0x00f5,32,clif->pWantToConnection,10,17,23,27,31); - packet(0x0113,14,clif->pTakeItem,10); - packet(0x0116,14,clif->pTickSend,10); - packet(0x0190,14,clif->pUseSkillToId,4,7,10); - packet(0x0193,12,clif->pMoveFromKafra,4,8); + packet(0x0072,clif->pUseItem,10,14); + packet(0x007e,clif->pMoveToKafra,6,21); + packet(0x0085,clif->pActionRequest,3,8); + packet(0x0089,clif->pWalkToXY,11); + packet(0x008c,clif->pUseSkillToPosMoreInfo,16,20,23,27,29); + packet(0x0094,clif->pDropItem,12,17); + packet(0x009b,clif->pGetCharNameRequest,6); + packet(0x00a2,clif->pSolveCharName,6); + packet(0x00a7,clif->pUseSkillToPos,6,20,23,27); + packet(0x00f3,clif->pChangeDir,8,17); + packet(0x00f5,clif->pWantToConnection,10,17,23,27,31); + packet(0x0113,clif->pTakeItem,10); + packet(0x0116,clif->pTickSend,10); + packet(0x0190,clif->pUseSkillToId,4,7,10); + packet(0x0193,clif->pMoveFromKafra,4,8); #endif //2004-10-05aSakexe #if PACKETVER >= 20041005 - packet(0x0072,17,clif->pUseItem,6,13); - packet(0x007e,16,clif->pMoveToKafra,5,12); - packet(0x0089,6,clif->pWalkToXY,3); - packet(0x008c,103,clif->pUseSkillToPosMoreInfo,2,6,17,21,23); - packet(0x0094,14,clif->pDropItem,5,12); - packet(0x009b,15,clif->pGetCharNameRequest,11); - packet(0x00a2,12,clif->pSolveCharName,8); - packet(0x00a7,23,clif->pUseSkillToPos,3,6,17,21); - packet(0x00f3,13,clif->pChangeDir,5,12); - packet(0x00f5,33,clif->pWantToConnection,12,18,24,28,32); - packet(0x0113,10,clif->pTakeItem,6); - packet(0x0116,10,clif->pTickSend,6); - packet(0x0190,20,clif->pUseSkillToId,7,12,16); - packet(0x0193,26,clif->pMoveFromKafra,10,22); + packet(0x0072,clif->pUseItem,6,13); + packet(0x007e,clif->pMoveToKafra,5,12); + packet(0x0089,clif->pWalkToXY,3); + packet(0x008c,clif->pUseSkillToPosMoreInfo,2,6,17,21,23); + packet(0x0094,clif->pDropItem,5,12); + packet(0x009b,clif->pGetCharNameRequest,11); + packet(0x00a2,clif->pSolveCharName,8); + packet(0x00a7,clif->pUseSkillToPos,3,6,17,21); + packet(0x00f3,clif->pChangeDir,5,12); + packet(0x00f5,clif->pWantToConnection,12,18,24,28,32); + packet(0x0113,clif->pTakeItem,6); + packet(0x0116,clif->pTickSend,6); + packet(0x0190,clif->pUseSkillToId,7,12,16); + packet(0x0193,clif->pMoveFromKafra,10,22); #endif //2004-10-25aSakexe #if PACKETVER >= 20041025 - packet(0x0072,13,clif->pUseItem,5,9); - packet(0x007e,13,clif->pMoveToKafra,6,9); - packet(0x0085,15,clif->pActionRequest,4,14); - packet(0x008c,108,clif->pUseSkillToPosMoreInfo,6,9,23,26,28); - packet(0x0094,12,clif->pDropItem,6,10); - packet(0x009b,10,clif->pGetCharNameRequest,6); - packet(0x00a2,16,clif->pSolveCharName,12); - packet(0x00a7,28,clif->pUseSkillToPos,6,9,23,26); - packet(0x00f3,15,clif->pChangeDir,6,14); - packet(0x00f5,29,clif->pWantToConnection,5,14,20,24,28); - packet(0x0113,9,clif->pTakeItem,5); - packet(0x0116,9,clif->pTickSend,5); - packet(0x0190,26,clif->pUseSkillToId,4,10,22); - packet(0x0193,22,clif->pMoveFromKafra,12,18); -#endif - -//2004-11-01aSakexe -#if PACKETVER >= 20041101 - packet(0x0084,-1); - packet(0x0215,6); + packet(0x0072,clif->pUseItem,5,9); + packet(0x007e,clif->pMoveToKafra,6,9); + packet(0x0085,clif->pActionRequest,4,14); + packet(0x008c,clif->pUseSkillToPosMoreInfo,6,9,23,26,28); + packet(0x0094,clif->pDropItem,6,10); + packet(0x009b,clif->pGetCharNameRequest,6); + packet(0x00a2,clif->pSolveCharName,12); + packet(0x00a7,clif->pUseSkillToPos,6,9,23,26); + packet(0x00f3,clif->pChangeDir,6,14); + packet(0x00f5,clif->pWantToConnection,5,14,20,24,28); + packet(0x0113,clif->pTakeItem,5); + packet(0x0116,clif->pTickSend,5); + packet(0x0190,clif->pUseSkillToId,4,10,22); + packet(0x0193,clif->pMoveFromKafra,12,18); #endif //2004-11-08aSakexe #if PACKETVER >= 20041108 - packet(0x0084,2); - packet(0x0216,6); - packet(0x0217,2,clif->pBlacksmith,0); - packet(0x0218,2,clif->pAlchemist,0); - packet(0x0219,282); - packet(0x021a,282); - packet(0x021b,10); - packet(0x021c,10); + packet(0x0217,clif->pBlacksmith,0); + packet(0x0218,clif->pAlchemist,0); #endif //2004-11-15aSakexe #if PACKETVER >= 20041115 - packet(0x021d,6,clif->pLessEffect,2); + packet(0x021d,clif->pLessEffect,2); #endif //2004-11-29aSakexe #if PACKETVER >= 20041129 - packet(0x0072,22,clif->pUseSkillToId,8,12,18); - packet(0x007e,30,clif->pUseSkillToPos,4,9,22,28); - packet(0x0085,-1,clif->pGlobalMessage,2,4); - packet(0x0089,7,clif->pTickSend,3); - packet(0x008c,13,clif->pGetCharNameRequest,9); - packet(0x0094,14,clif->pMoveToKafra,4,10); - packet(0x009b,2,clif->pCloseKafra,0); - packet(0x009f,18,clif->pActionRequest,6,17); - packet(0x00a2,7,clif->pTakeItem,3); - packet(0x00a7,7,clif->pWalkToXY,4); - packet(0x00f3,8,clif->pChangeDir,3,7); - packet(0x00f5,29,clif->pWantToConnection,3,10,20,24,28); - packet(0x00f7,14,clif->pSolveCharName,10); - packet(0x0113,110,clif->pUseSkillToPosMoreInfo,4,9,22,28,30); - packet(0x0116,12,clif->pDropItem,4,10); - packet(0x0190,15,clif->pUseItem,3,11); - packet(0x0193,21,clif->pMoveFromKafra,4,17); - packet(0x0221,-1); - packet(0x0222,6,clif->pWeaponRefine,2); - packet(0x0223,8); -#endif - -//2004-12-13aSakexe -#if PACKETVER >= 20041213 -//skipped: many packets being set to -1 - packet(0x0066,3); - packet(0x0070,3); - packet(0x01ca,3); - packet(0x021e,6); - packet(0x021f,66); - packet(0x0220,10); + packet(0x0072,clif->pUseSkillToId,8,12,18); + packet(0x007e,clif->pUseSkillToPos,4,9,22,28); + packet(0x0085,clif->pGlobalMessage,2,4); + packet(0x0089,clif->pTickSend,3); + packet(0x008c,clif->pGetCharNameRequest,9); + packet(0x0094,clif->pMoveToKafra,4,10); + packet(0x009b,clif->pCloseKafra,0); + packet(0x009f,clif->pActionRequest,6,17); + packet(0x00a2,clif->pTakeItem,3); + packet(0x00a7,clif->pWalkToXY,4); + packet(0x00f3,clif->pChangeDir,3,7); + packet(0x00f5,clif->pWantToConnection,3,10,20,24,28); + packet(0x00f7,clif->pSolveCharName,10); + packet(0x0113,clif->pUseSkillToPosMoreInfo,4,9,22,28,30); + packet(0x0116,clif->pDropItem,4,10); + packet(0x0190,clif->pUseItem,3,11); + packet(0x0193,clif->pMoveFromKafra,4,17); + packet(0x0222,clif->pWeaponRefine,2); #endif //2005-01-10bSakexe #if PACKETVER >= 20050110 - packet(0x0072,26,clif->pUseSkillToId,8,16,22); - packet(0x007e,114,clif->pUseSkillToPosMoreInfo,10,18,22,32,34); - packet(0x0085,23,clif->pChangeDir,12,22); - packet(0x0089,9,clif->pTickSend,5); - packet(0x008c,8,clif->pGetCharNameRequest,4); - packet(0x0094,20,clif->pMoveToKafra,10,16); - packet(0x009b,32,clif->pWantToConnection,3,12,23,27,31); - packet(0x009f,17,clif->pUseItem,5,13); - packet(0x00a2,11,clif->pSolveCharName,7); - packet(0x00a7,13,clif->pWalkToXY,10); - packet(0x00f3,-1,clif->pGlobalMessage,2,4); - packet(0x00f5,9,clif->pTakeItem,5); - packet(0x00f7,21,clif->pMoveFromKafra,11,17); - packet(0x0113,34,clif->pUseSkillToPos,10,18,22,32); - packet(0x0116,20,clif->pDropItem,15,18); - packet(0x0190,20,clif->pActionRequest,9,19); - packet(0x0193,2,clif->pCloseKafra,0); + packet(0x0072,clif->pUseSkillToId,8,16,22); + packet(0x007e,clif->pUseSkillToPosMoreInfo,10,18,22,32,34); + packet(0x0085,clif->pChangeDir,12,22); + packet(0x0089,clif->pTickSend,5); + packet(0x008c,clif->pGetCharNameRequest,4); + packet(0x0094,clif->pMoveToKafra,10,16); + packet(0x009b,clif->pWantToConnection,3,12,23,27,31); + packet(0x009f,clif->pUseItem,5,13); + packet(0x00a2,clif->pSolveCharName,7); + packet(0x00a7,clif->pWalkToXY,10); + packet(0x00f3,clif->pGlobalMessage,2,4); + packet(0x00f5,clif->pTakeItem,5); + packet(0x00f7,clif->pMoveFromKafra,11,17); + packet(0x0113,clif->pUseSkillToPos,10,18,22,32); + packet(0x0116,clif->pDropItem,15,18); + packet(0x0190,clif->pActionRequest,9,19); + packet(0x0193,clif->pCloseKafra,0); #endif //2005-03-28aSakexe #if PACKETVER >= 20050328 - packet(0x0224,10); - packet(0x0225,2,clif->pTaekwon,0); - packet(0x0226,282); -#endif - -//2005-04-04aSakexe -#if PACKETVER >= 20050404 - packet(0x0227,18); - packet(0x0228,18); -#endif - -//2005-04-11aSakexe -#if PACKETVER >= 20050411 - packet(0x0229,15); - packet(0x022a,58); - packet(0x022b,57); - packet(0x022c,64); + packet(0x0225,clif->pTaekwon,0); #endif //2005-04-25aSakexe #if PACKETVER >= 20050425 - packet(0x022d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0232,9,clif->pHomMoveTo,2,6); - packet(0x0233,11,clif->pHomAttack,2,6,10); - packet(0x0234,6,clif->pHomMoveToMaster,2); + packet(0x022d,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0232,clif->pHomMoveTo,2,6); + packet(0x0233,clif->pHomAttack,2,6,10); + packet(0x0234,clif->pHomMoveToMaster,2); #endif //2005-05-09aSakexe #if PACKETVER >= 20050509 - packet(0x0072,25,clif->pUseSkillToId,6,10,21); - packet(0x007e,102,clif->pUseSkillToPosMoreInfo,5,9,12,20,22); - packet(0x0085,11,clif->pChangeDir,7,10); - packet(0x0089,8,clif->pTickSend,4); - packet(0x008c,11,clif->pGetCharNameRequest,7); - packet(0x0094,14,clif->pMoveToKafra,7,10); - packet(0x009b,26,clif->pWantToConnection,4,9,17,21,25); - packet(0x009f,14,clif->pUseItem,4,10); - packet(0x00a2,15,clif->pSolveCharName,11); - packet(0x00a7,8,clif->pWalkToXY,5); - packet(0x00f5,8,clif->pTakeItem,4); - packet(0x00f7,22,clif->pMoveFromKafra,14,18); - packet(0x0113,22,clif->pUseSkillToPos,5,9,12,20); - packet(0x0116,10,clif->pDropItem,5,8); - packet(0x0190,19,clif->pActionRequest,5,18); -#endif - -//2005-05-23aSakexe -#if PACKETVER >= 20050523 - packet(0x022e,69); - packet(0x0230,12); + packet(0x0072,clif->pUseSkillToId,6,10,21); + packet(0x007e,clif->pUseSkillToPosMoreInfo,5,9,12,20,22); + packet(0x0085,clif->pChangeDir,7,10); + packet(0x0089,clif->pTickSend,4); + packet(0x008c,clif->pGetCharNameRequest,7); + packet(0x0094,clif->pMoveToKafra,7,10); + packet(0x009b,clif->pWantToConnection,4,9,17,21,25); + packet(0x009f,clif->pUseItem,4,10); + packet(0x00a2,clif->pSolveCharName,11); + packet(0x00a7,clif->pWalkToXY,5); + packet(0x00f5,clif->pTakeItem,4); + packet(0x00f7,clif->pMoveFromKafra,14,18); + packet(0x0113,clif->pUseSkillToPos,5,9,12,20); + packet(0x0116,clif->pDropItem,5,8); + packet(0x0190,clif->pActionRequest,5,18); #endif //2005-05-30aSakexe #if PACKETVER >= 20050530 - packet(0x022e,71); - packet(0x0235,-1); - packet(0x0236,10); - packet(0x0237,2,clif->pRankingPk,0); - packet(0x0238,282); -#endif - -//2005-05-31aSakexe -#if PACKETVER >= 20050531 - packet(0x0216,2); - packet(0x0239,11); + packet(0x0237,clif->pRankingPk,0); #endif //2005-06-08aSakexe #if PACKETVER >= 20050608 - packet(0x0216,6); - packet(0x0217,2,clif->pBlacksmith,0); - packet(0x022f,5); - packet(0x0231,26,clif->pChangeHomunculusName,0); - packet(0x023a,4); - packet(0x023b,36,clif->pStoragePassword,2,4,20); - packet(0x023c,6); -#endif - -//2005-06-22aSakexe -#if PACKETVER >= 20050622 - packet(0x022e,71); - + packet(0x0217,clif->pBlacksmith,0); + packet(0x0231,clif->pChangeHomunculusName,0); + packet(0x023b,clif->pStoragePassword,2,4,20); #endif //2005-06-28aSakexe #if PACKETVER >= 20050628 - packet(0x0072,34,clif->pUseSkillToId,6,17,30); - packet(0x007e,113,clif->pUseSkillToPosMoreInfo,12,15,18,31,33); - packet(0x0085,17,clif->pChangeDir,8,16); - packet(0x0089,13,clif->pTickSend,9); - packet(0x008c,8,clif->pGetCharNameRequest,4); - packet(0x0094,31,clif->pMoveToKafra,16,27); - packet(0x009b,32,clif->pWantToConnection,9,15,23,27,31); - packet(0x009f,19,clif->pUseItem,9,15); - packet(0x00a2,9,clif->pSolveCharName,5); - packet(0x00a7,11,clif->pWalkToXY,8); - packet(0x00f5,13,clif->pTakeItem,9); - packet(0x00f7,18,clif->pMoveFromKafra,11,14); - packet(0x0113,33,clif->pUseSkillToPos,12,15,18,31); - packet(0x0116,12,clif->pDropItem,3,10); - packet(0x0190,24,clif->pActionRequest,11,23); - packet(0x0216,-1); - packet(0x023d,-1); - packet(0x023e,4); + packet(0x0072,clif->pUseSkillToId,6,17,30); + packet(0x007e,clif->pUseSkillToPosMoreInfo,12,15,18,31,33); + packet(0x0085,clif->pChangeDir,8,16); + packet(0x0089,clif->pTickSend,9); + packet(0x008c,clif->pGetCharNameRequest,4); + packet(0x0094,clif->pMoveToKafra,16,27); + packet(0x009b,clif->pWantToConnection,9,15,23,27,31); + packet(0x009f,clif->pUseItem,9,15); + packet(0x00a2,clif->pSolveCharName,5); + packet(0x00a7,clif->pWalkToXY,8); + packet(0x00f5,clif->pTakeItem,9); + packet(0x00f7,clif->pMoveFromKafra,11,14); + packet(0x0113,clif->pUseSkillToPos,12,15,18,31); + packet(0x0116,clif->pDropItem,3,10); + packet(0x0190,clif->pActionRequest,11,23); #endif //2005-07-18aSakexe #if PACKETVER >= 20050718 - packet(0x0072,19,clif->pUseSkillToId,5,11,15); - packet(0x007e,110,clif->pUseSkillToPosMoreInfo,9,15,23,28,30); - packet(0x0085,11,clif->pChangeDir,6,10); - packet(0x0089,7,clif->pTickSend,3); - packet(0x008c,11,clif->pGetCharNameRequest,7); - packet(0x0094,21,clif->pMoveToKafra,12,17); - packet(0x009b,31,clif->pWantToConnection,3,13,22,26,30); - packet(0x009f,12,clif->pUseItem,3,8); - packet(0x00a2,18,clif->pSolveCharName,14); - packet(0x00a7,15,clif->pWalkToXY,12); - packet(0x00f5,7,clif->pTakeItem,3); - packet(0x00f7,13,clif->pMoveFromKafra,5,9); - packet(0x0113,30,clif->pUseSkillToPos,9,15,23,28); - packet(0x0116,12,clif->pDropItem,6,10); - packet(0x0190,21,clif->pActionRequest,5,20); - packet(0x0216,6); - packet(0x023f,2,clif->pMail_refreshinbox,0); - packet(0x0240,8); - packet(0x0241,6,clif->pMail_read,2); - packet(0x0242,-1); - packet(0x0243,6,clif->pMail_delete,2); - packet(0x0244,6,clif->pMail_getattach,2); - packet(0x0245,7); - packet(0x0246,4,clif->pMail_winopen,2); - packet(0x0247,8,clif->pMail_setattach,2,4); - packet(0x0248,68); - packet(0x0249,3); - packet(0x024a,70); - packet(0x024b,4,clif->pAuction_cancelreg,0); - packet(0x024c,8,clif->pAuction_setitem,0); - packet(0x024d,14); - packet(0x024e,6,clif->pAuction_cancel,0); - packet(0x024f,10,clif->pAuction_bid,0); - packet(0x0250,3); - packet(0x0251,2); - packet(0x0252,-1); + packet(0x0072,clif->pUseSkillToId,5,11,15); + packet(0x007e,clif->pUseSkillToPosMoreInfo,9,15,23,28,30); + packet(0x0085,clif->pChangeDir,6,10); + packet(0x0089,clif->pTickSend,3); + packet(0x008c,clif->pGetCharNameRequest,7); + packet(0x0094,clif->pMoveToKafra,12,17); + packet(0x009b,clif->pWantToConnection,3,13,22,26,30); + packet(0x009f,clif->pUseItem,3,8); + packet(0x00a2,clif->pSolveCharName,14); + packet(0x00a7,clif->pWalkToXY,12); + packet(0x00f5,clif->pTakeItem,3); + packet(0x00f7,clif->pMoveFromKafra,5,9); + packet(0x0113,clif->pUseSkillToPos,9,15,23,28); + packet(0x0116,clif->pDropItem,6,10); + packet(0x0190,clif->pActionRequest,5,20); + packet(0x023f,clif->pMail_refreshinbox,0); + packet(0x0241,clif->pMail_read,2); + packet(0x0243,clif->pMail_delete,2); + packet(0x0244,clif->pMail_getattach,2); + packet(0x0246,clif->pMail_winopen,2); + packet(0x0247,clif->pMail_setattach,2,4); + packet(0x024b,clif->pAuction_cancelreg,0); + packet(0x024c,clif->pAuction_setitem,0); + packet(0x024e,clif->pAuction_cancel,0); + packet(0x024f,clif->pAuction_bid,0); #endif //2005-07-19bSakexe #if PACKETVER >= 20050719 - packet(0x0072,34,clif->pUseSkillToId,6,17,30); - packet(0x007e,113,clif->pUseSkillToPosMoreInfo,12,15,18,31,33); - packet(0x0085,17,clif->pChangeDir,8,16); - packet(0x0089,13,clif->pTickSend,9); - packet(0x008c,8,clif->pGetCharNameRequest,4); - packet(0x0094,31,clif->pMoveToKafra,16,27); - packet(0x009b,32,clif->pWantToConnection,9,15,23,27,31); - packet(0x009f,19,clif->pUseItem,9,15); - packet(0x00a2,9,clif->pSolveCharName,5); - packet(0x00a7,11,clif->pWalkToXY,8); - packet(0x00f5,13,clif->pTakeItem,9); - packet(0x00f7,18,clif->pMoveFromKafra,11,14); - packet(0x0113,33,clif->pUseSkillToPos,12,15,18,31); - packet(0x0116,12,clif->pDropItem,3,10); - packet(0x0190,24,clif->pActionRequest,11,23); -#endif - -//2005-08-01aSakexe -#if PACKETVER >= 20050801 - packet(0x0245,3); - packet(0x0251,4); + packet(0x0072,clif->pUseSkillToId,6,17,30); + packet(0x007e,clif->pUseSkillToPosMoreInfo,12,15,18,31,33); + packet(0x0085,clif->pChangeDir,8,16); + packet(0x0089,clif->pTickSend,9); + packet(0x008c,clif->pGetCharNameRequest,4); + packet(0x0094,clif->pMoveToKafra,16,27); + packet(0x009b,clif->pWantToConnection,9,15,23,27,31); + packet(0x009f,clif->pUseItem,9,15); + packet(0x00a2,clif->pSolveCharName,5); + packet(0x00a7,clif->pWalkToXY,8); + packet(0x00f5,clif->pTakeItem,9); + packet(0x00f7,clif->pMoveFromKafra,11,14); + packet(0x0113,clif->pUseSkillToPos,12,15,18,31); + packet(0x0116,clif->pDropItem,3,10); + packet(0x0190,clif->pActionRequest,11,23); #endif //2005-08-08aSakexe #if PACKETVER >= 20050808 - packet(0x024d,12,clif->pAuction_register,0); - packet(0x024e,4); + packet(0x024d,clif->pAuction_register,0); #endif //2005-08-17aSakexe #if PACKETVER >= 20050817 - packet(0x0253,3); - packet(0x0254,3,clif->pFeelSaveOk,0); + packet(0x0254,clif->pFeelSaveOk,0); #endif //2005-08-29aSakexe #if PACKETVER >= 20050829 - packet(0x0240,-1); - packet(0x0248,-1,clif->pMail_send,2,4,28,68); - packet(0x0255,5); - packet(0x0256,-1); - packet(0x0257,8); -#endif - -//2005-09-12bSakexe -#if PACKETVER >= 20050912 - packet(0x0256,5); - packet(0x0258,2); - packet(0x0259,3); + packet(0x0248,clif->pMail_send,2,4,28,68); #endif //2005-10-10aSakexe #if PACKETVER >= 20051010 - packet(0x020e,32); - packet(0x025a,-1); - packet(0x025b,6,clif->pCooking,0); + packet(0x025b,clif->pCooking,0); #endif //2005-10-13aSakexe #if PACKETVER >= 20051013 - packet(0x007a,6); - packet(0x0251,32); - packet(0x025c,4,clif->pAuction_buysell,0); + packet(0x025c,clif->pAuction_buysell,0); #endif //2005-10-17aSakexe #if PACKETVER >= 20051017 - packet(0x007a,58); - packet(0x025d,6,clif->pAuction_close,0); - packet(0x025e,4); -#endif - -//2005-10-24aSakexe -#if PACKETVER >= 20051024 - packet(0x025f,6); - packet(0x0260,6); + packet(0x025d,clif->pAuction_close,0); #endif //2005-11-07aSakexe #if PACKETVER >= 20051107 - packet(0x024e,6,clif->pAuction_cancel,0); - packet(0x0251,34,clif->pAuction_search,0); -#endif - -//2006-01-09aSakexe -#if PACKETVER >= 20060109 - packet(0x0261,11); - packet(0x0262,11); - packet(0x0263,11); - packet(0x0264,20); - packet(0x0265,20); - packet(0x0266,30); - packet(0x0267,4); - packet(0x0268,4); - packet(0x0269,4); - packet(0x026a,4); - packet(0x026b,4); - packet(0x026c,4); - packet(0x026d,4); - packet(0x026f,2); - packet(0x0270,2); - packet(0x0271,38); - packet(0x0272,44); -#endif - -//2006-01-26aSakexe -#if PACKETVER >= 20060126 - packet(0x0271,40); - -#endif - -//2006-03-06aSakexe -#if PACKETVER >= 20060306 - packet(0x0273,6); - packet(0x0274,8); + packet(0x024e,clif->pAuction_cancel,0); + packet(0x0251,clif->pAuction_search,0); #endif //2006-03-13aSakexe #if PACKETVER >= 20060313 - packet(0x0273,30,clif->pMail_return,2,6); + packet(0x0273,clif->pMail_return,2,6); #endif //2006-03-27aSakexe #if PACKETVER >= 20060327 - packet(0x0072,26,clif->pUseSkillToId,11,18,22); - packet(0x007e,120,clif->pUseSkillToPosMoreInfo,5,15,29,38,40); - packet(0x0085,12,clif->pChangeDir,7,11); - //packet(0x0089,13,clif->pTickSend,9); - packet(0x008c,12,clif->pGetCharNameRequest,8); - packet(0x0094,23,clif->pMoveToKafra,5,19); - packet(0x009b,37,clif->pWantToConnection,9,21,28,32,36); - packet(0x009f,24,clif->pUseItem,9,20); - packet(0x00a2,11,clif->pSolveCharName,7); - packet(0x00a7,15,clif->pWalkToXY,12); - packet(0x00f5,13,clif->pTakeItem,9); - packet(0x00f7,26,clif->pMoveFromKafra,11,22); - packet(0x0113,40,clif->pUseSkillToPos,5,15,29,38); - packet(0x0116,17,clif->pDropItem,8,15); - packet(0x0190,18,clif->pActionRequest,7,17); -#endif - -//2006-10-23aSakexe -#if PACKETVER >= 20061023 - packet(0x006d,110); + packet(0x0072,clif->pUseSkillToId,11,18,22); + packet(0x007e,clif->pUseSkillToPosMoreInfo,5,15,29,38,40); + packet(0x0085,clif->pChangeDir,7,11); + packet(0x008c,clif->pGetCharNameRequest,8); + packet(0x0094,clif->pMoveToKafra,5,19); + packet(0x009b,clif->pWantToConnection,9,21,28,32,36); + packet(0x009f,clif->pUseItem,9,20); + packet(0x00a2,clif->pSolveCharName,7); + packet(0x00a7,clif->pWalkToXY,12); + packet(0x00f5,clif->pTakeItem,9); + packet(0x00f7,clif->pMoveFromKafra,11,22); + packet(0x0113,clif->pUseSkillToPos,5,15,29,38); + packet(0x0116,clif->pDropItem,8,15); + packet(0x0190,clif->pActionRequest,7,17); #endif //2006-04-24aSakexe to 2007-01-02aSakexe #if PACKETVER >= 20060424 - packet(0x023e,8); - packet(0x0277,84); - packet(0x0278,2); - packet(0x0279,2); - packet(0x027a,-1); - packet(0x027b,14); - packet(0x027c,60); - packet(0x027d,62); - packet(0x027e,-1); - packet(0x027f,8); - packet(0x0280,12); - packet(0x0281,4); - packet(0x0282,284); - packet(0x0283,6); - packet(0x0284,14); - packet(0x0285,6); - packet(0x0286,4); - packet(0x0287,-1); - packet(0x0288,6); - packet(0x0289,8); - packet(0x028a,18); - packet(0x028b,-1); - packet(0x028c,46); - packet(0x028d,34); - packet(0x028e,4); - packet(0x028f,6); - packet(0x0290,4); - packet(0x0291,4); - packet(0x0292,2,clif->pAutoRevive,0); - packet(0x0293,70); - packet(0x0294,10); - packet(0x0295,-1); - packet(0x0296,-1); - packet(0x0297,-1); - packet(0x0298,8); - packet(0x0299,6); - packet(0x029a,27); - packet(0x029c,66); - packet(0x029d,-1); - packet(0x029e,11); - packet(0x029f,3,clif->pmercenary_action,0); - packet(0x02a0,-1); - packet(0x02a1,-1); - packet(0x02a2,8); + packet(0x0292,clif->pAutoRevive,0); + packet(0x029f,clif->pmercenary_action,0); #endif //2007-01-08aSakexe #if PACKETVER >= 20070108 - packet(0x0072,30,clif->pUseSkillToId,10,14,26); - packet(0x007e,120,clif->pUseSkillToPosMoreInfo,10,19,23,38,40); - packet(0x0085,14,clif->pChangeDir,10,13); - packet(0x0089,11,clif->pTickSend,7); - packet(0x008c,17,clif->pGetCharNameRequest,13); - packet(0x0094,17,clif->pMoveToKafra,4,13); - packet(0x009b,35,clif->pWantToConnection,7,21,26,30,34); - packet(0x009f,21,clif->pUseItem,7,17); - packet(0x00a2,10,clif->pSolveCharName,6); - packet(0x00a7,8,clif->pWalkToXY,5); - packet(0x00f5,11,clif->pTakeItem,7); - packet(0x00f7,15,clif->pMoveFromKafra,3,11); - packet(0x0113,40,clif->pUseSkillToPos,10,19,23,38); - packet(0x0116,19,clif->pDropItem,11,17); - packet(0x0190,10,clif->pActionRequest,4,9); -#endif - -//2007-01-22aSakexe -#if PACKETVER >= 20070122 - packet(0x02a3,18); - packet(0x02a4,2); -#endif - -//2007-01-29aSakexe -#if PACKETVER >= 20070129 - packet(0x029b,72); - packet(0x02a3,-1); - packet(0x02a4,-1); - packet(0x02a5,8); - -#endif - -//2007-02-05aSakexe -#if PACKETVER >= 20070205 - packet(0x02aa,4); - packet(0x02ab,36); - packet(0x02ac,6); + packet(0x0072,clif->pUseSkillToId,10,14,26); + packet(0x007e,clif->pUseSkillToPosMoreInfo,10,19,23,38,40); + packet(0x0085,clif->pChangeDir,10,13); + packet(0x0089,clif->pTickSend,7); + packet(0x008c,clif->pGetCharNameRequest,13); + packet(0x0094,clif->pMoveToKafra,4,13); + packet(0x009b,clif->pWantToConnection,7,21,26,30,34); + packet(0x009f,clif->pUseItem,7,17); + packet(0x00a2,clif->pSolveCharName,6); + packet(0x00a7,clif->pWalkToXY,5); + packet(0x00f5,clif->pTakeItem,7); + packet(0x00f7,clif->pMoveFromKafra,3,11); + packet(0x0113,clif->pUseSkillToPos,10,19,23,38); + packet(0x0116,clif->pDropItem,11,17); + packet(0x0190,clif->pActionRequest,4,9); #endif //2007-02-12aSakexe #if PACKETVER >= 20070212 - packet(0x0072,25,clif->pUseSkillToId,6,10,21); - packet(0x007e,102,clif->pUseSkillToPosMoreInfo,5,9,12,20,22); - packet(0x0085,11,clif->pChangeDir,7,10); - packet(0x0089,8,clif->pTickSend,4); - packet(0x008c,11,clif->pGetCharNameRequest,7); - packet(0x0094,14,clif->pMoveToKafra,7,10); - packet(0x009b,26,clif->pWantToConnection,4,9,17,21,25); - packet(0x009f,14,clif->pUseItem,4,10); - packet(0x00a2,15,clif->pSolveCharName,11); - //packet(0x00a7,8,clif->pWalkToXY,5); - packet(0x00f5,8,clif->pTakeItem,4); - packet(0x00f7,22,clif->pMoveFromKafra,14,18); - packet(0x0113,22,clif->pUseSkillToPos,5,9,12,20); - packet(0x0116,10,clif->pDropItem,5,8); - packet(0x0190,19,clif->pActionRequest,5,18); + packet(0x0072,clif->pUseSkillToId,6,10,21); + packet(0x007e,clif->pUseSkillToPosMoreInfo,5,9,12,20,22); + packet(0x0085,clif->pChangeDir,7,10); + packet(0x0089,clif->pTickSend,4); + packet(0x008c,clif->pGetCharNameRequest,7); + packet(0x0094,clif->pMoveToKafra,7,10); + packet(0x009b,clif->pWantToConnection,4,9,17,21,25); + packet(0x009f,clif->pUseItem,4,10); + packet(0x00a2,clif->pSolveCharName,11); + packet(0x00f5,clif->pTakeItem,4); + packet(0x00f7,clif->pMoveFromKafra,14,18); + packet(0x0113,clif->pUseSkillToPos,5,9,12,20); + packet(0x0116,clif->pDropItem,5,8); + packet(0x0190,clif->pActionRequest,5,18); #endif //2007-05-07aSakexe #if PACKETVER >= 20070507 - packet(0x01fd,15,clif->pRepairItem,2); + packet(0x01fd,clif->pRepairItem,2); #endif //2007-02-27aSakexe to 2007-10-02aSakexe #if PACKETVER >= 20070227 - packet(0x0288,10,clif->pcashshop_buy,2,4,6); - packet(0x0289,12); - packet(0x02a6,22); - packet(0x02a7,22); - packet(0x02a8,162); - packet(0x02a9,58); - packet(0x02ad,8); - packet(0x02b0,85); - packet(0x02b1,-1); - packet(0x02b2,-1); - packet(0x02b3,107); - packet(0x02b4,6); - packet(0x02b5,-1); - packet(0x02b6,7,clif->pquestStateAck,2,6); - packet(0x02b7,7); - packet(0x02b8,22); - packet(0x02b9,191); - packet(0x02ba,11,clif->pHotkey,2,4,5,9); - packet(0x02bb,8); - packet(0x02bc,6); - packet(0x02bf,10); - packet(0x02c0,2); - packet(0x02c1,-1); - packet(0x02c2,-1); - packet(0x02c4,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x02c5,30); - packet(0x02c6,30); - packet(0x02c7,7,clif->pReplyPartyInvite2,2,6); - packet(0x02c8,3,clif->pPartyTick,2); - packet(0x02c9,3); - packet(0x02ca,3); - packet(0x02cb,20); - packet(0x02cc,4); - packet(0x02cd,26); - packet(0x02ce,10); - packet(0x02cf,6,clif->pMemorialDungeonCommand); - packet(0x02d0,-1); - packet(0x02d1,-1); - packet(0x02d2,-1); - packet(0x02d3,4); - packet(0x02d4,29); - packet(0x02d5,2); - packet(0x02d6,6,clif->pViewPlayerEquip,2); - packet(0x02d7,-1); - packet(0x02d8,10,clif->p_cz_config,6); - packet(0x02d9,10); - packet(0x02da,3); - packet(0x02db,-1,clif->pBattleChat,2,4); - packet(0x02dc,-1); - packet(0x02dd,32); - packet(0x02de,6); - packet(0x02df,36); - packet(0x02e0,34); -#endif - -//2007-10-23aSakexe -#if PACKETVER >= 20071023 - packet(0x02cb,65); - packet(0x02cd,71); -#endif - -//2007-11-06aSakexe -#if PACKETVER >= 20071106 - packet(0x0078,55); - packet(0x007c,42); - packet(0x022c,65); - packet(0x029b,80); -#endif - -//2007-11-13aSakexe -#if PACKETVER >= 20071113 - packet(0x02e1,33); -#endif - -//2007-11-20aSakexe -#if PACKETVER >= 20071120 - //packet(0x01df,10 <- ???); - packet(0x02e2,14); - packet(0x02e3,25); - packet(0x02e4,8); - packet(0x02e5,8); - packet(0x02e6,6); -#endif - -//2007-11-27aSakexe -#if PACKETVER >= 20071127 - packet(0x02e7,-1); + packet(0x0288,clif->pcashshop_buy,2,4,6); + packet(0x02b6,clif->pquestStateAck,2,6); + packet(0x02ba,clif->pHotkey,2,4,5,9); + packet(0x02c4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x02c7,clif->pReplyPartyInvite2,2,6); + packet(0x02c8,clif->pPartyTick,2); + packet(0x02cf,clif->pMemorialDungeonCommand); + packet(0x02d6,clif->pViewPlayerEquip,2); + packet(0x02d8,clif->p_cz_config,6); + packet(0x02db,clif->pBattleChat,2,4); #endif //2008-01-02aSakexe #if PACKETVER >= 20080102 - packet(0x01df,6,clif->pGMReqAccountName,2); - packet(0x02e8,-1); - packet(0x02e9,-1); - packet(0x02ea,-1); - packet(0x02eb,13); - packet(0x02ec,67); - packet(0x02ed,59); - packet(0x02ee,60); - packet(0x02ef,8); + packet(0x01df,clif->pGMReqAccountName,2); #endif //2008-03-18aSakexe #if PACKETVER >= 20080318 - packet(0x02bf,-1); - packet(0x02c0,-1); - packet(0x02f0,10); - packet(0x02f1,2,clif->pProgressbar,0); - packet(0x02f2,2); -#endif - -//2008-03-25bSakexe -#if PACKETVER >= 20080325 - packet(0x02f3,-1); - packet(0x02f4,-1); - packet(0x02f5,-1); - packet(0x02f6,-1); - packet(0x02f7,-1); - packet(0x02f8,-1); - packet(0x02f9,-1); - packet(0x02fa,-1); - packet(0x02fb,-1); - packet(0x02fc,-1); - packet(0x02fd,-1); - packet(0x02fe,-1); - packet(0x02ff,-1); - packet(0x0300,-1); -#endif - -//2008-04-01aSakexe -#if PACKETVER >= 20080401 - packet(0x0301,-1); - packet(0x0302,-1); - packet(0x0303,-1); - packet(0x0304,-1); - packet(0x0305,-1); - packet(0x0306,-1); - packet(0x0307,-1); - packet(0x0308,-1); - packet(0x0309,-1); - packet(0x030a,-1); - packet(0x030b,-1); - packet(0x030c,-1); - packet(0x030d,-1); - packet(0x030e,-1); - packet(0x030f,-1); - packet(0x0310,-1); - packet(0x0311,-1); - packet(0x0312,-1); - packet(0x0313,-1); - packet(0x0314,-1); - packet(0x0315,-1); - packet(0x0316,-1); - packet(0x0317,-1); - packet(0x0318,-1); - packet(0x0319,-1); - packet(0x031a,-1); - packet(0x031b,-1); - packet(0x031c,-1); - packet(0x031d,-1); - packet(0x031e,-1); - packet(0x031f,-1); - packet(0x0320,-1); - packet(0x0321,-1); - packet(0x0322,-1); - packet(0x0323,-1); - packet(0x0324,-1); - packet(0x0325,-1); - packet(0x0326,-1); - packet(0x0327,-1); - packet(0x0328,-1); - packet(0x0329,-1); - packet(0x032a,-1); - packet(0x032b,-1); - packet(0x032c,-1); - packet(0x032d,-1); - packet(0x032e,-1); - packet(0x032f,-1); - packet(0x0330,-1); - packet(0x0331,-1); - packet(0x0332,-1); - packet(0x0333,-1); - packet(0x0334,-1); - packet(0x0335,-1); - packet(0x0336,-1); - packet(0x0337,-1); - packet(0x0338,-1); - packet(0x0339,-1); - packet(0x033a,-1); - packet(0x033b,-1); - packet(0x033c,-1); - packet(0x033d,-1); - packet(0x033e,-1); - packet(0x033f,-1); - packet(0x0340,-1); - packet(0x0341,-1); - packet(0x0342,-1); - packet(0x0343,-1); - packet(0x0344,-1); - packet(0x0345,-1); - packet(0x0346,-1); - packet(0x0347,-1); - packet(0x0348,-1); - packet(0x0349,-1); - packet(0x034a,-1); - packet(0x034b,-1); - packet(0x034c,-1); - packet(0x034d,-1); - packet(0x034e,-1); - packet(0x034f,-1); - packet(0x0350,-1); - packet(0x0351,-1); - packet(0x0352,-1); - packet(0x0353,-1); - packet(0x0354,-1); - packet(0x0355,-1); - packet(0x0356,-1); - packet(0x0357,-1); - packet(0x0358,-1); - packet(0x0359,-1); - packet(0x035a,-1); -#endif - -//2008-05-27aSakexe -#if PACKETVER >= 20080527 - packet(0x035b,-1); - packet(0x035c,2); - packet(0x035d,-1); - packet(0x035e,2); - packet(0x035f,-1); - packet(0x0389,-1); -#endif - -//2008-08-20aSakexe -#if PACKETVER >= 20080820 - packet(0x040c,-1); - packet(0x040d,-1); - packet(0x040e,-1); - packet(0x040f,-1); - packet(0x0410,-1); - packet(0x0411,-1); - packet(0x0412,-1); - packet(0x0413,-1); - packet(0x0414,-1); - packet(0x0415,-1); - packet(0x0416,-1); - packet(0x0417,-1); - packet(0x0418,-1); - packet(0x0419,-1); - packet(0x041a,-1); - packet(0x041b,-1); - packet(0x041c,-1); - packet(0x041d,-1); - packet(0x041e,-1); - packet(0x041f,-1); - packet(0x0420,-1); - packet(0x0421,-1); - packet(0x0422,-1); - packet(0x0423,-1); - packet(0x0424,-1); - packet(0x0425,-1); - packet(0x0426,-1); - packet(0x0427,-1); - packet(0x0428,-1); - packet(0x0429,-1); - packet(0x042a,-1); - packet(0x042b,-1); - packet(0x042c,-1); - packet(0x042d,-1); - packet(0x042e,-1); - packet(0x042f,-1); - packet(0x0430,-1); - packet(0x0431,-1); - packet(0x0432,-1); - packet(0x0433,-1); - packet(0x0434,-1); - packet(0x0435,-1); + packet(0x02f1,clif->pProgressbar,0); #endif //2008-09-10aSakexe #if PACKETVER >= 20080910 - packet(0x0436,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0438,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0439,8,clif->pUseItem,2,4); -#endif - -//2008-11-13aSakexe -#if PACKETVER >= 20081113 - packet(0x043d,8); - packet(0x043e,-1); - packet(0x043f,8); -#endif - -//2008-11-26aSakexe -#if PACKETVER >= 20081126 - packet(0x01a2,37); - packet(0x0440,10); - packet(0x0441,4); + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0439,clif->pUseItem,2,4); #endif //2008-12-10aSakexe #if PACKETVER >= 20081210 - packet(0x0442,-1); - packet(0x0443,8,clif->pSkillSelectMenu,2,6); -#endif - -//2009-01-14aSakexe -#if PACKETVER >= 20090114 - packet(0x043f,25); - packet(0x0444,-1); - packet(0x0445,10); -#endif - -//2009-02-18aSakexe -#if PACKETVER >= 20090218 - packet(0x0446,14); -#endif - -//2009-02-25aSakexe -#if PACKETVER >= 20090225 - packet(0x0448,-1); -#endif - -//2009-03-30aSakexe -#if PACKETVER >= 20090330 - packet(0x0449,4); -#endif - -//2009-04-08aSakexe -#if PACKETVER >= 20090408 - packet(0x02a6,-1); - packet(0x02a7,-1); - packet(0x044a,6); + packet(0x0443,clif->pSkillSelectMenu,2,6); #endif //2008-08-27aRagexeRE #if PACKETVER >= 20080827 - packet(0x0072,22,clif->pUseSkillToId,9,15,18); - packet(0x007c,44); - packet(0x007e,105,clif->pUseSkillToPosMoreInfo,10,14,18,23,25); - packet(0x0085,10,clif->pChangeDir,4,9); - packet(0x0089,11,clif->pTickSend,7); - packet(0x008c,14,clif->pGetCharNameRequest,10); - packet(0x0094,19,clif->pMoveToKafra,3,15); - packet(0x009b,34,clif->pWantToConnection,7,15,25,29,33); - packet(0x009f,20,clif->pUseItem,7,20); - packet(0x00a2,14,clif->pSolveCharName,10); - packet(0x00a7,9,clif->pWalkToXY,6); - packet(0x00f5,11,clif->pTakeItem,7); - packet(0x00f7,17,clif->pMoveFromKafra,3,13); - packet(0x0113,25,clif->pUseSkillToPos,10,14,18,23); - packet(0x0116,17,clif->pDropItem,6,15); - packet(0x0190,23,clif->pActionRequest,9,22); - packet(0x02e2,20); - packet(0x02e3,22); - packet(0x02e4,11); - packet(0x02e5,9); + packet(0x0072,clif->pUseSkillToId,9,15,18); + packet(0x007e,clif->pUseSkillToPosMoreInfo,10,14,18,23,25); + packet(0x0085,clif->pChangeDir,4,9); + packet(0x0089,clif->pTickSend,7); + packet(0x008c,clif->pGetCharNameRequest,10); + packet(0x0094,clif->pMoveToKafra,3,15); + packet(0x009b,clif->pWantToConnection,7,15,25,29,33); + packet(0x009f,clif->pUseItem,7,20); + packet(0x00a2,clif->pSolveCharName,10); + packet(0x00a7,clif->pWalkToXY,6); + packet(0x00f5,clif->pTakeItem,7); + packet(0x00f7,clif->pMoveFromKafra,3,13); + packet(0x0113,clif->pUseSkillToPos,10,14,18,23); + packet(0x0116,clif->pDropItem,6,15); + packet(0x0190,clif->pActionRequest,9,22); #endif //2008-09-10aRagexeRE #if PACKETVER >= 20080910 - packet(0x0436,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0438,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0439,8,clif->pUseItem,2,4); - -#endif - -//2008-11-12aRagexeRE -#if PACKETVER >= 20081112 - packet(0x043d,8); - //packet(0x043e,-1); - packet(0x043f,8); -#endif - -//2008-12-17aRagexeRE -#if PACKETVER >= 20081217 - packet(0x01a2,37); - //packet(0x0440,10); - //packet(0x0441,4); - //packet(0x0442,8); - //packet(0x0443,8); -#endif - -//2008-12-17bRagexeRE -#if PACKETVER >= 20081217 - packet(0x006d,114); - -#endif - -//2009-01-21aRagexeRE -#if PACKETVER >= 20090121 - packet(0x043f,25); - //packet(0x0444,-1); - //packet(0x0445,10); -#endif - -//2009-02-18aRagexeRE -#if PACKETVER >= 20090218 - //packet(0x0446,14); -#endif - -//2009-02-26cRagexeRE -#if PACKETVER >= 20090226 - //packet(0x0448,-1); -#endif - -//2009-04-01aRagexeRE -#if PACKETVER >= 20090401 - //packet(0x0449,4); -#endif - -//2009-05-14aRagexeRE -#if PACKETVER >= 20090514 - //packet(0x044b,2); -#endif - -//2009-05-20aRagexeRE -#if PACKETVER >= 20090520 - //packet(0x07d0,6); - //packet(0x07d1,2); - //packet(0x07d2,-1); - //packet(0x07d3,4); - //packet(0x07d4,4); - //packet(0x07d5,4); - //packet(0x07d6,4); + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0439,clif->pUseItem,2,4); #endif // 2009-05-20aRagexe, 2009-05-20aRagexeRE #if PACKETVER >= 20090520 // new packets - packet(0x0447,2,clif->p_cz_blocking_play_cancel); // PACKET_CZ_BLOCKING_PLAY_CANCEL + packet(0x0447,clif->p_cz_blocking_play_cancel); // PACKET_CZ_BLOCKING_PLAY_CANCEL #endif //2009-06-03aRagexeRE #if PACKETVER >= 20090603 - packet(0x07d7,8,clif->pPartyChangeOption,2,6,7); - packet(0x07d8,8); - packet(0x07d9,254); - packet(0x07da,6,clif->pPartyChangeLeader,2); -#endif - -//2009-06-10aRagexeRE -#if PACKETVER >= 20090610 - //packet(0x07db,8); -#endif - -//2009-06-17aRagexeRE -#if PACKETVER >= 20090617 - packet(0x07d9,268); - //packet(0x07dc,6); - //packet(0x07dd,54); - //packet(0x07de,30); - //packet(0x07df,54); -#endif - -//2009-07-01aRagexeRE -#if PACKETVER >= 20090701 - //packet(0x0275,37); - //packet(0x0276,-1); -#endif - -//2009-07-08aRagexeRE -#if PACKETVER >= 20090708 - //packet(0x07e0,58); -#endif - -//2009-07-15aRagexeRE -#if PACKETVER >= 20090715 - packet(0x07e1,15); -#endif - -//2009-08-05aRagexeRE -#if PACKETVER >= 20090805 - packet(0x07e2,8); + packet(0x07d7,clif->pPartyChangeOption,2,6,7); + packet(0x07da,clif->pPartyChangeLeader,2); #endif //2009-08-18aRagexeRE #if PACKETVER >= 20090818 - packet(0x07e3,6); - packet(0x07e4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x07e6,8); -#endif - -//2009-08-25aRagexeRE -#if PACKETVER >= 20090825 - //packet(0x07e6,28); - packet(0x07e7,5); -#endif - -//2009-09-22aRagexeRE -#if PACKETVER >= 20090922 - packet(0x07e5,8); - packet(0x07e6,8); - packet(0x07e7,32); - packet(0x07e8,-1); - packet(0x07e9,5); -#endif - -//2009-09-29aRagexeRE -#if PACKETVER >= 20090929 - //packet(0x07ea,2); - //packet(0x07eb,-1); - //packet(0x07ec,6); - //packet(0x07ed,8); - //packet(0x07ee,6); - //packet(0x07ef,8); - //packet(0x07f0,4); - //packet(0x07f2,4); - //packet(0x07f3,3); -#endif - -//2009-10-06aRagexeRE -#if PACKETVER >= 20091006 - //packet(0x07ec,8); - //packet(0x07ed,10); - //packet(0x07f0,8); - //packet(0x07f1,15); - //packet(0x07f2,6); - //packet(0x07f3,4); - //packet(0x07f4,3); + packet(0x07e4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES #endif //2009-10-27aRagexeRE #if PACKETVER >= 20091027 - packet(0x07f5,6,clif->pGMFullStrip,2); - packet(0x07f6,14); -#endif - -//2009-11-03aRagexeRE -#if PACKETVER >= 20091103 - packet(0x07f7,-1); - packet(0x07f8,-1); - packet(0x07f9,-1); -#endif - -//2009-11-17aRagexeRE -#if PACKETVER >= 20091117 - packet(0x07fa,8); - -#endif - -//2009-11-24aRagexeRE -#if PACKETVER >= 20091124 - packet(0x07fb,25); -#endif - -//2009-12-01aRagexeRE -#if PACKETVER >= 20091201 - //packet(0x07fc,10); - //packet(0x07fd,-1); - packet(0x07fe,26); - //packet(0x07ff,-1); -#endif - -//2009-12-15aRagexeRE -#if PACKETVER >= 20091215 - packet(0x0800,-1); - //packet(0x0801,-1); + packet(0x07f5,clif->pGMFullStrip,2); #endif //2009-12-22aRagexeRE #if PACKETVER >= 20091222 - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4,6); // Booking System - packet(0x0803,4); - packet(0x0804,8); // Booking System - packet(0x0805,-1); - packet(0x0806,4,clif->pPartyBookingDeleteReq,2);// Booking System - //packet(0x0807,2); - packet(0x0808,4); // Booking System - //packet(0x0809,14); - //packet(0x080A,50); - //packet(0x080B,18); - //packet(0x080C,6); + packet(0x0802,clif->pPartyBookingRegisterReq,2,4,6); // Booking System + packet(0x0806,clif->pPartyBookingDeleteReq,2);// Booking System #endif //2009-12-29aRagexeRE #if PACKETVER >= 20091229 - packet(0x0804,14,clif->pPartyBookingSearchReq,2,4,6,8,12);// Booking System - packet(0x0806,2,clif->pPartyBookingDeleteReq,0);// Booking System - packet(0x0807,4); - packet(0x0808,14,clif->pPartyBookingUpdateReq,2); // Booking System - packet(0x0809,50); - packet(0x080A,18); - packet(0x080B,6);// Booking System + packet(0x0804,clif->pPartyBookingSearchReq,2,4,6,8,12);// Booking System + packet(0x0806,clif->pPartyBookingDeleteReq,0);// Booking System + packet(0x0808,clif->pPartyBookingUpdateReq,2); // Booking System #endif //2010-01-05aRagexeRE #if PACKETVER >= 20100105 - packet(0x0801,-1,clif->pPurchaseReq2,2,4,8,12); -#endif - - //2010-01-26aRagexeRE -#if PACKETVER >= 20100126 - //packet(0x080C,2); - //packet(0x080D,3); - packet(0x080E,14); -#endif - - //2010-02-09aRagexeRE -#if PACKETVER >= 20100209 - //packet(0x07F0,6); + packet(0x0801,clif->pPurchaseReq2,2,4,8,12); #endif - //2010-02-23aRagexeRE -#if PACKETVER >= 20100223 - packet(0x080F,20); -#endif - - //2010-03-03aRagexeRE +//2010-03-03aRagexeRE #if PACKETVER >= 20100303 - packet(0x0810,3); - packet(0x0811,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - //packet(0x0812,86); - //packet(0x0813,6); - //packet(0x0814,6); - //packet(0x0815,-1); - //packet(0x0817,-1); - //packet(0x0818,6); - //packet(0x0819,4); -#endif - - //2010-03-09aRagexeRE -#if PACKETVER >= 20100309 - packet(0x0813,-1); - //packet(0x0814,2); - //packet(0x0815,6); - packet(0x0816,6); - packet(0x0818,-1); - //packet(0x0819,10); - //packet(0x081A,4); - //packet(0x081B,4); - //packet(0x081C,6); - packet(0x081d,22); - packet(0x081e,8); -#endif - - //2010-03-23aRagexeRE -#if PACKETVER >= 20100323 - //packet(0x081F,-1); -#endif - - //2010-04-06aRagexeRE -#if PACKETVER >= 20100406 - //packet(0x081A,6); -#endif - - //2010-04-13aRagexeRE -#if PACKETVER >= 20100413 - //packet(0x081A,10); - packet(0x0820,11); - packet(0x0821,2); - //packet(0x0822,9); - //packet(0x0823,-1); -#endif - - //2010-04-14dRagexeRE -#if PACKETVER >= 20100414 - //packet(0x081B,8); + packet(0x0811,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #endif //2010-04-20aRagexeRE #if PACKETVER >= 20100420 - packet(0x0812,8); - packet(0x0814,86); - packet(0x0815,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0817,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0819,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x081a,4); - packet(0x081b,10); - packet(0x081c,10); - packet(0x0824,6); + packet(0x0815,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0817,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE #endif //2010-06-01aRagexeRE #if PACKETVER >= 20100601 - //packet(0x0825,-1); - //packet(0x0826,4); - packet(0x0835,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0836,-1); - packet(0x0837,3); - //packet(0x0838,3); + packet(0x0835,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO #endif //2010-06-08aRagexeRE #if PACKETVER >= 20100608 - packet(0x0838,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083A,4); // Search Stalls Feature - packet(0x083B,2,clif->pCloseSearchStoreInfo,0); - packet(0x083C,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083D,6); -#endif - -//2010-06-15aRagexeRE -#if PACKETVER >= 20100615 - //packet(0x083E,26); -#endif - -//2010-06-22aRagexeRE -#if PACKETVER >= 20100622 - //packet(0x083F,22); -#endif - -//2010-06-29aRagexeRE -#if PACKETVER >= 20100629 - packet(0x00AA,9); - //packet(0x07F1,18); - //packet(0x07F2,8); - //packet(0x07F3,6); -#endif - -//2010-07-01aRagexeRE -#if PACKETVER >= 20100701 - packet(0x083A,5);// Search Stalls Feature -#endif - -//2010-07-13aRagexeRE -#if PACKETVER >= 20100713 - //packet(0x0827,6); - //packet(0x0828,14); - //packet(0x0829,6); - //packet(0x082A,10); - //packet(0x082B,6); - //packet(0x082C,14); - //packet(0x0840,-1); - //packet(0x0841,19); -#endif - -//2010-07-14aRagexeRE -#if PACKETVER >= 20100714 - //packet(0x841,4); + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x083B,clif->pCloseSearchStoreInfo,0); + packet(0x083C,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK #endif //2010-08-03aRagexeRE #if PACKETVER >= 20100803 - packet(0x0839,66); - packet(0x0842,6,clif->pGMRecall2,2); - packet(0x0843,6,clif->pGMRemove2,2); + packet(0x0842,clif->pGMRecall2,2); + packet(0x0843,clif->pGMRemove2,2); #endif //2010-11-24aRagexeRE #if PACKETVER >= 20101124 - packet(0x0288,-1,clif->pcashshop_buy,4,8); - packet(0x0436,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x035f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0360,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0361,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0362,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0363,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0365,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0366,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0367,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0856,-1); - packet(0x0857,-1); - packet(0x0858,-1); - packet(0x0859,-1); -#endif - -// 2010-12-21aRagexe -#if PACKETVER >= 20101221 -// shuffle packets not added -// new packets - packet(0x08b1,-1); // ZC_MCSTORE_NOTMOVEITEM_LIST -#endif - -// 2011-01-11aRagexe -#if PACKETVER >= 20110111 -// shuffle packets not added -// new packets - packet(0x08b3,-1); // ZC_SHOWSCRIPT + packet(0x0288,clif->pcashshop_buy,4,8); + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x035f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0360,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0362,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0363,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0365,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0366,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0368,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID #endif // 2011-01-25aRagexe #if PACKETVER >= 20110125 // shuffle packets not added // new packets - packet(0x08b4,2); // ZC_START_COLLECTION - packet(0x08b5,6,clif->pDull,2); // CZ_TRYCOLLECTION - packet(0x08b6,3); // ZC_TRYCOLLECTION + packet(0x08b5,clif->pDull,2); // CZ_TRYCOLLECTION #endif // 2011-01-31aRagexe #if PACKETVER >= 20110131 // shuffle packets not added // new packets - packet(0x02f3,-1,clif->pDull); // CZ_IRMAIL_SEND - packet(0x02f4,3); // ZC_IRMAIL_SEND_RES - packet(0x02f5,7); // ZC_IRMAIL_NOTIFY - packet(0x02f6,7,clif->pDull,2); // CZ_IRMAIL_LIST + packet(0x02f3,clif->pDull); // CZ_IRMAIL_SEND + packet(0x02f6,clif->pDull,2); // CZ_IRMAIL_LIST #endif // 2011-02-22aRagexe #if PACKETVER >= 20110222 // shuffle packets not added // new packets - packet(0x08c0,-1); // ZC_ACK_SE_CASH_ITEM_LIST2 - packet(0x08c1,2,clif->pDull); // CZ_MACRO_START - packet(0x08c2,2,clif->pDull); // CZ_MACRO_STOP -#endif - -// 2011-04-19aRagexe -#if PACKETVER >= 20110419 -// shuffle packets not added -// new packets - packet(0x08c7,-1); // ZC_SKILL_ENTRY3 + packet(0x08c1,clif->pDull); // CZ_MACRO_START + packet(0x08c2,clif->pDull); // CZ_MACRO_STOP #endif // 2011-06-14aRagexe #if PACKETVER >= 20110614 // shuffle packets not added // new packets - packet(0x08c8,34); // ZC_NOTIFY_ACT3 - packet(0x08c9,2,clif->pCashShopSchedule,0); - packet(0x08ca,-1); // ZC_ACK_SCHEDULER_CASHITEM -#endif - -// 2011-06-27aRagexe -#if PACKETVER >= 20110627 -// shuffle packets not added -// new packets - packet(0x08cb,-1); // ZC_PERSONAL_INFOMATION + packet(0x08c9,clif->pCashShopSchedule,0); #endif //2011-07-18aRagexe (Thanks to Yommy!) #if PACKETVER >= 20110718 // shuffle packets not added - packet(0x0844,2,clif->pCashShopOpen,2);/* tell server cashshop window is being open */ - packet(0x084a,2,clif->pCashShopClose,2);/* tell server cashshop window is being closed */ - packet(0x0846,4,clif->pCashShopReqTab,2); - packet(0x0848,-1,clif->pCashShopBuy,2); -#endif - -// 2011-08-02aRagexe -#if PACKETVER >= 20110802 -// shuffle packets not added -// new packets - packet(0x09dc,2); // unknown -#endif - -// 2011-08-09aRagexe -#if PACKETVER >= 20110809 -// shuffle packets not added -// new packets - packet(0x08cf,10); // ZC_SPIRITS_ATTRIBUTE - packet(0x08d0,9); // ZC_REQ_WEAR_EQUIP_ACK2 - packet(0x08d1,7); // ZC_REQ_TAKEOFF_EQUIP_ACK2 - packet(0x08d2,10); // ZC_FASTMOVE -#endif - -// 2011-08-16aRagexe -#if PACKETVER >= 20110816 -// shuffle packets not added -// new packets - packet(0x08d3,10); // ZC_SE_CASHSHOP_UPDATE -#endif - -// 2011-09-28aRagexe -#if PACKETVER >= 20110928 -// shuffle packets not added -// new packets - packet(0x08d6,6); // ZC_CLEAR_DIALOG + packet(0x0844,clif->pCashShopOpen,2);/* tell server cashshop window is being open */ + packet(0x084a,clif->pCashShopClose,2);/* tell server cashshop window is being closed */ + packet(0x0846,clif->pCashShopReqTab,2); + packet(0x0848,clif->pCashShopBuy,2); #endif //2011-10-05aRagexeRE #if PACKETVER >= 20111005 - packet(0x0364,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0817,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0366,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0815,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0885,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0893,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0897,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0369,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ad,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0838,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0439,8,clif->pUseItem,2,4); - packet(0x08d7,28,clif->pBGQueueRegister,2); - packet(0x090a,26,clif->pBGQueueCheckState,2); - packet(0x08da,26,clif->pBGQueueRevokeReq,2); - packet(0x08e0,51,clif->pBGQueueBattleBeginAck,2); + packet(0x0364,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0817,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0366,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0815,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0885,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0893,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0897,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0369,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x08ad,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x088a,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0838,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0439,clif->pUseItem,2,4); + packet(0x08d7,clif->pBGQueueRegister,2); + packet(0x090a,clif->pBGQueueCheckState,2); + packet(0x08da,clif->pBGQueueRevokeReq,2); + packet(0x08e0,clif->pBGQueueBattleBeginAck,2); #endif //2011-11-02aRagexe #if PACKETVER >= 20111102 - packet(0x0436,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0898,5,clif->pHomMenu,4); - packet(0x0281,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x083c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08aa,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x02c4,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0811,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x890,8); - packet(0x08a5,18,clif->pPartyBookingRegisterReq,2,4,6); - packet(0x0835,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a1,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08ab,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08a2,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0436,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0898,clif->pHomMenu,4); + packet(0x0281,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x088d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x083c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x08aa,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x02c4,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0811,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x08a5,clif->pPartyBookingRegisterReq,2,4,6); + packet(0x0835,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x089b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x08a1,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x089e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x08ab,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x088b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x08a2,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK #ifndef PACKETVER_RE - packet(0x0835,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0892,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0899,6,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0835,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0892,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0899,clif->pTickSend,2); // CZ_REQUEST_TIME #endif #endif //2012-03-07fRagexeRE #if PACKETVER >= 20120307 - packet(0x086A,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0887,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0890,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0865,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x02C4,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x093B,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0963,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096A,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0863,5,clif->pHomMenu,4); - packet(0x0861,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0929,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0885,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0889,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0884,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0439,8,clif->pUseItem,2,4); + packet(0x086A,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0887,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0890,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0865,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x02C4,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x093B,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0963,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x096A,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0369,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0863,clif->pHomMenu,4); + packet(0x0861,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0929,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0885,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0889,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0870,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0884,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0439,clif->pUseItem,2,4); // changed packet sizes - packet(0x08e2,27); // ZC_NAVIGATION_ACTIVE #endif //2012-04-10aRagexeRE #if PACKETVER >= 20120410 - packet(0x01FD,15,clif->pRepairItem,2); - packet(0x089C,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0885,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0961,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0288,-1,clif->pcashshop_buy,4,8); - packet(0x091C,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094B,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083C,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0439,8,clif->pUseItem,2,4); - packet(0x0945,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0886,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0871,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0938,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0891,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x086C,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08A6,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0889,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0884,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x01FD,clif->pRepairItem,2); + packet(0x089C,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0885,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0961,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0288,clif->pcashshop_buy,4,8); + packet(0x091C,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x094B,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x083C,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0439,clif->pUseItem,2,4); + packet(0x0945,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0886,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0871,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0938,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0891,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x086C,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x08A6,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0889,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0884,clif->pSolveCharName,2); // CZ_REQNAME_BYGID #ifndef PACKETVER_RE - packet(0x091D,18,clif->pPartyBookingRegisterReq,2,4,6); + packet(0x091D,clif->pPartyBookingRegisterReq,2,4,6); #else - packet(0x08E5,41,clif->pPartyRecruitRegisterReq,2,4); -#endif - packet(0x08E6,4); - packet(0x08E7,10,clif->pPartyRecruitSearchReq,2); - packet(0x08E8,-1); - packet(0x08E9,2,clif->pPartyRecruitDeleteReq,2); - packet(0x08EA,4); - packet(0x08EB,39,clif->pPartyRecruitUpdateReq,2); - packet(0x08EC,73); - packet(0x08ED,43); - packet(0x08EE,6); + packet(0x08E5,clif->pPartyRecruitRegisterReq,2,4); +#endif + packet(0x08E7,clif->pPartyRecruitSearchReq,2); + packet(0x08E9,clif->pPartyRecruitDeleteReq,2); + packet(0x08EB,clif->pPartyRecruitUpdateReq,2); #ifdef PARTY_RECRUIT - packet(0x08EF,6,clif->pDull,2); //bookingignorereq - packet(0x08F0,6,clif->pDull,2); - packet(0x08F1,6,clif->pDull,2); //bookingjoinpartyreq -#endif - packet(0x08F2,36); - packet(0x08F3,-1); - packet(0x08F4,6); - packet(0x08F5,-1,clif->pDull,2,4); //bookingsummonmember - packet(0x08F6,22); - packet(0x08F7,3); - packet(0x08F8,7); - packet(0x08F9,6); + packet(0x08EF,clif->pDull,2); //bookingignorereq + packet(0x08F0,clif->pDull,2); + packet(0x08F1,clif->pDull,2); //bookingjoinpartyreq +#endif + packet(0x08F5,clif->pDull,2,4); //bookingsummonmember #ifdef PARTY_RECRUIT - packet(0x08F9,6,clif->pDull,2); + packet(0x08F9,clif->pDull,2); #endif - packet(0x08FA,6); - packet(0x08FB,6,clif->pDull,2); //bookingcanceljoinparty - packet(0x0907,5,clif->pMoveItem,2,4); - packet(0x0908,5); - packet(0x0977,14);//Monster HP Bar + packet(0x08FB,clif->pDull,2); //bookingcanceljoinparty + packet(0x0907,clif->pMoveItem,2,4); #endif //2012-04-18aRagexeRE [Special Thanks to Judas!] #if PACKETVER >= 20120418 - packet(0x023B,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08A8,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x022D,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035F,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x07E4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07EC,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096A,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08E5,41,clif->pPartyRecruitRegisterReq,2,4); - packet(0x0916,26,clif->pGuildInvite2,2); + packet(0x023B,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x08A8,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x022D,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x035F,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x07E4,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x07EC,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x096A,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x08E5,clif->pPartyRecruitRegisterReq,2,4); + packet(0x0916,clif->pGuildInvite2,2); #endif // 2012-05-02aRagexeRE #if PACKETVER >= 20120502 // shuffle packets not added - packet(0x097d,288); // ZC_ACK_RANKING - packet(0x097e,12); // ZC_UPDATE_RANKING_POINT - packet(0x097f,-1); // ZC_SELECTCART - packet(0x0980,7,clif->pSelectCart); // CZ_SELECTCART + packet(0x0980,clif->pSelectCart); // CZ_SELECTCART #endif #ifndef PACKETVER_RE #if PACKETVER >= 20120604 // shuffle packets not added - packet(0x0861,18,clif->pPartyRecruitRegisterReq,2,4,6); -#endif + packet(0x0861,clif->pPartyRecruitRegisterReq,2,4,6); #endif - -//2012-06-18aRagexeRE -#if PACKETVER >= 20120618 -// shuffle packets not added - packet(0x0983,29); #endif // ========== 2012-07-02aRagexeRE ============= // - 2012-07-02 is NOT STABLE. // - The packets are kept here for reference, DONT USE THEM. #if PACKETVER >= 20120702 - packet(0x0363,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0364,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0861,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0862,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0863,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0886,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0889,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a0,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x094a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0953,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0960,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION -#endif - -//2012-07-02 -#if PACKETVER >= 20120702 -// new packets - packet(0x098a, -1); // ZC_CLANINFO + packet(0x0363,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0364,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x085a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0861,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0862,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0863,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0886,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0889,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x089e,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x089f,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x08a0,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x094a,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0953,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0960,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION #endif //2012-07-10 #if PACKETVER >= 20120710 - packet(0x0886,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0886,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE #endif //2012-07-16aRagExe (special thanks to Yommy/Frost!) #if PACKETVER >= 20120716 - packet(0x0879,18,clif->pPartyBookingRegisterReq,2,4,6); - packet(0x023B,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0819,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x022D,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083C,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0439,8,clif->pUseItem,2,4); - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0940,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0811,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035F,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x07E4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07EC,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096A,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0363,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD - packet(0x0436,4,clif->pDull); // CZ_GANGSI_RANK + packet(0x0879,clif->pPartyBookingRegisterReq,2,4,6); + packet(0x023B,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0819,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x022D,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x083C,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0439,clif->pUseItem,2,4); + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0940,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0811,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x035F,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x07E4,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x07EC,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x096A,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0363,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0436,clif->pDull); // CZ_GANGSI_RANK #endif //2012-07-16aRagExe #if PACKETVER >= 20120716 // new packets - packet(0x0988, 6); // ZC_NOTIFY_CLAN_CONNECTINFO - packet(0x0989, 2); // ZC_ACK_CLAN_LEAVE - packet(0x098d, -1, clif->pClanMessage, 2, 4); // CZ_CLAN_CHAT - packet(0x098e, -1); // ZC_NOTIFY_CLAN_CHAT + packet(0x098d,clif->pClanMessage,2,4); // CZ_CLAN_CHAT #endif // 2012-09-25aRagexe #if PACKETVER >= 20120925 // new packets (not all) - packet(0x0998,8,clif->pEquipItem,2,4); -#endif - -// 2013-02-06aRagexe -#if PACKETVER >= 20130206 -// new packets - packet(0x09a4,18); // ZC_DISPATCH_TIMING_INFO_CHN -// changed packet sizes + packet(0x0998,clif->pEquipItem,2,4); #endif // 2013-03-06aRagexe #if PACKETVER >= 20130306 // new packets - packet(0x09a6,12); // ZC_BANKING_CHECK - packet(0x09a7,14,clif->pDull/*,XXX*/); // CZ_REQ_BANKING_DEPOSIT - packet(0x09a8,4); // ZC_ACK_BANKING_DEPOSIT - packet(0x09a9,14,clif->pDull/*,XXX*/); // CZ_REQ_BANKING_WITHDRAW - packet(0x09aa,4); // ZC_ACK_BANKING_WITHDRAW + packet(0x09a7,clif->pDull/*,XXX*/); // CZ_REQ_BANKING_DEPOSIT + packet(0x09a9,clif->pDull/*,XXX*/); // CZ_REQ_BANKING_WITHDRAW // changed packet sizes #endif // 2013-03-13aRagexe #if PACKETVER >= 20130313 // new packets - packet(0x09ab,-1,clif->pDull/*,XXX*/); // CZ_REQ_BANKING_CHECK - packet(0x09ac,20,clif->pDull/*,XXX*/); // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO - packet(0x09ad,6); // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO - packet(0x09ae,-1,clif->pDull/*,XXX*/); // CZ_REQ_APPLY_BARGAIN_SALE_ITEM - packet(0x09af,-1); // ZC_ACK_APPLY_BARGAIN_SALE_ITEM - packet(0x09b0,8,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM - packet(0x09b1,6); // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM - packet(0x09b2,-1); // ZC_NOTIFY_BARGAIN_SALE_SELLING + packet(0x09ab,clif->pDull/*,XXX*/); // CZ_REQ_BANKING_CHECK + packet(0x09ac,clif->pDull/*,XXX*/); // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + packet(0x09ae,clif->pDull/*,XXX*/); // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + packet(0x09b0,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM // changed packet sizes #endif //2013-03-20Ragexe (Judas + Yommy) #if PACKETVER >= 20130320 // Shuffle Start - packet(0x088E,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089B,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0881,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0363,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0897,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0933,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0438,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08AC,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0874,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0959,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x085A,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0898,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094C,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0365,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x092E,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x094E,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0922,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x035F,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0886,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0938,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x088E,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x089B,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0881,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0363,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0897,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0933,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0438,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x08AC,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0874,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0959,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x085A,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0898,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x094C,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0365,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x092E,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x094E,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0922,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x035F,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0886,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0938,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x085D,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x085D,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x085D,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x085D,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x0868,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0888,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086D,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086F,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093F,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0947,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0890,4,clif->pDull); // CZ_GANGSI_RANK - packet(0x095a,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0868,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0888,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x086D,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x086F,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x093F,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0947,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0890,clif->pDull); // CZ_GANGSI_RANK + packet(0x095a,clif->pDull); // CZ_JOIN_BATTLE_FIELD // Shuffle End // New Packets (wrong version or packet not exists) - packet(0x099f,24); // New Packets End #endif #if PACKETVER >= 20130320 // new packets // changed packet sizes - packet(0x09a7,10,clif->pBankDeposit,2,4,6); // CZ_REQ_BANKING_DEPOSIT - packet(0x09a8,12); // ZC_ACK_BANKING_DEPOSIT - packet(0x09a9,10,clif->pBankWithdraw,2,4,6); // CZ_REQ_BANKING_WITHDRAW - packet(0x09aa,12); // ZC_ACK_BANKING_WITHDRAW - packet(0x09ab,6,clif->pBankCheck,2,4); // CZ_REQ_BANKING_CHECK + packet(0x09a7,clif->pBankDeposit,2,4,6); // CZ_REQ_BANKING_DEPOSIT + packet(0x09a9,clif->pBankWithdraw,2,4,6); // CZ_REQ_BANKING_WITHDRAW + packet(0x09ab,clif->pBankCheck,2,4); // CZ_REQ_BANKING_CHECK #endif // 2013-03-27bRagexe #if PACKETVER >= 20130327 // new packets - packet(0x09ac,-1,clif->pDull/*,XXX*/); // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO - packet(0x09ad,10); // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO - packet(0x09ae,17,clif->pDull/*,XXX*/); // CZ_REQ_APPLY_BARGAIN_SALE_ITEM - packet(0x09af,4); // ZC_ACK_APPLY_BARGAIN_SALE_ITEM - packet(0x09b0,8,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM - packet(0x09b1,4); // ZC_ACK_REMOVE_BARGAIN_SALE_ITEM - packet(0x09b2,6); // ZC_NOTIFY_BARGAIN_SALE_SELLING - packet(0x09b3,6); // ZC_NOTIFY_BARGAIN_SALE_CLOSE + packet(0x09ac,clif->pDull/*,XXX*/); // CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO + packet(0x09ae,clif->pDull/*,XXX*/); // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + packet(0x09b0,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM // changed packet sizes #endif //2013-05-15aRagexe (Shakto) #if PACKETVER >= 20130515 // Shuffle Start - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083C,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035F,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0362,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08A1,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0944,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0887,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08AC,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096A,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x083C,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x035F,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0362,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x08A1,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0944,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0887,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x08AC,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x096A,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x092D,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x092D,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x092D,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x092D,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x0963,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0943,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0947,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0962,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0931,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x093E,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0862,4,clif->pDull); // CZ_GANGSI_RANK - packet(0x08aa,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0963,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0943,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0947,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0962,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0931,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x093E,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0862,clif->pDull); // CZ_GANGSI_RANK + packet(0x08aa,clif->pDull); // CZ_JOIN_BATTLE_FIELD // Shuffle End #endif //2013-05-22Ragexe (Shakto) #if PACKETVER >= 20130522 // Shuffle Start - packet(0x08A2,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x095C,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0360,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x07EC,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0925,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095E,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089C,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08A3,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087E,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0811,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0964,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08A6,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x093E,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08AA,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x095B,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0952,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0368,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086E,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0874,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x08A2,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x095C,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0360,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x07EC,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0925,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x095E,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x089C,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x08A3,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x087E,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0811,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0964,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x08A6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x093E,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x08AA,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x095B,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0952,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0368,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x086E,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0874,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x089B,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x089B,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x089B,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x089B,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x086A,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08A9,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0950,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0362,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0926,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088E,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08ac,4,clif->pDull); // CZ_GANGSI_RANK - packet(0x0965,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x086A,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x08A9,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0950,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0362,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0926,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x088E,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x08ac,clif->pDull); // CZ_GANGSI_RANK + packet(0x0965,clif->pDull); // CZ_JOIN_BATTLE_FIELD // Shuffle End #endif //2013-05-29Ragexe (Shakto) #if PACKETVER >= 20130529 - packet(0x0890,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0438,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0876,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0897,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0951,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0895,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08A7,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0938,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0957,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0917,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x085E,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0863,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0937,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x085A,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0941,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0918,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0936,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0892,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0964,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0869,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0890,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0876,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0897,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0951,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0895,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x08A7,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0938,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0957,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0917,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x085E,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0863,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0937,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x085A,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0941,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0918,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0936,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0892,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0964,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0869,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x0874,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x0874,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x0874,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0874,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x0958,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0919,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08A8,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0877,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x023B,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0956,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0888,4,clif->pDull); // CZ_GANGSI_RANK - packet(0x088e,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0958,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0919,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x08A8,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0877,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x023B,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0956,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0888,clif->pDull); // CZ_GANGSI_RANK + packet(0x088e,clif->pDull); // CZ_JOIN_BATTLE_FIELD #endif //2013-06-05Ragexe (Shakto) #if PACKETVER >= 20130605 - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083C,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035F,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x07E4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07EC,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096A,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x083C,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x035F,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x07E4,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x07EC,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x096A,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x0365,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x0365,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x022D,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x023B,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0883,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x097C,4,clif->pRanklist); - packet(0x0363,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD - packet(0x0436,4,clif->pDull); // CZ_GANGSI_RANK + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x022D,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x023B,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0883,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x097C,clif->pRanklist); + packet(0x0363,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0436,clif->pDull); // CZ_GANGSI_RANK #endif //2013-06-12Ragexe (Shakto) #if PACKETVER >= 20130612 // most shuffle packets used from 20130605 - packet(0x087E,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0919,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093A,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0964,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x087E,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0919,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0940,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x093A,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0964,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD #endif //2013-06-18Ragexe (Shakto) #if PACKETVER >= 20130618 - packet(0x0889,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0951,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088E,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0930,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08A6,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0917,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0885,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0936,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096A,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094F,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0944,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0945,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0890,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0363,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0281,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0891,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0862,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085A,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0932,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0889,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0951,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x088E,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0930,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x08A6,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0917,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0885,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0936,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x096A,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x094F,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0944,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0945,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0890,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0363,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0281,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0891,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0862,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x085A,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0932,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x08A7,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x08A7,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x08A7,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x08A7,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x0942,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095B,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0887,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0953,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x02C4,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0864,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0878,4,clif->pDull); // CZ_GANGSI_RANK - packet(0x087a,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0942,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x095B,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0887,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0953,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x02C4,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0864,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0878,clif->pDull); // CZ_GANGSI_RANK + packet(0x087a,clif->pDull); // CZ_JOIN_BATTLE_FIELD #endif //2013-06-26Ragexe (Shakto) #if PACKETVER >= 20130626 - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083C,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035F,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094D,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088B,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0952,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0921,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0817,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096A,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x083C,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x035F,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x094D,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x088B,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0952,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0921,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0817,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x096A,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0365,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x0894,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x0894,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x0894,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0894,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x08A5,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088C,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0895,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08AB,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0960,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0930,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0860,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD - packet(0x088f,4,clif->pDull); // CZ_GANGSI_RANK + packet(0x08A5,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x088C,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0895,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x08AB,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0960,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0930,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0860,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x088f,clif->pDull); // CZ_GANGSI_RANK #endif //2013-07-03Ragexe (Shakto) #if PACKETVER >= 20130703 - packet(0x0930,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x07E4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07EC,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0202,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0930,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x07E4,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x07EC,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0202,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x0365,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x0365,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x022D,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0360,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x094A,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0873,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0363,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD - packet(0x0436,4,clif->pDull); // CZ_GANGSI_RANK + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x022D,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0360,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x094A,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0873,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0363,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0436,clif->pDull); // CZ_GANGSI_RANK #endif // 2013-04-17aRagexe #if PACKETVER >= 20130417 // new packets - packet(0x09b4,6,clif->pDull/*,XXX*/); // CZ_OPEN_BARGAIN_SALE_TOOL - packet(0x09b5,2); // ZC_OPEN_BARGAIN_SALE_TOOL - packet(0x09b6,6,clif->pBankOpen,2,4); // CZ_REQ_OPEN_BANKING - packet(0x09b7,4); // ZC_ACK_OPEN_BANKING - packet(0x09b8,6,clif->pBankClose,2,4); // CZ_REQ_CLOSE_BANKING - packet(0x09b9,4); // ZC_ACK_CLOSE_BANKING + packet(0x09b4,clif->pDull/*,XXX*/); // CZ_OPEN_BARGAIN_SALE_TOOL + packet(0x09b6,clif->pBankOpen,2,4); // CZ_REQ_OPEN_BANKING + packet(0x09b8,clif->pBankClose,2,4); // CZ_REQ_CLOSE_BANKING // changed packet sizes #endif // 2013-04-24aRagexe #if PACKETVER >= 20130424 // new packets - packet(0x09ba,6,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_GUILD_STORAGE - packet(0x09bb,4); // ZC_ACK_OPEN_GUILD_STORAGE - packet(0x09bc,6,clif->pDull/*,XXX*/); // CZ_CLOSE_BARGAIN_SALE_TOOL - packet(0x09bd,2); // ZC_CLOSE_BARGAIN_SALE_TOOL + packet(0x09ba,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_GUILD_STORAGE + packet(0x09bc,clif->pDull/*,XXX*/); // CZ_CLOSE_BARGAIN_SALE_TOOL // changed packet sizes #endif // 2013-05-02aRagexe #if PACKETVER >= 20130502 // new packets - packet(0x09be,6,clif->pDull/*,XXX*/); // CZ_REQ_CLOSE_GUILD_STORAGE - packet(0x09bf,4); // ZC_ACK_CLOSE_GUILD_STORAGE -// changed packet sizes - packet(0x09bb,6); // ZC_ACK_OPEN_GUILD_STORAGE -#endif - -// 2013-05-15aRagexe -#if PACKETVER >= 20130515 -// new packets - packet(0x09c0,11); // ZC_ACTION_MOVE - packet(0x09c1,11); // ZC_C_MARKERINFO + packet(0x09be,clif->pDull/*,XXX*/); // CZ_REQ_CLOSE_GUILD_STORAGE // changed packet sizes - packet(0x09a8,16); // ZC_ACK_BANKING_DEPOSIT - packet(0x09aa,16); // ZC_ACK_BANKING_WITHDRAW #endif // 2013-05-29Ragexe #if PACKETVER >= 20130529 // new packets - packet(0x09c3,8,clif->pDull/*,XXX*/); // CZ_REQ_COUNT_BARGAIN_SALE_ITEM -// changed packet sizes -#endif - -// 2013-06-05Ragexe -#if PACKETVER >= 20130605 -// new packets - packet(0x09c4,8); // ZC_ACK_COUNT_BARGAIN_SALE_ITEM -#endif - -// 2013-06-18aRagexe -#if PACKETVER >= 20130618 -// new packets - packet(0x09ca,23); // ZC_SKILL_ENTRY5 -// changed packet sizes -#endif - -// 2013-07-17cRagexe -#if PACKETVER >= 20130717 -// new packets - packet(0x09cb,17); // ZC_USE_SKILL2 - packet(0x09cc,-1); // ZC_SECRETSCAN_DATA + packet(0x09c3,clif->pDull/*,XXX*/); // CZ_REQ_COUNT_BARGAIN_SALE_ITEM // changed packet sizes - packet(0x09c1,10); // ZC_C_MARKERINFO #endif //2013-08-07Ragexe (Shakto) #if PACKETVER >= 20130807 - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083C,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035F,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x07E4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07EC,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096A,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x083C,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x035F,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x07E4,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x07EC,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x096A,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x0365,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x0365,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x022D,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x023B,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0887,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0363,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD - packet(0x0436,4,clif->pDull); // CZ_GANGSI_RANK -#endif - -// 2013-08-07aRagexe -#if PACKETVER >= 20130807 -// new packets - packet(0x09cd,8); // ZC_MSG_COLOR -// changed packet sizes + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x022D,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x023B,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0887,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0363,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0436,clif->pDull); // CZ_GANGSI_RANK #endif //2013-08-14aRagexe - Themon #if PACKETVER >= 20130814 - packet(0x0874,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0947,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x093A,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x088A,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088C,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0926,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095F,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0202,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0873,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0887,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0962,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0937,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0923,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0868,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0941,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0889,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0895,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094E,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0936,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0874,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0947,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x093A,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x088A,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x088C,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0926,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x095F,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0202,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0873,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0887,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0962,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0937,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0923,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0868,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0941,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0889,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0835,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0895,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x094E,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0936,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE #ifdef PACKETVER_RE - packet(0x0365,41,clif->pPartyRecruitRegisterReq,2,4); + packet(0x0365,clif->pPartyRecruitRegisterReq,2,4); #else // not PACKETVER_RE - packet(0x0959,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0959,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER #endif // PACKETVER_RE - packet(0x08A4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0368,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0281,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0958,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0885,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0815,4,clif->pDull); // CZ_GANGSI_RANK - packet(0x0896,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x08A4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0368,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0281,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0958,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0885,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0815,clif->pDull); // CZ_GANGSI_RANK + packet(0x0896,clif->pDull); // CZ_JOIN_BATTLE_FIELD #endif // 2013-08-14aRagexe #if PACKETVER >= 20130814 // new packets - packet(0x09ce,102,clif->pGM_Monster_Item,2); // CZ_ITEM_CREATE_EX - packet(0x09cf,-1); // ZC_NPROTECTGAMEGUARDCSAUTH - packet(0x09d0,-1,clif->pDull/*,XXX*/); // CZ_NPROTECTGAMEGUARDCSAUTH -// changed packet sizes -#endif - -// 2013-08-21bRagexe -#if PACKETVER >= 20130821 -// new packets - packet(0x09d1,14); // ZC_PROGRESS_ACTOR + packet(0x09ce,clif->pGM_Monster_Item,2); // CZ_ITEM_CREATE_EX + packet(0x09d0,clif->pDull/*,XXX*/); // CZ_NPROTECTGAMEGUARDCSAUTH // changed packet sizes #endif // 2013-08-28bRagexe #if PACKETVER >= 20130828 // new packets - packet(0x09d2,-1); // ZC_GUILDSTORAGE_ITEMLIST_NORMAL_V5 - packet(0x09d3,-1); // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V5 -// changed packet sizes - packet(0x09ba,2,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_GUILD_STORAGE - packet(0x09be,2,clif->pDull/*,XXX*/); // CZ_REQ_CLOSE_GUILD_STORAGE -#endif - -// 2013-09-04aRagexe -#if PACKETVER >= 20130904 -// new packets // changed packet sizes - packet(0x09ca,-1); // ZC_SKILL_ENTRY5 + packet(0x09ba,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_GUILD_STORAGE + packet(0x09be,clif->pDull/*,XXX*/); // CZ_REQ_CLOSE_GUILD_STORAGE #endif // 2013-09-11aRagexe #if PACKETVER >= 20130911 // new packets - packet(0x09d4,2,clif->pNPCShopClosed); // CZ_NPC_TRADE_QUIT - packet(0x09d5,-1); // ZC_NPC_MARKET_OPEN - packet(0x09d6,-1,clif->pNPCMarketPurchase); // CZ_NPC_MARKET_PURCHASE - packet(0x09d7,-1); // ZC_NPC_MARKET_PURCHASE_RESULT - packet(0x09d8,2,clif->pNPCMarketClosed); // CZ_NPC_MARKET_CLOSE - packet(0x09d9,2,clif->pDull/*,XXX*/); // CZ_REQ_GUILDSTORAGE_LOG - packet(0x09da,2); // ZC_ACK_GUILDSTORAGE_LOG -// changed packet sizes -#endif - -// 2013-09-25aRagexe -#if PACKETVER >= 20130925 -// new packets + packet(0x09d4,clif->pNPCShopClosed); // CZ_NPC_TRADE_QUIT + packet(0x09d6,clif->pNPCMarketPurchase); // CZ_NPC_MARKET_PURCHASE + packet(0x09d8,clif->pNPCMarketClosed); // CZ_NPC_MARKET_CLOSE + packet(0x09d9,clif->pDull/*,XXX*/); // CZ_REQ_GUILDSTORAGE_LOG // changed packet sizes - packet(0x09da,10); // ZC_ACK_GUILDSTORAGE_LOG #endif // 2013-10-02aRagexe #if PACKETVER >= 20131002 // new packets // changed packet sizes - packet(0x09d9,4,clif->pDull/*,XXX*/); // CZ_REQ_GUILDSTORAGE_LOG - packet(0x09da,-1); // ZC_ACK_GUILDSTORAGE_LOG + packet(0x09d9,clif->pDull/*,XXX*/); // CZ_REQ_GUILDSTORAGE_LOG #endif // 2013-10-16aRagexe #if PACKETVER >= 20131016 // new packets // changed packet sizes - packet(0x09d9,6,clif->pDull/*,XXX*/); // CZ_REQ_GUILDSTORAGE_LOG + packet(0x09d9,clif->pDull/*,XXX*/); // CZ_REQ_GUILDSTORAGE_LOG #endif // 2013-10-23aRagexe #if PACKETVER >= 20131023 // new packets - packet(0x09db,-1); // ZC_NOTIFY_MOVEENTRY10 - packet(0x09dc,-1); // ZC_NOTIFY_NEWENTRY10 - packet(0x09dd,-1); // ZC_NOTIFY_STANDENTRY10 // changed packet sizes - packet(0x09d9,4,clif->pDull/*,XXX*/); // CZ_REQ_GUILDSTORAGE_LOG -#endif - -// 2013-10-30aRagexe -#if PACKETVER >= 20131030 -// new packets - packet(0x09de,-1); // ZC_WHISPER02 - packet(0x09df,7); // ZC_ACK_WHISPER02 - packet(0x09e0,-1); // SC_LOGIN_ANSWER_WITH_ID + packet(0x09d9,clif->pDull/*,XXX*/); // CZ_REQ_GUILDSTORAGE_LOG #endif // 2013-11-06aRagexe #if PACKETVER >= 20131106 // new packets - packet(0x09e1,8,clif->pDull/*,XXX*/); // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE - packet(0x09e2,8,clif->pDull/*,XXX*/); // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY - packet(0x09e3,8,clif->pDull/*,XXX*/); // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE - packet(0x09e4,8,clif->pDull/*,XXX*/); // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART + packet(0x09e1,clif->pDull/*,XXX*/); // CZ_MOVE_ITEM_FROM_BODY_TO_GUILDSTORAGE + packet(0x09e2,clif->pDull/*,XXX*/); // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_BODY + packet(0x09e3,clif->pDull/*,XXX*/); // CZ_MOVE_ITEM_FROM_CART_TO_GUILDSTORAGE + packet(0x09e4,clif->pDull/*,XXX*/); // CZ_MOVE_ITEM_FROM_GUILDSTORAGE_TO_CART // changed packet sizes #endif -// 2013-11-20dRagexe -#if PACKETVER >= 20131120 -// new packets - packet(0x09e5,14); // ZC_DELETEITEM_FROM_MCSTORE2 - packet(0x09e6,18); // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 -// changed packet sizes -#endif - -// 2013-11-27bRagexe -#if PACKETVER >= 20131127 -// new packets -// changed packet sizes - packet(0x09e5,18); // ZC_DELETEITEM_FROM_MCSTORE2 - packet(0x09e6,22); // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 -#endif - // 2013-12-11dRagexe #if PACKETVER >= 20131211 // new packets - packet(0x09e7,2); // ZC_NOTIFY_UNREAD_RODEX - packet(0x09e8,18,clif->pDull/*,XXX*/); // CZ_OPEN_RODEXBOX - packet(0x09e9,2,clif->pRodexCloseMailbox); // CZ_CLOSE_RODEXBOX - packet(0x09ed,-1); // ZC_ACK_SEND_RODEX - packet(0x09ee,-1,clif->pDull/*,XXX*/); // CZ_REQ_NEXT_RODEX + packet(0x09e8,clif->pDull/*,XXX*/); // CZ_OPEN_RODEXBOX + packet(0x09e9,clif->pRodexCloseMailbox); // CZ_CLOSE_RODEXBOX + packet(0x09ee,clif->pDull/*,XXX*/); // CZ_REQ_NEXT_RODEX // changed packet sizes #endif // 2013-12-18bRagexe - Yommy #if PACKETVER >= 20131218 - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083C,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035F,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0947,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x07E4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07EC,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096A,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x022D,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x092F,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08AB,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0811,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x085C,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0363,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD - packet(0x087b,4,clif->pDull); // CZ_GANGSI_RANK + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x083C,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x035F,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0947,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x07E4,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x07EC,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x096A,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x022D,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x092F,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x08AB,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0811,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x085C,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0363,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x087b,clif->pDull); // CZ_GANGSI_RANK #endif // 2013-12-18bRagexe #if PACKETVER >= 20131218 // new packets - packet(0x09ea,10,clif->pDull/*,XXX*/); // CZ_REQ_READ_RODEX - packet(0x09eb,14); // ZC_ACK_READ_RODEX - packet(0x09ef,11,clif->pRodexRefreshMaillist); // CZ_REQ_REFRESH_RODEX - packet(0x09f0,-1); // ZC_ACK_RODEX_LIST - packet(0x09f5,11,clif->pRodexDeleteMail); // CZ_REQ_DELETE_RODEX - packet(0x09f6,11); // ZC_ACK_DELETE_RODEX + packet(0x09ea,clif->pDull/*,XXX*/); // CZ_REQ_READ_RODEX + packet(0x09ef,clif->pRodexRefreshMaillist); // CZ_REQ_REFRESH_RODEX + packet(0x09f5,clif->pRodexDeleteMail); // CZ_REQ_DELETE_RODEX // changed packet sizes - packet(0x09e8,10,clif->pDull/*,XXX*/); // CZ_OPEN_RODEXBOX - packet(0x09ee,11,clif->pRodexNextMaillist); // CZ_REQ_NEXT_RODEX + packet(0x09e8,clif->pDull/*,XXX*/); // CZ_OPEN_RODEXBOX + packet(0x09ee,clif->pRodexNextMaillist); // CZ_REQ_NEXT_RODEX #endif // 2013-12-23cRagexe - Yommy #if PACKETVER >= 20131223 - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083C,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035F,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x07E4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07EC,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096A,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x023B,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08A4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0363,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD - packet(0x0436,4,clif->pDull); // CZ_GANGSI_RANK + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x083C,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x035F,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x07E4,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x07EC,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x096A,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x023B,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x08A4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0363,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0436,clif->pDull); // CZ_GANGSI_RANK #endif // 2013-12-23bRagexe #if PACKETVER >= 20131223 // new packets // changed packet sizes - packet(0x09ea,11,clif->pRodexReadMail); // CZ_REQ_READ_RODEX - packet(0x09eb,24); // ZC_ACK_READ_RODEX + packet(0x09ea,clif->pRodexReadMail); // CZ_REQ_READ_RODEX #endif // 2013-12-30aRagexe - Yommy #if PACKETVER >= 20131230 - packet(0x0871,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x02C4,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x035F,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094A,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092A,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0860,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0968,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0895,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091E,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x096A,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0926,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0898,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087B,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0369,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093D,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x087F,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0969,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094C,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0365,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091F,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x022D,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089C,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08A9,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0943,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0949,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x091D,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x087e,4,clif->pDull); // CZ_GANGSI_RANK - packet(0x093e,8,clif->pDull); // CZ_JOIN_BATTLE_FIELD + packet(0x0871,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x02C4,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x035F,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x094A,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x092A,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0860,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0968,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0895,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x091E,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x096A,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0926,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0898,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x087B,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0369,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x093D,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x087F,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0969,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x094C,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0365,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x091F,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x022D,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x089C,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x08A9,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0943,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0949,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x091D,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x087e,clif->pDull); // CZ_GANGSI_RANK + packet(0x093e,clif->pDull); // CZ_JOIN_BATTLE_FIELD #endif // 2013-12-30aRagexe #if PACKETVER >= 20131230 // new packets - packet(0x09ec,-1,clif->pRodexSendMail); // CZ_REQ_SEND_RODEX - packet(0x09ed,3); // ZC_ACK_SEND_RODEX - packet(0x09f7,75); // ZC_PROPERTY_HOMUN_2 + packet(0x09ec,clif->pRodexSendMail); // CZ_REQ_SEND_RODEX // changed packet sizes - packet(0x09eb,23); // ZC_ACK_READ_RODEX #endif // 2014 Packet Data @@ -3015,984 +1648,185 @@ packet(0x96e,-1,clif->ackmergeitems); // 2014-01-15cRagexeRE #if PACKETVER >= 20140115 // new packets - packet(0x09f1,10,clif->pDull/*,XXX*/); // CZ_REQ_ZENY_FROM_RODEX - packet(0x09f2,3); // ZC_ACK_ZENY_FROM_RODEX - packet(0x09f3,15,clif->pDull/*,XXX*/); // CZ_REQ_ITEM_FROM_RODEX - packet(0x09f4,12); // ZC_ACK_ITEM_FROM_RODEX - packet(0x09f8,-1); // ZC_ALL_QUEST_LIST3 - packet(0x09f9,131); // ZC_ADD_QUEST_EX - packet(0x09fa,-1); // ZC_UPDATE_MISSION_HUNT_EX + packet(0x09f1,clif->pDull/*,XXX*/); // CZ_REQ_ZENY_FROM_RODEX + packet(0x09f3,clif->pDull/*,XXX*/); // CZ_REQ_ITEM_FROM_RODEX // changed packet sizes - packet(0x09eb,-1); // ZC_ACK_READ_RODEX #endif // 2014-01-22aRagexeRE #if PACKETVER >= 20140122 // new packets - packet(0x09fb,-1,clif->pPetEvolution); // CZ_PET_EVOLUTION - packet(0x09fc,6); // ZC_PET_EVOLUTION_RESULT - packet(0x09fd,-1); // ZC_NOTIFY_MOVEENTRY11 - packet(0x09fe,-1); // ZC_NOTIFY_NEWENTRY11 - packet(0x09ff,-1); // ZC_NOTIFY_STANDENTRY11 + packet(0x09fb,clif->pPetEvolution); // CZ_PET_EVOLUTION // changed packet sizes - packet(0x09f9,143); // ZC_ADD_QUEST_EX #endif // 2014-01-29bRagexeRE #if PACKETVER >= 20140129 // new packets - packet(0x0a00,269); // ZC_SHORTCUT_KEY_LIST_V3 - packet(0x0a01,3,clif->pHotkeyRowShift,2); // CZ_SHORTCUTKEYBAR_ROTATE -// Warning hercules using this packets for items manipulation. In RagexeRE from 20140129 and before 20140305, this actions broken. -#ifdef PACKETVER_RE -// changed packet sizes - packet(0x01c4,43); // ZC_ADD_ITEM_TO_STORE2 - packet(0x01c5,43); // ZC_ADD_ITEM_TO_CART2 - packet(0x080f,41); // ZC_ADD_EXCHANGE_ITEM2 - packet(0x0990,52); // ZC_ITEM_PICKUP_ACK_V5 -#endif // PACKETVER_RE + packet(0x0a01,clif->pHotkeyRowShift,2); // CZ_SHORTCUTKEYBAR_ROTATE #endif // 2014-02-12aRagexeRE #if PACKETVER >= 20140212 // new packets - packet(0x0a02,4); // ZC_DRESSROOM_OPEN // changed packet sizes - packet(0x09e8,11,clif->pRodexOpenMailbox); // CZ_OPEN_RODEXBOX -#endif - -// 2014-02-19aRagexeRE -#if PACKETVER >= 20140219 -// Warning hercules using this packets for items manipulation. In RagexeRE from 20140129 and before 20140305, this actions broken. -#ifdef PACKETVER_RE -// changed packet sizes - packet(0x01c4,53); // ZC_ADD_ITEM_TO_STORE2 - packet(0x01c5,53); // ZC_ADD_ITEM_TO_CART2 - packet(0x080f,51); // ZC_ADD_EXCHANGE_ITEM2 - packet(0x0990,62); // ZC_ITEM_PICKUP_ACK_V5 -#endif // PACKETVER_RE + packet(0x09e8,clif->pRodexOpenMailbox); // CZ_OPEN_RODEXBOX #endif // 2014-02-26aRagexeRE #if PACKETVER >= 20140226 // new packets - packet(0x0a03,14,clif->pDull/*,XXX*/); // CZ_REQ_CANCEL_WRITE_RODEX - packet(0x0a04,11,clif->pDull/*,XXX*/); // CZ_REQ_ADD_ITEM_RODEX - packet(0x0a05,6); // ZC_ACK_ADD_ITEM_RODEX - packet(0x0a06,5,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_RODEX_ITEM + packet(0x0a03,clif->pDull/*,XXX*/); // CZ_REQ_CANCEL_WRITE_RODEX + packet(0x0a04,clif->pDull/*,XXX*/); // CZ_REQ_ADD_ITEM_RODEX + packet(0x0a06,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_RODEX_ITEM // changed packet sizes #endif // 2014-03-05aRagexeRE #if PACKETVER >= 20140305 // new packets - packet(0x0a07,4); // ZC_ACK_REMOVE_RODEX_ITEM - packet(0x0a08,5,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_WRITE_RODEX - packet(0x0a09,50); // ZC_ADD_EXCHANGE_ITEM3 - packet(0x0a0a,52); // ZC_ADD_ITEM_TO_STORE3 - packet(0x0a0b,52); // ZC_ADD_ITEM_TO_CART3 - packet(0x0a0c,61); // ZC_ITEM_PICKUP_ACK_V6 - packet(0x0a0d,4); // ZC_INVENTORY_ITEMLIST_EQUIP_V6 -// changed packet sizes -#ifdef PACKETVER_RE - packet(0x01c4,22); // ZC_ADD_ITEM_TO_STORE2 - packet(0x01c5,22); // ZC_ADD_ITEM_TO_CART2 - packet(0x080f,20); // ZC_ADD_EXCHANGE_ITEM2 - packet(0x0990,31); // ZC_ITEM_PICKUP_ACK_V5 -#endif // PACKETVER_RE - packet(0x09f3,10,clif->pDull/*,XXX*/); // CZ_REQ_ITEM_FROM_RODEX - packet(0x09f4,3); // ZC_ACK_ITEM_FROM_RODEX -#endif - -// 2014-03-12bRagexeRE -#if PACKETVER >= 20140312 -// new packets - packet(0x0a0e,14); // ZC_BATTLEFIELD_NOTIFY_HP2 + packet(0x0a08,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_WRITE_RODEX // changed packet sizes - packet(0x0a09,45); // ZC_ADD_EXCHANGE_ITEM3 - packet(0x0a0a,47); // ZC_ADD_ITEM_TO_STORE3 - packet(0x0a0b,47); // ZC_ADD_ITEM_TO_CART3 - packet(0x0a0c,56); // ZC_ITEM_PICKUP_ACK_V6 - packet(0x0a0d,-1); // ZC_INVENTORY_ITEMLIST_EQUIP_V6 + packet(0x09f3,clif->pDull/*,XXX*/); // CZ_REQ_ITEM_FROM_RODEX #endif // 2014-03-26cRagexeRE #if PACKETVER >= 20140326 // changed packet sizes - packet(0x09f1,11,clif->pRodexRequestZeny); // CZ_REQ_ZENY_FROM_RODEX - packet(0x09f2,4); // ZC_ACK_ZENY_FROM_RODEX - packet(0x09f3,11,clif->pRodexRequestItems); // CZ_REQ_ITEM_FROM_RODEX - packet(0x09f4,4); // ZC_ACK_ITEM_FROM_RODEX - packet(0x0a03,2,clif->pRodexCancelWriteMail); // CZ_REQ_CANCEL_WRITE_RODEX - packet(0x0a07,6); // ZC_ACK_REMOVE_RODEX_ITEM - packet(0x0a08,7,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_WRITE_RODEX -#endif - -// 2014-04-02eRagexeRE -#if PACKETVER >= 20140402 -// new packets - packet(0x0a0f,-1); // ZC_CART_ITEMLIST_EQUIP_V6 - packet(0x0a10,-1); // ZC_STORE_ITEMLIST_EQUIP_V6 - packet(0x0a11,-1); // ZC_GUILDSTORAGE_ITEMLIST_EQUIP_V6 -// changed packet sizes -#endif - -// 2014-04-09aRagexeRE -#if PACKETVER >= 20140409 -// changed packet sizes - packet(0x09f2,12); // ZC_ACK_ZENY_FROM_RODEX - packet(0x09f4,12); // ZC_ACK_ITEM_FROM_RODEX + packet(0x09f1,clif->pRodexRequestZeny); // CZ_REQ_ZENY_FROM_RODEX + packet(0x09f3,clif->pRodexRequestItems); // CZ_REQ_ITEM_FROM_RODEX + packet(0x0a03,clif->pRodexCancelWriteMail); // CZ_REQ_CANCEL_WRITE_RODEX + packet(0x0a08,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_WRITE_RODEX #endif // 2014-04-16aRagexeRE #if PACKETVER >= 20140416 // new packets - packet(0x0a04,6,clif->pRodexAddItem); // CZ_REQ_ADD_ITEM_RODEX - packet(0x0a12,27); // ZC_ACK_OPEN_WRITE_RODEX - packet(0x0a13,2,clif->pRodexCheckName); // CZ_CHECK_RECEIVE_CHARACTER_NAME + packet(0x0a04,clif->pRodexAddItem); // CZ_REQ_ADD_ITEM_RODEX + packet(0x0a13,clif->pRodexCheckName); // CZ_CHECK_RECEIVE_CHARACTER_NAME // changed packet sizes - packet(0x0a05,48); // ZC_ACK_ADD_ITEM_RODEX - packet(0x0a06,6,clif->pRodexRemoveItem); // CZ_REQ_REMOVE_RODEX_ITEM - packet(0x0a07,7); // ZC_ACK_REMOVE_RODEX_ITEM - packet(0x0a08,26,clif->pRodexOpenWriteMail); // CZ_REQ_OPEN_WRITE_RODEX + packet(0x0a06,clif->pRodexRemoveItem); // CZ_REQ_REMOVE_RODEX_ITEM + packet(0x0a08,clif->pRodexOpenWriteMail); // CZ_REQ_OPEN_WRITE_RODEX #endif // 2014-04-23aRagexeRE #if PACKETVER >= 20140423 // new packets - packet(0x0a14,6); // ZC_CHECK_RECEIVE_CHARACTER_NAME // changed packet sizes - packet(0x0a13,26,clif->pRodexCheckName); // CZ_CHECK_RECEIVE_CHARACTER_NAME + packet(0x0a13,clif->pRodexCheckName); // CZ_CHECK_RECEIVE_CHARACTER_NAME #endif // 2014-04-30aRagexeRE #if PACKETVER >= 20140430 // new packets - packet(0x0a15,11); // ZC_GOLDPCCAFE_POINT - packet(0x0a16,26,clif->pDull/*,XXX*/); // CZ_DYNAMICNPC_CREATE_REQUEST - packet(0x0a17,6); // ZC_DYNAMICNPC_CREATE_RESULT -#endif - -// 2014-05-08bRagexeRE -#if PACKETVER >= 20140508 -// changed packet sizes - packet(0x0a15,12); // ZC_GOLDPCCAFE_POINT -#endif - -// 2014-05-21aRagexeRE -#if PACKETVER >= 20140521 -// changed packet sizes - packet(0x0a07,9); // ZC_ACK_REMOVE_RODEX_ITEM - packet(0x0a14,10); // ZC_CHECK_RECEIVE_CHARACTER_NAME + packet(0x0a16,clif->pDull/*,XXX*/); // CZ_DYNAMICNPC_CREATE_REQUEST #endif /* Roulette System [Yommy/Hercules] */ // 2014-06-05aRagexe #if PACKETVER >= 20140605 // new packets - packet(0x0a18,2); // ZC_ACCEPT_ENTER3 - packet(0x0a19,-1,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_ROULETTE - packet(0x0a1a,10); // ZC_ACK_OPEN_ROULETTE - packet(0x0A1B,2,clif->pRouletteInfo,0); // HEADER_CZ_REQ_ROULETTE_INFO - packet(0x0a1c,6); // ZC_ACK_ROULEITTE_INFO - packet(0x0a1d,14,clif->pDull/*,XXX*/); // CZ_REQ_CLOSE_ROULETTE + packet(0x0a19,clif->pDull/*,XXX*/); // CZ_REQ_OPEN_ROULETTE + packet(0x0A1B,clif->pRouletteInfo,0); // HEADER_CZ_REQ_ROULETTE_INFO + packet(0x0a1d,clif->pDull/*,XXX*/); // CZ_REQ_CLOSE_ROULETTE #endif /* Roulette System [Yommy/Hercules] */ // 2014-06-11bRagexe / RE. moved by 4144 #if PACKETVER >= 20140611 // new packets - packet(0x0a1e,3); // ZC_ACK_CLOSE_ROULETTE - packet(0x0a1f,2,clif->pRouletteGenerate,0); // CZ_REQ_GENERATE_ROULETTE - packet(0x0a20,21); // ZC_ACK_GENERATE_ROULETTE - packet(0x0a21,6,clif->pDull/*,XXX*/); // CZ_RECV_ROULETTE_ITEM - packet(0x0a22,3); // ZC_RECV_ROULETTE_ITEM - packet(0x0a23,-1); // ZC_ALL_ACH_LIST - packet(0x0a24,35); // ZC_ACH_UPDATE - packet(0x0a25,6,clif->pAchievementGetReward, 2); // CZ_REQ_ACH_REWARD - packet(0x0a26,7); // ZC_REQ_ACH_REWARD_ACK + packet(0x0a1f,clif->pRouletteGenerate,0); // CZ_REQ_GENERATE_ROULETTE + packet(0x0a21,clif->pDull/*,XXX*/); // CZ_RECV_ROULETTE_ITEM + packet(0x0a25,clif->pAchievementGetReward,2); // CZ_REQ_ACH_REWARD // changed packet sizes - packet(0x0a18,14); // ZC_ACCEPT_ENTER3 - packet(0x0a19,2,clif->pRouletteOpen,0); // CZ_REQ_OPEN_ROULETTE - packet(0x0a1a,23); // ZC_ACK_OPEN_ROULETTE - packet(0x0a1c,-1); // ZC_ACK_ROULEITTE_INFO - packet(0x0a1d,2,clif->pRouletteClose,0); // CZ_REQ_CLOSE_ROULETTE + packet(0x0a19,clif->pRouletteOpen,0); // CZ_REQ_OPEN_ROULETTE + packet(0x0a1d,clif->pRouletteClose,0); // CZ_REQ_CLOSE_ROULETTE #endif // 2014-06-18cRagexeRE #if PACKETVER >= 20140618 // changed packet sizes - packet(0x0a21,3,clif->pRouletteRecvItem,2); // CZ_RECV_ROULETTE_ITEM - packet(0x0a22,5); // ZC_RECV_ROULETTE_ITEM -#endif - -// 2014-06-25aRagexeRE -#if PACKETVER >= 20140625 -// new packets - packet(0x0a27,8); // ZC_RECOVERY2 - packet(0x0a28,3); // ZC_ACK_OPENSTORE2 -// changed packet sizes - packet(0x0a24,36); // ZC_ACH_UPDATE + packet(0x0a21,clif->pRouletteRecvItem,2); // CZ_RECV_ROULETTE_ITEM #endif // 2014-07-02aRagexeRE #if PACKETVER >= 20140702 // new packets - packet(0x0a29,6); // ZC_REQ_AU_BOT - packet(0x0a2a,6,clif->pDull/*,XXX*/); // CZ_ACK_AU_BOT -#endif - -// 2014-07-16aRagexeRE -#if PACKETVER >= 20140716 -// changed packet sizes - packet(0x09e7,3); // ZC_NOTIFY_UNREAD_RODEX -#endif - -// 2014-07-23aRagexeRE -#if PACKETVER >= 20140723 -// new packets - packet(0x0a2b,14); // ZC_SE_CASHSHOP_OPEN2 - packet(0x0a2c,12); // ZC_SE_PC_BUY_TAIWANCASHITEM_RESULT -// changed packet sizes - packet(0x0a24,56); // ZC_ACH_UPDATE -#endif - -// 2014-08-20aRagexeRE -#if PACKETVER >= 20140820 -// new packets - packet(0x0a2d,-1); // ZC_EQUIPWIN_MICROSCOPE_V6 + packet(0x0a2a,clif->pDull/*,XXX*/); // CZ_ACK_AU_BOT #endif // 2014-09-03aRagexeRE #if PACKETVER >= 20140903 // new packets - packet(0x0a2e,6,clif->pChangeTitle); // CZ_REQ_CHANGE_TITLE - packet(0x0a2f,7); // ZC_ACK_CHANGE_TITLE -// changed packet sizes -#endif - -// 2014-09-24bRagexeRE -#if PACKETVER >= 20140924 -// new packets - packet(0x0a30,106); // ZC_ACK_REQNAMEALL2 - packet(0x0a31,-1); // ZC_RESULT_PACKAGE_ITEM_TEST - packet(0x0a32,2); // ZC_OPEN_RODEX_THROUGH_NPC_ONLY - packet(0x0a33,7); // ZC_UPDATE_ROULETTE_COIN - packet(0x0a34,6); // ZC_UPDATE_TAIWANCASH -#endif - -// 2014-10-01bRagexeRE -#if PACKETVER >= 20141001 -// changed packet sizes - packet(0x0a24,66); // ZC_ACH_UPDATE -#endif - -// 2014-10-08bRagexeRE -#if PACKETVER >= 20141008 + packet(0x0a2e,clif->pChangeTitle); // CZ_REQ_CHANGE_TITLE // changed packet sizes - packet(0x0a05,49); // ZC_ACK_ADD_ITEM_RODEX #endif // 2014-11-19bRagexeRE #if PACKETVER >= 20141119 // new packets - packet(0x0A35,4,clif->pOneClick_ItemIdentify,2); + packet(0x0A35,clif->pOneClick_ItemIdentify,2); // changed packet sizes - packet(0x0a05,53); // ZC_ACK_ADD_ITEM_RODEX -#endif - -// 2014-11-26aRagexeRE -#if PACKETVER >= 20141126 -// new packets - packet(0x0a36,7); // ZC_HP_INFO_TINY - packet(0x0a37,57); // ZC_ITEM_PICKUP_ACK_V7 -#endif - -// 2015-01-28aRagexeRE -#if PACKETVER >= 20150128 -// new packets - packet(0x0a38,3); -#endif - -// 2015-03-11aRagexeRE -#if PACKETVER >= 20150311 -// new packets - packet(0x0a3a,12); -// changed packet sizes -#endif - -// 2015-04-15aRagexeRE -#if PACKETVER >= 20150415 -// changed packet sizes - packet(0x0a39,36); // CH_UNKNOWN_MAKE_CHAR // in char server used from 20151001. is this correct? -#endif - -// 2015-04-22aRagexeRE -#if PACKETVER >= 20150422 -// new packets - packet(0x0a3b,-1); -// changed packet sizes -#endif - -// 2015-05-20aRagexeRE -#if PACKETVER >= 20150520 -// new packets - packet(0x0a3c,-1); - packet(0x0a3d,18,clif->pDull/*,XXX*/); -#endif - -// 2015-06-03bRagexeRE -#if PACKETVER >= 20150603 -// new packets - packet(0x0a3e,-1); -#endif - -// 2015-06-24aRagexeRE -#if PACKETVER >= 20150624 -// new packets - packet(0x0a3f,9); -#endif - -// 2015-08-12aRagexeRE -#if PACKETVER >= 20150812 -// new packets - packet(0x0a40,11); -#endif - -// 2015-09-09aRagexeRE -#if PACKETVER >= 20150909 -// new packets - packet(0x0a41,18); -#endif - -// 2015-09-16aRagexeRE -#if PACKETVER >= 20150916 -// new packets - packet(0x0a42,43); -#endif - -// 2015-10-07aRagexeRE -#if PACKETVER >= 20151007 -// new packets - packet(0x0a43,85); - packet(0x0a44,-1); -#endif - -// 2015-10-28cRagexeRE -#if PACKETVER >= 20151028 -// new packets - packet(0x0a45,-1); #endif // 2015-11-04aRagexeRE #if PACKETVER >= 20151104 // new packets - packet(0x0a46,14,clif->pReqStyleChange); - packet(0x0a47,3); - packet(0x0a48,2,clif->pDull/*,XXX*/); -#endif - -// 2015-11-18aRagexeRE -#if PACKETVER >= 20151118 -// new packets - packet(0x0a49,22); - packet(0x0a4a,6); - packet(0x0a4b,22); // ZC_AIRSHIP_MAPMOVE - packet(0x0a4c,28); // ZC_AIRSHIP_SERVERMOVE -#endif - -// 2016-01-27aRagexeRE -#if PACKETVER >= 20160127 -// new packets - packet(0x0a4d,-1); -// changed packet sizes -#endif - -// 2016-03-02bRagexeRE -#if PACKETVER >= 20160302 -// new packets - packet(0x0a4e,4); - packet(0x0a4f,-1,clif->pDull/*,XXX*/); - packet(0x0a50,6); - packet(0x0a51,34); -// changed packet sizes -#endif - -// 2016-03-16aRagexeRE -#if PACKETVER >= 20160316 -// new packets - packet(0x0a52,20,clif->pDull/*,XXX*/); - packet(0x0a53,10); - packet(0x0a54,-1); - packet(0x0a55,2); - packet(0x0a56,6,clif->pDull/*,XXX*/); - packet(0x0a57,6); - packet(0x0a58,8); - packet(0x0a59,-1); - packet(0x0a5a,2,clif->pDull/*,XXX*/); - packet(0x0a5b,7); - packet(0x0a5c,18,clif->pDull/*,XXX*/); - packet(0x0a5d,6); -// changed packet sizes + packet(0x0a46,clif->pReqStyleChange); #endif // 2016-03-23aRagexeRE #if PACKETVER >= 20160323 // new packets - packet(0x0a68,3,clif->pOpenUIRequest); - packet(0x0a69,6); - packet(0x0a6a,12); - packet(0x0a6b,-1); + packet(0x0a68,clif->pOpenUIRequest); // changed packet sizes #endif // 2016-03-30aRagexeRE #if PACKETVER >= 20160330 // new packets - packet(0x0a6c,7,clif->pDull/*,XXX*/); - packet(0x0a6d,-1); - packet(0x0a6e,-1,clif->pRodexSendMail); // CZ_RODEX_SEND_MAIL - packet(0x0a6f,-1); + packet(0x0a6e,clif->pRodexSendMail); // CZ_RODEX_SEND_MAIL // changed packet sizes #endif -// 2016-04-27aRagexeRE -#if PACKETVER >= 20160427 -// new packets -// changed packet sizes - packet(0x0a50,4); -#endif - -// 2016-05-04aRagexeRE -#if PACKETVER >= 20160504 -// new packets - packet(0x0a70,2,clif->pDull/*,XXX*/); - packet(0x0a71,-1); - packet(0x0a72,61); -// changed packet sizes -#endif - -// 2016-05-11aRagexeRE -#if PACKETVER >= 20160511 -// new packets - packet(0x0a73,6); - packet(0x0a74,8); -// changed packet sizes -#endif - -// 2016-05-18aRagexeRE -#if PACKETVER >= 20160518 -// new packets - packet(0x0a76,80); -// changed packet sizes - packet(0x0a73,2); -#endif - -// 2016-05-25aRagexeRE +// all 2016-05-25 #if PACKETVER >= 20160525 -// new packets - packet(0x0a77,15); - packet(0x0a78,15); -// changed packet sizes -#endif - -// 2016-06-01aRagexeRE -#if PACKETVER >= 20160601 -// new packets - packet(0x0a79,-1); - packet(0x0a7b,-1); - packet(0x0a7c,-1); - packet(0x0a7d,-1); // ZC_RODEX_MAILLIST -// changed packet sizes -#endif - -// 2016-06-15aRagexeRE -#if PACKETVER >= 20160615 -// new packets - packet(0x0a7e,4); - packet(0x0a7f,-1); - packet(0x0a80,2); - packet(0x0a81,3); -// changed packet sizes -#endif - -// 2016-06-22aRagexeRE -#if PACKETVER >= 20160622 -// new packets - packet(0x0a82,46); - packet(0x0a83,46); - packet(0x0a84,94); - packet(0x0a85,82); - packet(0x0a86,-1); - packet(0x0a87,4); - packet(0x0a88,2); -// changed packet sizes -#endif - -// 2016-06-29aRagexeRE -#if PACKETVER >= 20160629 -// new packets - packet(0x0a89,32); - packet(0x0a8a,6); - packet(0x0a8b,2); - packet(0x0a8c,2); - packet(0x0a8d,-1); -// changed packet sizes - packet(0x0a80,6); -#endif - -// 2016-07-06cRagexeRE -#if PACKETVER >= 20160706 -// new packets - packet(0x0a81,3); -// changed packet sizes - packet(0x0a7e,-1); - packet(0x0a89,57); -#endif - -// 2016-07-13aRagexeRE -#if PACKETVER >= 20160713 -// new packets -// changed packet sizes - packet(0x0a87,-1); -#endif - -// 2016-07-20aRagexeRE -#if PACKETVER >= 20160720 -// new packets - packet(0x0a8e,2); - packet(0x0a8f,2); - packet(0x0a90,3); -// changed packet sizes -#endif - -// 2016-07-27aRagexeRE -#if PACKETVER >= 20160727 -// new packets - packet(0x0a91,-1); - packet(0x0a92,-1); - packet(0x0a93,3); -// changed packet sizes -#endif - -// 2016-08-03bRagexeRE -#if PACKETVER >= 20160803 -// new packets - packet(0x0a94,2); -// changed packet sizes - packet(0x0a81,4); -#endif - -// 2016-09-07aRagexeRE -#if PACKETVER >= 20160907 -// new packets - packet(0x0a95,4); -// changed packet sizes -#endif - -// 2016-09-21bRagexeRE -#if PACKETVER >= 20160921 -// new packets - packet(0x0a96,51); -// changed packet sizes - packet(0x0a37,59); // ZC_ITEM_PICKUP_ACK_V7 -#endif - -// 2016-09-28cRagexeRE -#if PACKETVER >= 20160928 -// new packets - packet(0x0a97,8); - packet(0x0a98,12); - packet(0x0a99,8); - packet(0x0a9a,10); - packet(0x0a9b,-1); - packet(0x0a9c,2); - packet(0x0a9d,4); - packet(0x0a9e,2); - packet(0x0a9f,2); -// changed packet sizes -#endif - -// 2016-10-05aRagexeRE -#if PACKETVER >= 20161005 -// new packets - packet(0x0aa0,2,clif->pDull/*,XXX*/); - packet(0x0aa1,4); - packet(0x0aa2,-1); - packet(0x0aa3,7); - packet(0x0aa4,2); -// changed packet sizes -#endif - -// 2016-10-26bRagexeRE -#if PACKETVER >= 20161026 -// new packets - packet(0x0aa5,-1); - packet(0x0aa6,36); -// changed packet sizes -#endif - -// 2016-11-30aRagexeRE -#if PACKETVER >= 20161130 -// new packets - packet(0x0aa7,6); - packet(0x0aa8,5); - packet(0x0aa9,-1); - packet(0x0aaa,-1); - packet(0x0aab,-1); -// changed packet sizes -#endif - -// 2016-12-07cRagexeRE -#if PACKETVER >= 20161207 -// new packets - packet(0x0aac,67); -// changed packet sizes -#endif - -// 2016-12-21aRagexeRE -#if PACKETVER >= 20161221 -// new packets - packet(0x0aad,47); - packet(0x0aae,2); - packet(0x0aaf,6); - packet(0x0ab0,6); - packet(0x0ab1,10); -// changed packet sizes -#endif - -// 2016-12-28aRagexeRE -#if PACKETVER >= 20161228 -// new packets -// changed packet sizes - packet(0x0ab1,14); -#endif - -// 2017-01-04bRagexeRE -#if PACKETVER >= 20170104 -// new packets - packet(0x0ab2,7); - packet(0x0ab3,15); -// changed packet sizes -#endif - -// 2017-01-11aRagexeRE -#if PACKETVER >= 20170111 -// new packets - packet(0x0ab4,4); - packet(0x0ab5,2); - packet(0x0ab6,6); - packet(0x0ab7,4); - packet(0x0ab8,2); - packet(0x0ab9,39); -// changed packet sizes -#endif - -// 2017-01-18aRagexeRE -#if PACKETVER >= 20170118 -// new packets - packet(0x0aba,2); - packet(0x0abb,2); -// changed packet sizes - packet(0x0aad,51); - packet(0x0ab3,19); -#endif - -// 2017-02-01aRagexeRE -#if PACKETVER >= 20170201 -// new packets - packet(0x0abc,-1); -// changed packet sizes -#endif - -// 2017-02-15aRagexeRE -#if PACKETVER >= 20170215 -// new packets - packet(0x0abd,10); -// changed packet sizes -#endif - -// 2017-02-22aRagexeRE -#if PACKETVER >= 20170222 -// new packets - packet(0x0abe,116); - packet(0x0abf,114); -// changed packet sizes + packet(0x0a77,clif->pCameraInfo); // CZ_CAMERA_INFO #endif // 2017-02-28aRagexeRE #if PACKETVER >= 20170228 // new packets - packet(0x0ac0,26,clif->pRodexOpenMailbox); // CZ_OPEN_RODEXBOX - packet(0x0ac1,26,clif->pRodexRefreshMaillist); // CZ_REQ_REFRESH_RODEX - packet(0x0ac2,-1); - packet(0x0ac3,2); - packet(0x0ac4,-1); - packet(0x0ac5,156,clif->pDull/*,XXX*/); - packet(0x0ac6,156); - packet(0x0ac7,156); // ZC_NPCACK_SERVERMOVE -// changed packet sizes - packet(0x0abe,-1); // ZC_WARPLIST - packet(0x0abf,-1); -#endif - -// 2017-03-08bRagexeRE -#if PACKETVER >= 20170308 -// new packets - packet(0x0ac8,2); - packet(0x0ac9,-1); -// changed packet sizes -#endif - -// 2017-03-22aRagexeRE -#if PACKETVER >= 20170322 -// new packets - packet(0x0aca,3); -// changed packet sizes -#endif - -// 2017-03-29cRagexeRE -#if PACKETVER >= 20170329 -// new packets -// changed packet sizes - packet(0x0aac,69); -#endif - -// 2017-04-05bRagexeRE -#if PACKETVER >= 20170405 -// new packets - packet(0x0acb,12); - packet(0x0acc,18); -// changed packet sizes -#endif - -// 2017-04-19bRagexeRE -#if PACKETVER >= 20170419 -// new packets - packet(0x0acd,23); -// changed packet sizes - packet(0x0a99,4); -#endif - -// 2017-04-26dRagexeRE -#if PACKETVER >= 20170426 -// new packets -// changed packet sizes - packet(0x0a98,10); -#endif - -// 2017-05-02dRagexeRE -#if PACKETVER >= 20170502 -// new packets - packet(0x0ace,4); -// changed packet sizes -#endif - -// 2017-06-14bRagexeRE -#if PACKETVER >= 20170614 -// new packets - packet(0x0acf,52); - packet(0x0ad0,11); - packet(0x0ad1,-1); -#endif - -// 2017-06-21aRagexeRE -#if PACKETVER >= 20170621 + packet(0x0ac0,clif->pRodexOpenMailbox); // CZ_OPEN_RODEXBOX + packet(0x0ac1,clif->pRodexRefreshMaillist); // CZ_REQ_REFRESH_RODEX // changed packet sizes - packet(0x0acf,57); -#endif - -// 2017-07-05aRagexeRE -#if PACKETVER >= 20170705 -// changed packet sizes - packet(0x0acf,64); -#endif - -// 2017-07-19aRagexeRE -#if PACKETVER >= 20170719 -// new packets - packet(0x0ad2,30); - packet(0x0ad3,-1); - packet(0x0ad4,-1); - packet(0x0ad5,2); - packet(0x0ad6,2); - packet(0x0ad7,8); - packet(0x0ad8,8); - packet(0x0ad9,-1); -// changed packet sizes -#endif - -// 2017-07-26cRagexeRE -#if PACKETVER >= 20170726 -// new packets - packet(0x0ada,30); #endif // 2017-08-30aRagexeRE #if PACKETVER >= 20170830 // new packets - packet(0x0adb,-1); // changed packet sizes - packet(0x006d,157); // HC_ACCEPT_MAKECHAR - packet(0x08e3,157); // HC_UPDATE_CHARINFO - packet(0x0a49, 20, clif->pPrivateAirshipRequest); + packet(0x0a49,clif->pPrivateAirshipRequest); #endif -// 2017-09-06cRagexeRE -#if PACKETVER >= 20170906 -// new packets - packet(0x0adc,6); -#endif - -// 2017-09-13bRagexeRE -#if PACKETVER >= 20170913 -// new packets - packet(0x0add,22); -#endif - -#if PACKETVER >= 20170920 -// new packets - packet(0x0ade,6); - packet(0x0adf,58); -#endif - -#if PACKETVER >= 20170927 -// new packets - packet(0x0ae0,30); -// changed packet sizes -#endif - -#ifdef PACKETVER_ZERO -// 2017-10-25bRagexe_zero -#if PACKETVER >= 20171025 -// new packets - packet(0x0ae1,28); -#endif -#endif // PACKETVER_ZERO - -// 2017-11-01bRagexeRE -#if PACKETVER >= 20171101 -// new packets - packet(0x0ae1,28); -#endif - -#ifdef PACKETVER_ZERO -// 2017-11-09aRagexe -#if PACKETVER >= 20171109 -// new packets - packet(0x0ae2,7); -#endif -// 2017-11-13aRagexe -#if PACKETVER >= 20171113 -// changed packet sizes - packet(0x0acf,68); -#endif -#endif // PACKETVER_ZERO - -// 2017-11-15aRagexeRE -#if PACKETVER >= 20171115 -// new packets - packet(0x0ae2,7); -// changed packet sizes - packet(0x0acf,68); -#endif - -#ifdef PACKETVER_ZERO -// 2017-11-23dRagexe -#if PACKETVER >= 20171123 -// new packets - packet(0x0ae3,-1); // AC_LOGIN_OTP -#endif - -// 2017-11-30bRagexe -#if PACKETVER >= 20171130 -// new packets - packet(0x0ae4,89); - packet(0x0ae5,-1); -// changed packet sizes -#endif -#endif // PACKETVER_ZERO - -// 2017-12-06aRagexeRE -#if PACKETVER >= 20171206 -// new packets - packet(0x0ae4,89); - packet(0x0ae5,-1); -// changed packet sizes -#endif - -#ifndef PACKETVER_ZERO -#if PACKETVER >= 20171213 -// new packets - packet(0x0ae3,-1); // AC_LOGIN_OTP - packet(0x0ae6,30); - packet(0x0ae7,30); -// changed packet sizes -#endif -#endif // PACKETVER_ZERO - #ifdef PACKETVER_ZERO #if PACKETVER >= 20171214 // new packets - packet(0x0ae6,30); - packet(0x0ae7,30); - packet(0x0ae8,2,clif->pChangeDress); + packet(0x0ae8,clif->pChangeDress); // changed packet sizes #endif #endif // PACKETVER_ZERO -// 2017-12-13bRagexe -#if PACKETVER >= 20171213 -// new packets - packet(0x0ae3,-1); // AC_LOGIN_OTP - packet(0x0ae6,30); - packet(0x0ae7,30); -// changed packet sizes -#endif - // 2017-12-20aRagexe #if PACKETVER >= 20171220 // new packets - packet(0x0ae8,2,clif->pChangeDress); - packet(0x0ae9,64); - packet(0x0aea,11); -// changed packet sizes -#endif - -// 2017-12-27aRagexe -#if PACKETVER >= 20171227 -// new packets - packet(0x0aeb,11); - packet(0x0aec,2); -// changed packet sizes - packet(0x0aea,2); -#endif - -// 2018-01-03aRagexe -#if PACKETVER >= 20180103 -// new packets - packet(0x0aed,2); - packet(0x0aee,2); -// changed packet sizes -#ifdef PACKETVER_RE - packet(0x09a0,6); // HC_CHARLIST_NOTIFY -#endif + packet(0x0ae8,clif->pChangeDress); // changed packet sizes #endif #if PACKETVER >= 20180117 // new packets - packet(0x0aef,2,clif->pAttendanceRewardRequest); - packet(0x0af0,10); -// changed packet sizes - packet(0x0ae9,13); -#endif - -// 2018-01-24bRagexeRE -#if PACKETVER >= 20180124 -// new packets - packet(0x0af2,40,clif->pDull/*,XXX*/); - packet(0x0af3,-1,clif->pDull/*,XXX*/); + packet(0x0aef,clif->pAttendanceRewardRequest); // changed packet sizes #endif @@ -4000,103 +1834,16 @@ packet(0x96e,-1,clif->ackmergeitems); // 2018-01-31dRagexe_zero #if PACKETVER >= 20180131 // new packets - packet(0x0af2,40,clif->pDull/*,XXX*/); - packet(0x0af3,-1,clif->pDull/*,XXX*/); - packet(0x0af4,11,clif->pUseSkillToPos,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND + packet(0x0af4,clif->pUseSkillToPos,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND // changed packet sizes - packet(0x0ae6,10,clif->pDull/*,XXX*/); #endif #endif // PACKETVER_ZERO -#ifdef PACKETVER_ZERO -// 2018-02-07bRagexe_zero -#if PACKETVER >= 20180207 -// new packets - packet(0x0af5,3); - packet(0x0af6,88); - packet(0x0af7,32); -// changed packet sizes -#endif -#else // PACKETVER_ZERO +#ifndef PACKETVER_ZERO // 2018-02-07bRagexeRE, 2018-02-07bRagexe #if PACKETVER >= 20180207 // new packets - packet(0x0af4,11,clif->pUseSkillToPos,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND - packet(0x0af5,3); - packet(0x0af6,88); - packet(0x0af7,32); -// changed packet sizes - packet(0x0ae6,10); -#endif -#endif // PACKETVER_ZERO - -#ifdef PACKETVER_RE -// 2018-02-21aRagexeRE -#if PACKETVER >= 20180221 -// new packets -// changed packet sizes - packet(0x0206,35); // ZC_FRIENDS_STATE -#endif -#endif // PACKETVER_RE - -#ifndef PACKETVER_ZERO -// 2018-03-07bRagexe -#if PACKETVER >= 20180307 -// new packets -// changed packet sizes - packet(0x0206,35); // ZC_FRIENDS_STATE -#endif -#endif // PACKETVER_ZERO - -#ifndef PACKETVER_ZERO -// 2018-03-21aRagexe, 2018-03-21aRagexeRE -#if PACKETVER >= 20180321 -// new packets - packet(0x0af8,11,clif->pDull/*,XXX*/); -// changed packet sizes - packet(0x0ae7,34,clif->pDull/*,XXX*/); -#endif -#endif // PACKETVER_ZERO - -#ifdef PACKETVER_ZERO -// 2018-03-28_1aRagexe_zero -#if PACKETVER >= 20180328 -// new packets - packet(0x0af8,11,clif->pDull/*,XXX*/); - packet(0x0af9,6,clif->pDull/*,XXX*/); - packet(0x0afa,54,clif->pDull/*,XXX*/); -// changed packet sizes - packet(0x0206,35); // ZC_FRIENDS_STATE - packet(0x0ae7,38,clif->pDull/*,XXX*/); -#endif -#endif // PACKETVER_ZERO - - -#ifndef PACKETVER_ZERO -// 2018-04-04bRagexe, 2018-04-04cRagexeRE -#if PACKETVER >= 20180404 -// new packets - packet(0x0af9,6,clif->pDull/*,XXX*/); - packet(0x0afa,54,clif->pDull/*,XXX*/); -// changed packet sizes - packet(0x0ae7,38,clif->pDull/*,XXX*/); -#endif -#endif // PACKETVER_ZERO - -#ifndef PACKETVER_ZERO -// 2018-04-18aRagexe, 2018-04-18bRagexeRE -#if PACKETVER >= 20180418 -// new packets - packet(0x0afb,-1,clif->pDull/*,XXX*/); -// changed packet sizes -#endif -#endif - -#ifdef PACKETVER_ZERO -// 2018-04-25_3aRagexe_zero -#if PACKETVER >= 20180425 -// new packets - packet(0x0afb,-1,clif->pDull/*,XXX*/); + packet(0x0af4,clif->pUseSkillToPos,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND // changed packet sizes #endif #endif // PACKETVER_ZERO @@ -4105,7 +1852,7 @@ packet(0x96e,-1,clif->ackmergeitems); // 2018-05-16cRagexe, 2018-05-16cRagexeRE #if PACKETVER >= 20180516 // new packets - packet(0x0afc,16,clif->pReqStyleChange2); + packet(0x0afc,clif->pReqStyleChange2); // changed packet sizes #endif #endif // PACKETVER_ZERO @@ -4114,227 +1861,65 @@ packet(0x96e,-1,clif->ackmergeitems); // 2018-05-23aRagexe_zero #if PACKETVER >= 20180523 // new packets - packet(0x0afc,16,clif->pReqStyleChange2); -// changed packet sizes -#endif -#endif // PACKETVER_ZERO - -// 2018-06-05bRagexe, 2018-06-05bRagexeRE, 2018-06-05bRagexe_zero -#if PACKETVER >= 20180605 -// new packets - packet(0x0afd,-1); - packet(0x0afe,-1,clif->pDull/*,XXX*/); - packet(0x0aff,-1,clif->pDull/*,XXX*/); -// changed packet sizes -#endif - -#ifndef PACKETVER_ZERO -// 2018-06-20cRagexe, 2018-06-20eRagexe, 2018-06-20dRagexeRE, 2018-06-20eRagexeRE -#if PACKETVER >= 20180620 -// new packets - packet(0x0b00,8); - packet(0x0b01,40,clif->pDull/*,XXX*/); -// changed packet sizes -#endif - -// 2018-07-04aRagexe, 2018-07-04aRagexeRE -#if PACKETVER >= 20180704 -// new packets - packet(0x0b02,26); // AC_REFUSE_LOGIN4 + packet(0x0afc,clif->pReqStyleChange2); // changed packet sizes - packet(0x0b01,56,clif->pDull/*,XXX*/); #endif #endif // PACKETVER_ZERO -// 2018-06-27aRagexe_zero -#if PACKETVER_ZERO_NUM >= 20180627 -// new packets - packet(0x0b00,8); - packet(0x0b01,56,clif->pDull/*,XXX*/); - packet(0x0b02,26); // AC_REFUSE_LOGIN4 -// changed packet sizes -#endif - // 2018-07-04aRagexeRE #if PACKETVER_RE_NUM >= 20180704 // new packets // changed packet sizes - packet(0x009d,19); // ZC_ITEM_ENTRY - packet(0x009e,19); // ZC_ITEM_FALL_ENTRY - packet(0x00a0,33); // ZC_ITEM_PICKUP_ACK - packet(0x00e9,29,clif->pDull/*,XXX*/); // ZC_ADD_EXCHANGE_ITEM - packet(0x00f4,31,clif->pDull/*,XXX*/); // ZC_ADD_ITEM_TO_STORE - packet(0x010a,6); // ZC_MVP_GETTING_ITEM - packet(0x0110,14); // ZC_ACK_TOUSESKILL - packet(0x0124,31); // ZC_ADD_ITEM_TO_CART - packet(0x018e,18,clif->pProduceMix); // CZ_REQMAKINGITEM - packet(0x018f,8); // ZC_ACK_REQMAKINGITEM - packet(0x01a3,7); // ZC_FEED_PET - packet(0x01ae,6,clif->pSelectArrow,2); // CZ_REQ_MAKINGARROW - packet(0x01c4,32); // ZC_ADD_ITEM_TO_STORE2 - packet(0x01c5,32); // ZC_ADD_ITEM_TO_CART2 - packet(0x01c8,15); // ZC_USE_ITEM_ACK2 - packet(0x01d7,15); // ZC_SPRITE_CHANGE2 - packet(0x01d8,58); // ZC_NOTIFY_STANDENTRY2 - packet(0x01d9,57); // ZC_NOTIFY_NEWENTRY2 - packet(0x01da,64); // ZC_NOTIFY_MOVEENTRY2 - packet(0x01fd,25,clif->pRepairItem); // CZ_REQ_ITEMREPAIR - packet(0x0223,10); // ZC_ACK_WEAPONREFINE - packet(0x022a,62); // ZC_NOTIFY_STANDENTRY3 - packet(0x022b,61); // ZC_NOTIFY_NEWENTRY3 - packet(0x022c,69); // ZC_NOTIFY_MOVEENTRY3 - packet(0x022e,73); // ZC_PROPERTY_HOMUN - packet(0x022f,7); // ZC_FEED_MER - packet(0x025b,8,clif->pCooking); // CZ_REQ_MAKINGITEM - packet(0x0298,10); // ZC_CASH_TIME_COUNTER - packet(0x0299,8); // ZC_CASH_ITEM_DELETE - packet(0x029a,37); // ZC_ITEM_PICKUP_ACK2 - packet(0x02b8,32); // ZC_ITEM_PICKUP_PARTY - packet(0x02d4,39); // ZC_ITEM_PICKUP_ACK3 - packet(0x02ec,71); // ZC_NOTIFY_MOVEENTRY4 - packet(0x02ed,63); // ZC_NOTIFY_NEWENTRY4 - packet(0x02ee,64); // ZC_NOTIFY_STANDENTRY4 - packet(0x0445,12,clif->pDull/*,XXX*/); // CZ_SIMPLE_BUY_CASH_POINT_ITEM - packet(0x080f,30); // ZC_ADD_EXCHANGE_ITEM2 - packet(0x081b,12); // ZC_UPDATE_ITEM_FROM_BUYING_STORE - packet(0x0824,8); // ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER - packet(0x084b,21); // ZC_ITEM_FALL_ENTRY4 - packet(0x0990,41); // ZC_ITEM_PICKUP_ACK_V5 - packet(0x09ad,12); // ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO - packet(0x09ae,19,clif->pDull/*,XXX*/); // CZ_REQ_APPLY_BARGAIN_SALE_ITEM - packet(0x09b0,10,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM - packet(0x09b2,10); // ZC_NOTIFY_BARGAIN_SALE_SELLING - packet(0x09b3,6); // ZC_NOTIFY_BARGAIN_SALE_CLOSE - packet(0x09c3,10,clif->pDull/*,XXX*/); // CZ_REQ_COUNT_BARGAIN_SALE_ITEM - packet(0x09c4,10); // ZC_ACK_COUNT_BARGAIN_SALE_ITEM - packet(0x09e6,24); // ZC_UPDATE_ITEM_FROM_BUYING_STORE2 - packet(0x09f7,77); // ZC_PROPERTY_HOMUN_2 - packet(0x0a05,63); // ZC_ACK_ADD_ITEM_RODEX - packet(0x0a09,55); // ZC_ADD_EXCHANGE_ITEM3 - packet(0x0a0a,57); // ZC_ADD_ITEM_TO_STORE3 - packet(0x0a0b,57); // ZC_ADD_ITEM_TO_CART3 - packet(0x0a0c,66); // ZC_ITEM_PICKUP_ACK_V6 - packet(0x0a1a,25); // ZC_ACK_OPEN_ROULETTE - packet(0x0a20,23); // ZC_ACK_GENERATE_ROULETTE - packet(0x0a22,7); // ZC_RECV_ROULETTE_ITEM - packet(0x0a37,69); // ZC_ITEM_PICKUP_ACK_V7 - packet(0x0a3d,20,clif->pDull/*,XXX*/); - packet(0x0a3f,11,clif->pDull/*,XXX*/); - packet(0x0a49,22,clif->pPrivateAirshipRequest); // CZ_PRIVATE_AIRSHIP_REQUEST - packet(0x0a4e,6); - packet(0x0a89,61); // ZC_NOTIFY_OFFLINE_STORE - packet(0x0a96,61); // ZC_ADD_EXCHANGE_ITEM4 - packet(0x0aa3,9,clif->pDull/*,XXX*/); - packet(0x0ab4,6,clif->pDull/*,XXX*/); - packet(0x0ab6,8,clif->pDull/*,XXX*/); - packet(0x0ab9,47); - packet(0x0ada,32); - packet(0x0add,24); // ZC_ITEM_FALL_ENTRY -#endif - -// 2018-07-25_2aRagexe_zero -#if PACKETVER_ZERO_NUM >= 20180725 -// new packets - packet(0x0b03,-1,clif->pDull/*,XXX*/); -// changed packet sizes -#endif - -#ifndef PACKETVER_ZERO -// 2018-08-01cRagexe, 2018-08-01cRagexeRE -#if PACKETVER >= 20180801 -// new packets - packet(0x0b03,-1); - packet(0x0b04,80,clif->pDull/*,XXX*/); -// changed packet sizes + packet(0x018e,clif->pProduceMix); // CZ_REQMAKINGITEM + packet(0x01ae,clif->pSelectArrow,2); // CZ_REQ_MAKINGARROW + packet(0x01fd,clif->pRepairItem); // CZ_REQ_ITEMREPAIR + packet(0x025b,clif->pCooking); // CZ_REQ_MAKINGITEM + packet(0x0445,clif->pDull/*,XXX*/); // CZ_SIMPLE_BUY_CASH_POINT_ITEM + packet(0x09ae,clif->pDull/*,XXX*/); // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + packet(0x09b0,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + packet(0x09c3,clif->pDull/*,XXX*/); // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + packet(0x0a49,clif->pPrivateAirshipRequest); // CZ_PRIVATE_AIRSHIP_REQUEST #endif -#endif // PACKETVER_ZERO -// 2018-08-08_2aRagexe_zero -#if PACKETVER_ZERO_NUM >= 20180808 +// 2018-11-14aRagexe_zero +#if PACKETVER_ZERO_NUM >= 20181114 // new packets - packet(0x0b04,80,clif->pDull/*,XXX*/); // changed packet sizes + packet(0x018e,clif->pProduceMix); // CZ_REQMAKINGITEM + packet(0x01ae,clif->pSelectArrow,2); // CZ_REQ_MAKINGARROW + packet(0x01fd,clif->pRepairItem); // CZ_REQ_ITEMREPAIR + packet(0x025b,clif->pCooking); // CZ_REQ_MAKINGITEM + packet(0x0445,clif->pDull/*,XXX*/); // CZ_SIMPLE_BUY_CASH_POINT_ITEM + packet(0x09ae,clif->pDull/*,XXX*/); // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + packet(0x09b0,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + packet(0x09c3,clif->pDull/*,XXX*/); // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + packet(0x0a49,clif->pPrivateAirshipRequest); // CZ_PRIVATE_AIRSHIP_REQUEST #endif -// 2018-08-22aRagexe_zero -#if PACKETVER_ZERO_NUM >= 20180822 +// 2018-11-21bRagexe +#if PACKETVER_ZERO_NUM >= 20181121 // new packets - packet(0x0b05,59); - packet(0x0b06,53,clif->pDull/*,XXX*/); - packet(0x0b07,-1); - packet(0x0b08,26,clif->pDull/*,XXX*/); - packet(0x0b09,-1,clif->pDull/*,XXX*/); - packet(0x0b0a,-1,clif->pDull/*,XXX*/); - packet(0x0b0b,3,clif->pDull/*,XXX*/); - packet(0x0b0c,155,clif->pDull/*,XXX*/); // changed packet sizes + packet(0x018e,clif->pProduceMix); // CZ_REQMAKINGITEM + packet(0x01ae,clif->pSelectArrow,2); // CZ_REQ_MAKINGARROW + packet(0x01fd,clif->pRepairItem); // CZ_REQ_ITEMREPAIR + packet(0x025b,clif->pCooking); // CZ_REQ_MAKINGITEM + packet(0x0445,clif->pDull/*,XXX*/); // CZ_SIMPLE_BUY_CASH_POINT_ITEM + packet(0x09ae,clif->pDull/*,XXX*/); // CZ_REQ_APPLY_BARGAIN_SALE_ITEM + packet(0x09b0,clif->pDull/*,XXX*/); // CZ_REQ_REMOVE_BARGAIN_SALE_ITEM + packet(0x09c3,clif->pDull/*,XXX*/); // CZ_REQ_COUNT_BARGAIN_SALE_ITEM + packet(0x0a49,clif->pPrivateAirshipRequest); // CZ_PRIVATE_AIRSHIP_REQUEST #endif -// 2018-08-29aRagexe -#if PACKETVER_MAIN_NUM >= 20180829 -// new packets - packet(0x0b05,59); - packet(0x0b06,53,clif->pDull/*,XXX*/); - packet(0x0b07,-1); - packet(0x0b08,26); // ZC_INVENTORY_START - packet(0x0b09,-1); // ZC_STORE_ITEMLIST_NORMAL_V6 - packet(0x0b0a,-1); // ZC_STORE_ITEMLIST_EQUIP_V6 - packet(0x0b0b,3); // ZC_INVENTORY_END - packet(0x0b0c,155,clif->pDull/*,XXX*/); -// changed packet sizes +#if PACKETVER_MAIN_NUM >= 20181002 || PACKETVER_RE_NUM >= 20181002 || PACKETVER_ZERO_NUM >= 20181010 + packet(0x0b10,clif->pStartUseSkillToId); + packet(0x0b11,clif->pStopUseSkillToId); #endif -// 2018-08-29aRagexeRE -#if PACKETVER_RE_NUM >= 20180829 -// new packets - packet(0x0b05,63); - packet(0x0b06,53,clif->pDull/*,XXX*/); - packet(0x0b07,-1); - packet(0x0b08,26); // ZC_INVENTORY_START - packet(0x0b09,-1); // ZC_STORE_ITEMLIST_NORMAL_V6 - packet(0x0b0a,-1); // ZC_STORE_ITEMLIST_EQUIP_V6 - packet(0x0b0b,3); // ZC_INVENTORY_END - packet(0x0b0c,155,clif->pDull/*,XXX*/); -// changed packet sizes -#endif - -// 2018-09-05aRagexe_zero -#if PACKETVER_ZERO_NUM >= 20180905 -// new packets - packet(0x0b0d,6,clif->pDull/*,XXX*/); -// changed packet sizes - packet(0x0b08,27); // ZC_INVENTORY_START - packet(0x0b0b,4); // ZC_INVENTORY_END -#endif - -#ifndef PACKETVER_ZERO -// 2018-09-12dRagexe, 2018-09-12dRagexeRE -#if PACKETVER >= 20180912 -// new packets - packet(0x0b0d,10,clif->pDull/*,XXX*/); - packet(0x0b0e,-1,clif->pDull/*,XXX*/); - packet(0x0b0f,-1,clif->pDull/*,XXX*/); -// changed packet sizes - packet(0x0b08,27,clif->pDull/*,XXX*/); // ZC_INVENTORY_START - packet(0x0b0b,4,clif->pDull/*,XXX*/); // ZC_INVENTORY_END -#endif -#endif - -// 2018-09-19aRagexeRE -#if PACKETVER_RE_NUM >= 20180919 -// new packets -// changed packet sizes - packet(0x0b08,-1); // ZC_INVENTORY_START -#endif - -// 2018-09-19aRagexe_zero -#if PACKETVER_ZERO_NUM >= 20180919 -// new packets - packet(0x0b0e,-1,clif->pDull/*,XXX*/); - packet(0x0b0f,-1,clif->pDull/*,XXX*/); -// changed packet sizes - packet(0x0b08,-1); // ZC_INVENTORY_START - packet(0x0b0d,10,clif->pDull/*,XXX*/); +#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 + packet(0x0b14,clif->pInventoryExpansion); + packet(0x0b16,clif->pInventoryExpansionConfirmed); + packet(0x0b19,clif->pInventoryExpansionRejected); #endif #endif /* MAP_PACKETS_H */ diff --git a/src/map/packets_keys_main.h b/src/map/packets_keys_main.h index a9d9a7020..7a1f84faa 100644 --- a/src/map/packets_keys_main.h +++ b/src/map/packets_keys_main.h @@ -3,6 +3,7 @@ * http://herc.ws - http://github.com/HerculesWS/Hercules * * Copyright (C) 2013-2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -33,71 +34,168 @@ #if PACKETVER == 20101123 || \ PACKETVER == 20101124 || \ PACKETVER == 20101126 - packetKeys(0x49357D72,0x22C370A1,0x5F836591); + packetKeys(0x49357d72,0x22c370a1,0x5f836591); +#endif + +// 2010-11-23aRagexeRE, 2010-11-24aRagexeRE, 2010-11-24bRagexeRE, 2010-11-25aRagexeRE, 2010-11-26aRagexeRE, 2010-11-30aRagexeRE, 2010-12-07aRagexeRE, 2010-12-14aRagexeRE, 2010-12-21aRagexeRE, 2010-12-23aRagexeRE, 2010-12-28aRagexeRE, 2011-01-04aRagexeRE, 2011-01-05aRagexeRE, 2011-01-11aRagexeRE, 2011-01-18aRagexeRE, 2011-01-25aRagexeRE, 2011-01-26aRagexeRE, 2011-01-26bRagexeRE, 2011-01-31aRagexeRE, 2011-01-31bRagexeRE, 2011-01-31cRagexeRE, 2011-02-08aRagexeRE, 2011-02-15aRagexeRE, 2011-02-22aRagexeRE, 2011-02-23aRagexeRE, 2011-02-23bRagexeRE, 2011-02-24aRagexeRE, 2011-02-25aRagexeRE, 2011-02-28aRagexeRE, 2011-03-08aRagexeRE, 2011-03-09aRagexeRE, 2011-03-09bRagexeRE, 2011-03-09cRagexeRE, 2011-03-09dRagexeRE, 2011-03-15aRagexeRE, 2011-03-22aRagexeRE, 2011-03-29aRagexeRE, 2011-03-30aRagexeRE, 2011-03-30cRagexeRE, 2011-04-05aRagexeRE, 2011-04-12aRagexeRE, 2011-04-19aRagexeRE, 2011-04-20aRagexeRE, 2011-04-26aRagexeRE, 2011-04-27aRagexeRE, 2011-05-03aRagexeRE, 2011-05-11aRagexeRE, 2011-05-17bRagexeRE, 2011-05-24aRagexeRE, 2011-05-26aRagexeRE, 2011-05-31aRagexeRE, 2011-06-07aRagexeRE, 2011-06-08aRagexeRE, 2011-06-08bRagexeRE, 2011-06-08cRagexeRE, 2011-06-09aRagexeRE, 2011-06-14bRagexeRE, 2011-06-22aRagexeRE, 2011-06-28aRagexeRE, 2011-07-06aRagexeRE, 2011-07-13aRagexeRE, 2011-07-13bRagexeRE, 2011-07-13cRagexeRE, 2011-07-19aRagexeRE, 2011-07-26aRagexeRE, 2011-08-03aRagexeRE, 2011-08-03bRagexeRE, 2011-08-10aRagexeRE, 2013-12-23aRagexeRE, 2014-05-08aRagexe, 2014-05-08aRagexeRE, 2014-06-11eRagexe, 2015-02-25hRagexe, 2018-03-15aRagexe, 2018-03-21aRagexe, 2018-03-21aRagexeRE, 2018-03-28bRagexe, 2018-03-28bRagexeRE, 2018-04-04bRagexe, 2018-04-04cRagexeRE, 2018-04-18aRagexe, 2018-04-18bRagexeRE, 2018-04-25cRagexe, 2018-04-25cRagexeRE, 2018-05-02bRagexe, 2018-05-02bRagexeRE, 2018-05-02dRagexeRE, 2018-05-09aRagexe, 2018-05-16cRagexe, 2018-05-16cRagexeRE, 2018-05-23aRagexe, 2018-05-23aRagexeRE, 2018-05-30aRagexe, 2018-05-30bRagexeRE, 2018-05-30cRagexeRE, 2018-06-05bRagexe, 2018-06-05bRagexeRE, 2018-06-12aRagexeRE, 2018-06-12bRagexeRE, 2018-06-20cRagexe, 2018-06-20dRagexeRE, 2018-06-20eRagexe, 2018-06-20eRagexeRE, 2018-06-21aRagexe, 2018-06-21aRagexeRE, 2018-07-04aRagexe, 2018-07-04aRagexeRE, 2018-07-11aRagexeRE, 2018-07-18bRagexe, 2018-07-18bRagexeRE, 2018-07-18bRagexeRE1, 2018-07-18cRagexe, 2018-07-18cRagexeRE, 2018-08-01cRagexe, 2018-08-01cRagexeRE, 2018-08-08bRagexe, 2018-08-08bRagexeRE, 2018-08-22cRagexe, 2018-08-22cRagexeRE, 2018-08-29aRagexe, 2018-08-29aRagexeRE, 2018-08-29bRagexeRE, 2018-08-31aRagexe, 2018-09-12dRagexe, 2018-09-12dRagexeRE, 2018-09-19aRagexe, 2018-09-19aRagexeRE, 2018-10-02aRagexe, 2018-10-02aRagexeRE, 2018-10-02bRagexe, 2018-10-02bRagexeRE, 2018-10-17_02aRagexe, 2018-10-17_02aRagexeRE, 2018-10-17_03aRagexe, 2018-10-17_03aRagexeRE, 2018-10-17bRagexe, 2018-10-17bRagexeRE, 2018-10-24bRagexe, 2018-10-31aRagexe, 2018-10-31bRagexe, 2018-10-31cRagexeRE, 2018-11-07aRagexe, 2018-11-07aRagexeRE, 2018-11-14cRagexe, 2018-11-14cRagexeRE, 2018-11-14dRagexe, 2018-11-14dRagexeRE, 2018-11-21bRagexe, 2018-11-21cRagexeRE, 2018-11-28aRagexe, 2018-11-28aRagexeRE, 2018-11-28bRagexe, 2018-11-28cRagexe, 2018-12-05aRagexe, 2018-12-05bRagexeRE, 2018-12-12aRagexe, 2018-12-12aRagexeRE, 2018-12-12bRagexe, 2018-12-12bRagexeRE +#if PACKETVER == 20101123 || \ + PACKETVER == 20101124 || \ + PACKETVER == 20101125 || \ + PACKETVER == 20101126 || \ + PACKETVER == 20101130 || \ + PACKETVER == 20101207 || \ + PACKETVER == 20101214 || \ + PACKETVER == 20101221 || \ + PACKETVER == 20101223 || \ + PACKETVER == 20101228 || \ + PACKETVER == 20110104 || \ + PACKETVER == 20110105 || \ + PACKETVER == 20110111 || \ + PACKETVER == 20110118 || \ + PACKETVER == 20110125 || \ + PACKETVER == 20110126 || \ + PACKETVER == 20110131 || \ + PACKETVER == 20110208 || \ + PACKETVER == 20110215 || \ + PACKETVER == 20110222 || \ + PACKETVER == 20110223 || \ + PACKETVER == 20110224 || \ + PACKETVER == 20110225 || \ + PACKETVER == 20110228 || \ + PACKETVER == 20110308 || \ + PACKETVER == 20110309 || \ + PACKETVER == 20110315 || \ + PACKETVER == 20110322 || \ + PACKETVER == 20110329 || \ + PACKETVER == 20110330 || \ + PACKETVER == 20110405 || \ + PACKETVER == 20110412 || \ + PACKETVER == 20110419 || \ + PACKETVER == 20110420 || \ + PACKETVER == 20110426 || \ + PACKETVER == 20110427 || \ + PACKETVER == 20110503 || \ + PACKETVER == 20110511 || \ + PACKETVER == 20110517 || \ + PACKETVER == 20110524 || \ + PACKETVER == 20110526 || \ + PACKETVER == 20110531 || \ + PACKETVER == 20110607 || \ + PACKETVER == 20110608 || \ + PACKETVER == 20110609 || \ + PACKETVER == 20110614 || \ + PACKETVER == 20110622 || \ + PACKETVER == 20110628 || \ + PACKETVER == 20110706 || \ + PACKETVER == 20110713 || \ + PACKETVER == 20110719 || \ + PACKETVER == 20110726 || \ + PACKETVER == 20110803 || \ + PACKETVER == 20110810 || \ + PACKETVER == 20131223 || \ + PACKETVER == 20140508 || \ + PACKETVER == 20140611 || \ + PACKETVER == 20150225 || \ + PACKETVER == 20180315 || \ + PACKETVER == 20180321 || \ + PACKETVER == 20180328 || \ + PACKETVER == 20180404 || \ + PACKETVER == 20180418 || \ + PACKETVER == 20180425 || \ + PACKETVER == 20180502 || \ + PACKETVER == 20180509 || \ + PACKETVER == 20180516 || \ + PACKETVER == 20180523 || \ + PACKETVER == 20180530 || \ + PACKETVER == 20180605 || \ + PACKETVER == 20180612 || \ + PACKETVER == 20180620 || \ + PACKETVER == 20180621 || \ + PACKETVER == 20180704 || \ + PACKETVER == 20180711 || \ + PACKETVER == 20180718 || \ + PACKETVER == 20180801 || \ + PACKETVER == 20180808 || \ + PACKETVER == 20180822 || \ + PACKETVER == 20180829 || \ + PACKETVER == 20180831 || \ + PACKETVER == 20180912 || \ + PACKETVER == 20180919 || \ + PACKETVER == 20181002 || \ + PACKETVER == 20181017 || \ + PACKETVER == 20181024 || \ + PACKETVER == 20181031 || \ + PACKETVER == 20181107 || \ + PACKETVER == 20181114 || \ + PACKETVER == 20181121 || \ + PACKETVER == 20181128 || \ + PACKETVER == 20181205 || \ + PACKETVER >= 20181212 + packetKeys(0x00000000,0x00000000,0x00000000); #endif // 2010-11-30aRagexe #if PACKETVER == 20101130 - packetKeys(0x3726593C,0x0EFD5EE8,0x79036DF9); + packetKeys(0x3726593c,0x0efd5ee8,0x79036df9); #endif // 2010-12-07bRagexe #if PACKETVER == 20101207 - packetKeys(0x66111112,0x2B7B53AA,0x04E76DF8); + packetKeys(0x66111112,0x2b7b53aa,0x04e76df8); #endif // 2010-12-14aRagexe #if PACKETVER == 20101214 - packetKeys(0x5E535D06,0x4E297F0E,0x400B6AD8); + packetKeys(0x5e535d06,0x4e297f0e,0x400b6ad8); #endif // 2010-12-21aRagexe #if PACKETVER == 20101221 - packetKeys(0x0448466A,0x41554AC9,0x5B4710B2); + packetKeys(0x0448466a,0x41554ac9,0x5b4710b2); #endif // 2010-12-28aRagexe #if PACKETVER == 20101228 - packetKeys(0x50C638A5,0x4BF86B20,0x480C3746); + packetKeys(0x50c638a5,0x4bf86b20,0x480c3746); #endif // 2011-01-04aRagexe #if PACKETVER == 20110104 - packetKeys(0x55DB401F,0x047D4E02,0x6D8F2EA3); + packetKeys(0x55db401f,0x047d4e02,0x6d8f2ea3); #endif // 2011-01-11aRagexe #if PACKETVER == 20110111 - packetKeys(0x2D5F6302,0x2A361CD6,0x39D661D6); + packetKeys(0x2d5f6302,0x2a361cd6,0x39d661d6); #endif // 2011-01-18aRagexe #if PACKETVER == 20110118 - packetKeys(0x3C777D2D,0x00541A1D,0x5E0053A2); + packetKeys(0x3c777d2d,0x00541a1d,0x5e0053a2); #endif // 2011-01-25aRagexe, 2011-01-26aRagexe, 2011-01-26bRagexe, 2011-01-31aRagexe #if PACKETVER == 20110125 || \ PACKETVER == 20110126 || \ PACKETVER == 20110131 - packetKeys(0x6BB84BB0,0x4C004382,0x10AE3260); + packetKeys(0x6bb84bb0,0x4c004382,0x10ae3260); #endif // 2011-01-31bRagexe, 2011-02-01aRagexe #if PACKETVER == 20110131 || \ PACKETVER == 20110201 - packetKeys(0x68871E62,0x60D17266,0x74726DAA); + packetKeys(0x68871e62,0x60d17266,0x74726daa); #endif // 2011-02-08aRagexe, 2011-02-10aRagexe, 2011-02-10bRagexe #if PACKETVER == 20110208 || \ PACKETVER == 20110210 - packetKeys(0x72BA4E9D,0x281E1DF1,0x208255AA); + packetKeys(0x72ba4e9d,0x281e1df1,0x208255aa); #endif // 2011-02-15aRagexe #if PACKETVER == 20110215 - packetKeys(0x1B174D76,0x32005014,0x7B8B72D5); + packetKeys(0x1b174d76,0x32005014,0x7b8b72d5); #endif // 2011-02-22aRagexe, 2011-02-23aRagexe, 2011-02-23bRagexe, 2011-02-24aRagexe, 2011-02-25aRagexe, 2011-02-25bRagexe @@ -105,70 +203,70 @@ PACKETVER == 20110223 || \ PACKETVER == 20110224 || \ PACKETVER == 20110225 - packetKeys(0x48F73B56,0x155F7D66,0x44AB57CE); + packetKeys(0x48f73b56,0x155f7d66,0x44ab57ce); #endif // 2011-02-28aRagexe #if PACKETVER == 20110228 - packetKeys(0x26385EBF,0x7A8C7534,0x60AE2C34); + packetKeys(0x26385ebf,0x7a8c7534,0x60ae2c34); #endif // 2011-03-08aRagexe, 2011-03-09aRagexe, 2011-03-09bRagexe, 2011-03-09cRagexe, 2011-03-09dRagexe #if PACKETVER == 20110308 || \ PACKETVER == 20110309 - packetKeys(0x003F1B20,0x7A1E12A3,0x34994AAD); + packetKeys(0x003f1b20,0x7a1e12a3,0x34994aad); #endif // 2011-03-15aRagexe, 2011-03-16aRagexe #if PACKETVER == 20110315 || \ PACKETVER == 20110316 - packetKeys(0x62967D7D,0x34833D1A,0x26D45ECA); + packetKeys(0x62967d7d,0x34833d1a,0x26d45eca); #endif // 2011-03-22aRagexe #if PACKETVER == 20110322 - packetKeys(0x5870617C,0x638D5376,0x739F4817); + packetKeys(0x5870617c,0x638d5376,0x739f4817); #endif // 2011-03-29aRagexe, 2011-03-30aRagexe #if PACKETVER == 20110329 || \ PACKETVER == 20110330 - packetKeys(0x06900BB7,0x45DB687B,0x197B017B); + packetKeys(0x06900bb7,0x45db687b,0x197b017b); #endif // 2011-04-05aRagexe #if PACKETVER == 20110405 - packetKeys(0x248D5C37,0x1C6A1B37,0x1F644FDB); + packetKeys(0x248d5c37,0x1c6a1b37,0x1f644fdb); #endif // 2011-04-12bRagexe #if PACKETVER == 20110412 - packetKeys(0x3DE86BFC,0x0DD47F80,0x42481C9B); + packetKeys(0x3de86bfc,0x0dd47f80,0x42481c9b); #endif // 2011-04-19aRagexe #if PACKETVER == 20110419 - packetKeys(0x26073204,0x62013A51,0x22AC58E0); + packetKeys(0x26073204,0x62013a51,0x22ac58e0); #endif // 2011-04-26aRagexe #if PACKETVER == 20110426 - packetKeys(0x392813F9,0x09905054,0x40DB732E); + packetKeys(0x392813f9,0x09905054,0x40db732e); #endif // 2011-05-03aRagexe #if PACKETVER == 20110503 - packetKeys(0x28BE32EE,0x1D506FCB,0x63832421); + packetKeys(0x28be32ee,0x1d506fcb,0x63832421); #endif // 2011-05-11aRagexe #if PACKETVER == 20110511 - packetKeys(0x6A715733,0x3C5C0D74,0x408A48EC); + packetKeys(0x6a715733,0x3c5c0d74,0x408a48ec); #endif // 2011-05-17aRagexe #if PACKETVER == 20110517 - packetKeys(0x07FE0C72,0x46766BAD,0x5EB5126A); + packetKeys(0x07fe0c72,0x46766bad,0x5eb5126a); #endif // 2011-05-23aRagexe, 2011-05-26bRagexe @@ -179,323 +277,323 @@ // 2011-05-31aRagexe #if PACKETVER == 20110531 - packetKeys(0x5ABA2C7C,0x3CD22073,0x78953988); + packetKeys(0x5aba2c7c,0x3cd22073,0x78953988); #endif // 2011-06-07aRagexe, 2011-06-08aRagexe, 2011-06-08bRagexe, 2011-06-08cRagexe, 2011-06-09aRagexe #if PACKETVER == 20110607 || \ PACKETVER == 20110608 || \ PACKETVER == 20110609 - packetKeys(0x76B0426C,0x0DD74DEB,0x1F92228E); + packetKeys(0x76b0426c,0x0dd74deb,0x1f92228e); #endif // 2011-06-14aRagexe #if PACKETVER == 20110614 - packetKeys(0x5749027B,0x71710972,0x5B096475); + packetKeys(0x5749027b,0x71710972,0x5b096475); #endif // 2011-06-20aRagexe #if PACKETVER == 20110620 - packetKeys(0x3A1760D4,0x254E0DF9,0x440E2357); + packetKeys(0x3a1760d4,0x254e0df9,0x440e2357); #endif // 2011-06-27aRagexe #if PACKETVER == 20110627 - packetKeys(0x3EFC29BD,0x699E4B11,0x7B900A13); + packetKeys(0x3efc29bd,0x699e4b11,0x7b900a13); #endif // 2011-07-05aRagexe #if PACKETVER == 20110705 - packetKeys(0x48801A5E,0x68FC7726,0x081D7F6E); + packetKeys(0x48801a5e,0x68fc7726,0x081d7f6e); #endif // 2011-07-11bRagexe, 2011-07-13aRagexe, 2011-07-13bRagexe #if PACKETVER == 20110711 || \ PACKETVER == 20110713 - packetKeys(0x489C544B,0x33BA1C25,0x2DE66E4E); + packetKeys(0x489c544b,0x33ba1c25,0x2de66e4e); #endif // 2011-07-18aRagexe #if PACKETVER == 20110718 - packetKeys(0x08464674,0x1EEB3BD5,0x33395199); + packetKeys(0x08464674,0x1eeb3bd5,0x33395199); #endif // 2011-07-26aRagexe #if PACKETVER == 20110726 - packetKeys(0x41E5730B,0x119C6C11,0x5356524A); + packetKeys(0x41e5730b,0x119c6c11,0x5356524a); #endif // 2011-08-02aRagexe #if PACKETVER == 20110802 - packetKeys(0x607C08A1,0x65B20528,0x360571E9); + packetKeys(0x607c08a1,0x65b20528,0x360571e9); #endif // 2011-08-09aRagexe #if PACKETVER == 20110809 - packetKeys(0x742A559A,0x047F425D,0x5C8C2CA0); + packetKeys(0x742a559a,0x047f425d,0x5c8c2ca0); #endif // 2011-08-16aRagexe, 2011-08-16aRagexeRE, 2011-08-17aRagexe, 2011-08-17aRagexeRE, 2011-08-17bRagexe, 2011-08-17bRagexeRE #if PACKETVER == 20110816 || \ PACKETVER == 20110817 - packetKeys(0x053D5CED,0x3DED6DED,0x6DED6DED); + packetKeys(0x053d5ced,0x3ded6ded,0x6ded6ded); #endif // 2011-08-23aRagexe, 2011-08-23aRagexeRE, 2011-08-24aRagexe, 2011-08-24aRagexeRE, 2011-08-24bRagexeRE #if PACKETVER == 20110823 || \ PACKETVER == 20110824 - packetKeys(0x35C91401,0x262A5556,0x28FA03AA); + packetKeys(0x35c91401,0x262a5556,0x28fa03aa); #endif // 2011-08-31aRagexe, 2011-08-31aRagexeRE, 2011-08-31bRagexe, 2011-08-31bRagexeRE, 2011-08-31cRagexe, 2011-08-31cRagexeRE, 2011-08-31dRagexeRE, 2011-08-31eRagexeRE #if PACKETVER == 20110831 - packetKeys(0x3AD67ED0,0x44703C69,0x6F876809); + packetKeys(0x3ad67ed0,0x44703c69,0x6f876809); #endif // 2011-09-06aRagexe, 2011-09-06aRagexeRE, 2011-09-14aRagexe, 2011-09-14aRagexeRE #if PACKETVER == 20110906 || \ PACKETVER == 20110914 - packetKeys(0x350124EC,0x39A14595,0x0DE56125); + packetKeys(0x350124ec,0x39a14595,0x0de56125); #endif // 2011-09-20aRagexe, 2011-09-20aRagexeRE, 2011-09-20aRagexeRE2 #if PACKETVER == 20110920 - packetKeys(0x79C91A12,0x20450CC0,0x584B2A38); + packetKeys(0x79c91a12,0x20450cc0,0x584b2a38); #endif // 2011-09-28aRagexe, 2011-09-28aRagexe-retry, 2011-09-28aRagexeRE, 2011-09-29aRagexe, 2011-09-29aRagexeRE #if PACKETVER == 20110928 || \ PACKETVER == 20110929 - packetKeys(0x26567512,0x4B0732DF,0x57D266C6); + packetKeys(0x26567512,0x4b0732df,0x57d266c6); #endif // 2011-10-04aRagexe, 2011-10-04aRagexeRE, 2011-10-05aRagexe, 2011-10-05aRagexeRE #if PACKETVER == 20111004 || \ PACKETVER == 20111005 - packetKeys(0x291E6762,0x77CD391A,0x60AC2F16); + packetKeys(0x291e6762,0x77cd391a,0x60ac2f16); #endif // 2011-10-10aRagexe, 2011-10-10bRagexeRE, 2011-10-12aRagexeRE, 2011-10-12bRagexe #if PACKETVER == 20111010 || \ PACKETVER == 20111012 - packetKeys(0x7F3C2D29,0x59B01DE6,0x1DBB44CA); + packetKeys(0x7f3c2d29,0x59b01de6,0x1dbb44ca); #endif // 2011-10-17aRagexe, 2011-10-17aRagexeRE, 2011-10-19aRagexeRE, 2011-10-19bRagexeRE, 2011-10-21aRagexe, 2011-10-21aRagexeRE, 2011-10-21cRagexe #if PACKETVER == 20111017 || \ PACKETVER == 20111019 || \ PACKETVER == 20111021 - packetKeys(0x357D55DC,0x5A8D759F,0x245C30F5); + packetKeys(0x357d55dc,0x5a8d759f,0x245c30f5); #endif // 2011-10-25aRagexe, 2011-10-25aRagexeRE #if PACKETVER == 20111025 - packetKeys(0x50AE1A63,0x3CE579B5,0x29C10406); + packetKeys(0x50ae1a63,0x3ce579b5,0x29c10406); #endif // 2011-11-01cRagexe, 2011-11-01cRagexeRE, 2011-11-02aRagexe, 2011-11-02aRagexeRE #if PACKETVER == 20111101 || \ PACKETVER == 20111102 - packetKeys(0x5324329D,0x5D545D52,0x06137269); + packetKeys(0x5324329d,0x5d545d52,0x06137269); #endif // 2011-11-08aRagexe, 2011-11-08aRagexeRE, 2011-11-09aRagexe, 2011-11-09aRagexeRE, 2011-11-09bRagexe, 2011-11-09cRagexe, 2011-11-09dRagexe, 2011-11-09eRagexe #if PACKETVER == 20111108 || \ PACKETVER == 20111109 - packetKeys(0x0B642BDA,0x6ECB1D1C,0x61C7454B); + packetKeys(0x0b642bda,0x6ecb1d1c,0x61c7454b); #endif // 2011-11-14aRagexe, 2011-11-14aRagexeRE, 2011-11-16aRagexe, 2011-11-16aRagexeRE #if PACKETVER == 20111114 || \ PACKETVER == 20111116 - packetKeys(0x419D0DB0,0x74916BF4,0x027371B4); + packetKeys(0x419d0db0,0x74916bf4,0x027371b4); #endif // 2011-11-22aRagexe, 2011-11-22aRagexeRE, 2011-11-23aRagexe #if PACKETVER == 20111122 || \ PACKETVER == 20111123 - packetKeys(0x3B550F07,0x1F666C7C,0x60304EF5); + packetKeys(0x3b550f07,0x1f666c7c,0x60304ef5); #endif // 2011-12-07aRagexe, 2011-12-07aRagexeRE #if PACKETVER == 20111207 - packetKeys(0x2A610886,0x3E09165E,0x57C11888); + packetKeys(0x2a610886,0x3e09165e,0x57c11888); #endif // 2011-12-13aRagexe, 2011-12-13aRagexeRE, 2011-12-14aRagexe, 2011-12-14aRagexeRE, 2011-12-14bRagexeRE, 2011-12-14cRagexeRE #if PACKETVER == 20111213 || \ PACKETVER == 20111214 - packetKeys(0x5151306B,0x7AE32886,0x53060628); + packetKeys(0x5151306b,0x7ae32886,0x53060628); #endif // 2011-12-20bRagexe, 2011-12-20bRagexeRE #if PACKETVER == 20111220 - packetKeys(0x05D53871,0x7D0027B4,0x29975333); + packetKeys(0x05d53871,0x7d0027b4,0x29975333); #endif // 2011-12-27aRagexe, 2011-12-27aRagexeRE, 2011-12-28aRagexe, 2011-12-28aRagexeRE #if PACKETVER == 20111227 || \ PACKETVER == 20111228 - packetKeys(0x0FF87E93,0x6CFF7860,0x3A3D1DEC); + packetKeys(0x0ff87e93,0x6cff7860,0x3a3d1dec); #endif // 2012-01-03aRagexe, 2012-01-03bRagexeRE, 2012-01-04aRagexe, 2012-01-04aRagexeRE, 2012-01-04bRagexe #if PACKETVER == 20120103 || \ PACKETVER == 20120104 - packetKeys(0x262034A1,0x674542A5,0x73A50BA5); + packetKeys(0x262034a1,0x674542a5,0x73a50ba5); #endif // 2012-01-10aRagexeRE, 2012-01-10bRagexe #if PACKETVER == 20120110 - packetKeys(0x2B412AFC,0x4FF94487,0x6705339D); + packetKeys(0x2b412afc,0x4ff94487,0x6705339d); #endif // 2012-01-17aRagexe, 2012-01-17aRagexeRE, 2012-01-18aRagexe #if PACKETVER == 20120117 || \ PACKETVER == 20120118 - packetKeys(0x24E32C2E,0x48DD17A5,0x64F8771A); + packetKeys(0x24e32c2e,0x48dd17a5,0x64f8771a); #endif // 2012-01-20aRagexe, 2012-01-20aRagexeRE #if PACKETVER == 20120120 - packetKeys(0x504345D0,0x3D427B1B,0x794C2DCC); + packetKeys(0x504345d0,0x3d427b1b,0x794c2dcc); #endif // 2012-01-31aRagexe, 2012-01-31cRagexeRE, 2012-02-01aRagexeRE, 2012-02-02aRagexe, 2012-02-02aRagexeRE, 2012-02-02bRagexe, 2012-02-02bRagexeRE #if PACKETVER == 20120131 || \ PACKETVER == 20120201 || \ PACKETVER == 20120202 - packetKeys(0x2CFC0A71,0x2BA91D8D,0x087E39E0); + packetKeys(0x2cfc0a71,0x2ba91d8d,0x087e39e0); #endif // 2012-02-07bRagexe, 2012-02-07bRagexeRE, 2012-02-08aRagexe, 2012-02-09aRagexe #if PACKETVER == 20120207 || \ PACKETVER == 20120208 || \ PACKETVER == 20120209 - packetKeys(0x1D373F5D,0x5ACD604D,0x1C4D7C4D); + packetKeys(0x1d373f5d,0x5acd604d,0x1c4d7c4d); #endif // 2012-02-14bRagexe, 2012-02-14bRagexeRE, 2012-02-15aRagexe #if PACKETVER == 20120214 || \ PACKETVER == 20120215 - packetKeys(0x7A255EFA,0x30977276,0x2D4A0448); + packetKeys(0x7a255efa,0x30977276,0x2d4a0448); #endif // 2012-02-21aRagexe, 2012-02-21aRagexeRE, 2012-02-22aRagexe, 2012-02-22aRagexeRE #if PACKETVER == 20120221 || \ PACKETVER == 20120222 - packetKeys(0x1CA5130F,0x43ED240A,0x7FEA3BE0); + packetKeys(0x1ca5130f,0x43ed240a,0x7fea3be0); #endif // 2012-02-28bRagexe, 2012-02-28bRagexeRE, 2012-02-29aRagexe, 2012-02-29aRagexeRE #if PACKETVER == 20120228 || \ PACKETVER == 20120229 - packetKeys(0x520B4C64,0x2800407D,0x47651458); + packetKeys(0x520b4c64,0x2800407d,0x47651458); #endif // 2012-03-07aRagexe, 2012-03-07aRagexeRE, 2012-03-07bRagexe, 2012-03-07bRagexeRE, 2012-03-07cRagexe, 2012-03-07cRagexeRE, 2012-03-07dRagexe, 2012-03-07dRagexeRE, 2012-03-07eRagexeRE, 2012-03-07fRagexeRE #if PACKETVER == 20120307 - packetKeys(0x382A6DEF,0x5CBE7202,0x61F46637); + packetKeys(0x382a6def,0x5cbe7202,0x61f46637); #endif // 2012-03-14aRagexe, 2012-03-14aRagexeRE, 2012-03-14bRagexe, 2012-03-14bRagexeRE, 2012-03-14cRagexe, 2012-03-14cRagexeRE #if PACKETVER == 20120314 - packetKeys(0x689C1729,0x11812639,0x60F82967); + packetKeys(0x689c1729,0x11812639,0x60f82967); #endif // 2012-03-20aRagexe, 2012-03-20aRagexeRE, 2012-03-21aRagexeRE #if PACKETVER == 20120320 || \ PACKETVER == 20120321 - packetKeys(0x21F9683F,0x710C5CA5,0x1FD910E9); + packetKeys(0x21f9683f,0x710c5ca5,0x1fd910e9); #endif // 2012-03-28aRagexe, 2012-03-28aRagexeRE, 2012-03-28bRagexe, 2012-03-28bRagexeRE, 2012-03-28cRagexe, 2012-03-28cRagexeRE, 2012-03-28dRagexe, 2012-03-28dRagexeRE, 2012-03-28eRagexeRE, 2012-03-28fRagexeRE, 2012-03-28gRagexeRE #if PACKETVER == 20120328 - packetKeys(0x75B8553B,0x37F20B12,0x385C2B40); + packetKeys(0x75b8553b,0x37f20b12,0x385c2b40); #endif // 2012-04-04aRagexe, 2012-04-04aRagexeRE #if PACKETVER == 20120404 - packetKeys(0x0036310C,0x2DCD0BED,0x1EE62A78); + packetKeys(0x0036310c,0x2dcd0bed,0x1ee62a78); #endif // 2012-04-10aRagexe, 2012-04-10aRagexeRE #if PACKETVER == 20120410 - packetKeys(0x01581359,0x452D6FFA,0x6AFB6E2E); + packetKeys(0x01581359,0x452d6ffa,0x6afb6e2e); #endif // 2012-04-17aRagexe, 2012-04-17aRagexeRE, 2012-04-18aRagexeRE #if PACKETVER == 20120417 || \ PACKETVER == 20120418 - packetKeys(0x01540E48,0x13041224,0x31247924); + packetKeys(0x01540e48,0x13041224,0x31247924); #endif // 2012-04-24aRagexe, 2012-04-24aRagexeRE #if PACKETVER == 20120424 - packetKeys(0x411D1DBB,0x4CBA4848,0x1A432FC4); + packetKeys(0x411d1dbb,0x4cba4848,0x1a432fc4); #endif // 2012-05-02aRagexeRE, 2012-05-03aRagexe, 2012-05-03aRagexeRE, 2012-05-03bRagexe #if PACKETVER == 20120502 || \ PACKETVER == 20120503 - packetKeys(0x37A91D19,0x10190019,0x00190019); + packetKeys(0x37a91d19,0x10190019,0x00190019); #endif // 2012-05-08aRagexe, 2012-05-08aRagexeRE, 2012-05-09aRagexeRE, 2012-05-09bRagexeRE #if PACKETVER == 20120508 || \ PACKETVER == 20120509 - packetKeys(0x16CF3301,0x1F472B9B,0x0B4A3CD2); + packetKeys(0x16cf3301,0x1f472b9b,0x0b4a3cd2); #endif // 2012-05-15aRagexe, 2012-05-15aRagexeRE #if PACKETVER == 20120515 - packetKeys(0x4A715EF9,0x79103E4F,0x405C1238); + packetKeys(0x4a715ef9,0x79103e4f,0x405c1238); #endif // 2012-05-22aRagexe, 2012-05-23aRagexe, 2012-05-23aRagexeRE, 2012-05-23bRagexeRE, 2012-05-25aRagexeRE #if PACKETVER == 20120522 || \ PACKETVER == 20120523 || \ PACKETVER == 20120525 - packetKeys(0x70EB4CCB,0x0487713C,0x398D4B08); + packetKeys(0x70eb4ccb,0x0487713c,0x398d4b08); #endif // 2012-05-29bRagexe, 2012-05-29bRagexeRE #if PACKETVER == 20120529 - packetKeys(0x53415DDE,0x34953E16,0x27623DF2); + packetKeys(0x53415dde,0x34953e16,0x27623df2); #endif // 2012-06-01aRagexeRE, 2012-06-04aRagexe, 2012-06-05aRagexeRE #if PACKETVER == 20120601 || \ PACKETVER == 20120604 || \ PACKETVER == 20120605 - packetKeys(0x68CA3080,0x31B74BDD,0x505208F1); + packetKeys(0x68ca3080,0x31b74bdd,0x505208f1); #endif // 2012-06-12aRagexe, 2012-06-12aRagexeRE #if PACKETVER == 20120612 - packetKeys(0x32E45D64,0x35643564,0x35643564); + packetKeys(0x32e45d64,0x35643564,0x35643564); #endif // 2012-06-18aRagexe, 2012-06-18aRagexeRE #if PACKETVER == 20120618 - packetKeys(0x261F261F,0x261F261F,0x261F261F); + packetKeys(0x261f261f,0x261f261f,0x261f261f); #endif // 2012-06-26aRagexe, 2012-06-26aRagexeRE, 2012-06-27aRagexe, 2012-06-27aRagexeRE #if PACKETVER == 20120626 || \ PACKETVER == 20120627 - packetKeys(0x02277E66,0x045723F1,0x7107392C); + packetKeys(0x02277e66,0x045723f1,0x7107392c); #endif // 2012-07-02aRagexe, 2012-07-02aRagexeRE #if PACKETVER == 20120702 - packetKeys(0x25733B31,0x53486CFD,0x398649BD); + packetKeys(0x25733b31,0x53486cfd,0x398649bd); #endif // 2012-07-10aRagexe, 2012-07-10aRagexeRE, 2012-07-12aRagexe, 2012-07-12aRagexeRE #if PACKETVER == 20120710 || \ PACKETVER == 20120712 - packetKeys(0x0E8B7AFB,0x6930362D,0x42D33A57); + packetKeys(0x0e8b7afb,0x6930362d,0x42d33a57); #endif // 2012-07-16aRagexe, 2012-07-16aRagexeRE @@ -505,486 +603,453 @@ // 2012-07-24aRagexe, 2012-07-24aRagexeRE #if PACKETVER == 20120724 - packetKeys(0x783D5BC6,0x3AAC2176,0x66616F02); + packetKeys(0x783d5bc6,0x3aac2176,0x66616f02); #endif // 2012-08-01aRagexe, 2012-08-01aRagexeRE, 2012-08-01bRagexe, 2012-08-01bRagexeRE #if PACKETVER == 20120801 - packetKeys(0x71FB6768,0x5843166B,0x6CB445C6); + packetKeys(0x71fb6768,0x5843166b,0x6cb445c6); #endif // 2012-08-08aRagexe, 2012-08-08aRagexeRE, 2012-08-08bRagexe, 2012-08-08bRagexeRE, 2012-08-08cRagexe, 2012-08-08cRagexeRE, 2012-08-08dRagexeRE #if PACKETVER == 20120808 - packetKeys(0x5D5068BB,0x36732065,0x47CF7367); + packetKeys(0x5d5068bb,0x36732065,0x47cf7367); #endif // 2012-08-14aRagexe, 2012-08-14aRagexeRE, 2012-08-14bRagexe, 2012-08-14bRagexeRE #if PACKETVER == 20120814 - packetKeys(0x203E21BD,0x047459FB,0x56AF5A97); + packetKeys(0x203e21bd,0x047459fb,0x56af5a97); #endif // 2012-08-22aRagexe, 2012-08-22aRagexeRE, 2012-08-22bRagexe, 2012-08-22bRagexeRE, 2012-08-22cRagexe, 2012-08-22cRagexeRE #if PACKETVER == 20120822 - packetKeys(0x06A92E7B,0x3D324F29,0x5FD63004); + packetKeys(0x06a92e7b,0x3d324f29,0x5fd63004); #endif // 2012-08-30aRagexe, 2012-08-30aRagexeRE, 2012-08-30bRagexeRE #if PACKETVER == 20120830 - packetKeys(0x0AF1363D,0x4AB33E3B,0x48421DBE); + packetKeys(0x0af1363d,0x4ab33e3b,0x48421dbe); #endif // 2012-09-05aRagexe, 2012-09-05aRagexeRE #if PACKETVER == 20120905 - packetKeys(0x04F50D80,0x092F5C4D,0x29BF3DCF); + packetKeys(0x04f50d80,0x092f5c4d,0x29bf3dcf); #endif // 2012-09-11aRagexe, 2012-09-11aRagexeRE #if PACKETVER == 20120911 - packetKeys(0x1F3D1145,0x02DB3C32,0x4BE34C49); + packetKeys(0x1f3d1145,0x02db3c32,0x4be34c49); #endif // 2012-09-19aRagexe, 2012-09-19aRagexeRE #if PACKETVER == 20120919 - packetKeys(0x72E00F24,0x4EA02D80,0x7C803480); + packetKeys(0x72e00f24,0x4ea02d80,0x7c803480); #endif // 2012-09-25aRagexe, 2012-09-25aRagexeRE, 2012-09-26aRagexe, 2012-09-26aRagexeRE #if PACKETVER == 20120925 || \ PACKETVER == 20120926 - packetKeys(0x43A66E22,0x36C2229F,0x08172ECE); + packetKeys(0x43a66e22,0x36c2229f,0x08172ece); #endif // 2012-10-10aRagexe, 2012-10-10aRagexeRE, 2012-10-10bRagexe, 2012-10-10bRagexeRE, 2012-10-11aRagexeRE #if PACKETVER == 20121010 || \ PACKETVER == 20121011 - packetKeys(0x169733E2,0x4C4640DC,0x31636531); + packetKeys(0x169733e2,0x4c4640dc,0x31636531); #endif // 2012-10-17aRagexe, 2012-10-17aRagexeRE, 2012-10-17bRagexe, 2012-10-17bRagexeRE #if PACKETVER == 20121017 - packetKeys(0x340C0C31,0x33205EA8,0x55964BFF); + packetKeys(0x340c0c31,0x33205ea8,0x55964bff); #endif // 2012-10-24aRagexe, 2012-10-24aRagexeRE #if PACKETVER == 20121024 - packetKeys(0x6166335C,0x45393483,0x7EDC5478); + packetKeys(0x6166335c,0x45393483,0x7edc5478); #endif // 2012-10-31aRagexe, 2012-10-31aRagexeRE #if PACKETVER == 20121031 - packetKeys(0x66EB7ADB,0x242864BB,0x354A4CDE); + packetKeys(0x66eb7adb,0x242864bb,0x354a4cde); #endif // 2012-11-07aRagexe, 2012-11-07aRagexeRE #if PACKETVER == 20121107 - packetKeys(0x49967892,0x48025276,0x1E192CA3); + packetKeys(0x49967892,0x48025276,0x1e192ca3); #endif // 2012-11-14aRagexe, 2012-11-14aRagexeRE #if PACKETVER == 20121114 - packetKeys(0x3473545C,0x2706445C,0x79647616); + packetKeys(0x3473545c,0x2706445c,0x79647616); #endif // 2012-11-21aRagexe, 2012-11-21aRagexeRE #if PACKETVER == 20121121 - packetKeys(0x6EB54B0B,0x3F2A6BE5,0x0B2866E6); + packetKeys(0x6eb54b0b,0x3f2a6be5,0x0b2866e6); #endif // 2012-11-28aRagexe, 2012-11-28aRagexeRE #if PACKETVER == 20121128 - packetKeys(0x146D4D5E,0x5C3D161B,0x759250B8); + packetKeys(0x146d4d5e,0x5c3d161b,0x759250b8); #endif // 2012-12-05aRagexe, 2012-12-05aRagexeRE, 2012-12-05bRagexe, 2012-12-05bRagexeRE #if PACKETVER == 20121205 - packetKeys(0x218C64B6,0x4EFE17AE,0x27EA5E74); + packetKeys(0x218c64b6,0x4efe17ae,0x27ea5e74); #endif // 2012-12-12aRagexe, 2012-12-12aRagexeRE, 2012-12-12bRagexe, 2012-12-12bRagexeRE, 2012-12-12cRagexeRE #if PACKETVER == 20121212 - packetKeys(0x7F8026F0,0x32EE2A4B,0x73746C0E); + packetKeys(0x7f8026f0,0x32ee2a4b,0x73746c0e); #endif // 2012-12-18aRagexe, 2012-12-18aRagexeRE, 2012-12-18bRagexe, 2012-12-18bRagexeRE #if PACKETVER == 20121218 - packetKeys(0x6A5450A2,0x4322498A,0x2C6574FB); + packetKeys(0x6a5450a2,0x4322498a,0x2c6574fb); #endif // 2012-12-27aRagexe, 2012-12-27aRagexeRE #if PACKETVER == 20121227 - packetKeys(0x71773018,0x36A14EEB,0x28CD5A20); + packetKeys(0x71773018,0x36a14eeb,0x28cd5a20); #endif // 2013-01-03aRagexe, 2013-01-03aRagexeRE, 2013-01-07aRagexe #if PACKETVER == 20130103 || \ PACKETVER == 20130107 - packetKeys(0x1E1A559A,0x199A799A,0x799A799A); + packetKeys(0x1e1a559a,0x199a799a,0x799a799a); #endif // 2013-01-09aRagexe, 2013-01-09aRagexeRE #if PACKETVER == 20130109 - packetKeys(0x6435360F,0x0A283678,0x64A04AC7); + packetKeys(0x6435360f,0x0a283678,0x64a04ac7); #endif // 2013-01-15aRagexeRE, 2013-01-15bRagexe, 2013-01-16aRagexe, 2013-01-16aRagexeRE, 2013-01-16bRagexe #if PACKETVER == 20130115 || \ PACKETVER == 20130116 - packetKeys(0x273C25CD,0x06AA48AF,0x45A01BD4); + packetKeys(0x273c25cd,0x06aa48af,0x45a01bd4); #endif // 2013-01-21aRagexe, 2013-01-21aRagexeRE #if PACKETVER == 20130121 - packetKeys(0x5DD874B0,0x7D98233F,0x28FF5566); + packetKeys(0x5dd874b0,0x7d98233f,0x28ff5566); #endif // 2013-01-30aRagexe, 2013-01-30aRagexeRE #if PACKETVER == 20130130 - packetKeys(0x1EA57961,0x27786856,0x30301FA0); + packetKeys(0x1ea57961,0x27786856,0x30301fa0); #endif // 2013-02-06aRagexe, 2013-02-06aRagexeRE #if PACKETVER == 20130206 - packetKeys(0x1D8F4227,0x675812AA,0x29132929); + packetKeys(0x1d8f4227,0x675812aa,0x29132929); #endif // 2013-02-15aRagexe, 2013-02-15aRagexeRE, 2013-02-15bRagexe #if PACKETVER == 20130215 - packetKeys(0x69FB1C38,0x7D386860,0x62805311); + packetKeys(0x69fb1c38,0x7d386860,0x62805311); #endif // 2013-02-20aRagexe, 2013-02-20bRagexeRE #if PACKETVER == 20130220 - packetKeys(0x0D555256,0x28C26722,0x72220A22); + packetKeys(0x0d555256,0x28c26722,0x72220a22); #endif // 2013-02-27aRagexe, 2013-02-27aRagexeRE #if PACKETVER == 20130227 - packetKeys(0x44F86842,0x43786A7A,0x71654528); + packetKeys(0x44f86842,0x43786a7a,0x71654528); #endif // 2013-03-06aRagexe, 2013-03-06aRagexeRE, 2013-03-06bRagexeRE #if PACKETVER == 20130306 - packetKeys(0x7E274326,0x7D182DF2,0x4FC27DFA); + packetKeys(0x7e274326,0x7d182df2,0x4fc27dfa); #endif // 2013-03-13aRagexe, 2013-03-13aRagexeRE, 2013-03-13bRagexeRE, 2013-03-13cRagexeRE #if PACKETVER == 20130313 - packetKeys(0x560021C3,0x6A5D110F,0x52BD40A5); + packetKeys(0x560021c3,0x6a5d110f,0x52bd40a5); #endif // 2013-03-20bRagexeRE, 2013-03-20cRagexeRE, 2013-03-20dRagexe, 2013-03-20eRagexe #if PACKETVER == 20130320 - packetKeys(0x3F094C49,0x55F86C1E,0x58AA359A); + packetKeys(0x3f094c49,0x55f86c1e,0x58aa359a); #endif // 2013-03-27bRagexe, 2013-03-27bRagexeRE #if PACKETVER == 20130327 - packetKeys(0x114B1BA0,0x2C4F0AE2,0x5FA1183F); + packetKeys(0x114b1ba0,0x2c4f0ae2,0x5fa1183f); #endif // 2013-04-03aRagexe, 2013-04-03aRagexeRE #if PACKETVER == 20130403 - packetKeys(0x424A43AE,0x4A9D5EBE,0x4B3518A9); + packetKeys(0x424a43ae,0x4a9d5ebe,0x4b3518a9); #endif // 2013-04-10aRagexe, 2013-04-10aRagexeRE #if PACKETVER == 20130410 - packetKeys(0x3AD52ACA,0x314D1AED,0x086E415E); + packetKeys(0x3ad52aca,0x314d1aed,0x086e415e); #endif // 2013-04-17aRagexe, 2013-04-17aRagexeRE #if PACKETVER == 20130417 - packetKeys(0x7FB13B83,0x6E003749,0x07A02B94); + packetKeys(0x7fb13b83,0x6e003749,0x07a02b94); #endif // 2013-04-24aRagexe, 2013-04-24aRagexeRE #if PACKETVER == 20130424 - packetKeys(0x79F679F6,0x79F679F6,0x79F679F6); + packetKeys(0x79f679f6,0x79f679f6,0x79f679f6); #endif // 2013-05-02aRagexe, 2013-05-02aRagexeRE, 2013-05-02bRagexe #if PACKETVER == 20130502 - packetKeys(0x62E733B9,0x62204281,0x7F044DCA); + packetKeys(0x62e733b9,0x62204281,0x7f044dca); #endif // 2013-05-08bRagexe, 2013-05-08bRagexeRE, 2013-05-08cRagexe, 2013-05-08dRagexe, 2013-05-08eRagexe, 2013-05-08fRagexe #if PACKETVER == 20130508 - packetKeys(0x25421E49,0x175200BA,0x6C0B5239); + packetKeys(0x25421e49,0x175200ba,0x6c0b5239); #endif // 2013-05-15aRagexe, 2013-05-15aRagexeRE #if PACKETVER == 20130515 - packetKeys(0x75794A38,0x58A96BC1,0x296E6FB8); + packetKeys(0x75794a38,0x58a96bc1,0x296e6fb8); #endif // 2013-05-22aRagexe, 2013-05-22aRagexeRE #if PACKETVER == 20130522 - packetKeys(0x6948050B,0x06511D9D,0x725D4DF1); + packetKeys(0x6948050b,0x06511d9d,0x725d4df1); #endif // 2013-05-29aRagexe, 2013-05-29aRagexeRE #if PACKETVER == 20130529 - packetKeys(0x023A6C87,0x14BF1F1E,0x5CC70CC9); + packetKeys(0x023a6c87,0x14bf1f1e,0x5cc70cc9); #endif // 2013-06-05aRagexe, 2013-06-05bRagexe, 2013-06-05cRagexeRE #if PACKETVER == 20130605 - packetKeys(0x646E08D9,0x5F153AB5,0x61B509B5); + packetKeys(0x646e08d9,0x5f153ab5,0x61b509b5); #endif // 2013-06-12aRagexe, 2013-06-12bRagexe, 2013-06-12bRagexeRE, 2013-06-12cRagexe, 2013-06-12dRagexe, 2013-06-12eRagexe #if PACKETVER == 20130612 - packetKeys(0x6D166F66,0x3C000FCF,0x295B0FCB); + packetKeys(0x6d166f66,0x3c000fcf,0x295b0fcb); #endif // 2013-06-18#1aRagexe, 2013-06-18#1aRagexeRE #if PACKETVER == 20130618 - packetKeys(0x434115DE,0x34A10FE9,0x6791428E); + packetKeys(0x434115de,0x34a10fe9,0x6791428e); #endif // 2013-06-26_3bRagexeRE, 2013-06-26_3cRagexe, 2013-06-26aRagexeRE, 2013-06-26bRagexe #if PACKETVER == 20130626 - packetKeys(0x38F453EF,0x6A040FD8,0x65BD6668); + packetKeys(0x38f453ef,0x6a040fd8,0x65bd6668); #endif // 2013-07-03aRagexe, 2013-07-03bRagexeRE #if PACKETVER == 20130703 - packetKeys(0x4FF90E23,0x0F1432F2,0x4CFA1EDA); + packetKeys(0x4ff90e23,0x0f1432f2,0x4cfa1eda); #endif // 2013-07-10aRagexeRE, 2013-07-10bRagexe, 2013-07-10bRagexeRE, 2013-07-10cRagexeRE, 2013-07-10dRagexeRE, 2013-07-10eRagexeRE #if PACKETVER == 20130710 - packetKeys(0x4A9C4237,0x4CCF3F8F,0x458F758F); + packetKeys(0x4a9c4237,0x4ccf3f8f,0x458f758f); #endif // 2013-07-17cRagexe, 2013-07-17cRagexeRE, 2013-07-17dRagexeRE, 2013-07-17eRagexeRE #if PACKETVER == 20130717 - packetKeys(0x5EE5520C,0x5F9E00CF,0x2BED4F91); + packetKeys(0x5ee5520c,0x5f9e00cf,0x2bed4f91); #endif // 2013-07-24eRagexe, 2013-07-24eRagexeRE, 2013-07-24fRagexeRE #if PACKETVER == 20130724 - packetKeys(0x3C243BF5,0x42CC4E2F,0x02106EC6); + packetKeys(0x3c243bf5,0x42cc4e2f,0x02106ec6); #endif // 2013-07-31cRagexe, 2013-07-31cRagexeRE #if PACKETVER == 20130731 - packetKeys(0x1E9D11A6,0x21A232B8,0x6A9E02B7); + packetKeys(0x1e9d11a6,0x21a232b8,0x6a9e02b7); #endif // 2013-08-07aRagexe, 2013-08-07aRagexeRE #if PACKETVER == 20130807 - packetKeys(0x7E241DE0,0x5E805580,0x3D807D80); + packetKeys(0x7e241de0,0x5e805580,0x3d807d80); #endif // 2013-08-14aRagexe, 2013-08-14aRagexeRE #if PACKETVER == 20130814 - packetKeys(0x23A23148,0x0C41420E,0x53785AD7); + packetKeys(0x23a23148,0x0c41420e,0x53785ad7); #endif // 2013-08-21bRagexe, 2013-08-21dRagexeRE #if PACKETVER == 20130821 - packetKeys(0x51673F38,0x01663512,0x5CFF0B3D); + packetKeys(0x51673f38,0x01663512,0x5cff0b3d); #endif // 2013-08-28bRagexe, 2013-08-28bRagexeRE, 2013-08-28cRagexe, 2013-08-28cRagexeRE #if PACKETVER == 20130828 - packetKeys(0x02EF7A9A,0x4882042F,0x76796678); + packetKeys(0x02ef7a9a,0x4882042f,0x76796678); #endif // 2013-09-04aRagexe, 2013-09-04bRagexeRE #if PACKETVER == 20130904 - packetKeys(0x41AF20C5,0x0997799E,0x4AE803A0); + packetKeys(0x41af20c5,0x0997799e,0x4ae803a0); #endif // 2013-09-11aRagexe, 2013-09-11aRagexeRE, 2013-09-11bRagexe, 2013-09-11bRagexeRE #if PACKETVER == 20130911 - packetKeys(0x232B3F47,0x0AD0515F,0x1CA31828); + packetKeys(0x232b3f47,0x0ad0515f,0x1ca31828); #endif // 2013-09-17aRagexe, 2013-09-17aRagexeRE #if PACKETVER == 20130917 - packetKeys(0x5C9164C5,0x32B62F83,0x52864548); + packetKeys(0x5c9164c5,0x32b62f83,0x52864548); #endif // 2013-09-25aRagexe, 2013-09-25aRagexeRE, 2013-09-25bRagexe, 2013-09-25bRagexeRE, 2013-09-25cRagexe #if PACKETVER == 20130925 - packetKeys(0x4B9C279A,0x0C7849C4,0x72A77646); + packetKeys(0x4b9c279a,0x0c7849c4,0x72a77646); #endif // 2013-10-02aRagexe, 2013-10-02aRagexeRE #if PACKETVER == 20131002 - packetKeys(0x63A466F7,0x635362F3,0x41F369F3); + packetKeys(0x63a466f7,0x635362f3,0x41f369f3); #endif // 2013-10-08aRagexe, 2013-10-08bRagexeRE #if PACKETVER == 20131008 - packetKeys(0x64924AAD,0x08CA0445,0x1CBC36DE); + packetKeys(0x64924aad,0x08ca0445,0x1cbc36de); #endif // 2013-10-16aRagexe, 2013-10-16aRagexeRE, 2013-10-16bRagexe, 2013-10-16bRagexeRE #if PACKETVER == 20131016 - packetKeys(0x33AD7A93,0x720C7C49,0x12C4205A); + packetKeys(0x33ad7a93,0x720c7c49,0x12c4205a); #endif // 2013-10-23aRagexe, 2013-10-23aRagexeRE #if PACKETVER == 20131023 - packetKeys(0x02EF6163,0x2B774814,0x58EC3036); + packetKeys(0x02ef6163,0x2b774814,0x58ec3036); #endif // 2013-10-30aRagexe, 2013-10-30aRagexeRE #if PACKETVER == 20131030 - packetKeys(0x4A6A3EFF,0x7E2D5237,0x01CA019E); + packetKeys(0x4a6a3eff,0x7e2d5237,0x01ca019e); #endif // 2013-11-06aRagexe, 2013-11-06aRagexeRE, 2013-11-07aRagexe, 2013-11-07bRagexe, 2013-11-07cRagexe, 2013-11-08aRagexe #if PACKETVER == 20131106 || \ PACKETVER == 20131107 || \ PACKETVER == 20131108 - packetKeys(0x143E528F,0x5CA05899,0x44B85B23); + packetKeys(0x143e528f,0x5ca05899,0x44b85b23); #endif // 2013-11-13aRagexeRE, 2013-11-13bRagexe #if PACKETVER == 20131113 - packetKeys(0x44EA14CD,0x49311C88,0x40C86C31); + packetKeys(0x44ea14cd,0x49311c88,0x40c86c31); #endif // 2013-11-20dRagexe, 2013-11-20eRagexeRE #if PACKETVER == 20131120 - packetKeys(0x541E5172,0x1B1D30A0,0x28AA7CE5); + packetKeys(0x541e5172,0x1b1d30a0,0x28aa7ce5); #endif // 2013-11-27aRagexeRE, 2013-11-27bRagexe, 2013-11-27bRagexeRE #if PACKETVER == 20131127 - packetKeys(0x21426A48,0x5C505D6A,0x046D06AD); + packetKeys(0x21426a48,0x5c505d6a,0x046d06ad); #endif // 2013-12-04dRagexeRE, 2013-12-04eRagexe, 2013-12-04eRagexeRE #if PACKETVER == 20131204 - packetKeys(0x792760B2,0x5AF45387,0x36165603); + packetKeys(0x792760b2,0x5af45387,0x36165603); #endif // 2013-12-11cRagexe, 2013-12-11cRagexeRE, 2013-12-11dRagexe, 2013-12-11eRagexeRE #if PACKETVER == 20131211 - packetKeys(0x55B0394E,0x4D341FF2,0x60BC1DC3); + packetKeys(0x55b0394e,0x4d341ff2,0x60bc1dc3); #endif // 2013-12-18aRagexeRE, 2013-12-18bRagexe #if PACKETVER == 20131218 - packetKeys(0x6A596301,0x76866D0E,0x32294A45); -#endif - -// 2013-12-23aRagexeRE, 2014-05-08aRagexe, 2014-05-08aRagexeRE, 2014-06-11eRagexe, 2015-02-25hRagexe, 2018-03-15aRagexe, 2018-03-21aRagexe, 2018-03-21aRagexeRE, 2018-03-28bRagexe, 2018-03-28bRagexeRE, 2018-04-04bRagexe, 2018-04-04cRagexeRE, 2018-04-18aRagexe, 2018-04-18bRagexeRE, 2018-04-25cRagexe, 2018-04-25cRagexeRE, 2018-05-02bRagexe, 2018-05-02bRagexeRE, 2018-05-02dRagexeRE, 2018-05-09aRagexe, 2018-05-16cRagexe, 2018-05-16cRagexeRE, 2018-05-23aRagexe, 2018-05-23aRagexeRE, 2018-05-30aRagexe, 2018-05-30bRagexeRE, 2018-05-30cRagexeRE, 2018-06-05bRagexe, 2018-06-05bRagexeRE, 2018-06-12aRagexeRE, 2018-06-12bRagexeRE, 2018-06-20cRagexe, 2018-06-20dRagexeRE, 2018-06-20eRagexe, 2018-06-20eRagexeRE, 2018-06-21aRagexe, 2018-06-21aRagexeRE, 2018-07-04aRagexe, 2018-07-04aRagexeRE, 2018-07-11aRagexeRE, 2018-07-18bRagexe, 2018-07-18bRagexeRE, 2018-07-18bRagexeRE1, 2018-07-18cRagexe, 2018-07-18cRagexeRE, 2018-08-01cRagexe, 2018-08-01cRagexeRE, 2018-08-08bRagexe, 2018-08-08bRagexeRE, 2018-08-22cRagexe, 2018-08-22cRagexeRE, 2018-08-29aRagexe, 2018-08-29aRagexeRE, 2018-08-29bRagexeRE, 2018-08-31aRagexe, 2018-09-12dRagexe, 2018-09-12dRagexeRE, 2018-09-19aRagexe, 2018-09-19aRagexeRE -#if PACKETVER == 20131223 || \ - PACKETVER == 20140508 || \ - PACKETVER == 20140611 || \ - PACKETVER == 20150225 || \ - PACKETVER == 20180315 || \ - PACKETVER == 20180321 || \ - PACKETVER == 20180328 || \ - PACKETVER == 20180404 || \ - PACKETVER == 20180418 || \ - PACKETVER == 20180425 || \ - PACKETVER == 20180502 || \ - PACKETVER == 20180509 || \ - PACKETVER == 20180516 || \ - PACKETVER == 20180523 || \ - PACKETVER == 20180530 || \ - PACKETVER == 20180605 || \ - PACKETVER == 20180612 || \ - PACKETVER == 20180620 || \ - PACKETVER == 20180621 || \ - PACKETVER == 20180704 || \ - PACKETVER == 20180711 || \ - PACKETVER == 20180718 || \ - PACKETVER == 20180801 || \ - PACKETVER == 20180808 || \ - PACKETVER == 20180822 || \ - PACKETVER == 20180829 || \ - PACKETVER == 20180831 || \ - PACKETVER == 20180912 || \ - PACKETVER >= 20180919 - packetKeys(0x00000000,0x00000000,0x00000000); + packetKeys(0x6a596301,0x76866d0e,0x32294a45); #endif // 2013-12-23bRagexe, 2013-12-23bRagexeRE, 2013-12-23cRagexe, 2013-12-23xRagexeRE #if PACKETVER == 20131223 - packetKeys(0x631C511C,0x111C111C,0x111C111C); + packetKeys(0x631c511c,0x111c111c,0x111c111c); #endif // 2013-12-30aRagexe, 2013-12-30aRagexeRE #if PACKETVER == 20131230 - packetKeys(0x611B7097,0x01F957A1,0x768A0FCB); + packetKeys(0x611b7097,0x01f957a1,0x768a0fcb); #endif // 2014-01-08bRagexeRE, 2014-01-08cRagexe, 2014-01-08cRagexeRE, 2014-01-08dRagexe #if PACKETVER == 20140108 - packetKeys(0x4A1E26F2,0x231E7EFE,0x61FE19FE); + packetKeys(0x4a1e26f2,0x231e7efe,0x61fe19fe); #endif // 2014-01-15aRagexe, 2014-01-15bRagexe, 2014-01-15cRagexe, 2014-01-15cRagexeRE, 2014-01-15dRagexeRE, 2014-01-15eRagexe, 2014-01-15eRagexeRE #if PACKETVER == 20140115 - packetKeys(0x63224335,0x0F3A1F27,0x6D217B24); + packetKeys(0x63224335,0x0f3a1f27,0x6d217b24); #endif // 2014-01-22aRagexe, 2014-01-22aRagexeRE #if PACKETVER == 20140122 - packetKeys(0x6123177B,0x05B42C99,0x71702594); + packetKeys(0x6123177b,0x05b42c99,0x71702594); #endif // 2014-01-29aRagexe, 2014-01-29bRagexeRE, 2014-01-29cRagexe #if PACKETVER == 20140129 - packetKeys(0x2E52163C,0x605E518B,0x3C7A62CB); + packetKeys(0x2e52163c,0x605e518b,0x3c7a62cb); #endif // 2014-02-05bRagexe, 2014-02-05bRagexeRE #if PACKETVER == 20140205 - packetKeys(0x63DC7BDC,0x7BDC7BDC,0x7BDC7BDC); + packetKeys(0x63dc7bdc,0x7bdc7bdc,0x7bdc7bdc); #endif // 2014-02-12aRagexe, 2014-02-12aRagexeRE #if PACKETVER == 20140212 - packetKeys(0x46837074,0x65292E89,0x77237F9C); + packetKeys(0x46837074,0x65292e89,0x77237f9c); #endif // 2014-02-19aRagexe, 2014-02-19aRagexeRE, 2014-02-19bRagexeRE #if PACKETVER == 20140219 - packetKeys(0x4E3C5327,0x3A6B5469,0x2CE36AED); + packetKeys(0x4e3c5327,0x3a6b5469,0x2ce36aed); #endif // 2014-02-26aRagexe, 2014-02-26aRagexeRE, 2014-02-26bRagexeRE #if PACKETVER == 20140226 - packetKeys(0x36D71056,0x52122F5E,0x6FF76E99); + packetKeys(0x36d71056,0x52122f5e,0x6ff76e99); #endif // 2014-03-05aRagexe, 2014-03-05aRagexeRE, 2014-03-05bRagexe, 2014-03-05bRagexeRE #if PACKETVER == 20140305 - packetKeys(0x116763F2,0x41117DAC,0x7FD13C45); + packetKeys(0x116763f2,0x41117dac,0x7fd13c45); #endif // 2014-03-12bRagexeRE, 2014-03-12dRagexe #if PACKETVER == 20140312 - packetKeys(0x48911E4E,0x58CB2EB3,0x05232619); + packetKeys(0x48911e4e,0x58cb2eb3,0x05232619); #endif // 2014-03-19aRagexe, 2014-03-19aRagexeRE #if PACKETVER == 20140319 - packetKeys(0x3DA44383,0x1ABB165F,0x5B6846B9); + packetKeys(0x3da44383,0x1abb165f,0x5b6846b9); #endif // 2014-03-26aRagexe, 2014-03-26cRagexeRE #if PACKETVER == 20140326 - packetKeys(0x68E72AF6,0x27DB4C3D,0x348F2677); + packetKeys(0x68e72af6,0x27db4c3d,0x348f2677); #endif // 2014-04-02eRagexeRE, 2014-04-02fRagexe, 2014-04-02fRagexeRE, 2014-04-02gRagexe #if PACKETVER == 20140402 - packetKeys(0x15D3271C,0x004D725B,0x111A3A37); + packetKeys(0x15d3271c,0x004d725b,0x111a3a37); #endif // 2014-04-09aRagexe, 2014-04-09aRagexeRE, 2014-04-09bRagexe #if PACKETVER == 20140409 - packetKeys(0x7F6C390F,0x139C254C,0x7F25708C); + packetKeys(0x7f6c390f,0x139c254c,0x7f25708c); #endif // 2014-04-16aRagexe, 2014-04-16aRagexeRE, 2014-04-16bRagexe @@ -994,464 +1059,464 @@ // 2014-04-23aRagexe, 2014-04-23aRagexeRE #if PACKETVER == 20140423 - packetKeys(0x7E0D6B56,0x74673CD3,0x2EBA4940); + packetKeys(0x7e0d6b56,0x74673cd3,0x2eba4940); #endif // 2014-04-30aRagexe, 2014-04-30aRagexeRE #if PACKETVER == 20140430 - packetKeys(0x400145D8,0x3FE50155,0x11624F70); + packetKeys(0x400145d8,0x3fe50155,0x11624f70); #endif // 2014-05-08bRagexe, 2014-05-08bRagexeRE #if PACKETVER == 20140508 - packetKeys(0x087E57EC,0x25224F4A,0x024F12C6); + packetKeys(0x087e57ec,0x25224f4a,0x024f12c6); #endif // 2014-05-14bRagexe, 2014-05-14bRagexeRE, 2014-05-14cRagexeRE #if PACKETVER == 20140514 - packetKeys(0x4BE46730,0x047926E0,0x37773BBB); + packetKeys(0x4be46730,0x047926e0,0x37773bbb); #endif // 2014-05-21aRagexeRE, 2014-05-21bRagexe #if PACKETVER == 20140521 - packetKeys(0x14ED2D86,0x17371C33,0x2D0473C8); + packetKeys(0x14ed2d86,0x17371c33,0x2d0473c8); #endif // 2014-05-28aRagexe, 2014-05-28aRagexeRE #if PACKETVER == 20140528 - packetKeys(0x579445EB,0x26734878,0x7C861628); + packetKeys(0x579445eb,0x26734878,0x7c861628); #endif // 2014-06-05aRagexe, 2014-06-05aRagexeRE, 2014-06-05bRagexe #if PACKETVER == 20140605 - packetKeys(0x5ABC4223,0x04DD2636,0x0D5850E0); + packetKeys(0x5abc4223,0x04dd2636,0x0d5850e0); #endif // 2014-06-11bRagexeRE, 2014-06-11cRagexe, 2014-06-11dRagexe, 2014-06-11hRagexe, 2014-06-12aRagexe, 2014-06-13aRagexe #if PACKETVER == 20140611 || \ PACKETVER == 20140612 || \ PACKETVER == 20140613 - packetKeys(0x4FC83479,0x3AB04D1F,0x477B4010); + packetKeys(0x4fc83479,0x3ab04d1f,0x477b4010); #endif // 2014-06-18aRagexe, 2014-06-18cRagexeRE #if PACKETVER == 20140618 - packetKeys(0x2DB507BB,0x11BA12E7,0x7F447760); + packetKeys(0x2db507bb,0x11ba12e7,0x7f447760); #endif // 2014-06-25aRagexe, 2014-06-25aRagexeRE, 2014-06-25bRagexe #if PACKETVER == 20140625 - packetKeys(0x09987045,0x644B1051,0x1A091CB8); + packetKeys(0x09987045,0x644b1051,0x1a091cb8); #endif // 2014-07-02aRagexe, 2014-07-02aRagexeRE #if PACKETVER == 20140702 - packetKeys(0x5C4574F4,0x5D446386,0x48BD24C9); + packetKeys(0x5c4574f4,0x5d446386,0x48bd24c9); #endif // 2014-07-09aRagexe, 2014-07-09aRagexeRE #if PACKETVER == 20140709 - packetKeys(0x2C7A6E92,0x324F1B85,0x29916FC2); + packetKeys(0x2c7a6e92,0x324f1b85,0x29916fc2); #endif // 2014-07-16aRagexe, 2014-07-16aRagexeRE, 2014-07-16bRagexe, 2014-07-16cRagexe #if PACKETVER == 20140716 - packetKeys(0x0EB20408,0x6D6C4292,0x4F6E4CF3); + packetKeys(0x0eb20408,0x6d6c4292,0x4f6e4cf3); #endif // 2014-07-23aRagexe, 2014-07-23aRagexeRE, 2014-07-23bRagexe, 2014-07-23bRagexeRE #if PACKETVER == 20140723 - packetKeys(0x42A21713,0x51CE6EAD,0x102F7B0B); + packetKeys(0x42a21713,0x51ce6ead,0x102f7b0b); #endif // 2014-07-30aRagexe, 2014-07-30bRagexeRE #if PACKETVER == 20140730 - packetKeys(0x63CE4E53,0x04F969A3,0x690954DB); + packetKeys(0x63ce4e53,0x04f969a3,0x690954db); #endif // 2014-08-06aRagexe, 2014-08-06aRagexeRE, 2014-08-06bRagexe #if PACKETVER == 20140806 - packetKeys(0x0D5B69AC,0x3C001F20,0x0C201420); + packetKeys(0x0d5b69ac,0x3c001f20,0x0c201420); #endif // 2014-08-13aRagexe, 2014-08-13aRagexeRE, 2014-08-13bRagexe, 2014-08-14aRagexe #if PACKETVER == 20140813 || \ PACKETVER == 20140814 - packetKeys(0x7AD51E0A,0x28C72C46,0x210205BD); + packetKeys(0x7ad51e0a,0x28c72c46,0x210205bd); #endif // 2014-08-20aRagexe, 2014-08-20aRagexeRE #if PACKETVER == 20140820 - packetKeys(0x374F15D0,0x64C87DEC,0x65CE2A41); + packetKeys(0x374f15d0,0x64c87dec,0x65ce2a41); #endif // 2014-08-27aRagexe, 2014-08-27aRagexeRE #if PACKETVER == 20140827 - packetKeys(0x53814CA2,0x27DE193E,0x503E683E); + packetKeys(0x53814ca2,0x27de193e,0x503e683e); #endif // 2014-09-03aRagexe, 2014-09-03aRagexeRE #if PACKETVER == 20140903 - packetKeys(0x2F386F34,0x0F935365,0x76A43888); + packetKeys(0x2f386f34,0x0f935365,0x76a43888); #endif // 2014-09-17aRagexe, 2014-09-17cRagexeRE #if PACKETVER == 20140917 - packetKeys(0x180118EA,0x440134CF,0x3A99179D); + packetKeys(0x180118ea,0x440134cf,0x3a99179d); #endif // 2014-09-24bRagexeRE, 2014-09-24cRagexe, 2014-09-24cRagexeRE #if PACKETVER == 20140924 - packetKeys(0x6F5222D8,0x593B798C,0x4CBD655E); + packetKeys(0x6f5222d8,0x593b798c,0x4cbd655e); #endif // 2014-10-01aRagexe, 2014-10-01bRagexeRE, 2014-10-01cRagexeRE #if PACKETVER == 20141001 - packetKeys(0x6D882C11,0x7DF959E2,0x4F3F60E8); + packetKeys(0x6d882c11,0x7df959e2,0x4f3f60e8); #endif // 2014-10-08aRagexe, 2014-10-08bRagexe, 2014-10-08bRagexeRE, 2014-10-08cRagexe, 2014-10-08cRagexeRE, 2014-10-08dRagexe #if PACKETVER == 20141008 - packetKeys(0x754365B3,0x36B326B3,0x26B326B3); + packetKeys(0x754365b3,0x36b326b3,0x26b326b3); #endif // 2014-10-15bRagexe, 2014-10-15bRagexeRE, 2014-10-15cRagexe, 2014-10-15dRagexe, 2014-10-16aRagexe, 2014-10-16aRagexeRE #if PACKETVER == 20141015 || \ PACKETVER == 20141016 - packetKeys(0x2DFF467C,0x444B37EE,0x2C1B634F); + packetKeys(0x2dff467c,0x444b37ee,0x2c1b634f); #endif // 2014-10-22aRagexeRE, 2014-10-22bRagexe #if PACKETVER == 20141022 - packetKeys(0x290551EA,0x2B952C75,0x2D67669B); + packetKeys(0x290551ea,0x2b952c75,0x2d67669b); #endif // 2014-10-29aRagexe, 2014-10-29aRagexeRE #if PACKETVER == 20141029 - packetKeys(0x1AFD581D,0x2E1D4E1D,0x4E1D4E1D); + packetKeys(0x1afd581d,0x2e1d4e1d,0x4e1d4e1d); #endif // 2014-11-05aRagexe, 2014-11-05aRagexeRE, 2014-11-05bRagexe, 2014-11-05bRagexeRE #if PACKETVER == 20141105 - packetKeys(0x7F310819,0x5FF45401,0x2D303DD9); + packetKeys(0x7f310819,0x5ff45401,0x2d303dd9); #endif // 2014-11-12aRagexeRE, 2014-11-12cRagexe, 2014-11-12dRagexe #if PACKETVER == 20141112 - packetKeys(0x430C0C27,0x067153CF,0x5E5439A9); + packetKeys(0x430c0c27,0x067153cf,0x5e5439a9); #endif // 2014-11-19bRagexeRE, 2014-11-19dRagexe #if PACKETVER == 20141119 - packetKeys(0x7A7E7EDE,0x24EB02E3,0x71603607); + packetKeys(0x7a7e7ede,0x24eb02e3,0x71603607); #endif // 2014-11-26aRagexe, 2014-11-26aRagexeRE, 2014-11-26bRagexe, 2014-11-26bRagexeRE, 2014-11-26cRagexe, 2014-11-26cRagexeRE, 2014-11-26dRagexe, 2014-11-26dRagexeRE, 2014-11-26eRagexeRE #if PACKETVER == 20141126 - packetKeys(0x01E14C42,0x56D73044,0x4B3278DF); + packetKeys(0x01e14c42,0x56d73044,0x4b3278df); #endif // 2014-12-03aRagexe, 2014-12-03aRagexeRE #if PACKETVER == 20141203 - packetKeys(0x66CB52E4,0x1EB84093,0x33563E18); + packetKeys(0x66cb52e4,0x1eb84093,0x33563e18); #endif // 2014-12-10bRagexe, 2014-12-10cRagexe, 2014-12-10cRagexeRE #if PACKETVER == 20141210 - packetKeys(0x0B0B1DD3,0x26EF1797,0x4F40370B); + packetKeys(0x0b0b1dd3,0x26ef1797,0x4f40370b); #endif // 2014-12-17aRagexe, 2014-12-17aRagexeRE #if PACKETVER == 20141217 - packetKeys(0x01AB478C,0x0FDE58F2,0x1DAC7303); + packetKeys(0x01ab478c,0x0fde58f2,0x1dac7303); #endif // 2014-12-23cRagexeRE, 2014-12-24aRagexe #if PACKETVER == 20141223 || \ PACKETVER == 20141224 - packetKeys(0x2E8936E6,0x34463C46,0x67CD3885); + packetKeys(0x2e8936e6,0x34463c46,0x67cd3885); #endif // 2014-12-31aRagexe, 2014-12-31aRagexeRE #if PACKETVER == 20141231 - packetKeys(0x154C347E,0x54B26512,0x52126A12); + packetKeys(0x154c347e,0x54b26512,0x52126a12); #endif // 2015-01-07aRagexe, 2015-01-07aRagexeRE #if PACKETVER == 20150107 - packetKeys(0x6C494A14,0x4DDB6427,0x3E6D7B65); + packetKeys(0x6c494a14,0x4ddb6427,0x3e6d7b65); #endif // 2015-01-14aRagexe, 2015-01-14aRagexeRE, 2015-01-14bRagexe, 2015-01-14cRagexe, 2015-01-14dRagexe #if PACKETVER == 20150114 - packetKeys(0x21C96102,0x13142934,0x1ABF4EA3); + packetKeys(0x21c96102,0x13142934,0x1abf4ea3); #endif // 2015-01-21aRagexe, 2015-01-21aRagexeRE, 2015-01-21bRagexeRE #if PACKETVER == 20150121 - packetKeys(0x0B9D2AF5,0x658A3346,0x379E3654); + packetKeys(0x0b9d2af5,0x658a3346,0x379e3654); #endif // 2015-01-28aRagexe, 2015-01-28aRagexeRE, 2015-01-29aRagexe, 2015-01-30aRagexe #if PACKETVER == 20150128 || \ PACKETVER == 20150129 || \ PACKETVER == 20150130 - packetKeys(0x77CA2D55,0x28B608F0,0x75B47957); + packetKeys(0x77ca2d55,0x28b608f0,0x75b47957); #endif // 2015-02-04aRagexe, 2015-02-04cRagexeRE #if PACKETVER == 20150204 - packetKeys(0x134529DB,0x5B4F6CEF,0x29EF11EF); + packetKeys(0x134529db,0x5b4f6cef,0x29ef11ef); #endif // 2015-02-11aRagexe, 2015-02-11aRagexeRE #if PACKETVER == 20150211 - packetKeys(0x33911A25,0x1E6945FD,0x7385623A); + packetKeys(0x33911a25,0x1e6945fd,0x7385623a); #endif // 2015-02-17aRagexe, 2015-02-17aRagexeRE #if PACKETVER == 20150217 - packetKeys(0x731B731B,0x731B731B,0x731B731B); + packetKeys(0x731b731b,0x731b731b,0x731b731b); #endif // 2015-02-25aRagexeRE, 2015-02-25bRagexeRE, 2015-02-25cRagexeRE, 2015-02-25dRagexeRE, 2015-02-25eRagexe, 2015-02-25eRagexeRE, 2015-02-25fRagexe, 2015-02-25gRagexe, 2015-02-25iRagexe, 2015-02-25jRagexe, 2015-02-26aRagexe, 2015-02-26aRagexeRE #if PACKETVER == 20150225 || \ PACKETVER == 20150226 - packetKeys(0x57FD4B7B,0x19CC16FB,0x0D255D72); + packetKeys(0x57fd4b7b,0x19cc16fb,0x0d255d72); #endif // 2015-03-04aRagexe, 2015-03-04aRagexeRE, 2015-03-04bRagexeRE #if PACKETVER == 20150304 - packetKeys(0x1A657B1C,0x7E1806E7,0x55396A5C); + packetKeys(0x1a657b1c,0x7e1806e7,0x55396a5c); #endif // 2015-03-11aRagexe, 2015-03-11aRagexeRE, 2015-03-11bRagexe, 2015-03-11bRagexeRE #if PACKETVER == 20150311 - packetKeys(0x48C45D97,0x06CE09B0,0x5836642F); + packetKeys(0x48c45d97,0x06ce09b0,0x5836642f); #endif // 2015-03-18aRagexe, 2015-03-18aRagexeRE, 2015-03-18bRagexe, 2015-03-18bRagexeRE, 2015-03-18cRagexeRE #if PACKETVER == 20150318 - packetKeys(0x1B3738E7,0x0AD4238F,0x7D252A1F); + packetKeys(0x1b3738e7,0x0ad4238f,0x7d252a1f); #endif // 2015-03-25aRagexe, 2015-03-25bRagexeRE, 2015-03-25cRagexeRE #if PACKETVER == 20150325 - packetKeys(0x68F62B8C,0x337C3468,0x38FC0AC7); + packetKeys(0x68f62b8c,0x337c3468,0x38fc0ac7); #endif // 2015-04-01aRagexe, 2015-04-01bRagexeRE #if PACKETVER == 20150401 - packetKeys(0x207F3A08,0x57E6160C,0x02A60382); + packetKeys(0x207f3a08,0x57e6160c,0x02a60382); #endif // 2015-04-08aRagexe, 2015-04-08aRagexeRE #if PACKETVER == 20150408 - packetKeys(0x39812C9D,0x23DA516E,0x59A33DD2); + packetKeys(0x39812c9d,0x23da516e,0x59a33dd2); #endif // 2015-04-15aRagexe, 2015-04-15aRagexeRE #if PACKETVER == 20150415 - packetKeys(0x7EC44F6A,0x7DE57139,0x60DA5436); + packetKeys(0x7ec44f6a,0x7de57139,0x60da5436); #endif // 2015-04-22aRagexe, 2015-04-22aRagexeRE #if PACKETVER == 20150422 - packetKeys(0x10D22CE2,0x69E279E2,0x79E279E2); + packetKeys(0x10d22ce2,0x69e279e2,0x79e279e2); #endif // 2015-04-29aRagexe, 2015-04-29aRagexeRE #if PACKETVER == 20150429 - packetKeys(0x2BF61A71,0x565D5DDF,0x0FB90019); + packetKeys(0x2bf61a71,0x565d5ddf,0x0fb90019); #endif // 2015-05-07bRagexe, 2015-05-07bRagexeRE, 2015-05-07cRagexe #if PACKETVER == 20150507 - packetKeys(0x55B54373,0x58967821,0x67F41832); + packetKeys(0x55b54373,0x58967821,0x67f41832); #endif // 2015-05-13aRagexe, 2015-05-13aRagexeRE #if PACKETVER == 20150513 - packetKeys(0x62C86D09,0x75944F17,0x112C133D); + packetKeys(0x62c86d09,0x75944f17,0x112c133d); #endif // 2015-05-20aRagexe, 2015-05-20aRagexeRE #if PACKETVER == 20150520 - packetKeys(0x17430238,0x44DE585F,0x56A40616); + packetKeys(0x17430238,0x44de585f,0x56a40616); #endif // 2015-05-27aRagexe, 2015-05-27aRagexeRE #if PACKETVER == 20150527 - packetKeys(0x35AE7BAE,0x3BAE3BAE,0x3BAE3BAE); + packetKeys(0x35ae7bae,0x3bae3bae,0x3bae3bae); #endif // 2015-06-03aRagexe, 2015-06-03bRagexeRE #if PACKETVER == 20150603 - packetKeys(0x1DDD245D,0x309446E0,0x58E53F1F); + packetKeys(0x1ddd245d,0x309446e0,0x58e53f1f); #endif // 2015-06-10aRagexe, 2015-06-10aRagexeRE #if PACKETVER == 20150610 - packetKeys(0x2FC406D3,0x7B3E32F5,0x02B80B47); + packetKeys(0x2fc406d3,0x7b3e32f5,0x02b80b47); #endif // 2015-06-17aRagexe, 2015-06-17aRagexeRE, 2015-06-18aRagexe, 2015-06-18aRagexeRE #if PACKETVER == 20150617 || \ PACKETVER == 20150618 - packetKeys(0x250F7E09,0x25416076,0x029A780E); + packetKeys(0x250f7e09,0x25416076,0x029a780e); #endif // 2015-06-24aRagexe, 2015-06-24aRagexeRE #if PACKETVER == 20150624 - packetKeys(0x440B0E24,0x1BEA7A4C,0x2C646784); + packetKeys(0x440b0e24,0x1bea7a4c,0x2c646784); #endif // 2015-07-01bRagexe, 2015-07-01bRagexeRE, 2015-07-02aRagexe #if PACKETVER == 20150701 || \ PACKETVER == 20150702 - packetKeys(0x4DD55F9B,0x70C67B03,0x78C60DB6); + packetKeys(0x4dd55f9b,0x70c67b03,0x78c60db6); #endif // 2015-07-08bRagexeRE, 2015-07-08cRagexe, 2015-07-08cRagexeRE, 2015-07-08dRagexeRE #if PACKETVER == 20150708 - packetKeys(0x451C5E19,0x5661750B,0x2F4644AC); + packetKeys(0x451c5e19,0x5661750b,0x2f4644ac); #endif // 2015-07-15aRagexe, 2015-07-15aRagexeRE #if PACKETVER == 20150715 - packetKeys(0x1F805483,0x67745585,0x7FCE189C); + packetKeys(0x1f805483,0x67745585,0x7fce189c); #endif // 2015-07-22bRagexe, 2015-07-22bRagexeRE #if PACKETVER == 20150722 - packetKeys(0x41FA53D4,0x2CF044E2,0x663A3F1D); + packetKeys(0x41fa53d4,0x2cf044e2,0x663a3f1d); #endif // 2015-07-29aRagexe, 2015-07-29aRagexeRE #if PACKETVER == 20150729 - packetKeys(0x08EE40A9,0x206F3D7F,0x0AE37339); + packetKeys(0x08ee40a9,0x206f3d7f,0x0ae37339); #endif // 2015-08-05aRagexe, 2015-08-05dRagexeRE #if PACKETVER == 20150805 - packetKeys(0x1C3F243F,0x243F243F,0x243F243F); + packetKeys(0x1c3f243f,0x243f243f,0x243f243f); #endif // 2015-08-12aRagexe, 2015-08-12aRagexeRE #if PACKETVER == 20150812 - packetKeys(0x0B6F64A8,0x5BCC47EC,0x00EC08EC); + packetKeys(0x0b6f64a8,0x5bcc47ec,0x00ec08ec); #endif // 2015-08-19aRagexe, 2015-08-19aRagexeRE, 2015-08-19bRagexeRE #if PACKETVER == 20150819 - packetKeys(0x1A2400E0,0x736E5686,0x10F315D5); + packetKeys(0x1a2400e0,0x736e5686,0x10f315d5); #endif // 2015-08-26aRagexe, 2015-08-26aRagexeRE, 2015-08-26bRagexe, 2015-08-26bRagexeRE #if PACKETVER == 20150826 - packetKeys(0x77883C56,0x1829359F,0x0DE635B6); + packetKeys(0x77883c56,0x1829359f,0x0de635b6); #endif // 2015-09-02aRagexe, 2015-09-02aRagexeRE #if PACKETVER == 20150902 - packetKeys(0x4EDB18C1,0x6B9355BA,0x38AA6239); + packetKeys(0x4edb18c1,0x6b9355ba,0x38aa6239); #endif // 2015-09-09aRagexe, 2015-09-09aRagexeRE #if PACKETVER == 20150909 - packetKeys(0x19AB2BF0,0x04754299,0x48770736); + packetKeys(0x19ab2bf0,0x04754299,0x48770736); #endif // 2015-09-16aRagexe, 2015-09-16cRagexe, 2015-09-16cRagexeRE #if PACKETVER == 20150916 - packetKeys(0x17F83A19,0x116944F4,0x1CC541E9); + packetKeys(0x17f83a19,0x116944f4,0x1cc541e9); #endif // 2015-09-23bRagexe, 2015-09-23bRagexeRE, 2015-09-23cRagexe, 2015-09-23dRagexe, 2015-09-23eRagexe, 2015-09-23eRagexeRE, 2015-09-23fRagexe, 2015-09-23fRagexeRE #if PACKETVER == 20150923 - packetKeys(0x765742B9,0x22D61C2F,0x7DA94FB2); + packetKeys(0x765742b9,0x22d61c2f,0x7da94fb2); #endif // 2015-10-01aRagexe, 2015-10-01bRagexeRE #if PACKETVER == 20151001 - packetKeys(0x5CFF4561,0x32514AD1,0x06D126D1); + packetKeys(0x5cff4561,0x32514ad1,0x06d126d1); #endif // 2015-10-07aRagexe, 2015-10-07aRagexeRE #if PACKETVER == 20151007 - packetKeys(0x3C6447A8,0x032170D7,0x6490476C); + packetKeys(0x3c6447a8,0x032170d7,0x6490476c); #endif // 2015-10-14bRagexe, 2015-10-14bRagexeRE #if PACKETVER == 20151014 - packetKeys(0x402728A8,0x5D0E309F,0x240018FD); + packetKeys(0x402728a8,0x5d0e309f,0x240018fd); #endif // 2015-10-21aRagexe, 2015-10-21aRagexeRE, 2015-10-22aRagexe, 2015-10-22aRagexeRE #if PACKETVER == 20151021 || \ PACKETVER == 20151022 - packetKeys(0x0311104D,0x46C326D6,0x00E82720); + packetKeys(0x0311104d,0x46c326d6,0x00e82720); #endif // 2015-10-28bRagexeRE, 2015-10-28bRagexeRE_2, 2015-10-28cRagexe, 2015-10-28cRagexeRE, 2015-10-28dRagexe, 2015-10-28dRagexeRE, 2015-10-29aRagexe, 2015-10-29aRagexeRE #if PACKETVER == 20151028 || \ PACKETVER == 20151029 - packetKeys(0x45B945B9,0x45B945B9,0x45B945B9); + packetKeys(0x45b945b9,0x45b945b9,0x45b945b9); #endif // 2015-11-04aRagexe, 2015-11-04aRagexeRE #if PACKETVER == 20151104 - packetKeys(0x4C17382A,0x7ED174C9,0x29961E4F); + packetKeys(0x4c17382a,0x7ed174c9,0x29961e4f); #endif // 2015-11-11aRagexe, 2015-11-11aRagexeRE, 2015-11-11bRagexe #if PACKETVER == 20151111 - packetKeys(0x46097C77,0x5F193871,0x29140A21); + packetKeys(0x46097c77,0x5f193871,0x29140a21); #endif // 2015-11-18aRagexe, 2015-11-18aRagexeRE #if PACKETVER == 20151118 - packetKeys(0x734C3241,0x6E846F34,0x731C06D6); + packetKeys(0x734c3241,0x6e846f34,0x731c06d6); #endif // 2015-11-25bRagexe, 2015-11-25bRagexeRE, 2015-11-25cRagexeRE, 2015-11-25dRagexe, 2015-11-25dRagexeRE #if PACKETVER == 20151125 - packetKeys(0x237446C0,0x5EFB343A,0x0EDF06C5); + packetKeys(0x237446c0,0x5efb343a,0x0edf06c5); #endif // 2015-12-02aRagexe, 2015-12-02bRagexeRE #if PACKETVER == 20151202 - packetKeys(0x4EDE52DE,0x52DE52DE,0x52DE52DE); + packetKeys(0x4ede52de,0x52de52de,0x52de52de); #endif // 2015-12-09aRagexe, 2015-12-09aRagexeRE #if PACKETVER == 20151209 - packetKeys(0x652C5898,0x7A351FB3,0x67EA2886); + packetKeys(0x652c5898,0x7a351fb3,0x67ea2886); #endif // 2015-12-16aRagexe, 2015-12-16aRagexeRE #if PACKETVER == 20151216 - packetKeys(0x25DD643D,0x61AC39DE,0x77A8206D); + packetKeys(0x25dd643d,0x61ac39de,0x77a8206d); #endif // 2015-12-23bRagexe, 2015-12-23bRagexeRE #if PACKETVER == 20151223 - packetKeys(0x347D68D0,0x2C705320,0x7B4A199D); + packetKeys(0x347d68d0,0x2c705320,0x7b4a199d); #endif // 2015-12-30aRagexe, 2015-12-30aRagexeRE #if PACKETVER == 20151230 - packetKeys(0x54C51241,0x33883499,0x3CDA35F0); + packetKeys(0x54c51241,0x33883499,0x3cda35f0); #endif // 2016-01-06aRagexe, 2016-01-06aRagexeRE #if PACKETVER == 20160106 - packetKeys(0x40520265,0x33FE26FC,0x7136294F); + packetKeys(0x40520265,0x33fe26fc,0x7136294f); #endif // 2016-01-13aRagexe, 2016-01-13aRagexeRE, 2016-01-13bRagexe, 2016-01-13bRagexeRE, 2016-01-13bRagexeRE_2, 2016-01-13bRagexe_2, 2016-01-13cRagexeRE #if PACKETVER == 20160113 - packetKeys(0x18005C4B,0x19A94A72,0x73F678EC); + packetKeys(0x18005c4b,0x19a94a72,0x73f678ec); #endif // 2016-01-20aRagexe, 2016-01-20aRagexeRE @@ -1461,549 +1526,549 @@ // 2016-01-27aRagexeRE, 2016-01-27aRagexeRE_2, 2016-01-27bRagexeRE, 2016-01-27cRagexe, 2016-01-27dRagexe #if PACKETVER == 20160127 - packetKeys(0x6B1E7146,0x612C47E6,0x274E56EE); + packetKeys(0x6b1e7146,0x612c47e6,0x274e56ee); #endif // 2016-02-03aRagexe, 2016-02-03aRagexeRE #if PACKETVER == 20160203 - packetKeys(0x3E1411AF,0x6C744497,0x7CFA1BDE); + packetKeys(0x3e1411af,0x6c744497,0x7cfa1bde); #endif // 2016-02-11aRagexe, 2016-02-11aRagexeRE #if PACKETVER == 20160211 - packetKeys(0x613813EA,0x05251DAB,0x1FD35E33); + packetKeys(0x613813ea,0x05251dab,0x1fd35e33); #endif // 2016-02-17aRagexe, 2016-02-17aRagexeRE, 2016-02-17bRagexeRE, 2016-02-17bRagexeRE_2, 2016-02-17cRagexeRE #if PACKETVER == 20160217 - packetKeys(0x25895A8E,0x09421C19,0x763A2D7A); + packetKeys(0x25895a8e,0x09421c19,0x763a2d7a); #endif // 2016-02-24aRagexe, 2016-02-24aRagexeRE, 2016-02-24bRagexeRE #if PACKETVER == 20160224 - packetKeys(0x7088019A,0x13471F02,0x42356A7D); + packetKeys(0x7088019a,0x13471f02,0x42356a7d); #endif // 2016-03-02bRagexe, 2016-03-02bRagexeRE #if PACKETVER == 20160302 - packetKeys(0x7B4441B9,0x5BBC63AF,0x45DA0E71); + packetKeys(0x7b4441b9,0x5bbc63af,0x45da0e71); #endif // 2016-03-09aRagexeRE, 2016-03-09cRagexe #if PACKETVER == 20160309 - packetKeys(0x21587520,0x353A7706,0x1B722B25); + packetKeys(0x21587520,0x353a7706,0x1b722b25); #endif // 2016-03-16aRagexe, 2016-03-16aRagexeRE, 2016-03-18aRagexe #if PACKETVER == 20160316 || \ PACKETVER == 20160318 - packetKeys(0x62363E36,0x3E363E36,0x3E363E36); + packetKeys(0x62363e36,0x3e363e36,0x3e363e36); #endif // 2016-03-23aRagexe, 2016-03-23aRagexeRE, 2016-03-23bRagexe, 2016-03-23bRagexeRE #if PACKETVER == 20160323 - packetKeys(0x73E35A83,0x62142FA8,0x12BA36BD); + packetKeys(0x73e35a83,0x62142fa8,0x12ba36bd); #endif // 2016-03-30aRagexe, 2016-03-30aRagexeRE, 2016-03-30bRagexe #if PACKETVER == 20160330 - packetKeys(0x02050940,0x545336FF,0x7E7D4902); + packetKeys(0x02050940,0x545336ff,0x7e7d4902); #endif // 2016-04-06aRagexe, 2016-04-06aRagexeRE, 2016-04-06bRagexe #if PACKETVER == 20160406 - packetKeys(0x568611EA,0x32457D8D,0x2B020477); + packetKeys(0x568611ea,0x32457d8d,0x2b020477); #endif // 2016-04-14aRagexe, 2016-04-14aRagexeRE, 2016-04-14bRagexe, 2016-04-14bRagexeRE, 2016-04-14bRagexe_2, 2016-04-14cRagexe #if PACKETVER == 20160414 - packetKeys(0x31BD479A,0x40C61398,0x397C1A80); + packetKeys(0x31bd479a,0x40c61398,0x397c1a80); #endif // 2016-04-20aRagexeRE, 2016-04-20cRagexe #if PACKETVER == 20160420 - packetKeys(0x67D2163A,0x3068215B,0x4835474D); + packetKeys(0x67d2163a,0x3068215b,0x4835474d); #endif // 2016-04-27aRagexe, 2016-04-27aRagexeRE #if PACKETVER == 20160427 - packetKeys(0x12DC378E,0x4E3E7EBE,0x0ABE2ABE); + packetKeys(0x12dc378e,0x4e3e7ebe,0x0abe2abe); #endif // 2016-05-04aRagexe, 2016-05-04aRagexeRE #if PACKETVER == 20160504 - packetKeys(0x09E0544C,0x0231251D,0x2F4E195F); + packetKeys(0x09e0544c,0x0231251d,0x2f4e195f); #endif // 2016-05-11aRagexe, 2016-05-11aRagexeRE, 2016-05-11bRagexeRE #if PACKETVER == 20160511 - packetKeys(0x3C666FE2,0x27E84E3E,0x53E11BA5); + packetKeys(0x3c666fe2,0x27e84e3e,0x53e11ba5); #endif // 2016-05-18aRagexe, 2016-05-18aRagexeRE #if PACKETVER == 20160518 - packetKeys(0x57DB7CA1,0x1FEA1629,0x26DD244D); + packetKeys(0x57db7ca1,0x1fea1629,0x26dd244d); #endif // 2016-05-25aRagexe, 2016-05-25aRagexeRE, 2016-05-26aRagexe #if PACKETVER == 20160525 || \ PACKETVER == 20160526 - packetKeys(0x485C45B6,0x47DC6192,0x76B34A36); + packetKeys(0x485c45b6,0x47dc6192,0x76b34a36); #endif // 2016-06-01aRagexe, 2016-06-01aRagexeRE #if PACKETVER == 20160601 - packetKeys(0x3DAD32C4,0x59F001BE,0x73F65E56); + packetKeys(0x3dad32c4,0x59f001be,0x73f65e56); #endif // 2016-06-08aRagexe, 2016-06-08aRagexeRE, 2016-06-08bRagexe, 2016-06-08bRagexeRE, 2016-06-09aRagexe #if PACKETVER == 20160608 || \ PACKETVER == 20160609 - packetKeys(0x11D74609,0x77C43E8A,0x44290F53); + packetKeys(0x11d74609,0x77c43e8a,0x44290f53); #endif // 2016-06-15aRagexe, 2016-06-15aRagexeRE #if PACKETVER == 20160615 - packetKeys(0x062C5C26,0x6CF47E82,0x4DD53480); + packetKeys(0x062c5c26,0x6cf47e82,0x4dd53480); #endif // 2016-06-22aRagexe, 2016-06-22aRagexeRE #if PACKETVER == 20160622 - packetKeys(0x426548AB,0x5C0F5DD4,0x03022710); + packetKeys(0x426548ab,0x5c0f5dd4,0x03022710); #endif // 2016-06-29aRagexe, 2016-06-29aRagexeRE, 2016-06-30aRagexe, 2016-06-30aRagexeRE #if PACKETVER == 20160629 || \ PACKETVER == 20160630 - packetKeys(0x0DF31CCC,0x54281606,0x5C4C6855); + packetKeys(0x0df31ccc,0x54281606,0x5c4c6855); #endif // 2016-07-06bRagexe, 2016-07-06cRagexeRE #if PACKETVER == 20160706 - packetKeys(0x33A766D0,0x743F04F8,0x0FA0276C); + packetKeys(0x33a766d0,0x743f04f8,0x0fa0276c); #endif // 2016-07-13aRagexe, 2016-07-13aRagexeRE, 2016-07-13bRagexe, 2016-07-13bRagexeRE, 2016-07-13cRagexe, 2016-07-13dRagexe #if PACKETVER == 20160713 - packetKeys(0x714F2495,0x7DDC6F32,0x3FD8533D); + packetKeys(0x714f2495,0x7ddc6f32,0x3fd8533d); #endif // 2016-07-20aRagexe, 2016-07-20aRagexeRE, 2016-07-20bRagexe, 2016-07-20bRagexeRE #if PACKETVER == 20160720 - packetKeys(0x4F8A19C0,0x2D8E085C,0x37BB67D6); + packetKeys(0x4f8a19c0,0x2d8e085c,0x37bb67d6); #endif // 2016-07-27aRagexe, 2016-07-27aRagexeRE, 2016-07-27bRagexe, 2016-07-27bRagexeRE #if PACKETVER == 20160727 - packetKeys(0x3C6952AB,0x26E4077F,0x37E25DF7); + packetKeys(0x3c6952ab,0x26e4077f,0x37e25df7); #endif // 2016-08-03bRagexe, 2016-08-03bRagexeRE #if PACKETVER == 20160803 - packetKeys(0x67F438C2,0x512A4EB7,0x2D353182); + packetKeys(0x67f438c2,0x512a4eb7,0x2d353182); #endif // 2016-08-10aRagexe, 2016-08-10aRagexeRE #if PACKETVER == 20160810 - packetKeys(0x2F252886,0x242234A2,0x48BC5032); + packetKeys(0x2f252886,0x242234a2,0x48bc5032); #endif // 2016-08-17aRagexe, 2016-08-17aRagexeRE #if PACKETVER == 20160817 - packetKeys(0x675E6900,0x3F8E1D16,0x58D650E5); + packetKeys(0x675e6900,0x3f8e1d16,0x58d650e5); #endif // 2016-08-24aRagexe, 2016-08-24aRagexeRE #if PACKETVER == 20160824 - packetKeys(0x2FA92FA9,0x2FA92FA9,0x2FA92FA9); + packetKeys(0x2fa92fa9,0x2fa92fa9,0x2fa92fa9); #endif // 2016-08-31aRagexe, 2016-08-31aRagexeRE, 2016-08-31bRagexe, 2016-08-31bRagexeRE #if PACKETVER == 20160831 - packetKeys(0x564E13B0,0x7F680549,0x382D273B); + packetKeys(0x564e13b0,0x7f680549,0x382d273b); #endif // 2016-09-07aRagexe, 2016-09-07aRagexeRE #if PACKETVER == 20160907 - packetKeys(0x32E5237D,0x57BD4DBD,0x5DBD5DBD); + packetKeys(0x32e5237d,0x57bd4dbd,0x5dbd5dbd); #endif // 2016-09-13aRagexe, 2016-09-13aRagexeRE #if PACKETVER == 20160913 - packetKeys(0x7C79748F,0x1AA03B1D,0x6EAC4747); + packetKeys(0x7c79748f,0x1aa03b1d,0x6eac4747); #endif // 2016-09-21aRagexe, 2016-09-21bRagexeRE #if PACKETVER == 20160921 - packetKeys(0x11CD15CD,0x15CD15CD,0x15CD15CD); + packetKeys(0x11cd15cd,0x15cd15cd,0x15cd15cd); #endif // 2016-09-28cRagexe, 2016-09-28cRagexeRE, 2016-09-28dRagexeRE #if PACKETVER == 20160928 - packetKeys(0x2F8C67F5,0x22D42C38,0x57513774); + packetKeys(0x2f8c67f5,0x22d42c38,0x57513774); #endif // 2016-10-05aRagexe, 2016-10-05aRagexeRE #if PACKETVER == 20161005 - packetKeys(0x5BAE21F8,0x021E2FFC,0x3BEB7C31); + packetKeys(0x5bae21f8,0x021e2ffc,0x3beb7c31); #endif // 2016-10-12aRagexe, 2016-10-12aRagexeRE #if PACKETVER == 20161012 - packetKeys(0x5E2311F2,0x14FD012C,0x76EB64F6); + packetKeys(0x5e2311f2,0x14fd012c,0x76eb64f6); #endif // 2016-10-19aRagexe, 2016-10-19aRagexeRE #if PACKETVER == 20161019 - packetKeys(0x34882F11,0x7C870E70,0x7E61350D); + packetKeys(0x34882f11,0x7c870e70,0x7e61350d); #endif // 2016-10-26bRagexe, 2016-10-26bRagexeRE, 2016-10-26cRagexe, 2016-10-26cRagexeRE #if PACKETVER == 20161026 - packetKeys(0x2CB86AE6,0x7D12660E,0x1B004DEB); + packetKeys(0x2cb86ae6,0x7d12660e,0x1b004deb); #endif // 2016-11-02aRagexe, 2016-11-02aRagexeRE, 2016-11-03aRagexe, 2016-11-03aRagexeRE #if PACKETVER == 20161102 || \ PACKETVER == 20161103 - packetKeys(0x76725C17,0x72FE4EC1,0x07A91BFD); + packetKeys(0x76725c17,0x72fe4ec1,0x07a91bfd); #endif // 2016-11-09aRagexe, 2016-11-09aRagexeRE, 2016-11-09bRagexe, 2016-11-09bRagexeRE, 2016-11-09cRagexeRE, 2016-11-09dRagexeRE #if PACKETVER == 20161109 - packetKeys(0x0A5277C0,0x2DB17506,0x0E8F26DA); + packetKeys(0x0a5277c0,0x2db17506,0x0e8f26da); #endif // 2016-11-16aRagexe, 2016-11-16bRagexeRE, 2016-11-16cRagexeRE #if PACKETVER == 20161116 - packetKeys(0x780C5C3F,0x15E92272,0x2BA770C5); + packetKeys(0x780c5c3f,0x15e92272,0x2ba770c5); #endif // 2016-11-23aRagexe, 2016-11-23aRagexeRE #if PACKETVER == 20161123 - packetKeys(0x66FF559F,0x00D3535B,0x236246F7); + packetKeys(0x66ff559f,0x00d3535b,0x236246f7); #endif // 2016-11-30aRagexe, 2016-11-30aRagexeRE, 2016-11-30bRagexe, 2016-11-30bRagexeRE #if PACKETVER == 20161130 - packetKeys(0x2ED80296,0x0D837373,0x20266F9A); + packetKeys(0x2ed80296,0x0d837373,0x20266f9a); #endif // 2016-12-07cRagexe, 2016-12-07cRagexeRE, 2016-12-07dRagexeRE, 2016-12-07eRagexe, 2016-12-07eRagexeRE #if PACKETVER == 20161207 - packetKeys(0x52D267AA,0x4FE42156,0x1292153E); + packetKeys(0x52d267aa,0x4fe42156,0x1292153e); #endif // 2016-12-14bRagexe, 2016-12-14bRagexeRE, 2016-12-14cRagexe, 2016-12-14cRagexeRE #if PACKETVER == 20161214 - packetKeys(0x4DDE217B,0x07863AE0,0x5B591656); + packetKeys(0x4dde217b,0x07863ae0,0x5b591656); #endif // 2016-12-21aRagexe, 2016-12-21aRagexeRE, 2016-12-21bRagexe, 2016-12-21bRagexeRE, 2016-12-21cRagexeRE, 2016-12-21dRagexeRE #if PACKETVER == 20161221 - packetKeys(0x69CB4F56,0x793C165E,0x673A2354); + packetKeys(0x69cb4f56,0x793c165e,0x673a2354); #endif // 2016-12-28aRagexe, 2016-12-28aRagexeRE #if PACKETVER == 20161228 - packetKeys(0x09366971,0x005672F1,0x6F3712AE); + packetKeys(0x09366971,0x005672f1,0x6f3712ae); #endif // 2017-01-04aRagexe, 2017-01-04bRagexeRE #if PACKETVER == 20170104 - packetKeys(0x44416BC3,0x6C8D1817,0x072D75D5); + packetKeys(0x44416bc3,0x6c8d1817,0x072d75d5); #endif // 2017-01-11aRagexe, 2017-01-11aRagexeRE #if PACKETVER == 20170111 - packetKeys(0x19B637F9,0x0E9C378A,0x41673186); + packetKeys(0x19b637f9,0x0e9c378a,0x41673186); #endif // 2017-01-18aRagexe, 2017-01-18aRagexeRE #if PACKETVER == 20170118 - packetKeys(0x456B36EB,0x15EB34B0,0x18C42E43); + packetKeys(0x456b36eb,0x15eb34b0,0x18c42e43); #endif // 2017-01-25aRagexe, 2017-01-25aRagexeRE #if PACKETVER == 20170125 - packetKeys(0x066E04FE,0x3004224A,0x04FF0458); + packetKeys(0x066e04fe,0x3004224a,0x04ff0458); #endif // 2017-02-01aRagexe, 2017-02-01aRagexeRE #if PACKETVER == 20170201 - packetKeys(0x2011228E,0x00453005,0x628E7F0A); + packetKeys(0x2011228e,0x00453005,0x628e7f0a); #endif // 2017-02-08aRagexeRE, 2017-02-08bRagexe, 2017-02-08bRagexeRE #if PACKETVER == 20170208 - packetKeys(0x6A764E5F,0x0609570D,0x28AE07FA); + packetKeys(0x6a764e5f,0x0609570d,0x28ae07fa); #endif // 2017-02-15aRagexe, 2017-02-15aRagexeRE #if PACKETVER == 20170215 - packetKeys(0x50C01315,0x51012A42,0x679E16C3); + packetKeys(0x50c01315,0x51012a42,0x679e16c3); #endif // 2017-02-22aRagexe, 2017-02-22aRagexeRE #if PACKETVER == 20170222 - packetKeys(0x5A242F2F,0x6C556187,0x73C022CB); + packetKeys(0x5a242f2f,0x6c556187,0x73c022cb); #endif // 2017-02-28aRagexe, 2017-02-28aRagexeRE, 2017-02-28bRagexe #if PACKETVER == 20170228 - packetKeys(0x771D4F2B,0x20EF1F4C,0x0D5135C8); + packetKeys(0x771d4f2b,0x20ef1f4c,0x0d5135c8); #endif // 2017-03-08aRagexe, 2017-03-08bRagexeRE #if PACKETVER == 20170308 - packetKeys(0x653470A9,0x6B316A71,0x5C712C71); + packetKeys(0x653470a9,0x6b316a71,0x5c712c71); #endif // 2017-03-15cRagexe, 2017-03-15cRagexeRE #if PACKETVER == 20170315 - packetKeys(0x399A0856,0x56642A94,0x7F77157D); + packetKeys(0x399a0856,0x56642a94,0x7f77157d); #endif // 2017-03-22aRagexe, 2017-03-22aRagexeRE, 2017-03-22bRagexe, 2017-03-22bRagexeRE #if PACKETVER == 20170322 - packetKeys(0x2050167B,0x01731233,0x40337033); + packetKeys(0x2050167b,0x01731233,0x40337033); #endif // 2017-03-29bRagexe, 2017-03-29cRagexe, 2017-03-29cRagexeRE, 2017-03-29dRagexeRE #if PACKETVER == 20170329 - packetKeys(0x18B31A80,0x1B0B1D56,0x16857D6A); + packetKeys(0x18b31a80,0x1b0b1d56,0x16857d6a); #endif // 2017-04-05bRagexe, 2017-04-05bRagexeRE, 2017-04-05cRagexe, 2017-04-05cRagexeRE #if PACKETVER == 20170405 - packetKeys(0x1FDE7DAC,0x2F9F5B63,0x3F2062AF); + packetKeys(0x1fde7dac,0x2f9f5b63,0x3f2062af); #endif // 2017-04-12aRagexe, 2017-04-12aRagexeRE #if PACKETVER == 20170412 - packetKeys(0x39223393,0x5C847779,0x10217985); + packetKeys(0x39223393,0x5c847779,0x10217985); #endif // 2017-04-19aRagexe, 2017-04-19bRagexeRE #if PACKETVER == 20170419 - packetKeys(0x1F8F4B3F,0x2E481F03,0x39ED4178); + packetKeys(0x1f8f4b3f,0x2e481f03,0x39ed4178); #endif // 2017-04-26bRagexe, 2017-04-26dRagexeRE #if PACKETVER == 20170426 - packetKeys(0x167642A7,0x1DEC3D26,0x6D046D4C); + packetKeys(0x167642a7,0x1dec3d26,0x6d046d4c); #endif // 2017-05-02aRagexe, 2017-05-02bRagexe, 2017-05-02dRagexeRE #if PACKETVER == 20170502 - packetKeys(0x05224194,0x466D4204,0x31F02EE0); + packetKeys(0x05224194,0x466d4204,0x31f02ee0); #endif // 2017-05-17aRagexe, 2017-05-17aRagexeRE, 2017-05-17bRagexeRE #if PACKETVER == 20170517 - packetKeys(0x2CC4749A,0x1FA954DC,0x72276857); + packetKeys(0x2cc4749a,0x1fa954dc,0x72276857); #endif // 2017-05-24aRagexe, 2017-05-24aRagexeRE, 2017-05-24bRagexe #if PACKETVER == 20170524 - packetKeys(0x0B4E03A6,0x2B93427C,0x583D4477); + packetKeys(0x0b4e03a6,0x2b93427c,0x583d4477); #endif // 2017-05-31aRagexe, 2017-05-31aRagexeRE #if PACKETVER == 20170531 - packetKeys(0x03FA5A97,0x20B802D5,0x339F1977); + packetKeys(0x03fa5a97,0x20b802d5,0x339f1977); #endif // 2017-06-07bRagexeRE, 2017-06-07cRagexe, 2017-06-07cRagexeRE #if PACKETVER == 20170607 - packetKeys(0x50564ACD,0x79CA4E15,0x405F4894); + packetKeys(0x50564acd,0x79ca4e15,0x405f4894); #endif // 2017-06-14bRagexe, 2017-06-14bRagexeRE #if PACKETVER == 20170614 - packetKeys(0x5ED10A48,0x667F4301,0x2E5D761F); + packetKeys(0x5ed10a48,0x667f4301,0x2e5d761f); #endif // 2017-06-21aRagexeRE, 2017-06-21bRagexe #if PACKETVER == 20170621 - packetKeys(0x155F34EC,0x2D943FA9,0x3D9170EB); + packetKeys(0x155f34ec,0x2d943fa9,0x3d9170eb); #endif // 2017-06-28bRagexe, 2017-06-28bRagexeRE #if PACKETVER == 20170628 - packetKeys(0x04691C86,0x43C210E2,0x2FE277E2); + packetKeys(0x04691c86,0x43c210e2,0x2fe277e2); #endif // 2017-07-05aRagexe, 2017-07-05aRagexeRE #if PACKETVER == 20170705 - packetKeys(0x7EB000AE,0x02FB1DBC,0x5CB131E6); + packetKeys(0x7eb000ae,0x02fb1dbc,0x5cb131e6); #endif // 2017-07-12bRagexe, 2017-07-12bRagexeRE #if PACKETVER == 20170712 - packetKeys(0x2C3C202C,0x3F2C2F2C,0x2F2C2F2C); + packetKeys(0x2c3c202c,0x3f2c2f2c,0x2f2c2f2c); #endif // 2017-07-19aRagexe, 2017-07-19aRagexeRE #if PACKETVER == 20170719 - packetKeys(0x46465C88,0x10116F66,0x200866F9); + packetKeys(0x46465c88,0x10116f66,0x200866f9); #endif // 2017-07-26aRagexe, 2017-07-26cRagexeRE #if PACKETVER == 20170726 - packetKeys(0x102F23DB,0x7E767751,0x3BC172EF); + packetKeys(0x102f23db,0x7e767751,0x3bc172ef); #endif // 2017-08-01aRagexe, 2017-08-01aRagexeRE, 2017-08-01bRagexe #if PACKETVER == 20170801 - packetKeys(0x26B52A7F,0x5377619D,0x4F580AC4); + packetKeys(0x26b52a7f,0x5377619d,0x4f580ac4); #endif // 2017-08-09cRagexe, 2017-08-09cRagexeRE #if PACKETVER == 20170809 - packetKeys(0x452156CB,0x71442624,0x2EE66D1C); + packetKeys(0x452156cb,0x71442624,0x2ee66d1c); #endif // 2017-08-16cRagexe, 2017-08-16cRagexeRE, 2017-08-16dRagexe, 2017-08-16dRagexeRE #if PACKETVER == 20170816 - packetKeys(0x78914673,0x3F8B7634,0x55B814BC); + packetKeys(0x78914673,0x3f8b7634,0x55b814bc); #endif // 2017-08-23aRagexe, 2017-08-23aRagexeRE #if PACKETVER == 20170823 - packetKeys(0x22677205,0x393D1002,0x58DC6BB4); + packetKeys(0x22677205,0x393d1002,0x58dc6bb4); #endif // 2017-08-30aRagexe, 2017-08-30aRagexeRE, 2017-08-30bRagexe, 2017-08-30bRagexeRE #if PACKETVER == 20170830 - packetKeys(0x1D49592B,0x00970C17,0x1E640103); + packetKeys(0x1d49592b,0x00970c17,0x1e640103); #endif // 2017-09-06cRagexe, 2017-09-06cRagexeRE #if PACKETVER == 20170906 - packetKeys(0x7DEF7677,0x351F36E6,0x52303485); + packetKeys(0x7def7677,0x351f36e6,0x52303485); #endif // 2017-09-13bRagexeRE, 2017-09-13cRagexe #if PACKETVER == 20170913 - packetKeys(0x7A645935,0x1DA05062,0x5A7A4C43); + packetKeys(0x7a645935,0x1da05062,0x5a7a4c43); #endif // 2017-09-20aRagexe, 2017-09-20bRagexeRE #if PACKETVER == 20170920 - packetKeys(0x53024DA5,0x04EC212D,0x0BF87CD4); + packetKeys(0x53024da5,0x04ec212d,0x0bf87cd4); #endif // 2017-09-27bRagexe, 2017-09-27bRagexeRE, 2017-09-27cRagexe, 2017-09-27dRagexe, 2017-09-27dRagexeRE #if PACKETVER == 20170927 - packetKeys(0x15624100,0x0CE1463E,0x0E5D6534); + packetKeys(0x15624100,0x0ce1463e,0x0e5d6534); #endif // 2017-10-02cRagexe, 2017-10-02cRagexeRE #if PACKETVER == 20171002 - packetKeys(0x15E1716C,0x4E765B63,0x357D2370); + packetKeys(0x15e1716c,0x4e765b63,0x357d2370); #endif // 2017-10-11aRagexe, 2017-10-11aRagexeRE, 2017-10-11bRagexe, 2017-10-11bRagexeRE #if PACKETVER == 20171011 - packetKeys(0x4F121B3E,0x12670E17,0x19896C11); + packetKeys(0x4f121b3e,0x12670e17,0x19896c11); #endif // 2017-10-18aRagexe, 2017-10-18aRagexeRE #if PACKETVER == 20171018 - packetKeys(0x2CAA109C,0x158C1EC2,0x7A5E58F3); + packetKeys(0x2caa109c,0x158c1ec2,0x7a5e58f3); #endif // 2017-10-25bRagexe, 2017-10-25bRagexeRE, 2017-10-25cRagexe, 2017-10-25cRagexeRE, 2017-10-25dRagexe, 2017-10-25dRagexeRE, 2017-10-25eRagexe, 2017-10-25eRagexeRE #if PACKETVER == 20171025 - packetKeys(0x165C565C,0x565C565C,0x565C565C); + packetKeys(0x165c565c,0x565c565c,0x565c565c); #endif // 2017-11-01aRagexe, 2017-11-01bRagexeRE #if PACKETVER == 20171101 - packetKeys(0x7056317F,0x7EEE0589,0x02672373); + packetKeys(0x7056317f,0x7eee0589,0x02672373); #endif // 2017-11-08aRagexe, 2017-11-08bRagexeRE #if PACKETVER == 20171108 - packetKeys(0x03695685,0x7FAC12CE,0x182F7A7B); + packetKeys(0x03695685,0x7fac12ce,0x182f7a7b); #endif // 2017-11-15aRagexe, 2017-11-15aRagexeRE #if PACKETVER == 20171115 - packetKeys(0x23B97A3B,0x34610993,0x2892070E); + packetKeys(0x23b97a3b,0x34610993,0x2892070e); #endif // 2017-11-22aRagexe, 2017-11-22bRagexeRE #if PACKETVER == 20171122 - packetKeys(0x03221B0E,0x73AB7A5F,0x0DD80FD4); + packetKeys(0x03221b0e,0x73ab7a5f,0x0dd80fd4); #endif // 2017-11-29aRagexe, 2017-11-29aRagexeRE #if PACKETVER == 20171129 - packetKeys(0x581B77A7,0x62F74D7A,0x4F102173); + packetKeys(0x581b77a7,0x62f74d7a,0x4f102173); #endif // 2017-12-06aRagexeRE, 2017-12-06bRagexe, 2017-12-06cRagexe #if PACKETVER == 20171206 - packetKeys(0x39D54BD3,0x577A0C21,0x4C1C316E); + packetKeys(0x39d54bd3,0x577a0c21,0x4c1c316e); #endif // 2017-12-13bRagexe, 2017-12-13bRagexeRE #if PACKETVER == 20171213 - packetKeys(0x44E41107,0x3B126921,0x00E06AAC); + packetKeys(0x44e41107,0x3b126921,0x00e06aac); #endif // 2017-12-20aRagexe, 2017-12-20aRagexeRE #if PACKETVER == 20171220 - packetKeys(0x6EFE009A,0x440B7BFA,0x052339C8); + packetKeys(0x6efe009a,0x440b7bfa,0x052339c8); #endif // 2017-12-27aRagexe, 2017-12-27aRagexeRE #if PACKETVER == 20171227 - packetKeys(0x257A2F6E,0x51140EEE,0x00FA4452); + packetKeys(0x257a2f6e,0x51140eee,0x00fa4452); #endif // 2018-01-03aRagexe, 2018-01-03aRagexeRE, 2018-01-03bRagexe, 2018-01-03bRagexeRE #if PACKETVER == 20180103 - packetKeys(0x348F4BD7,0x7A425A54,0x628F589A); + packetKeys(0x348f4bd7,0x7a425a54,0x628f589a); #endif // 2018-01-17aRagexe, 2018-01-17aRagexeRE #if PACKETVER == 20180117 - packetKeys(0x21F477F4,0x37F437F4,0x37F437F4); + packetKeys(0x21f477f4,0x37f437f4,0x37f437f4); #endif // 2018-01-24bRagexe, 2018-01-24bRagexeRE, 2018-01-31Ragexe #if PACKETVER == 20180124 || \ PACKETVER == 20180131 - packetKeys(0x7EAA1CE0,0x415D1CFD,0x4C8F19FA); + packetKeys(0x7eaa1ce0,0x415d1cfd,0x4c8f19fa); #endif // 2018-02-07bRagexe, 2018-02-07bRagexeRE, 2018-02-07cRagexe #if PACKETVER == 20180207 - packetKeys(0x45AA1B44,0x20E716B7,0x5388105C); + packetKeys(0x45aa1b44,0x20e716b7,0x5388105c); #endif // 2018-02-13aRagexe, 2018-02-13aRagexeRE, 2018-02-13bRagexe #if PACKETVER == 20180213 - packetKeys(0x189D69B2,0x43B85EAD,0x2B7A687E); + packetKeys(0x189d69b2,0x43b85ead,0x2b7a687e); #endif // 2018-02-21aRagexeRE, 2018-02-21bRagexe, 2018-02-21bRagexeRE #if PACKETVER == 20180221 - packetKeys(0x6E2F6233,0x193B0A66,0x0D1D2CA5); + packetKeys(0x6e2f6233,0x193b0a66,0x0d1d2ca5); #endif // 2018-03-07bRagexe, 2018-03-07bRagexeRE, 2018-03-09aRagexe #if PACKETVER == 20180307 || \ PACKETVER == 20180309 - packetKeys(0x47DA10EB,0x4B922CCF,0x765C5055); + packetKeys(0x47da10eb,0x4b922ccf,0x765c5055); #endif // 2018-03-14nRagexe #if PACKETVER == 20180314 - packetKeys(0x2FF07149,0x00596EA3,0x2B853026); + packetKeys(0x2ff07149,0x00596ea3,0x2b853026); #endif diff --git a/src/map/packets_keys_zero.h b/src/map/packets_keys_zero.h index bbc1f7332..1a592956e 100644 --- a/src/map/packets_keys_zero.h +++ b/src/map/packets_keys_zero.h @@ -3,6 +3,7 @@ * http://herc.ws - http://github.com/HerculesWS/Hercules * * Copyright (C) 2013-2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,7 +30,7 @@ /* This file is autogenerated, please do not commit manual changes */ -// 2017-10-18aRagexe_zero, 2017-10-19aRagexe_zero, 2017-10-23aRagexe_zero, 2017-10-23bRagexe_zero, 2017-10-23cRagexe_zero, 2017-10-24aRagexe_2_zero, 2017-10-24aRagexe_zero, 2017-10-25bRagexe_zero, 2017-10-27aRagexe_zero, 2017-10-27bRagexe_zero, 2017-10-30aRagexe_zero, 2017-10-31aRagexe_zero, 2017-11-09aRagexe_zero, 2017-11-13aRagexe_zero, 2017-11-13bRagexe_zero, 2018-03-15aRagexe_zero, 2018-03-21aRagexe_zero, 2018-03-21bRagexe_zero, 2018-03-28_1aRagexe_zero, 2018-03-28cRagexe_zero, 2018-04-11aRagexe_zero, 2018-04-25_3aRagexe_zero, 2018-05-09_3aRagexe_zero, 2018-05-23aRagexe_zero, 2018-06-05bRagexe_zero, 2018-06-05cRagexe_zero, 2018-06-27aRagexe_zero, 2018-07-03aRagexe_zero, 2018-07-11_2aRagexe_zero, 2018-07-25_2aRagexe_zero, 2018-08-01aRagexe_zero, 2018-08-08_2aRagexe_zero, 2018-08-22aRagexe_zero, 2018-08-29aRagexe_zero, 2018-09-05aRagexe_zero, 2018-09-12aRagexe_zero, 2018-09-19aRagexe_zero +// 2017-10-18aRagexe_zero, 2017-10-19aRagexe_zero, 2017-10-23aRagexe_zero, 2017-10-23bRagexe_zero, 2017-10-23cRagexe_zero, 2017-10-24aRagexe_2_zero, 2017-10-24aRagexe_zero, 2017-10-25bRagexe_zero, 2017-10-27aRagexe_zero, 2017-10-27bRagexe_zero, 2017-10-30aRagexe_zero, 2017-10-31aRagexe_zero, 2017-11-09aRagexe_zero, 2017-11-13aRagexe_zero, 2017-11-13bRagexe_zero, 2018-03-15aRagexe_zero, 2018-03-21aRagexe_zero, 2018-03-21bRagexe_zero, 2018-03-28_1aRagexe_zero, 2018-03-28cRagexe_zero, 2018-04-11aRagexe_zero, 2018-04-25_3aRagexe_zero, 2018-05-09_3aRagexe_zero, 2018-05-23aRagexe_zero, 2018-06-05bRagexe_zero, 2018-06-05cRagexe_zero, 2018-06-27aRagexe_zero, 2018-07-03aRagexe_zero, 2018-07-11_2aRagexe_zero, 2018-07-25_2aRagexe_zero, 2018-08-01aRagexe_zero, 2018-08-08_2aRagexe_zero, 2018-08-22aRagexe_zero, 2018-08-29aRagexe_zero, 2018-09-05aRagexe_zero, 2018-09-12aRagexe_zero, 2018-09-19aRagexe_zero, 2018-09-28aRagexe_zero, 2018-10-10_2aRagexe_zero, 2018-10-24_2aRagexe_zero, 2018-11-14aRagexe_zero, 2018-11-20aRagexe_zero, 2018-11-28aRagexe_zero, 2018-12-12aRagexe_zero #if PACKETVER == 20171018 || \ PACKETVER == 20171019 || \ PACKETVER == 20171023 || \ @@ -58,7 +59,14 @@ PACKETVER == 20180829 || \ PACKETVER == 20180905 || \ PACKETVER == 20180912 || \ - PACKETVER >= 20180919 + PACKETVER == 20180919 || \ + PACKETVER == 20180928 || \ + PACKETVER == 20181010 || \ + PACKETVER == 20181024 || \ + PACKETVER == 20181114 || \ + PACKETVER == 20181120 || \ + PACKETVER == 20181128 || \ + PACKETVER >= 20181212 packetKeys(0x00000000,0x00000000,0x00000000); #endif @@ -66,34 +74,34 @@ #if PACKETVER == 20171115 || \ PACKETVER == 20171116 || \ PACKETVER == 20171117 - packetKeys(0x3B93061D,0x3CB50DCD,0x410A197E); + packetKeys(0x3b93061d,0x3cb50dcd,0x410a197e); #endif // 2017-11-21aRagexe_zero, 2017-11-22aRagexe_zero #if PACKETVER == 20171121 || \ PACKETVER == 20171122 - packetKeys(0x195B4DA8,0x6E3A473B,0x126F4B61); + packetKeys(0x195b4da8,0x6e3a473b,0x126f4b61); #endif // 2017-11-23dRagexe_zero #if PACKETVER == 20171123 - packetKeys(0x6087733A,0x5C5C4AEE,0x0F10408F); + packetKeys(0x6087733a,0x5c5c4aee,0x0f10408f); #endif // 2017-11-27aRagexe_zero, 2017-11-27cRagexe_zero, 2017-11-28aRagexe_zero #if PACKETVER == 20171127 || \ PACKETVER == 20171128 - packetKeys(0x141C135C,0x675C275C,0x275C275C); + packetKeys(0x141c135c,0x675c275c,0x275c275c); #endif // 2017-11-30bRagexe_zero #if PACKETVER == 20171130 - packetKeys(0x31A04B32,0x3AC96B76,0x1742085D); + packetKeys(0x31a04b32,0x3ac96b76,0x1742085d); #endif // 2017-12-04bRagexe_zero #if PACKETVER == 20171204 - packetKeys(0x06A109F1,0x6A953256,0x0A6040A3); + packetKeys(0x06a109f1,0x6a953256,0x0a6040a3); #endif // 2017-12-06aRagexe_zero, 2017-12-06bRagexe_zero, 2017-12-06cRagexe_zero, 2017-12-06dRagexe_zero, 2017-12-08aRagexe_zero, 2017-12-08cRagexe_zero, 2017-12-08dRagexe_zero, 2017-12-09bRagexe_zero, 2017-12-09cRagexe_zero, 2017-12-10aRagexe_zero, 2017-12-11bRagexe_zero, 2017-12-12aRagexe_zero, 2017-12-13aRagexe_zero, 2017-12-13bRagexe_zero, 2017-12-13cRagexe_zero @@ -104,71 +112,71 @@ PACKETVER == 20171211 || \ PACKETVER == 20171212 || \ PACKETVER == 20171213 - packetKeys(0x718D0388,0x56A11525,0x20042F67); + packetKeys(0x718d0388,0x56a11525,0x20042f67); #endif // 2017-12-14cRagexe_zero #if PACKETVER == 20171214 - packetKeys(0x6CE1021D,0x77703B04,0x4E722232); + packetKeys(0x6ce1021d,0x77703b04,0x4e722232); #endif // 2017-12-20aRagexe_zero, 2017-12-21aRagexe_zero, 2017-12-21bRagexe_zero #if PACKETVER == 20171220 || \ PACKETVER == 20171221 - packetKeys(0x1E2047D2,0x7EE31AC2,0x31434F61); + packetKeys(0x1e2047d2,0x7ee31ac2,0x31434f61); #endif // 2017-12-27bRagexe_zero, 2017-12-29aRagexe_zero #if PACKETVER == 20171227 || \ PACKETVER == 20171229 - packetKeys(0x7CBF0846,0x02F92654,0x22AA5E2D); + packetKeys(0x7cbf0846,0x02f92654,0x22aa5e2d); #endif // 2018-01-03aRagexe_zero #if PACKETVER == 20180103 - packetKeys(0x2A3D4E64,0x7008690C,0x69FF066F); + packetKeys(0x2a3d4e64,0x7008690c,0x69ff066f); #endif // 2018-01-17aRagexe_zero #if PACKETVER == 20180117 - packetKeys(0x230959EB,0x1CCB0182,0x1FFA2B30); + packetKeys(0x230959eb,0x1ccb0182,0x1ffa2b30); #endif // 2018-01-31dRagexe_zero #if PACKETVER == 20180131 - packetKeys(0x1F422E02,0x12025202,0x52025202); + packetKeys(0x1f422e02,0x12025202,0x52025202); #endif // 2018-02-07bRagexe_zero #if PACKETVER == 20180207 - packetKeys(0x07CB29CB,0x69CB69CB,0x69CB69CB); + packetKeys(0x07cb29cb,0x69cb69cb,0x69cb69cb); #endif // 2018-02-13aRagexe_zero #if PACKETVER == 20180213 - packetKeys(0x0513075E,0x347075AF,0x67C56C6F); + packetKeys(0x0513075e,0x347075af,0x67c56c6f); #endif // 2018-02-21aRagexe_zero #if PACKETVER == 20180221 - packetKeys(0x28ED7635,0x76591F21,0x59383498); + packetKeys(0x28ed7635,0x76591f21,0x59383498); #endif // 2018-02-28bRagexe_zero, 2018-03-07aRagexe_zero, 2018-03-09aRagexe_zero #if PACKETVER == 20180228 || \ PACKETVER == 20180307 || \ PACKETVER == 20180309 - packetKeys(0x56C82ABE,0x61AE2B2E,0x472E272E); + packetKeys(0x56c82abe,0x61ae2b2e,0x472e272e); #endif // 2018-03-14nRagexe_zero #if PACKETVER == 20180314 - packetKeys(0x2FC330DD,0x01C04E1F,0x4D914DE2); + packetKeys(0x2fc330dd,0x01c04e1f,0x4d914de2); #endif // 2018-05-11aRagexe_zero, 2018-05-11bRagexe_zero #if PACKETVER == 20180511 - packetKeys(0x1C055B65,0x68CE748D,0x32AF761D); + packetKeys(0x1c055b65,0x68ce748d,0x32af761d); #endif diff --git a/src/map/packets_shuffle_main.h b/src/map/packets_shuffle_main.h index 8bc395da1..940dbcf89 100644 --- a/src/map/packets_shuffle_main.h +++ b/src/map/packets_shuffle_main.h @@ -3,6 +3,7 @@ * http://herc.ws - http://github.com/HerculesWS/Hercules * * Copyright (C) 2013-2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,13 +25,13 @@ #define MAP_PACKETS_SHUFFLE_MAIN_H #ifndef packet - #define packet(a,b,...) + #define packet(a,...) #endif /* * packet syntax - * - packet(packet_id,length,function,offset ( specifies the offset of a packet field in bytes from the begin of the packet ),...) - * - Example: packet(0x0072,19,clif->pWantToConnection,2,6,10,14,18); + * - packet(packet_id,function,offset ( specifies the offset of a packet field in bytes from the begin of the packet ),...) + * - Example: packet(0x0072,clif->pWantToConnection,2,6,10,14,18); */ /* This file is autogenerated, please do not commit manual changes */ @@ -39,3312 +40,3312 @@ // 2012-07-10aRagexe, 2012-07-12aRagexe #if PACKETVER == 20120710 || \ PACKETVER == 20120712 - packet(0x0202,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x02c4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0362,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0365,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0367,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0436,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x07e4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0811,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0877,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0878,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x087f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x088d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0893,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0899,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a3,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a6,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a8,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08aa,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0936,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0948,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0953,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0956,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0958,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0960,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0202,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x02c4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0362,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0365,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0367,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0436,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x07e4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0811,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0877,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0878,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x087f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x088d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0893,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0899,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a3,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a6,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a8,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08aa,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0936,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0948,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0953,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0956,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0958,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0960,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2012-07-16aRagexe #if PACKETVER == 20120716 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-07-24aRagexe #if PACKETVER == 20120724 - packet(0x035f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0815,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0835,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0865,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0866,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0872,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0877,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087c,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0887,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0888,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a1,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a9,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08ab,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0928,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0929,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x092b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0935,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0938,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x093c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0945,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0957,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0959,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0963,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0965,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0966,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x035f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0815,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0835,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0865,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0866,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0872,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0877,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087c,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0887,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0888,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a1,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a9,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08ab,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0928,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0929,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x092b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0935,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0938,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x093c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0945,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0957,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0959,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0963,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0965,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0966,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 #endif // 2012-08-01aRagexe, 2012-08-01bRagexe #if PACKETVER == 20120801 - packet(0x0360,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0438,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0873,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0875,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x088b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0895,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a2,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08aa,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ab,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0917,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0930,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0934,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x093c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0946,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0964,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0360,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0438,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0873,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0875,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x088b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0895,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a2,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08aa,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ab,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0917,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0930,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0934,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x093c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0946,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0964,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2012-08-08aRagexe, 2012-08-08bRagexe, 2012-08-08cRagexe #if PACKETVER == 20120808 - packet(0x0202,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-08-14aRagexe, 2012-08-14bRagexe #if PACKETVER == 20120814 - packet(0x0281,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0361,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0365,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0366,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x07ec,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0815,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0838,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0861,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0862,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0865,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0868,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0875,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0882,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x088d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0895,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a8,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0920,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0929,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0932,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0934,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0967,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0969,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0281,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0361,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0365,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0366,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x07ec,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0815,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0838,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0861,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0862,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0865,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0868,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0875,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0882,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x088d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0895,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a8,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0920,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0929,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0932,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0934,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0967,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0969,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2012-08-22aRagexe, 2012-08-22bRagexe, 2012-08-22cRagexe #if PACKETVER == 20120822 - packet(0x0365,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0437,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x085a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x085d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0872,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x087d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0899,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ab,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0917,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0924,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0927,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0935,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0937,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0940,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0943,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0953,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0958,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0365,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0437,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x085a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x085d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0872,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x087d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0899,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ab,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0917,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0924,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0927,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0935,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0937,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0940,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0943,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0953,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0958,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 #endif // 2012-08-30aRagexe #if PACKETVER == 20120830 - packet(0x022d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0802,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0838,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0861,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0872,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0887,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0888,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0926,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0934,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0945,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094b,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0964,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0802,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0838,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0861,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0872,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0887,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0888,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0926,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0934,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0945,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094b,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0964,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-09-05aRagexe #if PACKETVER == 20120905 - packet(0x022d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0365,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0817,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x085a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0878,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x087e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0887,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0895,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0897,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a0,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a6,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0917,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0918,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0927,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x093c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0944,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0945,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0950,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0959,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0960,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0967,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x022d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0365,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0817,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x085a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0878,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x087e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0887,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0895,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0897,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a0,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a6,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0917,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0918,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0927,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x093c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0944,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0945,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0950,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0959,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0960,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0967,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2012-09-11aRagexe #if PACKETVER == 20120911 - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0819,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0868,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0879,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a4,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a5,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a6,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a7,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08ad,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0930,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0935,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0948,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0949,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0958,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0959,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0962,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0963,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0968,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0819,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0868,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0879,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a4,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a5,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a6,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a7,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08ad,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0930,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0935,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0948,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0949,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0958,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0959,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0962,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0963,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0968,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2012-09-19aRagexe #if PACKETVER == 20120919 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0956,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0956,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-09-25aRagexe, 2012-09-26aRagexe #if PACKETVER == 20120925 || \ PACKETVER == 20120926 - packet(0x07e4,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0815,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0819,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0835,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0838,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0869,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0873,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x087e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0887,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a4,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0923,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0927,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0932,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0942,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0948,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0950,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0956,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0958,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0963,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x07e4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0815,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0819,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0835,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0838,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0869,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0873,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x087e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0887,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a4,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0923,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0927,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0932,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0942,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0948,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0950,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0956,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0958,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0963,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 #endif // 2012-10-10aRagexe, 2012-10-10bRagexe #if PACKETVER == 20121010 - packet(0x0202,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0817,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0869,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0874,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0883,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0888,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0891,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0896,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a1,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a6,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a9,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0925,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0934,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0942,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0946,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0947,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0957,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0958,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0959,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0964,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0969,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0202,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0817,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0869,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0874,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0883,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0888,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0891,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0896,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a1,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a9,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0925,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0934,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0942,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0946,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0947,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0957,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0958,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0959,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0964,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0969,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2012-10-17aRagexe, 2012-10-17bRagexe #if PACKETVER == 20121017 - packet(0x023b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0868,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0887,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0888,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0897,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x089a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a6,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0918,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0920,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0960,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0965,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0868,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0887,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0888,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0897,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x089a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a6,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0918,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0920,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0960,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0965,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-10-24aRagexe #if PACKETVER == 20121024 - packet(0x0436,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0437,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0438,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0817,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0838,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0868,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0872,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0875,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0882,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0888,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0889,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a9,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08aa,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0931,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0938,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0942,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0947,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0954,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0955,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x095d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0965,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0436,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0437,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0438,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0817,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0838,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0868,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0872,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0875,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0882,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0888,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0889,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a9,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08aa,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0931,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0938,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0942,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0947,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0954,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0955,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x095d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0965,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2012-10-31aRagexe #if PACKETVER == 20121031 - packet(0x022d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0871,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0877,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0898,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0871,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0877,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0898,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-11-07aRagexe #if PACKETVER == 20121107 - packet(0x0360,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0361,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0365,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x085c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0861,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0865,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0871,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0873,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0878,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0890,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0891,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0896,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a2,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0922,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0934,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0945,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x094d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0960,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0963,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0966,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0360,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0361,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0365,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x085c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0861,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0865,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0871,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0873,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0878,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0890,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0891,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0896,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0922,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0934,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0945,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x094d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0960,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0963,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0966,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 #endif // 2012-11-14aRagexe #if PACKETVER == 20121114 - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0365,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0437,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0815,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0838,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0862,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0876,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0879,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0881,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0898,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0899,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a9,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08aa,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ab,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0930,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0935,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0938,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x093b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0941,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0944,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0949,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x095c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0965,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0365,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0437,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0815,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0838,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0862,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0876,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0879,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0881,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0898,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0899,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a9,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08aa,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ab,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0930,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0935,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0938,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x093b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0941,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0944,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0949,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x095c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0965,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2012-11-21aRagexe #if PACKETVER == 20121121 - packet(0x0202,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0362,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0437,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0863,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0872,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0875,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0880,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0892,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089a,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a7,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08aa,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0921,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0927,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0929,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0938,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0946,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x094d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0950,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0952,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0957,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0958,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0202,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0362,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0437,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0863,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0872,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0875,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0880,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0892,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089a,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a7,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08aa,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0921,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0927,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0929,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0938,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0946,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x094d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0950,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0952,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0957,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0958,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 #endif // 2012-11-28aRagexe #if PACKETVER == 20121128 - packet(0x0362,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0363,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x07ec,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0802,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0861,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0867,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x086c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0872,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0888,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0894,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0895,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a8,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ad,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0921,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0922,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0931,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0945,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0947,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0950,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0953,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0960,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0362,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0363,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x07ec,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0802,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0861,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0867,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x086c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0872,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0888,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0894,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0895,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a8,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ad,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0921,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0922,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0931,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0945,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0947,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0950,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0953,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0960,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 #endif // 2012-12-05aRagexe, 2012-12-05bRagexe #if PACKETVER == 20121205 - packet(0x035f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0360,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0815,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0863,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0864,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0870,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0873,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0875,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0878,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0888,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0889,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08ad,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0921,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0946,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0954,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0959,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0968,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x035f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0360,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0815,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0863,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0864,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0870,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0873,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0875,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0878,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0888,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0889,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08ad,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0921,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0946,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0954,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0959,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0968,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2012-12-12aRagexe, 2012-12-12bRagexe #if PACKETVER == 20121212 - packet(0x0362,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0368,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0369,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0436,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0438,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0817,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x085c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0877,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x087d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0893,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0895,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a3,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a7,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a9,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08aa,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ac,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0917,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0920,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0932,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0947,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0951,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0953,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0957,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0966,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0362,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0368,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0369,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0436,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0438,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x085c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0877,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x087d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0893,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0895,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a3,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a7,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a9,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08aa,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ac,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0917,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0920,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0932,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0947,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0951,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0953,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0957,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0966,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-12-18aRagexe, 2012-12-18bRagexe #if PACKETVER == 20121218 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0363,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0872,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0889,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0890,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0935,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0946,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0957,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0363,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0872,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0889,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0935,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0946,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0957,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-12-27aRagexe #if PACKETVER == 20121227 - packet(0x0202,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x02c4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0361,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0437,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0860,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0870,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0872,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0886,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0888,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0890,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0894,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0896,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a6,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0917,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0920,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0932,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0933,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0940,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0943,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0947,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0953,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0958,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0962,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0202,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x02c4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0361,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0437,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0860,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0870,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0872,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0886,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0888,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0890,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0894,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0896,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a6,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0917,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0920,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0932,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0933,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0940,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0943,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0947,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0953,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0958,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0962,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 #endif // 2013-01-03aRagexe, 2013-01-07aRagexe #if PACKETVER == 20130103 || \ PACKETVER == 20130107 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-01-09aRagexe #if PACKETVER == 20130109 - packet(0x0281,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0365,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0368,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0838,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0866,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0888,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0891,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0892,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a2,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08aa,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ac,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0918,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0922,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0927,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0928,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0930,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0931,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0938,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093e,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0950,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0951,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0955,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0281,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0365,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0368,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0838,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0866,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0888,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0891,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0892,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a2,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08aa,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ac,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0918,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0922,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0927,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0928,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0930,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0931,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0938,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093e,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0950,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0951,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0955,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2013-01-15bRagexe, 2013-01-16aRagexe, 2013-01-16bRagexe #if PACKETVER == 20130115 || \ PACKETVER == 20130116 - packet(0x0361,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x07ec,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0817,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0861,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0863,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0870,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0871,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0877,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0879,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0888,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x088b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0894,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0895,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a0,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0918,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0928,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x092d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0939,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0946,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094b,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x095a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0361,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0817,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0861,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0863,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0870,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0871,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0877,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0879,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0888,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x088b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0894,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0895,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a0,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0918,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0928,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x092d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0939,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0946,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094b,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x095a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2013-01-21aRagexe #if PACKETVER == 20130121 - packet(0x023b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x035f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0802,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0815,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0817,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0874,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0893,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0940,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0956,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0963,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x035f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0802,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0815,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0817,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0874,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0893,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0940,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0956,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0963,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-01-30aRagexe #if PACKETVER == 20130130 - packet(0x035f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0367,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0437,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x085f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0862,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0885,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0886,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0887,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0889,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x089a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a0,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a4,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a9,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0920,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0924,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0956,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0957,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095b,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x035f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0367,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0368,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0437,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x085f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0862,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0885,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0886,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0887,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0889,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x089a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a0,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a4,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a9,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0920,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0924,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0956,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0957,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095b,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2013-02-06aRagexe #if PACKETVER == 20130206 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0811,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0876,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0883,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0899,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a0,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ac,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0920,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0925,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x093c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0950,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0811,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0876,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0883,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0899,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a0,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ac,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0920,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0925,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x093c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0950,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-02-15aRagexe, 2013-02-15bRagexe #if PACKETVER == 20130215 - packet(0x023b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0886,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ad,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0923,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0941,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0956,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x095d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0962,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0886,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ad,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0923,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0941,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0956,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x095d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0962,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-02-20aRagexe #if PACKETVER == 20130220 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-02-27aRagexe #if PACKETVER == 20130227 - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x035f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0360,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0811,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0815,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0817,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0863,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0867,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0869,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x086e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0893,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0898,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a0,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a1,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0924,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x092b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x092f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0936,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0946,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0951,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0967,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x035f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0360,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0811,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0815,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0817,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0863,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0867,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0869,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x086e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0893,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0898,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a0,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a1,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0924,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x092b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x092f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0936,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0946,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0951,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0967,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2013-03-06aRagexe #if PACKETVER == 20130306 - packet(0x022d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0367,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0368,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0802,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0817,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x085b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0860,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0881,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0890,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0898,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ac,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0917,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0926,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0934,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0936,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0943,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0944,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0945,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0946,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094a,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0951,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0960,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x022d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0367,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0368,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0802,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0817,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x085b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0860,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0881,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0898,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ac,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0917,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0926,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0934,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0936,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0943,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0944,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0945,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0946,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094a,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0951,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0960,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2013-03-13aRagexe #if PACKETVER == 20130313 - packet(0x0202,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0887,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0920,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0947,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0887,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0920,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0947,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-03-20dRagexe, 2013-03-20eRagexe #if PACKETVER == 20130320 - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0365,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0438,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x085d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0868,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0874,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0881,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0886,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0888,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0890,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0897,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0898,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0922,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0933,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0938,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0947,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0959,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0365,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0438,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x085d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0868,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0874,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0881,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0886,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0888,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0897,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0898,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0922,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0933,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0938,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0947,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0959,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2013-03-27bRagexe #if PACKETVER == 20130327 - packet(0x02c4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0835,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0873,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0878,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0885,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0891,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0893,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0899,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a1,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a2,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x092b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x092d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x092e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0933,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0938,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0939,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0955,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0960,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0961,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0967,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x02c4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0835,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0873,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0878,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0885,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0891,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0893,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0899,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a1,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a2,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x092b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x092d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0933,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0938,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0939,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0955,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0960,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0961,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0967,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 #endif // 2013-04-03aRagexe #if PACKETVER == 20130403 - packet(0x023b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0884,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0926,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0942,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0950,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0884,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0926,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0942,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0950,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-04-10aRagexe #if PACKETVER == 20130410 - packet(0x0367,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0437,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0860,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0865,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0881,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x088c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a0,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08a7,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0917,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0933,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0939,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x093d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0944,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0945,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0955,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0960,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0967,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x096a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0367,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0437,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0860,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0865,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0881,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x088c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a0,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08a7,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0917,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0933,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0939,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x093d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0944,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0945,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0955,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0960,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0967,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x096a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2013-04-17aRagexe #if PACKETVER == 20130417 - packet(0x0202,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0875,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0929,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0962,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0969,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x096a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x0202,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0875,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0929,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0962,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0969,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x096a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2013-04-24aRagexe #if PACKETVER == 20130424 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0969,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0969,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-05-02aRagexe, 2013-05-02bRagexe #if PACKETVER == 20130502 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x07ec,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0870,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0874,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0875,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0877,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0888,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0889,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a1,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a3,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0961,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0967,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x07ec,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0870,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0874,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0875,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0877,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0888,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0889,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a1,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a3,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0961,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0967,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2013-05-08bRagexe, 2013-05-08cRagexe, 2013-05-08dRagexe, 2013-05-08eRagexe, 2013-05-08fRagexe #if PACKETVER == 20130508 - packet(0x022d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0868,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0878,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0893,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0895,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0897,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ab,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x092d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0944,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0957,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0868,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0878,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0893,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0895,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0897,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ab,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x092d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0944,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0957,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-05-15aRagexe #if PACKETVER == 20130515 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0887,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a1,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ac,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0931,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x093e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0943,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0944,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0947,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0962,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0963,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0887,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a1,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ac,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0931,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x093e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0943,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0944,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0947,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0962,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0963,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-05-22aRagexe #if PACKETVER == 20130522 - packet(0x0360,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0362,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0368,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x07ec,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0811,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0874,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x088e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a2,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a3,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a6,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a9,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08aa,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08ac,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0925,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0926,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x093e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0950,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0952,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0964,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0965,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x0360,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0362,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0368,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x07ec,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0811,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0874,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x088e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a2,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a3,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a6,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a9,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08aa,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08ac,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0925,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0926,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x093e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0950,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0952,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0964,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0965,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2013-05-29aRagexe #if PACKETVER == 20130529 - packet(0x023b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0438,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x085e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0863,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0869,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0874,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0876,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0877,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0888,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0892,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0895,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0897,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a7,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a8,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0917,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0918,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0919,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0936,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0937,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0938,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0941,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0951,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0956,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0957,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0958,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0964,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x023b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x085e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0863,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0869,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0874,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0876,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0877,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0888,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0892,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0895,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0897,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a7,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a8,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0917,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0918,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0919,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0936,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0937,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0938,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0941,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0951,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0956,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0957,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0958,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0964,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2013-06-05aRagexe, 2013-06-05bRagexe #if PACKETVER == 20130605 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0883,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0883,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-06-12aRagexe, 2013-06-12bRagexe, 2013-06-12cRagexe, 2013-06-12dRagexe, 2013-06-12eRagexe #if PACKETVER == 20130612 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0919,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0964,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0919,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0964,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-06-18#1aRagexe #if PACKETVER == 20130618 - packet(0x0281,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x02c4,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0363,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0862,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0864,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0878,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0885,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0887,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0889,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x088e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0890,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0891,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a6,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a7,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0917,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0930,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0932,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0936,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0942,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0944,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0945,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0951,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0953,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0281,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x02c4,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0363,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0862,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0864,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0878,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0885,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0887,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0889,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x088e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0890,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0891,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a6,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a7,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0917,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0930,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0932,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0936,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0942,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0944,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0945,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0951,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0953,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2013-06-26_3cRagexe, 2013-06-26bRagexe #if PACKETVER == 20130626 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0860,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0894,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0895,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a5,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ab,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0921,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0930,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0952,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0960,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0860,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0894,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0895,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a5,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ab,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0921,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0930,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0952,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0960,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-07-03aRagexe #if PACKETVER == 20130703 - packet(0x0202,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0873,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0930,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0873,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0930,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-07-10bRagexe #if PACKETVER == 20130710 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0880,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0880,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-07-17cRagexe #if PACKETVER == 20130717 - packet(0x02c4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0863,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x086b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0882,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x088a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0897,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0898,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a6,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a9,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0917,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0918,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0956,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0958,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0960,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0967,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x096a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x02c4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0863,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x086b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0882,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x088a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0897,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0898,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a9,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0917,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0918,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0956,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0958,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0960,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0967,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x096a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2013-07-24eRagexe #if PACKETVER == 20130724 - packet(0x023b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0437,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x085a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0860,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0867,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0874,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0876,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0890,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0891,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0893,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0921,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0924,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x092b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0953,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0954,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0956,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0958,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0966,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x023b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0437,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x085a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0860,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0867,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0874,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0876,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0890,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0891,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0893,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0921,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0924,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x092b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0953,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0954,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0956,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0958,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0966,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2013-07-31cRagexe #if PACKETVER == 20130731 - packet(0x022d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0366,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0819,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0863,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0865,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0878,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x087e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0884,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0889,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0894,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0895,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0923,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0925,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x092b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0935,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x094c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0956,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0957,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0958,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0962,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x022d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0366,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0863,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0865,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0878,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x087e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0884,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0889,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0894,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0923,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0925,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x092b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0935,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x094c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0956,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0957,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0958,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0962,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2013-08-07aRagexe #if PACKETVER == 20130807 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0887,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0887,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-08-14aRagexe #if PACKETVER == 20130814 - packet(0x0202,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0281,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0368,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0815,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0835,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0868,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0873,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0874,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0885,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0887,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0889,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0895,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0896,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0923,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0926,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0936,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0937,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x093a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0941,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0947,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0958,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0959,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0962,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0202,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0281,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0368,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0815,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0835,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0868,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0873,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0874,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0885,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0887,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0889,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0895,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0896,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0923,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0926,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0936,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0937,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x093a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0941,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0947,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0958,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0959,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0962,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2013-08-21bRagexe #if PACKETVER == 20130821 - packet(0x0202,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0437,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0438,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x07ec,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0815,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0863,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0879,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0881,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x088d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0892,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a6,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0923,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x093e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0947,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0954,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0964,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0967,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0969,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0202,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0437,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0438,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x07ec,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0815,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0863,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0879,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0881,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x088d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0892,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a6,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0923,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x093e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0947,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0954,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0964,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0967,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0969,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 #endif // 2013-08-28bRagexe, 2013-08-28cRagexe #if PACKETVER == 20130828 - packet(0x023b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0361,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0364,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0817,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0873,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0889,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0893,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a3,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08ac,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0917,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0919,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0923,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0924,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0928,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0930,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0944,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0946,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x094f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x095d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x023b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0361,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0364,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0817,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0873,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0889,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0893,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a3,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08ac,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0917,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0919,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0923,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0924,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0928,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0930,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0944,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0946,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x094f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x095d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2013-09-04aRagexe #if PACKETVER == 20130904 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0838,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0937,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0956,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0838,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0937,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0956,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-09-11aRagexe, 2013-09-11bRagexe #if PACKETVER == 20130911 - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0868,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0889,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0891,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0948,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0967,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x096a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0868,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0889,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0891,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0948,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0967,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x096a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2013-09-17aRagexe #if PACKETVER == 20130917 - packet(0x035f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0811,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0838,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x083c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0863,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0868,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x087a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0895,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x089d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a0,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a8,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0918,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0921,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0923,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0934,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x094c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0959,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x096a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x035f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0811,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0838,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x083c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0863,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0868,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x087a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0895,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x089d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a0,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a8,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0918,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0921,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0923,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0934,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x094c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0959,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x096a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 #endif // 2013-09-25aRagexe, 2013-09-25bRagexe, 2013-09-25cRagexe #if PACKETVER == 20130925 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0875,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0876,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0885,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0887,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0890,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0940,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0969,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0875,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0876,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0885,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0887,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0940,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0969,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-10-02aRagexe #if PACKETVER == 20131002 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-10-08aRagexe #if PACKETVER == 20131008 - packet(0x0202,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0362,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x07e4,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x085e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0863,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0883,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0896,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a9,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0917,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0923,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0927,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0932,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0934,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0936,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0947,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0952,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0956,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0969,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0202,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0362,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x07e4,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x083c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x085e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0863,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0883,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0896,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a9,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0917,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0923,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0927,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0932,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0934,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0936,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0947,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0952,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0956,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0969,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2013-10-16aRagexe, 2013-10-16bRagexe #if PACKETVER == 20131016 - packet(0x022d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0281,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0361,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0364,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x07ec,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x085d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0863,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0864,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0867,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0870,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0875,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0887,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0888,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0890,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0894,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x091e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0927,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0946,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0962,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0966,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x022d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0281,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0361,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0364,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x07ec,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x085d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0863,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0864,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0867,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0870,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0875,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0887,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0888,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0890,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0894,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x091e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0927,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0946,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0962,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0966,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2013-10-23aRagexe #if PACKETVER == 20131023 - packet(0x0366,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0438,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0819,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0835,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0862,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0872,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0876,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0885,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a7,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ab,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ac,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0919,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0923,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0924,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0935,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0937,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0944,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x094a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0951,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0954,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0366,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0438,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0819,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0835,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0872,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0876,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0885,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a7,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ab,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ac,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0919,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0923,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0924,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0935,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0937,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0944,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x094a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0951,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0954,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 #endif // 2013-10-30aRagexe #if PACKETVER == 20131030 - packet(0x022d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0887,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a2,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0925,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0887,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0925,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-11-06aRagexe, 2013-11-07aRagexe, 2013-11-07bRagexe, 2013-11-07cRagexe, 2013-11-08aRagexe #if PACKETVER == 20131106 || \ PACKETVER == 20131107 || \ PACKETVER == 20131108 - packet(0x0281,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0363,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0369,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0436,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0817,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0866,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0867,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0870,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0875,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0887,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0891,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0893,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0894,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a2,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0919,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0935,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0942,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0946,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0947,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0948,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0950,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0954,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0962,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0967,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0281,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0363,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0369,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0436,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0802,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0817,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0866,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0867,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0870,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0875,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0887,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0891,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0893,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0894,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a2,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0919,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0935,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0942,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0946,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0947,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0948,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0950,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0954,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0962,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0967,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 #endif // 2013-11-13bRagexe #if PACKETVER == 20131113 - packet(0x0364,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0879,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x088c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x088f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a8,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0920,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0926,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0928,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0929,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x092b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x092f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0934,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0936,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0949,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0950,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x095f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0960,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0964,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0969,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0364,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0879,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x088c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x088f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0920,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0926,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0928,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0929,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x092b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x092f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0934,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0936,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0949,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0950,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x095f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0960,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0964,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0969,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2013-11-20dRagexe #if PACKETVER == 20131120 - packet(0x0361,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0368,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0802,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0811,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0817,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x085f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0862,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0884,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a1,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a8,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0917,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0926,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0927,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x092d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0940,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0950,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0953,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0955,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0956,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0361,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0368,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0802,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0811,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0817,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x085f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0862,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0884,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a1,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a8,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0917,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0926,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0927,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x092d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0940,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0950,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0953,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0955,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0956,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2013-11-27bRagexe #if PACKETVER == 20131127 - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0365,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0366,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0881,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0884,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0894,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0930,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x093a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x095c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0967,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0365,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0366,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0881,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0884,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0894,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0930,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x093a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x095c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0967,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2013-12-04eRagexe #if PACKETVER == 20131204 - packet(0x0365,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0366,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0862,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0869,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0877,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0879,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0882,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a0,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a4,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a7,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08ad,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0928,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x092d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0932,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0951,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0958,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0959,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0961,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0967,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0365,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0366,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0862,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0869,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0877,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0879,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0882,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a0,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a4,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a7,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08ad,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0928,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x092d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0932,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0951,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0958,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0959,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0961,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0967,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 #endif // 2013-12-11cRagexe, 2013-12-11dRagexe #if PACKETVER == 20131211 - packet(0x0202,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0366,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0865,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0873,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0881,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0886,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0892,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a3,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ab,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x092b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0931,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0366,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0865,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0873,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0881,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0886,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0892,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a3,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ab,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x092b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0931,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-12-18bRagexe #if PACKETVER == 20131218 - packet(0x022d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x087b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ab,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0947,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x087b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ab,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0947,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-12-23bRagexe, 2013-12-23cRagexe #if PACKETVER == 20131223 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-12-30aRagexe #if PACKETVER == 20131230 - packet(0x022d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x02c4,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x035f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0365,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0369,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0860,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0871,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x087b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0895,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0898,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a9,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x091f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0926,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x092a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x093e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0943,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0949,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0968,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0969,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x096a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x022d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x02c4,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x035f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0365,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0369,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0860,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0871,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x087b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0895,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0898,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a9,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x091f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0926,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x092a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0943,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0949,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0968,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0969,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x096a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2014-01-08cRagexe, 2014-01-08dRagexe #if PACKETVER == 20140108 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0936,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0936,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-01-15aRagexe, 2014-01-15bRagexe, 2014-01-15cRagexe, 2014-01-15eRagexe #if PACKETVER == 20140115 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0367,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0865,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0887,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x089b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a7,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0965,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0966,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0367,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0865,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0887,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x089b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a7,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0965,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0966,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2014-01-22aRagexe #if PACKETVER == 20140122 - packet(0x0360,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0811,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0863,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0870,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0871,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0872,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0893,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0899,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a2,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08aa,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0917,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0925,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x092f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0940,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0942,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x094c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0950,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0952,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0955,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0957,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0360,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0811,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0863,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0870,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0871,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0872,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0893,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0899,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08aa,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0917,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0925,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x092f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0940,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0942,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x094c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0950,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0952,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0955,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0957,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2014-01-29aRagexe, 2014-01-29cRagexe #if PACKETVER == 20140129 - packet(0x0281,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0367,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0802,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0884,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0885,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0889,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0921,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0924,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x092c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0958,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0961,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0367,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0802,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0884,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0885,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0889,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0921,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0924,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x092c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0958,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0961,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-02-05bRagexe #if PACKETVER == 20140205 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0938,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0938,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-02-12aRagexe #if PACKETVER == 20140212 - packet(0x02c4,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0369,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0438,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0874,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0877,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0878,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0888,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x088c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a0,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a1,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a7,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08ad,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0919,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0928,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0930,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0934,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0936,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0944,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0952,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0953,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0960,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x02c4,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0369,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0438,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0874,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0877,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0878,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0888,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x088c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a0,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a1,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a7,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08ad,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0919,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0928,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0930,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0934,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0936,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0944,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0952,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0953,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0960,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2014-02-19aRagexe #if PACKETVER == 20140219 - packet(0x0202,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0360,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0364,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0802,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0838,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x085d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0860,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0868,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0889,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a6,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08aa,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08ac,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0921,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0927,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0939,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0946,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0949,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0953,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x095a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0961,6,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0202,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0360,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0364,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0802,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x085d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0860,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0868,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0889,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a6,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08aa,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08ac,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0921,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0927,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0939,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0946,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0949,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0953,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x095a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0961,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 #endif // 2014-02-26aRagexe #if PACKETVER == 20140226 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0362,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0887,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0894,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0895,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0921,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0931,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0941,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0962,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0964,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0362,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0887,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0894,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0895,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0921,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0931,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0941,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0964,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-03-05aRagexe, 2014-03-05bRagexe #if PACKETVER == 20140305 - packet(0x0202,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x07e4,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0878,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0934,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x07e4,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0878,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0934,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-03-12dRagexe #if PACKETVER == 20140312 - packet(0x0202,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x023b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0366,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0889,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x088d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0891,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0894,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x089b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x089e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a6,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a9,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ad,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0948,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x094c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0957,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0202,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x023b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0366,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x086f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0889,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x088d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0891,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0894,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x089b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x089e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a9,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ad,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0948,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x094c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0957,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2014-03-19aRagexe #if PACKETVER == 20140319 - packet(0x02c4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07e4,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0802,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0811,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0815,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x085a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0864,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0865,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0866,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0872,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0883,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0890,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0893,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a2,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0923,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0933,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0942,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0944,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0947,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0954,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0955,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0964,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x096a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x02c4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07e4,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0802,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0811,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0815,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x085a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0864,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0865,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0866,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0872,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0883,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0890,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0893,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a2,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0923,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0933,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0942,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0944,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0947,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0954,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0955,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0964,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x096a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2014-03-26aRagexe #if PACKETVER == 20140326 - packet(0x0362,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0365,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x07ec,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x083c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0865,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0867,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0869,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0887,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0898,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08aa,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ac,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08ad,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0918,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0928,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0942,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0945,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0946,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0956,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0959,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0969,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0362,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0365,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x07ec,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x083c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0865,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0867,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0869,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0887,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0898,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08aa,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ac,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08ad,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0918,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0928,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0942,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0945,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0946,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0956,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0959,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0969,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2014-04-02fRagexe, 2014-04-02gRagexe #if PACKETVER == 20140402 - packet(0x023b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0360,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0364,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x085b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x085d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0867,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0868,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0882,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0883,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0890,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0896,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ac,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0920,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0926,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0933,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x093f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0944,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0946,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x094c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0950,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x023b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0360,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0364,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x085b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x085d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0867,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0868,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0882,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0883,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0890,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0896,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ac,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0920,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0926,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0933,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x093f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0944,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0946,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x094c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0950,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2014-04-09aRagexe, 2014-04-09bRagexe #if PACKETVER == 20140409 - packet(0x0819,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x085b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0868,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0873,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0875,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x087e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0883,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0884,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0893,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0896,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a2,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a6,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08a7,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a9,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0918,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x092e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0942,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0947,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x095e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0819,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x085b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0868,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0873,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0875,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x087e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0883,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0884,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0893,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0896,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a6,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08a7,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a9,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0918,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x092e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0942,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0947,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x095e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2014-04-16aRagexe, 2014-04-16bRagexe #if PACKETVER == 20140416 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-04-23aRagexe #if PACKETVER == 20140423 - packet(0x022d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0436,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0811,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x083c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x085a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0863,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0866,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x086f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0873,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0890,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0895,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0896,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a8,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ad,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0920,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x022d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0436,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0811,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x083c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x085a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0863,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0866,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x086f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0873,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0890,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0895,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0896,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a8,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ad,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0920,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2014-04-30aRagexe #if PACKETVER == 20140430 - packet(0x023b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x035f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0860,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0870,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0871,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0875,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0884,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0899,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a1,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0940,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0953,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0956,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x023b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x035f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0860,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0870,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0871,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0875,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0884,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0899,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a1,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0940,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0953,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0956,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 #endif // 2014-05-08bRagexe #if PACKETVER == 20140508 - packet(0x022d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x02c4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0366,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0368,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0802,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0861,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x089b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0927,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0930,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0932,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0934,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x094e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x022d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x02c4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0366,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0368,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0802,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0861,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x089b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0927,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0930,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0932,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0934,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x094e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2014-05-14bRagexe #if PACKETVER == 20140514 - packet(0x0437,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0817,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0865,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0867,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0868,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0876,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0877,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0885,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0886,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0895,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a5,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0918,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0921,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0925,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0958,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0962,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0965,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x096a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0437,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0817,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0865,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0867,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0868,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0876,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0877,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0885,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0886,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0895,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a5,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0918,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0921,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0925,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0958,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0962,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0965,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x096a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2014-05-21bRagexe #if PACKETVER == 20140521 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x089c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ac,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0968,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x089c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ac,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0968,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-05-28aRagexe #if PACKETVER == 20140528 - packet(0x0202,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x085f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0862,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0872,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0875,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0877,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0879,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x088f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0894,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0896,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a8,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0929,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0930,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0938,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x093f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0963,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0964,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0966,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0202,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x085f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0862,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0872,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0875,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0877,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0879,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x088f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0894,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0896,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a8,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0929,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0930,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0938,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x093f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x094b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0963,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0964,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0966,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 #endif // 2014-06-05aRagexe, 2014-06-05bRagexe #if PACKETVER == 20140605 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0369,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0921,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0931,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0369,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0921,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0931,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-06-11cRagexe, 2014-06-11dRagexe, 2014-06-11hRagexe, 2014-06-12aRagexe, 2014-06-13aRagexe #if PACKETVER == 20140611 || \ PACKETVER == 20140612 || \ PACKETVER == 20140613 - packet(0x0364,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0438,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x07e4,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0838,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0864,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0867,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x086c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0874,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0878,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0891,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0893,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0894,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a1,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a2,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0924,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0936,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0941,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0950,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0951,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0952,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0957,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0958,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0963,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0965,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0969,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE -#endif - -// 2014-06-11eRagexe, 2015-02-25hRagexe, 2018-03-15aRagexe, 2018-03-21aRagexe, 2018-03-28bRagexe, 2018-04-04bRagexe, 2018-04-18aRagexe, 2018-04-25cRagexe, 2018-05-02bRagexe, 2018-05-09aRagexe, 2018-05-16cRagexe, 2018-05-23aRagexe, 2018-05-30aRagexe, 2018-06-05bRagexe, 2018-06-20cRagexe, 2018-06-20eRagexe, 2018-06-21aRagexe, 2018-07-04aRagexe, 2018-07-18bRagexe, 2018-07-18cRagexe, 2018-08-01cRagexe, 2018-08-08bRagexe, 2018-08-22cRagexe, 2018-08-29aRagexe, 2018-08-31aRagexe, 2018-09-12dRagexe, 2018-09-19aRagexe + packet(0x0364,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0438,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x07e4,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0838,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0864,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0867,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0874,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0878,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0891,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0893,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0894,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a1,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0924,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0936,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0941,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0950,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0951,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0952,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0957,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0958,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0963,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0965,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0969,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 +#endif + +// 2014-06-11eRagexe, 2015-02-25hRagexe, 2018-03-15aRagexe, 2018-03-21aRagexe, 2018-03-28bRagexe, 2018-04-04bRagexe, 2018-04-18aRagexe, 2018-04-25cRagexe, 2018-05-02bRagexe, 2018-05-09aRagexe, 2018-05-16cRagexe, 2018-05-23aRagexe, 2018-05-30aRagexe, 2018-06-05bRagexe, 2018-06-20cRagexe, 2018-06-20eRagexe, 2018-06-21aRagexe, 2018-07-04aRagexe, 2018-07-18bRagexe, 2018-07-18cRagexe, 2018-08-01cRagexe, 2018-08-08bRagexe, 2018-08-22cRagexe, 2018-08-29aRagexe, 2018-08-31aRagexe, 2018-09-12dRagexe, 2018-09-19aRagexe, 2018-10-02aRagexe, 2018-10-02bRagexe, 2018-10-17_02aRagexe, 2018-10-17_03aRagexe, 2018-10-17bRagexe, 2018-10-24bRagexe, 2018-10-31aRagexe, 2018-10-31bRagexe, 2018-11-07aRagexe, 2018-11-14cRagexe, 2018-11-14dRagexe #if PACKETVER == 20140611 || \ PACKETVER == 20150225 || \ PACKETVER == 20180315 || \ @@ -3369,6355 +3370,6397 @@ PACKETVER == 20180829 || \ PACKETVER == 20180831 || \ PACKETVER == 20180912 || \ - PACKETVER >= 20180919 - packet(0x0202,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x022d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x023b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0281,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x02c4,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0360,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0361,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0362,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0363,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0365,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0366,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0367,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0436,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0438,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x07e4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x07ec,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0811,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0815,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0817,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0819,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0838,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + PACKETVER == 20180919 || \ + PACKETVER == 20181002 || \ + PACKETVER == 20181017 || \ + PACKETVER == 20181024 || \ + PACKETVER == 20181031 || \ + PACKETVER == 20181107 || \ + PACKETVER == 20181114 + packet(0x0202,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x022d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x023b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0281,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x02c4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0360,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0362,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0363,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0365,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0366,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x07e4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0811,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0815,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2014-06-18aRagexe #if PACKETVER == 20140618 - packet(0x085d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0860,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0861,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0878,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0884,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0885,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0886,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0890,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0892,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a6,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a7,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08ac,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0917,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x091f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0929,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0935,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0938,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0939,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0945,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0957,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0962,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0967,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x085d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0860,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0861,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0878,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0884,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0885,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0886,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0890,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0892,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a7,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08ac,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0917,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x091f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0929,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0935,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0938,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0939,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0945,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0957,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0967,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 #endif // 2014-06-25aRagexe, 2014-06-25bRagexe #if PACKETVER == 20140625 - packet(0x0202,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x023b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0815,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0817,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0861,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0875,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0885,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0886,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0888,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x088a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0897,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a1,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a2,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0923,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0928,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0940,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0946,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0959,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0960,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0968,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0969,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x023b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0815,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0817,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0861,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0875,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0885,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0886,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0888,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x088a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0897,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a1,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a2,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0923,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0928,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0940,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0946,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0959,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0960,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0968,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0969,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-07-02aRagexe #if PACKETVER == 20140702 - packet(0x022d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x023b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0438,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x07e4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0835,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x086c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0887,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0892,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0895,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a0,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a2,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0925,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0933,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0940,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x023b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0438,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x07e4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0835,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x086c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0887,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0892,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a0,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a2,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0925,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0933,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0940,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-07-09aRagexe #if PACKETVER == 20140709 - packet(0x0364,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0860,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0866,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0869,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0875,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0877,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0879,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x087a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0887,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0888,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0894,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0897,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0898,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08ad,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0925,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x092f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0931,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0934,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0939,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x093f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0940,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0961,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0364,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0860,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0866,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0869,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0875,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0877,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0879,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x087a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0887,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0888,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0894,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0897,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0898,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08ad,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0925,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x092f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0931,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0934,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0939,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x093f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0940,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0961,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2014-07-16aRagexe, 2014-07-16bRagexe, 2014-07-16cRagexe #if PACKETVER == 20140716 - packet(0x0362,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0811,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0868,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0871,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0881,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x088d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0896,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a2,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a4,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08ac,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0918,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0926,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x092c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0938,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0947,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0952,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0959,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0362,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0811,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0868,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0871,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0881,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x088d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0896,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a4,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08ac,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0918,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0926,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x092c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0938,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0947,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0952,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0959,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 #endif // 2014-07-23aRagexe, 2014-07-23bRagexe #if PACKETVER == 20140723 - packet(0x02c4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0436,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0819,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0838,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0869,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x087d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0888,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0891,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0896,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0898,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a2,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08ad,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0927,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0934,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0935,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0939,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x093d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0945,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0947,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0948,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0960,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x02c4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0436,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0819,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0838,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0869,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x087d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0888,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0891,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0896,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0898,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a2,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08ad,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0927,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0934,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0935,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0939,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x093d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0945,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0947,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0948,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0960,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2014-07-30aRagexe #if PACKETVER == 20140730 - packet(0x022d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0364,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0366,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0367,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0437,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x07ec,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0802,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0815,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0817,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x087d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x087f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0889,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0892,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a0,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a6,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a7,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a9,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08ad,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0924,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0934,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0940,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0946,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x022d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0364,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0366,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0367,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0437,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0815,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0817,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x087d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x087f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0889,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0892,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a0,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a7,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a9,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08ad,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0924,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0934,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0940,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0946,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 #endif // 2014-08-06aRagexe, 2014-08-06bRagexe #if PACKETVER == 20140806 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0948,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0948,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-08-13aRagexe, 2014-08-13bRagexe, 2014-08-14aRagexe #if PACKETVER == 20140813 || \ PACKETVER == 20140814 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0802,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0868,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0878,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0882,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0895,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0897,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0899,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a3,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a7,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0967,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0802,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0868,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0878,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0882,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0895,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0897,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0899,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a3,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a7,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0967,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-08-20aRagexe #if PACKETVER == 20140820 - packet(0x035f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0835,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0861,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0864,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0869,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0872,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0876,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0891,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0899,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089a,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a3,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a7,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0936,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0937,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x093a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0951,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0952,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0956,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0958,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x035f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0835,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0861,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0864,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0869,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0872,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0876,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0891,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0899,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089a,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a3,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a7,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0936,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0937,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x093a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x094a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0951,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0952,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0956,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0958,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2014-08-27aRagexe #if PACKETVER == 20140827 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0943,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0943,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-09-03aRagexe #if PACKETVER == 20140903 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0931,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0941,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0943,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0945,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0931,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0941,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0943,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0945,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-09-17aRagexe #if PACKETVER == 20140917 - packet(0x022d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0364,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0365,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0367,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0838,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0864,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0889,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0895,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0897,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0898,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a8,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0919,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x091e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x092a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0930,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0949,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0951,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0956,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0957,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x095c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x095e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0966,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x022d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0364,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0365,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0367,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0838,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0864,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0889,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0895,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0897,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0898,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a8,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0919,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x091e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x092a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0930,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0949,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0951,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0956,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0957,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x095c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x095e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0966,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2014-09-24cRagexe #if PACKETVER == 20140924 - packet(0x0366,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0367,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0815,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0864,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0865,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0867,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x086b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0886,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0894,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0898,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a5,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a7,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0918,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0925,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0926,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0928,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0934,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0949,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0952,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0366,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0367,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0815,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0864,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0865,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0867,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x086b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0886,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0894,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0898,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a5,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a7,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0918,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0925,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0926,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0928,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0934,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0949,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0952,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 #endif // 2014-10-01aRagexe #if PACKETVER == 20141001 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0365,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0885,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ad,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0937,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0939,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0952,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0365,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0885,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ad,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0937,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0939,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0952,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 #endif // 2014-10-08aRagexe, 2014-10-08bRagexe, 2014-10-08cRagexe, 2014-10-08dRagexe #if PACKETVER == 20141008 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0942,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0942,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-10-15bRagexe, 2014-10-15cRagexe, 2014-10-15dRagexe, 2014-10-16aRagexe #if PACKETVER == 20141015 || \ PACKETVER == 20141016 - packet(0x022d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0922,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0936,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0967,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0922,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0936,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0967,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-10-22bRagexe #if PACKETVER == 20141022 - packet(0x023b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0878,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0896,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0899,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08aa,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ad,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x094e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0955,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0878,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0896,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0899,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08aa,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ad,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x094e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0955,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-10-29aRagexe #if PACKETVER == 20141029 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-11-05aRagexe, 2014-11-05bRagexe #if PACKETVER == 20141105 - packet(0x022d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x035f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0360,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x085c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0863,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0864,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0865,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0871,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0874,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0875,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0877,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0879,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0887,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0892,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0898,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a0,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a7,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0944,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0948,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0950,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0957,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x095f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0968,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x022d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x035f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0360,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x085c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0863,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0864,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0865,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0871,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0874,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0875,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0877,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0879,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0887,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0892,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0898,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a0,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a7,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0944,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0948,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0950,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0957,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x095f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0968,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2014-11-12cRagexe, 2014-11-12dRagexe #if PACKETVER == 20141112 - packet(0x0362,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0438,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x07e4,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0835,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0838,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0863,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0871,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0885,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0886,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0887,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08a0,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a1,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08ab,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0919,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0926,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0929,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0943,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0955,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0960,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0962,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0362,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0438,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x07e4,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0835,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0863,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0871,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0885,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0886,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0887,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08a0,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a1,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08ab,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0919,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0926,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0929,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0943,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0955,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0960,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0962,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2014-11-19dRagexe #if PACKETVER == 20141119 - packet(0x0202,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0861,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0865,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0866,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0872,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0873,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0875,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x087c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0887,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0888,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0895,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a8,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0918,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0920,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0921,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0933,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0938,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0940,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0942,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0948,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x094c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0963,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0202,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0861,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0865,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0866,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0872,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0873,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0875,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x087c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0887,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0888,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0895,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a8,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0918,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0920,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0921,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0933,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0938,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0940,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0942,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0948,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x094c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0963,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2014-11-26aRagexe, 2014-11-26bRagexe, 2014-11-26cRagexe, 2014-11-26dRagexe #if PACKETVER == 20141126 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0367,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0871,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0884,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0896,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ad,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0920,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0942,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0367,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0871,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0896,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ad,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0920,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0942,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-12-03aRagexe #if PACKETVER == 20141203 - packet(0x0202,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0281,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0362,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0367,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0802,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0861,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x086e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0880,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0889,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0898,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a5,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08aa,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0917,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0928,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x092a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0936,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0957,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0962,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0202,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0281,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0362,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0367,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0368,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0802,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0861,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x086e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0880,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0889,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0898,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a5,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08aa,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0917,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0928,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x092a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0936,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0957,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0962,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2014-12-10bRagexe, 2014-12-10cRagexe #if PACKETVER == 20141210 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0885,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08ac,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0917,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0927,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x092b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0947,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0954,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0955,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0958,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0961,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0963,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0967,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0885,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08ac,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0917,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0927,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x092b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0947,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0954,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0955,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0958,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0961,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0963,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0967,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-12-17aRagexe #if PACKETVER == 20141217 - packet(0x0360,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0860,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0875,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0878,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0879,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0883,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0889,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x088e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a1,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a2,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a8,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08ab,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08ac,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0919,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0924,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0930,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0932,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0933,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0936,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0939,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0940,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0944,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0945,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0948,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0960,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x0360,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0860,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0875,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0878,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0879,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0883,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0889,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x088e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a1,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a8,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08ab,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08ac,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0919,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0924,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0930,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0932,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0933,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0936,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0939,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0940,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0944,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0945,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0948,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0960,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2014-12-24aRagexe #if PACKETVER == 20141224 - packet(0x0361,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0438,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0835,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x085a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0865,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0870,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x089b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a3,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a8,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08ac,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0930,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0932,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0945,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0946,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0949,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x094f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0950,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0953,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0956,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0361,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0438,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0835,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x085a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0865,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0870,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x089b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a3,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a8,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08ac,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0930,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0932,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0945,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0946,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0949,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x094f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0950,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0953,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0956,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2014-12-31aRagexe #if PACKETVER == 20141231 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-01-07aRagexe #if PACKETVER == 20150107 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0895,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0943,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0947,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0895,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0943,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0947,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-01-14aRagexe, 2015-01-14bRagexe, 2015-01-14cRagexe, 2015-01-14dRagexe #if PACKETVER == 20150114 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0868,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0899,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0946,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0955,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0957,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0868,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0899,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0946,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0955,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0957,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-01-21aRagexe #if PACKETVER == 20150121 - packet(0x0281,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ab,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0918,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0919,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0955,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0959,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0963,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0967,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ab,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0918,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0919,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0955,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0959,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0963,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0967,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-01-28aRagexe, 2015-01-29aRagexe, 2015-01-30aRagexe #if PACKETVER == 20150128 || \ PACKETVER == 20150129 || \ PACKETVER == 20150130 - packet(0x0202,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x023b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0368,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0838,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0864,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0870,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0874,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0875,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x087d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0888,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ab,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0929,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0938,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0944,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0963,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0968,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0202,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x023b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0368,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0838,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0864,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0870,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0874,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0875,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x087d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0888,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ab,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0929,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0938,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0944,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0963,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0968,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2015-02-04aRagexe #if PACKETVER == 20150204 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0966,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0966,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-02-11aRagexe #if PACKETVER == 20150211 - packet(0x023b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0368,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0369,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0436,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0437,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x07e4,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0817,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0819,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0835,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0862,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0863,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0873,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x087f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0882,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0883,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0885,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0886,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a0,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08aa,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0919,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0920,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0944,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0951,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0957,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0958,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x023b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0368,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0369,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0436,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0437,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x07e4,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0817,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0819,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0835,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0862,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0863,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0873,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x087f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0882,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0883,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0885,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0886,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a0,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08aa,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0919,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0920,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0944,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0951,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0957,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0958,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2015-02-17aRagexe #if PACKETVER == 20150217 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-02-25eRagexe, 2015-02-25fRagexe, 2015-02-25gRagexe, 2015-02-25iRagexe, 2015-02-25jRagexe, 2015-02-26aRagexe #if PACKETVER == 20150225 || \ PACKETVER == 20150226 - packet(0x02c4,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0362,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0896,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0940,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0946,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0948,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0952,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0955,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x02c4,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0362,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0896,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0940,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0946,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0948,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0952,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0955,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2015-03-04aRagexe #if PACKETVER == 20150304 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x086d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0879,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0892,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0947,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0960,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0961,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x086d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0879,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0892,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0947,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0960,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0961,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-03-11aRagexe, 2015-03-11bRagexe #if PACKETVER == 20150311 - packet(0x023b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0360,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0436,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0438,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0838,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x087b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0883,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0886,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0888,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0896,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a1,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a3,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a5,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a6,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0928,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x092e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0943,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0946,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0957,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0958,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x095b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0963,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0964,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x023b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0360,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0436,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0438,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0838,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x087b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0883,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0886,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0888,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0896,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a1,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a3,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a5,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a6,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0928,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x092e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0943,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0946,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0957,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0958,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x095b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0963,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0964,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2015-03-18aRagexe, 2015-03-18bRagexe #if PACKETVER == 20150318 - packet(0x0202,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x023b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0281,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0367,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x07e4,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0802,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0862,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0863,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0873,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0885,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0889,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x088c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x089c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a4,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x091d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0920,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0927,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0928,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0936,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0937,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0938,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0951,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0958,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0959,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0960,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0202,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x023b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0281,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x07e4,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0802,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0862,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0863,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0873,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0885,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0889,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x088c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x089c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a4,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x091d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0920,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0927,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0928,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0936,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0937,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0938,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0951,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0958,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0959,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0960,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2015-03-25aRagexe #if PACKETVER == 20150325 - packet(0x0202,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0363,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0365,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0438,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0819,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0883,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0885,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0891,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0893,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0897,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0899,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a1,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a7,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0919,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0931,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0932,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0938,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0947,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0950,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0954,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0969,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0202,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0363,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0365,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0438,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0819,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0883,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0885,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0891,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0893,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0897,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0899,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a1,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a7,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0919,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0931,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0932,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0938,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0947,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0950,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0954,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0969,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 #endif // 2015-04-01aRagexe #if PACKETVER == 20150401 - packet(0x0362,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0367,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0437,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x083c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0875,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0895,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0898,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a5,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0922,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0924,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0938,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0939,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x093b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x093e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0946,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0949,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0953,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0964,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0362,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0367,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0437,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x083c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0875,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0895,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0898,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a5,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0922,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0924,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0938,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0939,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x093b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x093e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0946,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0949,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0953,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0964,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2015-04-08aRagexe #if PACKETVER == 20150408 - packet(0x0819,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x085a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0865,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0868,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x086b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x086e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0878,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x087f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0888,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0889,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0891,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0898,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a2,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a4,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0922,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0946,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0957,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0959,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0963,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0819,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x085a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0865,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0868,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x086b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x086e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0878,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x087f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0888,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0889,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0891,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0898,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a2,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a4,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0922,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0946,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0957,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0959,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0963,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2015-04-15aRagexe #if PACKETVER == 20150415 - packet(0x0361,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0364,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0366,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0368,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0802,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0817,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0835,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0863,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0867,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0868,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0869,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0880,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0891,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0898,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a0,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0922,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x093c,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0941,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0946,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0953,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0960,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0361,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0364,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0366,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0368,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0802,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0817,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0835,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0863,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0867,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0868,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0869,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0880,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0891,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0898,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a0,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0922,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x093c,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0941,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0946,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0953,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0960,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2015-04-22aRagexe #if PACKETVER == 20150422 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0955,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0955,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-04-29aRagexe #if PACKETVER == 20150429 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0886,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0894,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0899,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x089f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a6,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a8,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ad,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0943,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0886,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0894,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0899,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x089f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a8,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ad,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0943,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-05-07bRagexe, 2015-05-07cRagexe #if PACKETVER == 20150507 - packet(0x023b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0864,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0887,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0889,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0924,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x093b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0941,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0942,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0953,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0955,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0958,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0864,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0887,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0889,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0924,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x093b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0941,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0942,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0953,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0955,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0958,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-05-13aRagexe #if PACKETVER == 20150513 - packet(0x022d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x02c4,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0864,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0883,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a8,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0923,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0924,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0927,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0960,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x02c4,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0864,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0883,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a8,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0923,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0924,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0927,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0960,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-05-20aRagexe #if PACKETVER == 20150520 - packet(0x0202,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0361,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0865,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0868,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0880,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0882,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a2,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08ad,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0924,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0931,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0936,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x093d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0940,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0945,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0960,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0961,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0202,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0865,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0868,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0880,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0882,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a2,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08ad,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0924,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0931,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0936,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x093d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0940,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0945,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0960,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0961,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2015-05-27aRagexe #if PACKETVER == 20150527 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x083c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0940,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x083c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0940,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-06-03aRagexe #if PACKETVER == 20150603 - packet(0x0361,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0437,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0811,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0819,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0860,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0864,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0867,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0873,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0877,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0881,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0884,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0897,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x089d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a1,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ad,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0922,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0956,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0960,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0969,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x096a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0361,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0437,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0811,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0819,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0860,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0864,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0867,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0873,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0877,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0881,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0897,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x089d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a1,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ad,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0922,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0956,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0960,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0969,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x096a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 #endif // 2015-06-10aRagexe #if PACKETVER == 20150610 - packet(0x022d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0438,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x07e4,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0870,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0872,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0877,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0884,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0885,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0888,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x088d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0897,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a0,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08ac,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0925,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x092c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x092e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0932,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0940,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0946,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0949,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0957,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x095d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0964,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x022d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0438,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07e4,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0870,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0872,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0877,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0884,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0885,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0888,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x088d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0897,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a0,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08ac,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0925,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x092c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0932,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0940,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0946,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0949,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0957,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x095d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0964,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2015-06-17aRagexe, 2015-06-18aRagexe #if PACKETVER == 20150617 || \ PACKETVER == 20150618 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0365,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0811,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x086a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0870,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0886,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0894,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0362,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0365,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0811,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x086a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0870,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0886,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0894,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-06-24aRagexe #if PACKETVER == 20150624 - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0365,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0940,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0941,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0966,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0365,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0940,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0941,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0966,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-07-01bRagexe, 2015-07-02aRagexe #if PACKETVER == 20150701 || \ PACKETVER == 20150702 - packet(0x023b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x07e4,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0802,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x087d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x087e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0883,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0893,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a0,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a4,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a5,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a6,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08ad,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0919,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0923,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0928,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0946,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0954,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0956,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0958,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x095f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0960,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0968,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x023b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x07e4,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0802,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x087d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x087e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0883,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0893,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a0,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a4,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a5,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a6,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08ad,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0919,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0923,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0928,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0946,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0954,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0956,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0958,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x095f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0960,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0968,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2015-07-08cRagexe #if PACKETVER == 20150708 - packet(0x022d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x02c4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0368,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0872,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0884,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x089d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a5,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ad,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x092a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0962,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x02c4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0368,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0872,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0884,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x089d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a5,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ad,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x092a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-07-15aRagexe #if PACKETVER == 20150715 - packet(0x023b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0362,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0364,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0436,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0437,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0438,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0835,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x083c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0873,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0879,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x087c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x087f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0886,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0895,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0896,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0897,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0899,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x089a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a4,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ac,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0917,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0944,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0950,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0956,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0961,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x023b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0362,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0364,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0436,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0437,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0438,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0835,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x083c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0873,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0879,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x087c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x087f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0886,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0895,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0896,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0897,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0899,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x089a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ac,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0917,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0944,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0950,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0956,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0961,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2015-07-22bRagexe #if PACKETVER == 20150722 - packet(0x023b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0281,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0360,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0361,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0368,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0436,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0811,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0815,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0817,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0869,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0878,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x087d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0880,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0884,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0899,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a8,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0919,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0921,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0925,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x092e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x093d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x094c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0951,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0958,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x023b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0281,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0360,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0361,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0368,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0436,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0811,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0815,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0869,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0878,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x087d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0880,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0884,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0899,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a8,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0919,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0921,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0925,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x092e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x093d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x094c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0951,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0958,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2015-07-29aRagexe #if PACKETVER == 20150729 - packet(0x0437,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0438,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x085b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0860,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0870,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0880,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0881,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0886,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a3,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ac,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08ad,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0920,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x092f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x093a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0955,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0961,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0437,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0438,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x085b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0860,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0870,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0880,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0881,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0886,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a3,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ac,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08ad,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0920,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x092f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x093a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0955,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0961,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2015-08-05aRagexe #if PACKETVER == 20150805 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-08-12aRagexe #if PACKETVER == 20150812 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-08-19aRagexe #if PACKETVER == 20150819 - packet(0x0202,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x022d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0281,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x085d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0862,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0865,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0871,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0888,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0919,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0927,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0961,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0967,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x022d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0281,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x085d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0865,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0871,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0888,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0919,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0927,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0961,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0967,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-08-26aRagexe, 2015-08-26bRagexe #if PACKETVER == 20150826 - packet(0x0362,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0436,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x07ec,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0819,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0861,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0865,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0870,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x088b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0890,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0891,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a0,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a1,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a8,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0924,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0928,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x092e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0945,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0951,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0959,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0964,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0968,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0969,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0362,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0436,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x07ec,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0819,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0861,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0865,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0870,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x088b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0890,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0891,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a0,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a1,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a8,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0924,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0928,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x092e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0945,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0951,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0959,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0964,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0968,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0969,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2015-09-02aRagexe #if PACKETVER == 20150902 - packet(0x023b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0360,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0367,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0802,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x083c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0863,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0886,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0887,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0889,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x088d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0892,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0897,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0899,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a9,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0923,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0928,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0941,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0947,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x094f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0953,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0960,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x023b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0360,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0367,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0802,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x083c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0863,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0886,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0887,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0889,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x088d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0892,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0897,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0899,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a9,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0923,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0928,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0941,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0947,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x094f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0953,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0960,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2015-09-09aRagexe #if PACKETVER == 20150909 - packet(0x023b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0361,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0365,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0437,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0861,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0871,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0883,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0886,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0895,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0928,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0940,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0941,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0962,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x023b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0361,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0365,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0437,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0861,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0871,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0883,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0886,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0895,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0928,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0940,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0941,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0962,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2015-09-16aRagexe, 2015-09-16cRagexe #if PACKETVER == 20150916 - packet(0x022d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0817,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0835,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0869,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0873,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0877,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0881,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ac,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0920,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0924,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x092e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x092f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0934,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0936,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0938,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0942,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0948,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0960,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0961,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0969,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x022d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0817,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0835,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0869,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0873,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0877,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0881,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ac,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0920,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0924,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x092e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x092f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0934,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0936,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0938,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0942,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0948,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0960,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0961,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0969,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2015-09-23bRagexe, 2015-09-23cRagexe, 2015-09-23dRagexe, 2015-09-23eRagexe, 2015-09-23fRagexe #if PACKETVER == 20150923 - packet(0x0361,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0817,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x085c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x085d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0864,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0879,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0886,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x088e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0892,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0895,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a0,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a2,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a6,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x092b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0930,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0936,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0951,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0961,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0361,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0817,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x085c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x085d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0864,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0879,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0886,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x088e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0892,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a0,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a2,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a6,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x092b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0930,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0936,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0951,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0961,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 #endif // 2015-10-01aRagexe #if PACKETVER == 20151001 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0960,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0960,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-10-07aRagexe #if PACKETVER == 20151007 - packet(0x0202,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0961,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0967,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0961,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0967,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-10-14bRagexe #if PACKETVER == 20151014 - packet(0x0202,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0817,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0838,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0860,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0863,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0867,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0872,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0874,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0881,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0883,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0884,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0889,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x088e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x089f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08aa,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0930,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0934,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0944,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x094f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0956,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0961,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0964,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0202,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0817,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0838,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0860,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0863,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0867,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0872,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0874,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0881,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0883,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0884,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0889,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x088e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x089f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08aa,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0930,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0934,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0944,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x094f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0956,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0961,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0964,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2015-10-21aRagexe, 2015-10-22aRagexe #if PACKETVER == 20151021 || \ PACKETVER == 20151022 - packet(0x023b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x02c4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x02c4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-10-28cRagexe, 2015-10-28dRagexe, 2015-10-29aRagexe #if PACKETVER == 20151028 || \ PACKETVER == 20151029 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0860,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0860,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-11-04aRagexe #if PACKETVER == 20151104 - packet(0x023b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0360,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0363,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0437,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0811,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0815,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0886,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0887,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x088d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a3,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a5,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0928,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0939,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093a,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x0940,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x0964,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x023b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0360,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0363,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0437,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0811,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0815,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0886,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0887,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x088d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a3,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a5,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0928,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0939,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093a,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0940,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0964,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2015-11-11aRagexe, 2015-11-11bRagexe #if PACKETVER == 20151111 - packet(0x02c4,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x0862,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0871,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0885,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0942,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0958,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0966,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0967,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0969,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x02c4,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0862,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0871,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0885,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0942,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0958,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0966,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0967,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0969,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-11-18aRagexe #if PACKETVER == 20151118 - packet(0x022d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x035f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x088b,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x08ab,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0921,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0925,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0943,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0946,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x0957,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095c,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x035f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x088b,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08ab,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0921,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0925,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0943,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0946,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0957,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095c,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-11-25bRagexe, 2015-11-25dRagexe #if PACKETVER == 20151125 - packet(0x0361,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0365,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0366,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0368,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x0438,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0802,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0838,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0863,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0883,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0884,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088c,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a9,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08ad,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0920,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0939,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0951,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0956,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0957,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0959,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0361,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0365,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0366,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0368,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0438,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0802,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0838,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0863,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0883,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0884,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088c,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a9,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08ad,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0920,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0939,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0951,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0956,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0957,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0959,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2015-12-02aRagexe #if PACKETVER == 20151202 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-12-09aRagexe #if PACKETVER == 20151209 - packet(0x0365,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x07e4,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x07ec,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0811,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0819,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085b,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x085d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0861,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0866,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0894,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a1,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0920,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0930,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0932,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x093b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0948,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094a,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0956,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0961,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0964,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0365,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x07e4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x07ec,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0811,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0819,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085b,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x085d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0861,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0866,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0894,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a1,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0920,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0930,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0932,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x093b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0948,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094a,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0956,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0961,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0964,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 #endif // 2015-12-16aRagexe #if PACKETVER == 20151216 - packet(0x022d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0361,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0364,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0436,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0864,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0865,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0870,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0874,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0885,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a2,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a9,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0944,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0947,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0949,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0954,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0960,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0966,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0968,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x022d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0361,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0364,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0436,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0864,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0865,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0870,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0874,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0885,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a2,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a9,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0944,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0947,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0949,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0954,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0960,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0966,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0968,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2015-12-23bRagexe #if PACKETVER == 20151223 - packet(0x02c4,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0362,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0815,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0864,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0866,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0872,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0875,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0876,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0881,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0884,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0886,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08aa,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0918,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x091b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0920,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0923,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0924,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x095e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0965,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0967,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x02c4,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0362,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0815,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0864,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0866,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0872,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0875,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0876,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0881,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0884,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0886,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08aa,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0918,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x091b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0920,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0923,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0924,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x095e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0965,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0967,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2015-12-30aRagexe #if PACKETVER == 20151230 - packet(0x02c4,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x07ec,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0861,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0869,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0886,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x088e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0897,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0923,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0949,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x02c4,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x07ec,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0861,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0869,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0886,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x088e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0897,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0923,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0949,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-01-06aRagexe #if PACKETVER == 20160106 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0861,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x086c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0878,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x087a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x087f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0885,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0889,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0891,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a0,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0940,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0861,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0878,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x087a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x087f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0885,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0889,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0891,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a0,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0940,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-01-13aRagexe, 2016-01-13bRagexe, 2016-01-13bRagexe_2 #if PACKETVER == 20160113 - packet(0x022d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x023b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0815,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x085b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0864,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0873,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0888,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0892,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0893,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a0,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a6,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0919,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0924,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0930,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0932,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x093c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0941,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0967,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x022d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x023b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x035f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0815,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x085b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0864,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x086d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0873,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0888,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0892,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0893,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a0,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a6,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0919,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0924,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0930,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0932,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x093c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0941,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0967,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2016-01-20aRagexe #if PACKETVER == 20160120 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0865,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0865,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-01-27cRagexe, 2016-01-27dRagexe #if PACKETVER == 20160127 - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0922,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0961,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0922,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0961,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-02-03aRagexe #if PACKETVER == 20160203 - packet(0x0202,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0437,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0811,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0835,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0872,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0873,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0918,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0940,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0947,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0437,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0811,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0835,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0872,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0873,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0918,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0940,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0947,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-02-11aRagexe #if PACKETVER == 20160211 - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0870,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0886,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0870,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0886,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-02-17aRagexe #if PACKETVER == 20160217 - packet(0x0202,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x023b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0362,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0365,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0864,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0870,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0873,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x087a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0888,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x088f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0899,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a0,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a9,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08ac,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ad,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0920,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0926,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x093e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0941,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0966,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0967,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0969,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0202,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x023b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0362,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0365,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0864,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0870,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0873,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x087a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0888,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x088f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0899,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a0,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a9,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08ac,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ad,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0920,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0926,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x093e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0941,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0966,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0967,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0969,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2016-02-24aRagexe #if PACKETVER == 20160224 - packet(0x022d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0364,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0436,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0861,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0884,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0885,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0888,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a9,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0920,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0929,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0936,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0938,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0961,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0364,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0436,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0861,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0884,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0885,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0888,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a9,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0920,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0929,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0936,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0938,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0961,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-03-02bRagexe #if PACKETVER == 20160302 - packet(0x022d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0367,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0802,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0819,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0864,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0865,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0867,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0868,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0873,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0883,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a6,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a9,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0927,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0945,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0950,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0960,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0967,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0968,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x022d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0367,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0802,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0819,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0864,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0865,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0867,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0868,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0873,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0883,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a6,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a9,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0927,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0945,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0950,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0960,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0967,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0968,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2016-03-09cRagexe #if PACKETVER == 20160309 - packet(0x023b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0281,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0819,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0838,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x083c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x085a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0866,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0873,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x087e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a7,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0920,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0922,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0929,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092a,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0932,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0956,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x095e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x096a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x023b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0281,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0819,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0838,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x083c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x085a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0866,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0873,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x087e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a7,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0920,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0922,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0929,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092a,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0932,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0956,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x095e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x096a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2016-03-16aRagexe, 2016-03-18aRagexe #if PACKETVER == 20160316 || \ PACKETVER == 20160318 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0922,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0922,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-03-23aRagexe, 2016-03-23bRagexe #if PACKETVER == 20160323 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0869,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0872,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0878,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0883,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0896,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x091b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0926,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0927,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0933,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0869,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0872,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0878,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0883,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0896,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x091b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0926,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0927,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0933,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-03-30aRagexe, 2016-03-30bRagexe #if PACKETVER == 20160330 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0878,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0889,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0918,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0925,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x092c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0930,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0939,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x093b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0878,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0889,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0918,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0925,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x092c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0930,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0939,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x093b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-04-06aRagexe, 2016-04-06bRagexe #if PACKETVER == 20160406 - packet(0x0364,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x07e4,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0869,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0877,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0878,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0879,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0884,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0892,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0895,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0898,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a1,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a9,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ac,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0927,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0933,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0934,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0949,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0953,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0962,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x0364,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x07e4,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0869,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0877,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0878,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0879,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0884,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0892,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0895,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0898,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a1,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a9,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ac,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0927,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0933,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0934,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0949,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0953,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2016-04-14aRagexe, 2016-04-14bRagexe, 2016-04-14bRagexe_2, 2016-04-14cRagexe #if PACKETVER == 20160414 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0363,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0880,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0918,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0922,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0927,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0931,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0934,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0945,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0953,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0363,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0880,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0918,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0922,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0927,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0931,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0934,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0945,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0953,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-04-20cRagexe #if PACKETVER == 20160420 - packet(0x022d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x02c4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x035f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0864,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0870,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0872,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0874,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0888,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a5,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0935,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x094e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x02c4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x035f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0864,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0870,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0872,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0874,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0888,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a5,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0935,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x094e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-04-27aRagexe #if PACKETVER == 20160427 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0835,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0835,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-05-04aRagexe #if PACKETVER == 20160504 - packet(0x0202,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0363,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0365,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x083c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x087f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0884,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0887,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0890,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0893,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0898,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08ad,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0918,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0921,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0922,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0924,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0940,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0941,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0948,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0952,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0969,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0202,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0363,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0365,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x083c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x087f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0884,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0887,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0890,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0893,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0898,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08ad,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0918,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0921,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0922,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0924,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0940,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0941,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0948,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0952,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0969,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2016-05-11aRagexe #if PACKETVER == 20160511 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0894,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0918,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0920,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0894,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0918,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0920,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-05-18aRagexe #if PACKETVER == 20160518 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0874,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a9,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0928,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0874,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a9,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0928,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-05-25aRagexe, 2016-05-26aRagexe #if PACKETVER == 20160525 || \ PACKETVER == 20160526 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0899,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0937,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0945,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0951,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0956,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0899,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0937,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0945,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0951,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0956,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-06-01aRagexe #if PACKETVER == 20160601 - packet(0x0202,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x02c4,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0863,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0870,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0895,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a7,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ac,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0924,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x02c4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0863,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0870,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0895,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a7,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ac,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0924,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-06-08aRagexe, 2016-06-08bRagexe, 2016-06-09aRagexe #if PACKETVER == 20160608 || \ PACKETVER == 20160609 - packet(0x022d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x02c4,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x035f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0437,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0802,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0885,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0889,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0899,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a6,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0958,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0969,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x02c4,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x035f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0437,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0802,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0885,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0889,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0899,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a6,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0958,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0969,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-06-15aRagexe #if PACKETVER == 20160615 - packet(0x0281,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0363,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0369,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x083c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0866,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0870,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0887,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0888,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0898,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x092f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0947,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0948,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x094a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0954,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0957,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0958,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0961,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0281,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0363,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0369,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x083c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0866,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0870,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0887,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0888,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0898,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x092f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0947,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0948,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x094a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x094b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0954,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0957,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0958,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0961,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2016-06-22aRagexe #if PACKETVER == 20160622 - packet(0x023b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x035f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0361,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x07e4,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0861,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0865,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0867,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0880,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0887,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0890,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0891,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0892,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x089a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a2,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a8,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x092f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0936,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0937,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x093f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0946,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0959,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0965,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0969,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x023b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x035f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0361,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x07e4,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0861,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0865,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0867,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0880,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0887,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0890,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0891,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0892,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x089a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a2,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a8,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x092f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0936,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0937,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x093f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0946,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0959,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0965,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0969,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2016-06-29aRagexe, 2016-06-30aRagexe #if PACKETVER == 20160629 || \ PACKETVER == 20160630 - packet(0x0202,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x022d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0363,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0368,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x085c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x085e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0860,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0861,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0863,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0867,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0881,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0885,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0893,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0922,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0925,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0926,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0946,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0948,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0957,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0968,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0969,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0202,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x022d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x035f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0363,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0368,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x085c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x085e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0860,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0861,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0863,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0867,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0881,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0885,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0893,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0922,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0925,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0926,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0946,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0948,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0957,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0968,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0969,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2016-07-06bRagexe #if PACKETVER == 20160706 - packet(0x0362,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0436,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0860,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0869,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x086b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0884,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0886,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0889,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0892,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0899,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a4,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a5,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a8,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0918,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x091b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0924,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0926,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0927,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0939,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x093d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0944,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0945,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0952,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0957,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0362,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0436,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0860,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0869,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x086b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0884,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0886,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0889,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0892,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0899,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a4,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a5,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a8,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0918,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x091b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0924,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0926,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0927,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0939,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x093d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0944,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0945,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0952,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0957,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2016-07-13aRagexe, 2016-07-13bRagexe, 2016-07-13cRagexe, 2016-07-13dRagexe #if PACKETVER == 20160713 - packet(0x022d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0363,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0364,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0838,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0860,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0865,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0869,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0877,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0883,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0892,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x089a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a2,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0921,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0922,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0931,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0939,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0944,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0945,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0947,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0957,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x095b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x022d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0363,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0364,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0838,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0860,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0865,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0869,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0877,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0883,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0892,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x089a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a2,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0921,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0922,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0931,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0939,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0944,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0945,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0947,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0957,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x095b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2016-07-20aRagexe, 2016-07-20bRagexe #if PACKETVER == 20160720 - packet(0x0362,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0363,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0365,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x07e4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0819,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0838,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0883,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0887,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0897,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a0,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08aa,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0917,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0946,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0953,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0960,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0969,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0362,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0363,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0365,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x07e4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0838,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0883,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0887,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0897,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a0,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08aa,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0917,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0946,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0953,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0960,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0969,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 #endif // 2016-07-27aRagexe, 2016-07-27bRagexe #if PACKETVER == 20160727 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x023b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0362,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0363,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0436,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x07ec,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0866,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0868,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0869,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0874,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0877,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0883,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0887,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0891,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a4,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a7,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0936,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0941,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0946,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0949,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0951,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0966,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x023b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0362,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0363,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0436,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x07ec,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0866,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0868,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0869,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0874,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0877,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0883,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0887,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0891,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a4,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a7,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0936,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0941,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0946,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0949,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0951,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0966,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 #endif // 2016-08-03bRagexe #if PACKETVER == 20160803 - packet(0x0364,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x085d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0878,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0881,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0887,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0888,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0891,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0895,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08a1,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0929,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0930,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0932,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0934,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0937,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x093a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0952,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0955,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0956,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0959,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0364,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x085d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0878,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0881,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0887,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0888,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0891,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0895,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08a1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0929,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0930,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0932,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0934,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0937,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x093a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0952,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0955,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0956,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0959,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 #endif // 2016-08-10aRagexe #if PACKETVER == 20160810 - packet(0x0361,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0819,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0838,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x085d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x085e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0860,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0875,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0879,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0885,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0888,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0890,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x089f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a9,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0926,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0935,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0943,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0959,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0967,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x0361,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0819,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0838,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x085d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x085e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0860,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0875,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0879,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0885,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0888,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0890,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x089f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a9,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0926,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0935,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0943,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0959,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0967,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2016-08-17aRagexe #if PACKETVER == 20160817 - packet(0x0364,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0437,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x07e4,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0811,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0819,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x083c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x085c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0867,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0875,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x087f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0886,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0891,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a5,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a9,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08ab,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ac,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ad,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0929,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0930,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0939,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0960,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0963,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0364,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0437,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x07e4,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0811,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0819,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x083c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x085c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0867,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0875,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x087f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0886,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0891,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a5,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a9,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08ab,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ac,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ad,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0929,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0930,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0939,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0960,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0963,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2016-08-24aRagexe #if PACKETVER == 20160824 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0934,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0934,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-08-31aRagexe, 2016-08-31bRagexe #if PACKETVER == 20160831 - packet(0x022d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0366,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0835,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0865,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0870,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0874,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0876,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0878,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x087c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a8,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a9,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0917,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0938,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0946,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0950,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0954,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0957,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0960,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0964,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0967,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x022d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0366,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0835,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0865,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0870,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0874,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0876,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0878,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x087c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a8,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a9,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0917,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0938,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0946,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0950,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0954,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0957,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0960,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0964,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0967,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2016-09-07aRagexe #if PACKETVER == 20160907 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x091c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x091c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-09-13aRagexe #if PACKETVER == 20160913 - packet(0x0361,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0817,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0865,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0874,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0875,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0879,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0887,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0889,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0891,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0892,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a5,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0928,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0935,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0949,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0950,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0952,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0954,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0962,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0963,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0968,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0361,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0817,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0865,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0874,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0875,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0879,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0887,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0889,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0891,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0892,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0928,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0935,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0949,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0950,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0952,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0954,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0963,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0968,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2016-09-21aRagexe #if PACKETVER == 20160921 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-09-28cRagexe #if PACKETVER == 20160928 - packet(0x0202,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0366,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0436,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0811,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0838,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0864,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0866,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0872,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0878,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0889,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0897,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a9,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0919,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0927,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0944,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0953,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0955,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0957,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x0202,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0366,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0436,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0811,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0838,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0864,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0866,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0872,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0878,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0889,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0897,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a9,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0919,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0927,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0944,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0953,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0955,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0957,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2016-10-05aRagexe #if PACKETVER == 20161005 - packet(0x0202,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0838,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0863,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0886,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0891,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0892,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a0,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08ac,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0918,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0919,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x092b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0931,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0932,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0942,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0944,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0945,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x094a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0952,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x095b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0967,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0202,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0838,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0863,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0886,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0891,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0892,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a0,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08ac,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0918,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0919,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x092b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0931,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0932,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0942,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0944,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0945,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x094a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0952,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x095b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0967,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2016-10-12aRagexe #if PACKETVER == 20161012 - packet(0x023b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0364,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0365,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0369,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x07ec,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0819,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x085b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0863,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0868,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0872,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0875,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0880,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0893,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a0,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0936,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0937,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0939,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0943,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0944,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0951,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0962,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0966,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0967,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x023b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0364,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0365,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0369,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x07ec,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0819,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x085b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0863,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0868,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0872,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0875,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0880,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0893,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a0,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0936,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0937,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0939,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0943,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0944,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0951,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0962,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0966,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0967,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2016-10-19aRagexe #if PACKETVER == 20161019 - packet(0x022d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0361,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0889,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0892,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0946,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0963,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0361,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0889,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0892,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0946,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0963,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-10-26bRagexe, 2016-10-26cRagexe #if PACKETVER == 20161026 - packet(0x0363,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0438,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0861,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0862,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x086a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x087c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0886,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0891,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0894,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0898,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0926,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x092e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0930,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0953,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x095c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0962,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0363,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0438,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0861,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0862,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x086a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x087c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0886,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0891,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0894,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0898,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0926,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x092e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0930,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0953,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x095c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0962,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2016-11-02aRagexe, 2016-11-03aRagexe #if PACKETVER == 20161102 || \ PACKETVER == 20161103 - packet(0x0361,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0367,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0436,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0802,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0838,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x083c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0874,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0886,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a2,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08aa,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0922,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0925,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0928,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0936,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0946,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0949,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0964,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0965,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0966,6,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0361,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0367,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0436,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0802,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0838,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x083c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0874,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0886,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a2,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08aa,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0922,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0925,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0928,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0936,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0946,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0949,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0964,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0965,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0966,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 #endif // 2016-11-09aRagexe, 2016-11-09bRagexe #if PACKETVER == 20161109 - packet(0x02c4,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0361,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0362,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0366,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x085d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0865,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0870,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0876,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0881,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x088e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0898,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a7,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ad,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0937,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0954,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0956,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x02c4,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0361,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0362,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0366,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x085d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0865,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0870,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0876,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0881,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x088e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0898,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a7,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ad,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0937,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0954,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0956,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2016-11-16aRagexe #if PACKETVER == 20161116 - packet(0x0368,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0369,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0835,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x085f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0864,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0885,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x088f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0890,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0892,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0893,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a1,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a2,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08aa,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08ac,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0920,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0925,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x092a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0931,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x094a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0952,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0957,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0967,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x0368,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0369,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0835,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x085f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0864,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0885,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x088f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0890,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0892,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0893,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a1,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a2,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08aa,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08ac,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0920,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0925,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x092a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0931,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x094a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0952,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0957,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0967,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2016-11-23aRagexe #if PACKETVER == 20161123 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0362,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0437,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0861,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0866,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0871,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0880,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0882,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a9,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08aa,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0926,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0930,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0941,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x094d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x095a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0962,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0362,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0437,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0861,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0866,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0871,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0880,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0882,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a9,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08aa,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0926,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0930,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0941,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x094d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x095a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0962,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x096a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 #endif // 2016-11-30aRagexe, 2016-11-30bRagexe #if PACKETVER == 20161130 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0931,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0943,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0954,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0959,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0931,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0943,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0954,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0959,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-12-07cRagexe, 2016-12-07eRagexe #if PACKETVER == 20161207 - packet(0x023b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0868,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0875,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0886,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a1,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a2,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08ad,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0918,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0943,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0965,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0868,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0875,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0886,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a1,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a2,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08ad,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0918,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0943,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0965,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-12-14bRagexe, 2016-12-14cRagexe #if PACKETVER == 20161214 - packet(0x022d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0281,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x02c4,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0436,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0862,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x086d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0887,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0895,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0899,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x092e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0281,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x02c4,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0436,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0862,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x086d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0887,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0899,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x092e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-12-21aRagexe, 2016-12-21bRagexe #if PACKETVER == 20161221 - packet(0x035f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0438,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0817,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0866,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0876,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0881,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0885,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0890,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0899,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08aa,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0926,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0928,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x092e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0930,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0943,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0946,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x095a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0964,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0965,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x035f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0438,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0817,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0866,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0876,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0881,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0885,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0890,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0899,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08aa,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0926,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0928,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x092e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0930,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0943,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0946,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x095a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0964,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0965,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2016-12-28aRagexe #if PACKETVER == 20161228 - packet(0x0362,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x085a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0865,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x086c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0870,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0871,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0875,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x087f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0886,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0889,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0893,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a3,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a5,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ab,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08ac,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08ad,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0929,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x092c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0934,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0935,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0938,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0944,6,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0362,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x085a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0865,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x086c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0870,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0871,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0875,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x087f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0886,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0889,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0893,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a3,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a5,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ab,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08ac,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08ad,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0929,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x092c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0934,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0935,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0938,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0944,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 #endif // 2017-01-04aRagexe #if PACKETVER == 20170104 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x085a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0896,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x085a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0896,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-01-11aRagexe #if PACKETVER == 20170111 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a1,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a3,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a6,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0961,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0969,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a1,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a3,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a6,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0961,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0969,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-01-18aRagexe #if PACKETVER == 20170118 - packet(0x022d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0865,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0873,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08ad,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0927,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0933,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0958,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0962,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x022d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0865,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0873,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08ad,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0927,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0933,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0958,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0962,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2017-01-25aRagexe #if PACKETVER == 20170125 - packet(0x0438,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0879,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0881,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0893,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0894,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0895,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0898,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08a5,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x091c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0920,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0929,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x092b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0930,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0943,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0944,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0965,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0968,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0438,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0879,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0881,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0893,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0894,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0895,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0898,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08a5,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x091c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0920,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0929,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x092b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0930,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0943,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0944,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0965,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0968,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2017-02-01aRagexe #if PACKETVER == 20170201 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0815,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0875,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0879,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0881,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0885,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0886,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a4,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0919,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0920,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0938,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0966,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0815,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0875,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0879,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0881,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0885,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0886,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a4,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0919,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0920,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0938,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0966,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-02-08bRagexe #if PACKETVER == 20170208 - packet(0x02c4,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0367,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0860,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0892,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a1,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0921,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0923,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0932,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0937,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x02c4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0367,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0860,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0892,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a1,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0921,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0923,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0932,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0937,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-02-15aRagexe #if PACKETVER == 20170215 - packet(0x02c4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x035f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x083c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0876,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0883,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0890,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0896,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a8,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0925,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x092d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0942,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0962,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0969,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x02c4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x035f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0360,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x083c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0876,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0883,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0890,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0896,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a8,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0925,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x092d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0942,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0962,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0969,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 #endif // 2017-02-22aRagexe #if PACKETVER == 20170222 - packet(0x0202,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0866,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0870,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0871,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0877,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0889,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0894,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a3,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a8,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0937,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0939,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0943,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0962,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0866,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0870,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0871,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0877,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0889,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0894,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a3,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a8,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0937,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0939,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0943,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0962,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-02-28aRagexe, 2017-02-28bRagexe #if PACKETVER == 20170228 - packet(0x022d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0360,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0819,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x085e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0863,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0873,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0874,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0876,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0883,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0884,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0889,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0893,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a0,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a7,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x091f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0937,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0944,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0947,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0948,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0952,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0955,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x022d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0360,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0819,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x085e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0863,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0873,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0874,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0876,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0883,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0884,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0889,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0893,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a0,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a7,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x091f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0937,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0944,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0947,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0948,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0952,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0955,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2017-03-08aRagexe #if PACKETVER == 20170308 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-03-15cRagexe #if PACKETVER == 20170315 - packet(0x02c4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x035f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0360,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0366,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0367,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0436,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x07ec,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0863,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0872,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0884,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x088b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0892,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08aa,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0920,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0922,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0944,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0950,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0952,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x02c4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x035f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0360,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0366,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0436,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x07ec,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0863,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0872,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0884,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x088b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0892,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08aa,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0920,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0922,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0944,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x094e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0950,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0952,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2017-03-22aRagexe, 2017-03-22bRagexe #if PACKETVER == 20170322 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x091a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x091a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-03-29bRagexe, 2017-03-29cRagexe #if PACKETVER == 20170329 - packet(0x0281,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0363,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x087a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0888,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a8,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0917,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0926,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0929,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0937,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0939,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0949,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0363,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x087a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0888,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a8,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0917,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0926,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0929,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0937,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0939,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0949,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-04-05bRagexe, 2017-04-05cRagexe #if PACKETVER == 20170405 - packet(0x022d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0281,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0363,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0860,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0864,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0865,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0893,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a5,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0964,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0281,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0860,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0864,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0865,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0893,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a5,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0964,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-04-12aRagexe #if PACKETVER == 20170412 - packet(0x023b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0365,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0863,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0869,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0878,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0879,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0890,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0893,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a1,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0929,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x092e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0938,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0942,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0945,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0949,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x094f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0952,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0959,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x023b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0365,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0863,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0869,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0878,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0879,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0890,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0893,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a1,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0929,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0938,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0942,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0945,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0949,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x094f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0952,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0959,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2017-04-19aRagexe #if PACKETVER == 20170419 - packet(0x0811,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0819,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0838,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0868,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0872,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0881,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0897,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0898,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x089d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08aa,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0920,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0922,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0930,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0931,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0935,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0942,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x095c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0963,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0965,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0811,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0819,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0838,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0868,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0872,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0881,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0897,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0898,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x089d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08aa,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0920,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0922,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0930,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0931,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0935,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0942,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x095c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0963,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0965,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 #endif // 2017-04-26bRagexe #if PACKETVER == 20170426 - packet(0x0281,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0866,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0887,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0899,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a2,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0927,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0958,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0963,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0866,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0887,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0899,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a2,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0927,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0958,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0963,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-05-02aRagexe, 2017-05-02bRagexe #if PACKETVER == 20170502 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0875,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0894,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x089c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0950,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0875,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0894,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x089c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0950,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-05-17aRagexe #if PACKETVER == 20170517 - packet(0x0364,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0367,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0815,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0817,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0868,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x088d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0894,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0896,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0899,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a2,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a8,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08aa,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0923,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0945,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0946,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0947,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0958,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0960,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0964,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0364,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0367,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0815,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0817,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0868,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x088d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0894,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0896,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0899,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a2,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a8,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08aa,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0923,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0945,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0946,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0947,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0958,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0960,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0964,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2017-05-24aRagexe, 2017-05-24bRagexe #if PACKETVER == 20170524 - packet(0x0364,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0368,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0860,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0864,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0866,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0868,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0873,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0874,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0882,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0894,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a1,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0923,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0925,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0934,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0946,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0958,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0964,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0967,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0968,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0364,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0368,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0802,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0860,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0864,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0866,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0868,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0873,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0874,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0882,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0894,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a1,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0923,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0925,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0934,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0946,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0958,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0964,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0967,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0968,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 #endif // 2017-05-31aRagexe #if PACKETVER == 20170531 - packet(0x0361,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0369,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x07e4,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x07ec,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0819,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x085f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0861,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0868,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0873,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0875,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0878,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0885,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x088d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0894,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a2,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08ac,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08ad,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0933,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0937,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0940,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0945,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0963,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0968,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0369,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x07e4,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x07ec,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0819,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x085f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0861,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0868,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0873,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0875,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0878,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0885,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x088d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0894,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08ac,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08ad,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0933,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0937,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0940,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0945,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0963,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0968,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2017-06-07cRagexe #if PACKETVER == 20170607 - packet(0x0361,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x07e4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x085e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0862,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0863,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0864,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0871,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0873,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0875,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0885,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x088a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0897,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a9,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08ab,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0917,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0918,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0919,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0925,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0927,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0931,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0934,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0938,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x093d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0942,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0944,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0949,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0361,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x07e4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x085e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0862,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0863,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0864,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0871,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0873,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0875,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0885,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x088a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0897,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a9,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08ab,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0917,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0918,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0919,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0925,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0927,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0931,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0934,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0938,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x093d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0942,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0944,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0949,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2017-06-14bRagexe #if PACKETVER == 20170614 - packet(0x023b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0361,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0364,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0367,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0437,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0838,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x083c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0860,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0865,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0866,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0867,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x086b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0877,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0889,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0899,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a2,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08ad,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0928,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0936,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0944,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0957,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0963,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x023b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0361,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0364,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0367,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0437,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0838,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x083c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0860,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0865,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0866,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0867,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x086b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0877,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0889,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0899,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a2,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08ad,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0928,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0936,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0944,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0957,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0963,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2017-06-21bRagexe #if PACKETVER == 20170621 - packet(0x0202,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0365,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0366,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0802,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0885,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0889,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a8,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0956,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0961,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0365,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0366,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0802,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0885,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0889,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a8,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0956,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0961,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-06-28bRagexe #if PACKETVER == 20170628 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0863,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0863,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-07-05aRagexe #if PACKETVER == 20170705 - packet(0x0202,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x02c4,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0886,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x088d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0930,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0932,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0934,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x02c4,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0886,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x088d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0930,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0932,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0934,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-07-12bRagexe #if PACKETVER == 20170712 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0944,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0944,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-07-19aRagexe #if PACKETVER == 20170719 - packet(0x022d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0367,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0368,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0369,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x07e4,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0863,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0881,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0882,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0885,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0898,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a6,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a8,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x093d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0944,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0946,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x022d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0367,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0368,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0369,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x07e4,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0863,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0881,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0882,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0885,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0898,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a6,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a8,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x093d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0944,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0946,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2017-07-26aRagexe #if PACKETVER == 20170726 - packet(0x0363,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0369,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0438,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0838,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0873,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0874,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0878,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0881,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0888,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x088e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a3,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a7,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08aa,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08ab,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08ac,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0921,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0923,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0943,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0950,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0952,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0954,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0963,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0363,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0369,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0438,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0838,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0873,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0874,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0878,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0881,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0888,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x088e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a3,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a7,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08aa,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08ab,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08ac,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0921,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0923,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0943,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0950,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0952,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0954,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0963,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2017-08-01aRagexe, 2017-08-01bRagexe #if PACKETVER == 20170801 - packet(0x022d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0281,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0281,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-08-09cRagexe #if PACKETVER == 20170809 - packet(0x022d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0281,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0364,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0366,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0367,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x07e4,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0802,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0835,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0868,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0876,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0880,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0890,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0892,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0895,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0899,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a3,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a6,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0918,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0921,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x092b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0931,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0939,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0940,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x022d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0281,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0364,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0366,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0367,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x07e4,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0802,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0835,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0868,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0876,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0880,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0890,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0892,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0895,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0899,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a3,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a6,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0918,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0921,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x092b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0931,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0939,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0940,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2017-08-16cRagexe, 2017-08-16dRagexe #if PACKETVER == 20170816 - packet(0x022d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x035f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0361,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0362,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0438,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0862,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0864,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x087e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0881,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0882,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0888,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0889,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a3,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a7,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a9,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08ac,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x091c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0921,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0925,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0950,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0959,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0960,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x022d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x035f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0361,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0362,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0438,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0862,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0864,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x087e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0881,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0882,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0888,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0889,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a3,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a7,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a9,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08ac,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x091c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0921,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0925,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0950,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0959,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0960,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2017-08-23aRagexe #if PACKETVER == 20170823 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08ac,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08ac,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-08-30aRagexe, 2017-08-30bRagexe #if PACKETVER == 20170830 - packet(0x0281,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x02c4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0363,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0364,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0860,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0865,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0875,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0884,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0885,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0888,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0899,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a8,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0921,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0925,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0939,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0940,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0942,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0943,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0947,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0951,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0959,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0281,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x02c4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0363,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0364,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0860,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0865,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0875,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0884,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0885,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0888,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0899,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0921,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0925,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0939,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0940,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0942,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0943,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0947,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0951,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0959,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2017-09-06cRagexe #if PACKETVER == 20170906 - packet(0x0202,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0281,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x02c4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0860,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0866,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a3,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a7,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0953,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0281,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x02c4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0860,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0866,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a3,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a7,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0953,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-09-13cRagexe #if PACKETVER == 20170913 - packet(0x0281,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x035f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0437,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x07e4,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0817,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0835,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x085a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0860,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0865,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0866,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x088c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0891,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0892,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a7,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08aa,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08ab,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ac,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ad,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0920,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0923,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0925,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0927,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0281,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x035f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0437,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x07e4,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0817,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0835,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x085a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0860,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0865,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0866,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x088c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0891,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0892,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a7,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08aa,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08ab,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ac,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ad,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0920,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0923,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0925,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0927,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 #endif // 2017-09-20aRagexe #if PACKETVER == 20170920 - packet(0x0369,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0436,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x07ec,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x085a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0861,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0862,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0864,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0865,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x086a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0874,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0875,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0889,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x089b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0919,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0921,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0923,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0926,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0937,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0939,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0945,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0961,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0966,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0369,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0436,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07ec,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x085a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0861,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0862,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0864,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0865,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x086a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0874,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0875,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0889,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x089b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0919,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0921,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0923,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0926,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0937,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0939,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0945,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0961,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0966,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x096a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2017-09-27bRagexe, 2017-09-27cRagexe, 2017-09-27dRagexe #if PACKETVER == 20170927 - packet(0x02c4,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x035f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0361,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0362,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x085c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0873,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0875,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x087e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0899,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a3,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a5,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a6,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ad,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x091e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0922,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0923,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0927,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0942,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0945,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x094d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0959,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x02c4,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x035f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0361,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0362,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x085c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0873,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0875,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x087e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0899,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a3,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a5,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ad,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x091e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0922,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0923,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0927,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0942,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0945,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x094d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0959,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2017-10-02cRagexe #if PACKETVER == 20171002 - packet(0x022d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0885,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0897,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0928,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x092d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0934,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0943,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x095f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0885,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0897,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0928,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x092d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0934,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0943,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x095f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-10-11aRagexe, 2017-10-11bRagexe #if PACKETVER == 20171011 - packet(0x023b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0882,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0950,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0954,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0882,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0950,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0954,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-10-18aRagexe #if PACKETVER == 20171018 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0889,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a6,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0938,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0944,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x094f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0889,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a6,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0938,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0944,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x094f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-10-25bRagexe, 2017-10-25cRagexe, 2017-10-25dRagexe, 2017-10-25eRagexe #if PACKETVER == 20171025 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-11-01aRagexe #if PACKETVER == 20171101 - packet(0x022d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0369,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0835,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0860,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0872,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0876,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0886,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0890,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0895,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0899,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a0,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08ab,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ad,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0939,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x094a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0957,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x095a,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0966,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x022d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0369,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0835,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0860,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0872,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0876,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0886,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0890,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0899,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a0,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08ab,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ad,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0939,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x094a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0957,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x095a,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0966,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2017-11-08aRagexe #if PACKETVER == 20171108 - packet(0x0202,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0361,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x07e4,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0815,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0819,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0838,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x085d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0863,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0878,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0884,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0896,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0897,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a2,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a9,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ad,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0940,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0945,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0947,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0949,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0958,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0963,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0965,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0967,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0202,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x07e4,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0815,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0819,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0838,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x085d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0863,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0878,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0884,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0896,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0897,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a2,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a9,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ad,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0940,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0945,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0947,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0949,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0958,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0963,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0965,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0967,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2017-11-15aRagexe #if PACKETVER == 20171115 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0365,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x086f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0883,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0890,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0898,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0926,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0958,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0365,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x086f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0883,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0890,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0898,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0926,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0958,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-11-22aRagexe #if PACKETVER == 20171122 - packet(0x0281,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x02c4,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x035f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0838,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x083c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x085b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0862,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0867,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0877,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0885,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0891,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0893,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0897,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0898,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a6,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a9,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x091e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0920,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0923,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0934,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0945,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0946,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0947,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0962,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0968,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0281,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x02c4,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x035f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0838,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x083c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x085b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0862,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0867,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0877,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0891,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0893,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0897,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0898,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a6,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a9,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x091e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0920,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0923,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0934,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0945,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0946,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0947,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0962,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0968,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2017-11-29aRagexe #if PACKETVER == 20171129 - packet(0x02c4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0363,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0365,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0876,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0878,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a5,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0953,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0966,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x02c4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0363,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0365,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0876,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0878,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a5,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0953,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0966,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-12-06bRagexe, 2017-12-06cRagexe #if PACKETVER == 20171206 - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x086a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x086e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0888,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0897,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a2,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a4,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0923,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0936,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0942,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0958,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0961,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x086a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x086e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0888,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0897,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a2,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a4,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0923,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0936,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0942,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0958,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0961,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-12-13bRagexe #if PACKETVER == 20171213 - packet(0x0202,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0860,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0881,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0890,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0957,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0860,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0881,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0890,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0957,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-12-20aRagexe #if PACKETVER == 20171220 - packet(0x0281,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0366,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0369,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0436,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0437,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0861,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0872,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0873,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0880,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0882,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0885,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0899,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a7,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0924,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0929,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0933,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0941,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0946,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0951,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0957,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0960,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0964,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0281,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0366,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0369,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0436,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0437,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0861,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0872,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0873,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0880,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0882,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0885,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0899,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a7,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0924,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0929,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0933,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0941,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0946,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0951,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0957,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0960,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0964,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 #endif // 2017-12-27aRagexe #if PACKETVER == 20171227 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0888,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x088a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a0,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a5,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0938,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0945,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0946,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0969,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x096a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0888,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x088a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a0,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a5,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0938,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0945,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0946,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0969,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x096a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2018-01-03aRagexe, 2018-01-03bRagexe #if PACKETVER == 20180103 - packet(0x02c4,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0363,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0865,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x086b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0872,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0876,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0879,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a9,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ab,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08ac,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0922,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0926,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0927,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x092c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0935,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0938,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0946,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0948,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x095d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0960,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x02c4,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0363,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0865,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x086b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0872,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0876,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0879,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a9,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ab,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08ac,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0922,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0926,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0927,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x092c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0935,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0938,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0946,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0948,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x095d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0960,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2018-01-17aRagexe #if PACKETVER == 20180117 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0875,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0875,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2018-01-24bRagexe, 2018-01-31Ragexe #if PACKETVER == 20180124 || \ PACKETVER == 20180131 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0868,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x086a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0888,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0890,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0919,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0940,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0946,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0958,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0961,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0868,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x086a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0888,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0890,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0919,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0940,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0946,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0958,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0961,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2018-02-07bRagexe, 2018-02-07cRagexe #if PACKETVER == 20180207 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0360,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0881,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0950,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0360,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0881,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0950,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2018-02-13aRagexe, 2018-02-13bRagexe #if PACKETVER == 20180213 - packet(0x0369,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0817,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x085a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0874,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0875,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0878,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0882,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0892,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0898,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a3,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a9,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0917,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0922,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0924,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0926,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0933,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0936,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0943,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0962,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0369,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0802,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0817,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x085a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0874,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0875,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0878,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0882,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0892,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0898,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a3,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a9,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0917,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0922,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0924,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0926,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0933,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0936,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0943,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0962,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 #endif // 2018-02-21bRagexe #if PACKETVER == 20180221 - packet(0x0202,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0366,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0436,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0838,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0867,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0871,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0880,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0881,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0883,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0891,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0897,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0899,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x089d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0917,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0929,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0957,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0964,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x096a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0202,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0366,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0436,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0838,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0867,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x086f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0871,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0880,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0881,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0883,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0891,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0897,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0899,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x089d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0917,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0929,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0957,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0964,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x096a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2018-03-07bRagexe, 2018-03-09aRagexe #if PACKETVER == 20180307 || \ PACKETVER == 20180309 - packet(0x0281,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x035f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0437,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07e4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0861,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0862,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0864,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086c,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0870,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0872,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0877,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x088d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0893,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a6,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08aa,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ab,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0917,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0920,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0937,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0939,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0941,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0944,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0948,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0951,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0954,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0957,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0969,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0281,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x035f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0437,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x07e4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0861,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0862,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0864,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086c,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0870,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0872,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0877,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x088d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0893,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a6,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08aa,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ab,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0917,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0920,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0937,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0939,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0941,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0944,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0948,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0951,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0954,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0957,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0969,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2018-03-14nRagexe #if PACKETVER == 20180314 - packet(0x0361,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0366,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0369,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0436,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0862,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0863,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0868,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0874,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x087a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0888,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x088d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0894,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x089b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0921,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0927,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0933,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0935,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0945,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0956,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0959,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x095f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0962,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0967,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0361,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0366,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0369,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0436,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0862,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0863,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0868,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0874,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x087a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0888,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x088d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0894,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x089b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0921,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0927,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0933,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0935,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0945,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0956,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0959,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x095f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0962,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0967,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 +#endif + +// 2018-11-21bRagexe, 2018-11-28aRagexe, 2018-11-28bRagexe, 2018-11-28cRagexe, 2018-12-05aRagexe, 2018-12-12aRagexe, 2018-12-12bRagexe +#if PACKETVER == 20181121 || \ + PACKETVER == 20181128 || \ + PACKETVER == 20181205 || \ + PACKETVER >= 20181212 + packet(0x0202,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x022d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x023b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0281,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x02c4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0360,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0362,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0363,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0365,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0366,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x07e4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0811,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0815,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 14 #endif diff --git a/src/map/packets_shuffle_re.h b/src/map/packets_shuffle_re.h index 157a8a431..dabc2ce6c 100644 --- a/src/map/packets_shuffle_re.h +++ b/src/map/packets_shuffle_re.h @@ -3,6 +3,7 @@ * http://herc.ws - http://github.com/HerculesWS/Hercules * * Copyright (C) 2013-2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,13 +25,13 @@ #define MAP_PACKETS_SHUFFLE_RE_H #ifndef packet - #define packet(a,b,...) + #define packet(a,...) #endif /* * packet syntax - * - packet(packet_id,length,function,offset ( specifies the offset of a packet field in bytes from the begin of the packet ),...) - * - Example: packet(0x0072,19,clif->pWantToConnection,2,6,10,14,18); + * - packet(packet_id,function,offset ( specifies the offset of a packet field in bytes from the begin of the packet ),...) + * - Example: packet(0x0072,clif->pWantToConnection,2,6,10,14,18); */ /* This file is autogenerated, please do not commit manual changes */ @@ -39,9582 +40,9582 @@ // 2012-07-10aRagexeRE, 2012-07-12aRagexeRE #if PACKETVER == 20120710 || \ PACKETVER == 20120712 - packet(0x0202,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x02c4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0362,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0365,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0367,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0436,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x07e4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0811,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0877,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0878,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x087f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x088d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0893,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0899,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a3,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a6,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a8,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08aa,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0936,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0948,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0953,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0956,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0958,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0960,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0202,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x02c4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0362,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0365,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0367,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0436,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x07e4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0811,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0877,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0878,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x087f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x088d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0893,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0899,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a3,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a6,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a8,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08aa,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0936,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0948,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0953,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0956,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0958,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0960,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2012-07-16aRagexeRE #if PACKETVER == 20120716 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-07-24aRagexeRE #if PACKETVER == 20120724 - packet(0x035f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0815,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0835,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0865,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0866,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0872,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0877,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087c,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0887,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0888,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a1,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a9,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08ab,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0928,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0929,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x092b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0935,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0938,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x093c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0945,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0957,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0959,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0963,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0965,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0966,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x035f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0815,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0835,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0865,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0866,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0872,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0877,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087c,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0887,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0888,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a1,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a9,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08ab,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0928,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0929,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x092b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0935,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0938,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x093c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0945,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0957,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0959,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0963,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0965,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0966,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 #endif // 2012-08-01aRagexeRE, 2012-08-01bRagexeRE #if PACKETVER == 20120801 - packet(0x0360,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0438,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0873,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0875,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x088b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0895,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a2,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08aa,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ab,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0917,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0930,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0934,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x093c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0946,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0964,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0360,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0438,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0873,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0875,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x088b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0895,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a2,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08aa,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ab,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0917,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0930,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0934,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x093c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0946,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0964,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2012-08-08aRagexeRE, 2012-08-08bRagexeRE, 2012-08-08cRagexeRE, 2012-08-08dRagexeRE #if PACKETVER == 20120808 - packet(0x0202,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-08-14aRagexeRE, 2012-08-14bRagexeRE #if PACKETVER == 20120814 - packet(0x0281,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0361,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0365,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0366,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x07ec,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0815,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0838,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0861,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0862,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0865,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0868,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0875,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0882,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x088d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0895,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a8,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0920,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0929,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0932,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0934,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0967,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0969,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0281,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0361,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0365,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0366,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x07ec,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0815,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0838,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0861,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0862,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0865,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0868,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0875,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0882,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x088d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0895,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a8,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0920,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0929,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0932,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0934,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0967,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0969,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2012-08-22aRagexeRE, 2012-08-22bRagexeRE, 2012-08-22cRagexeRE #if PACKETVER == 20120822 - packet(0x0365,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0437,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x085a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x085d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0872,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x087d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0899,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ab,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0917,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0924,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0927,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0935,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0937,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0940,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0943,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0953,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0958,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0365,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0437,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x085a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x085d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0872,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x087d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0899,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ab,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0917,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0924,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0927,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0935,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0937,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0940,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0943,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0953,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0958,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 #endif // 2012-08-30aRagexeRE, 2012-08-30bRagexeRE #if PACKETVER == 20120830 - packet(0x022d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0802,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0838,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0861,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0872,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0887,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0888,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0926,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0934,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0945,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094b,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0964,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0802,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0838,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0861,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0872,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0887,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0888,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0926,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0934,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0945,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094b,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0964,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-09-05aRagexeRE #if PACKETVER == 20120905 - packet(0x022d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0365,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0817,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x085a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0878,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x087e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0887,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0895,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0897,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a0,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a6,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0917,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0918,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0927,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x093c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0944,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0945,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0950,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0959,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0960,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0967,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x022d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0365,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0817,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x085a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0878,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x087e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0887,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0895,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0897,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a0,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a6,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0917,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0918,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0927,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x093c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0944,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0945,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0950,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0959,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0960,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0967,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2012-09-11aRagexeRE #if PACKETVER == 20120911 - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0819,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0868,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0879,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a4,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a5,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a6,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a7,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08ad,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0930,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0935,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0948,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0949,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0958,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0959,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0962,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0963,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0968,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0819,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0868,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0879,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a4,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a5,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a6,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a7,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08ad,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0930,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0935,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0948,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0949,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0958,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0959,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0962,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0963,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0968,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2012-09-19aRagexeRE #if PACKETVER == 20120919 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0956,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0956,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-09-25aRagexeRE, 2012-09-26aRagexeRE #if PACKETVER == 20120925 || \ PACKETVER == 20120926 - packet(0x07e4,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0815,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0819,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0835,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0838,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0869,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0873,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x087e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0887,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a4,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0923,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0927,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0932,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0942,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0948,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0950,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0956,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0958,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0963,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x07e4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0815,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0819,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0835,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0838,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0869,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0873,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x087e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0887,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a4,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0923,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0927,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0932,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0942,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0948,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0950,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0956,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0958,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0963,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 #endif // 2012-10-10aRagexeRE, 2012-10-10bRagexeRE, 2012-10-11aRagexeRE #if PACKETVER == 20121010 || \ PACKETVER == 20121011 - packet(0x0202,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0817,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0869,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0874,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0883,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0888,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0891,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0896,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a1,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a6,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a9,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0925,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0934,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0942,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0946,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0947,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0957,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0958,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0959,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0964,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0969,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0202,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0817,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0869,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0874,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0883,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0888,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0891,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0896,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a1,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a9,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0925,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0934,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0942,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0946,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0947,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0957,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0958,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0959,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0964,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0969,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2012-10-17aRagexeRE, 2012-10-17bRagexeRE #if PACKETVER == 20121017 - packet(0x023b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0868,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0887,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0888,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0897,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x089a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a6,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0918,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0920,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0960,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0965,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0868,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0887,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0888,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0897,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x089a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a6,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0918,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0920,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0960,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0965,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-10-24aRagexeRE #if PACKETVER == 20121024 - packet(0x0436,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0437,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0438,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0817,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0838,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0868,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0872,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0875,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0882,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0888,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0889,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a9,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08aa,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0931,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0938,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0942,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0947,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0954,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0955,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x095d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0965,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0436,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0437,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0438,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0817,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0838,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0868,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0872,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0875,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0882,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0888,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0889,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a9,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08aa,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0931,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0938,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0942,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0947,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0954,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0955,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x095d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0965,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2012-10-31aRagexeRE #if PACKETVER == 20121031 - packet(0x022d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0871,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0877,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0898,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0871,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0877,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0898,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-11-07aRagexeRE #if PACKETVER == 20121107 - packet(0x0360,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0361,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0365,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x085c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0861,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0865,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0871,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0873,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0878,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0890,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0891,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0896,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a2,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0922,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0934,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0945,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x094d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0960,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0963,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0966,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0360,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0361,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0365,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x085c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0861,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0865,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0871,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0873,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0878,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0890,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0891,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0896,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0922,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0934,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0945,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x094d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0960,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0963,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0966,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 #endif // 2012-11-14aRagexeRE #if PACKETVER == 20121114 - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0365,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0437,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0815,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0838,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0862,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0876,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0879,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0881,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0898,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0899,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a9,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08aa,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ab,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0930,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0935,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0938,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x093b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0941,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0944,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0949,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x095c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0965,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0365,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0437,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0815,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0838,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0862,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0876,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0879,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0881,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0898,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0899,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a9,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08aa,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ab,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0930,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0935,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0938,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x093b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0941,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0944,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0949,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x095c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0965,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2012-11-21aRagexeRE #if PACKETVER == 20121121 - packet(0x0202,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0362,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0437,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0863,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0872,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0875,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0880,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0892,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089a,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a7,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08aa,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0921,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0927,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0929,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0938,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0946,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x094d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0950,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0952,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0957,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0958,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0202,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0362,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0437,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0863,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0872,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0875,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0880,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0892,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089a,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a7,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08aa,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0921,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0927,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0929,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0938,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0946,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x094d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0950,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0952,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0957,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0958,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 #endif // 2012-11-28aRagexeRE #if PACKETVER == 20121128 - packet(0x0362,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0363,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x07ec,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0802,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0861,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0867,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x086c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0872,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0888,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0894,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0895,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a8,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ad,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0921,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0922,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0931,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0945,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0947,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0950,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0953,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0960,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0362,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0363,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x07ec,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0802,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0861,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0867,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x086c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0872,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0888,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0894,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0895,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a8,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ad,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0921,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0922,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0931,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0945,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0947,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0950,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0953,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0960,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 #endif // 2012-12-05aRagexeRE, 2012-12-05bRagexeRE #if PACKETVER == 20121205 - packet(0x035f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0360,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0815,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0863,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0864,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0870,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0873,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0875,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0878,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0888,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0889,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08ad,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0921,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0946,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0954,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0959,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0968,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x035f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0360,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0815,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0863,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0864,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0870,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0873,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0875,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0878,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0888,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0889,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08ad,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0921,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0946,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0954,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0959,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0968,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2012-12-12aRagexeRE, 2012-12-12bRagexeRE, 2012-12-12cRagexeRE #if PACKETVER == 20121212 - packet(0x0362,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0368,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0369,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0436,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0438,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0817,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x085c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0877,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x087d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0893,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0895,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a3,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a7,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a9,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08aa,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ac,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0917,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0920,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0932,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0947,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0951,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0953,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0957,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0966,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0362,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0368,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0369,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0436,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0438,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x085c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0877,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x087d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0893,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0895,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a3,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a7,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a9,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08aa,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ac,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0917,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0920,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0932,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0947,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0951,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0953,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0957,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0966,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-12-18aRagexeRE, 2012-12-18bRagexeRE #if PACKETVER == 20121218 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0363,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0872,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0889,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0890,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0935,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0946,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0957,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0363,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0872,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0889,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0935,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0946,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0957,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2012-12-27aRagexeRE #if PACKETVER == 20121227 - packet(0x0202,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x02c4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0361,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0437,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0860,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0870,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0872,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0886,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0888,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0890,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0894,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0896,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a6,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0917,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0920,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0932,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0933,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0940,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0943,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0947,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0953,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0958,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0962,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0202,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x02c4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0361,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0437,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0860,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0870,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0872,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0886,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0888,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0890,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0894,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0896,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a6,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0917,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0920,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0932,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0933,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0940,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0943,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0947,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0953,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0958,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0962,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 #endif // 2013-01-03aRagexeRE #if PACKETVER == 20130103 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-01-09aRagexeRE #if PACKETVER == 20130109 - packet(0x0281,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0365,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0368,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0838,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0866,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0888,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0891,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0892,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a2,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08aa,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ac,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0918,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0922,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0927,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0928,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0930,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0931,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0938,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093e,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0950,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0951,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0955,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0281,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0365,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0368,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0838,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0866,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0888,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0891,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0892,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a2,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08aa,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ac,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0918,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0922,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0927,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0928,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0930,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0931,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0938,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093e,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0950,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0951,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0955,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2013-01-15aRagexeRE, 2013-01-16aRagexeRE #if PACKETVER == 20130115 || \ PACKETVER == 20130116 - packet(0x0361,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x07ec,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0817,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0861,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0863,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0870,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0871,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0877,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0879,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0888,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x088b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0894,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0895,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a0,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0918,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0928,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x092d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0939,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0946,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094b,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x095a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0361,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0817,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0861,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0863,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0870,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0871,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0877,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0879,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0888,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x088b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0894,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0895,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a0,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0918,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0928,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x092d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0939,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0946,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094b,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x095a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2013-01-21aRagexeRE #if PACKETVER == 20130121 - packet(0x023b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x035f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0802,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0815,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0817,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0874,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0893,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0940,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0956,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0963,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x035f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0802,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0815,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0817,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0874,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0893,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0940,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0956,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0963,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-01-30aRagexeRE #if PACKETVER == 20130130 - packet(0x035f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0367,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0437,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x085f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0862,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0885,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0886,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0887,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0889,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x089a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a0,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a4,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a9,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0920,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0924,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0956,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0957,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095b,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x035f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0367,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0368,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0437,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x085f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0862,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0885,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0886,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0887,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0889,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x089a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a0,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a4,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a9,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0920,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0924,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0956,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0957,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095b,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2013-02-06aRagexeRE #if PACKETVER == 20130206 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0811,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0876,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0883,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0899,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a0,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ac,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0920,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0925,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x093c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0950,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0811,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0876,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0883,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0899,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a0,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ac,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0920,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0925,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x093c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0950,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-02-15aRagexeRE #if PACKETVER == 20130215 - packet(0x023b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0886,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ad,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0923,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0941,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0956,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x095d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0962,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0886,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ad,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0923,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0941,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0956,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x095d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0962,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-02-20bRagexeRE #if PACKETVER == 20130220 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-02-27aRagexeRE #if PACKETVER == 20130227 - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x035f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0360,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0811,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0815,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0817,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0863,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0867,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0869,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x086e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0893,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0898,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a0,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a1,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0924,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x092b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x092f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0936,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0946,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0951,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0967,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x035f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0360,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0811,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0815,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0817,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0863,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0867,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0869,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x086e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0893,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0898,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a0,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a1,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0924,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x092b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x092f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0936,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0946,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0951,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0967,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2013-03-06aRagexeRE, 2013-03-06bRagexeRE #if PACKETVER == 20130306 - packet(0x022d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0367,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0368,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0802,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0817,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x085b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0860,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0881,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0890,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0898,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ac,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0917,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0926,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0934,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0936,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0943,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0944,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0945,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0946,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094a,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0951,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0960,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x022d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0367,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0368,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0802,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0817,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x085b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0860,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0881,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0898,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ac,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0917,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0926,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0934,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0936,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0943,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0944,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0945,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0946,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094a,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0951,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0960,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2013-03-13aRagexeRE, 2013-03-13bRagexeRE, 2013-03-13cRagexeRE #if PACKETVER == 20130313 - packet(0x0202,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0887,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0920,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0947,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0887,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0920,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0947,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-03-20bRagexeRE, 2013-03-20cRagexeRE #if PACKETVER == 20130320 - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0365,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0438,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x085d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0868,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0874,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0881,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0886,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0888,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0890,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0897,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0898,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0922,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0933,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0938,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0947,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0959,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0365,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0438,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x085d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0868,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0874,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0881,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0886,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0888,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0897,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0898,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0922,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0933,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0938,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0947,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0959,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2013-03-27bRagexeRE #if PACKETVER == 20130327 - packet(0x02c4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0835,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0873,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0878,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0885,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0891,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0893,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0899,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a1,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a2,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x092b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x092d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x092e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0933,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0938,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0939,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0955,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0960,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0961,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0967,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x02c4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0835,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0873,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0878,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0885,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0891,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0893,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0899,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a1,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a2,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x092b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x092d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0933,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0938,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0939,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0955,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0960,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0961,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0967,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 #endif // 2013-04-03aRagexeRE #if PACKETVER == 20130403 - packet(0x023b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0884,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0926,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0942,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0950,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0884,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0926,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0942,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0950,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-04-10aRagexeRE #if PACKETVER == 20130410 - packet(0x0367,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0437,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0860,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0865,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0881,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x088c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a0,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08a7,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0917,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0933,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0939,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x093d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0944,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0945,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0955,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0960,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0967,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x096a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0367,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0437,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0860,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0865,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0881,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x088c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a0,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08a7,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0917,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0933,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0939,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x093d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0944,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0945,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0955,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0960,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0967,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x096a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2013-04-17aRagexeRE #if PACKETVER == 20130417 - packet(0x0202,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0875,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0929,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0962,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0969,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x096a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x0202,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0875,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0929,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0962,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0969,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x096a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2013-04-24aRagexeRE #if PACKETVER == 20130424 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0969,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0969,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-05-02aRagexeRE #if PACKETVER == 20130502 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x07ec,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0870,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0874,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0875,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0877,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0888,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0889,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a1,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a3,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0961,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0967,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x07ec,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0870,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0874,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0875,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0877,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0888,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0889,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a1,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a3,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0961,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0967,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2013-05-08bRagexeRE #if PACKETVER == 20130508 - packet(0x022d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0868,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0878,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0893,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0895,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0897,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ab,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x092d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0944,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0957,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0868,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0878,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0893,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0895,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0897,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ab,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x092d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0944,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0957,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-05-15aRagexeRE #if PACKETVER == 20130515 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0887,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a1,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ac,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0931,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x093e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0943,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0944,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0947,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0962,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0963,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0887,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a1,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ac,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0931,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x093e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0943,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0944,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0947,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0962,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0963,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-05-22aRagexeRE #if PACKETVER == 20130522 - packet(0x0360,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0362,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0368,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x07ec,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0811,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0874,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x088e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a2,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a3,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a6,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a9,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08aa,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08ac,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0925,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0926,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x093e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0950,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0952,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0964,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0965,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x0360,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0362,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0368,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x07ec,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0811,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0874,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x088e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a2,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a3,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a6,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a9,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08aa,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08ac,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0925,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0926,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x093e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0950,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0952,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0964,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0965,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2013-05-29aRagexeRE #if PACKETVER == 20130529 - packet(0x023b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0438,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x085e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0863,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0869,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0874,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0876,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0877,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0888,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0892,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0895,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0897,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a7,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a8,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0917,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0918,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0919,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0936,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0937,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0938,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0941,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0951,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0956,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0957,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0958,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0964,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x023b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x085e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0863,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0869,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0874,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0876,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0877,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0888,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0892,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0895,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0897,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a7,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a8,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0917,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0918,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0919,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0936,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0937,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0938,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0941,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0951,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0956,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0957,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0958,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0964,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2013-06-05cRagexeRE #if PACKETVER == 20130605 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0883,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0883,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-06-12bRagexeRE #if PACKETVER == 20130612 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0919,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0964,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0919,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0964,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-06-18#1aRagexeRE #if PACKETVER == 20130618 - packet(0x0281,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x02c4,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0363,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0862,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0864,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0878,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0885,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0887,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0889,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x088e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0890,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0891,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a6,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a7,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0917,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0930,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0932,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0936,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0942,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0944,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0945,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0951,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0953,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0281,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x02c4,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0363,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0862,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0864,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0878,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0885,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0887,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0889,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x088e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0890,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0891,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a6,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a7,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0917,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0930,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0932,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0936,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0942,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0944,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0945,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0951,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0953,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2013-06-26_3bRagexeRE, 2013-06-26aRagexeRE #if PACKETVER == 20130626 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0860,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0894,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0895,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a5,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ab,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0921,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0930,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0952,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0960,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0860,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0894,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0895,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a5,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ab,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0921,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0930,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0952,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0960,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-07-03bRagexeRE #if PACKETVER == 20130703 - packet(0x0202,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0873,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0930,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0873,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0930,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-07-10aRagexeRE, 2013-07-10bRagexeRE, 2013-07-10cRagexeRE, 2013-07-10dRagexeRE, 2013-07-10eRagexeRE #if PACKETVER == 20130710 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0880,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0880,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-07-17cRagexeRE, 2013-07-17dRagexeRE, 2013-07-17eRagexeRE #if PACKETVER == 20130717 - packet(0x02c4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0863,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x086b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0882,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x088a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0897,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0898,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a6,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a9,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0917,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0918,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0956,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0958,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0960,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0967,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x096a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x02c4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0863,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x086b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0882,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x088a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0897,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0898,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a9,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0917,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0918,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0956,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0958,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0960,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0967,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x096a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2013-07-24eRagexeRE, 2013-07-24fRagexeRE #if PACKETVER == 20130724 - packet(0x023b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0437,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x085a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0860,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0867,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0874,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0876,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0890,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0891,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0893,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0921,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0924,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x092b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0953,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0954,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0956,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0958,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0966,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x023b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0437,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x085a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0860,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0867,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0874,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0876,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0890,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0891,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0893,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0921,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0924,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x092b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0953,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0954,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0956,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0958,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0966,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2013-07-31cRagexeRE #if PACKETVER == 20130731 - packet(0x022d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0366,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0819,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0863,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0865,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0878,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x087e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0884,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0889,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0894,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0895,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0923,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0925,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x092b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0935,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x094c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0956,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0957,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0958,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0962,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x022d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0366,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0863,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0865,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0878,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x087e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0884,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0889,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0894,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0923,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0925,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x092b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0935,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x094c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0956,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0957,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0958,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0962,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2013-08-07aRagexeRE #if PACKETVER == 20130807 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0887,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0887,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-08-14aRagexeRE #if PACKETVER == 20130814 - packet(0x0202,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0281,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0368,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0815,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0835,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0868,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0873,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0874,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0885,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0887,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0889,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0895,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0896,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0923,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0926,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0936,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0937,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x093a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0941,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0947,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0958,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0959,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0962,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0202,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0281,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0368,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0815,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0835,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0868,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0873,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0874,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0885,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0887,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0889,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0895,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0896,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0923,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0926,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0936,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0937,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x093a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0941,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0947,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0958,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0959,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0962,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2013-08-21dRagexeRE #if PACKETVER == 20130821 - packet(0x0202,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0437,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0438,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x07ec,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0815,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0863,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0879,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0881,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x088d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0892,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a6,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0923,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x093e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0947,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0954,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0964,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0967,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0969,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0202,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0437,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0438,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x07ec,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0815,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0863,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0879,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0881,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x088d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0892,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a6,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0923,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x093e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0947,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0954,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0964,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0967,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0969,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 #endif // 2013-08-28bRagexeRE, 2013-08-28cRagexeRE #if PACKETVER == 20130828 - packet(0x023b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0361,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0364,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0817,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0873,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0889,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0893,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a3,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08ac,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0917,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0919,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0923,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0924,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0928,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0930,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0944,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0946,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x094f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x095d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x023b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0361,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0364,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0817,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0873,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0889,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0893,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a3,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08ac,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0917,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0919,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0923,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0924,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0928,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0930,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0944,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0946,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x094f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x095d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2013-09-04bRagexeRE #if PACKETVER == 20130904 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0838,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0937,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0956,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0838,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0937,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0956,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-09-11aRagexeRE, 2013-09-11bRagexeRE #if PACKETVER == 20130911 - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0868,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0889,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0891,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0948,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0967,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x096a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0868,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0889,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0891,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0948,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0967,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x096a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2013-09-17aRagexeRE #if PACKETVER == 20130917 - packet(0x035f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0811,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0838,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x083c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0863,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0868,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x087a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0895,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x089d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a0,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a8,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0918,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0921,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0923,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0934,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x094c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0959,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x096a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x035f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0811,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0838,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x083c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0863,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0868,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x087a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0895,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x089d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a0,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a8,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0918,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0921,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0923,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0934,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x094c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0959,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x096a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 #endif // 2013-09-25aRagexeRE, 2013-09-25bRagexeRE #if PACKETVER == 20130925 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0875,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0876,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0885,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0887,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0890,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0940,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0969,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0875,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0876,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0885,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0887,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0890,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0940,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0969,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-10-02aRagexeRE #if PACKETVER == 20131002 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-10-08bRagexeRE #if PACKETVER == 20131008 - packet(0x0202,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0362,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x07e4,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x083c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x085e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0863,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0883,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0896,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a9,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0917,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0923,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0927,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0932,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0934,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0936,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0947,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0952,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0956,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0969,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0202,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0362,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x07e4,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x083c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x085e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0863,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0883,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0896,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a9,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0917,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0923,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0927,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0932,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0934,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0936,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0947,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0952,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0956,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0969,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2013-10-16aRagexeRE, 2013-10-16bRagexeRE #if PACKETVER == 20131016 - packet(0x022d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0281,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0361,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0364,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x07ec,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x085d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0863,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0864,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0867,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0870,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0875,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0887,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0888,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0890,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0894,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x091e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0927,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0946,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0962,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0966,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x022d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0281,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0361,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0364,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x07ec,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x085d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0863,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0864,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0867,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0870,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0875,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0887,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0888,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0890,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0894,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x091e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0927,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0946,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0962,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0966,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2013-10-23aRagexeRE #if PACKETVER == 20131023 - packet(0x0366,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0438,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0819,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0835,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0862,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0872,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0876,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0885,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a7,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ab,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ac,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0919,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0923,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0924,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0935,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0937,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0944,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x094a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0951,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0954,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0366,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0438,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0819,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0835,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0872,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0876,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0885,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a7,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ab,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ac,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0919,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0923,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0924,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0935,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0937,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0944,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x094a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0951,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0954,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 #endif // 2013-10-30aRagexeRE #if PACKETVER == 20131030 - packet(0x022d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0887,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a2,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0925,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0887,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0925,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-11-06aRagexeRE #if PACKETVER == 20131106 - packet(0x0281,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0363,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0369,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0436,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0817,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0866,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0867,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0870,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0875,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0887,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0891,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0893,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0894,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a2,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0919,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0935,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0942,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0946,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0947,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0948,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0950,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0954,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0962,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0967,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0281,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0363,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0369,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0436,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0802,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0817,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0866,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0867,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0870,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0875,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0887,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0891,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0893,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0894,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a2,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0919,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0935,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0942,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0946,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0947,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0948,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0950,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0954,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0962,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0967,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 #endif // 2013-11-13aRagexeRE #if PACKETVER == 20131113 - packet(0x0364,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0879,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x088c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x088f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a8,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0920,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0926,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0928,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0929,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x092b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x092f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0934,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0936,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0949,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0950,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x095f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0960,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0964,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0969,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0364,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0879,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x088c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x088f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0920,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0926,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0928,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0929,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x092b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x092f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0934,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0936,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0949,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0950,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x095f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0960,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0964,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0969,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2013-11-20eRagexeRE #if PACKETVER == 20131120 - packet(0x0361,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0368,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0802,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0811,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0817,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x085f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0862,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0884,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a1,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a8,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0917,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0926,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0927,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x092d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0940,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0950,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0953,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0955,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0956,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0361,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0368,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0802,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0811,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0817,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x085f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0862,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0884,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a1,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a8,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0917,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0926,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0927,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x092d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0940,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0950,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0953,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0955,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0956,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2013-11-27aRagexeRE, 2013-11-27bRagexeRE #if PACKETVER == 20131127 - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0365,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0366,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0881,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0884,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0894,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0930,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x093a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x095c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0967,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0365,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0366,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0881,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0884,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0894,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0930,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x093a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x095c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0967,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2013-12-04dRagexeRE, 2013-12-04eRagexeRE #if PACKETVER == 20131204 - packet(0x0365,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0366,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0862,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0869,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0877,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0879,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0882,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a0,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a4,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a7,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08ad,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0928,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x092d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0932,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0951,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0958,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0959,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0961,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0967,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0365,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0366,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0862,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0869,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0877,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0879,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0882,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a0,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a4,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a7,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08ad,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0928,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x092d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0932,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0951,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0958,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0959,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0961,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0967,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 #endif // 2013-12-11cRagexeRE, 2013-12-11eRagexeRE #if PACKETVER == 20131211 - packet(0x0202,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0366,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0865,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0873,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0881,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0886,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0892,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a3,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ab,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x092b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0931,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0366,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0865,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0873,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0881,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0886,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0892,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a3,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ab,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x092b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0931,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-12-18aRagexeRE #if PACKETVER == 20131218 - packet(0x022d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x087b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ab,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0947,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x087b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ab,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0947,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-12-23bRagexeRE, 2013-12-23xRagexeRE #if PACKETVER == 20131223 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2013-12-30aRagexeRE #if PACKETVER == 20131230 - packet(0x022d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x02c4,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x035f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0365,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0369,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0860,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0871,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x087b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0895,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0898,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a9,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x091f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0926,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x092a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x093e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0943,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0949,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0968,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0969,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x096a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x022d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x02c4,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x035f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0365,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0369,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0860,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0871,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x087b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0895,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0898,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a9,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x091f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0926,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x092a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0943,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0949,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0968,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0969,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x096a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2014-01-08bRagexeRE, 2014-01-08cRagexeRE #if PACKETVER == 20140108 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0936,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0936,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-01-15cRagexeRE, 2014-01-15dRagexeRE, 2014-01-15eRagexeRE #if PACKETVER == 20140115 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0367,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0865,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0887,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x089b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a7,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0965,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0966,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0367,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0865,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0887,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x089b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a7,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0965,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0966,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2014-01-22aRagexeRE #if PACKETVER == 20140122 - packet(0x0360,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0811,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0863,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0870,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0871,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0872,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0893,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0899,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a2,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08aa,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0917,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0925,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x092f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0940,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0942,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x094c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0950,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0952,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0955,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0957,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0360,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0811,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0863,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0870,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0871,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0872,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0893,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0899,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08aa,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0917,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0925,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x092f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0940,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0942,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x094c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0950,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0952,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0955,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0957,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2014-01-29bRagexeRE #if PACKETVER == 20140129 - packet(0x0281,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0367,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0802,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0884,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0885,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0889,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0921,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0924,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x092c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0958,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0961,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0367,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0802,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0884,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0885,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0889,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0921,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0924,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x092c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0958,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0961,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-02-05bRagexeRE #if PACKETVER == 20140205 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0938,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0938,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-02-12aRagexeRE #if PACKETVER == 20140212 - packet(0x02c4,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0369,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0438,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0874,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0877,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0878,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0888,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x088c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a0,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a1,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a7,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08ad,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0919,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0928,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0930,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0934,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0936,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0944,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0952,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0953,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0960,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x02c4,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0369,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0438,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0874,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0877,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0878,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0888,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x088c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a0,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a1,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a7,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08ad,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0919,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0928,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0930,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0934,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0936,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0944,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0952,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0953,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0960,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2014-02-19aRagexeRE, 2014-02-19bRagexeRE #if PACKETVER == 20140219 - packet(0x0202,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0360,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0364,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0802,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0838,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x085d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0860,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0868,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0889,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a6,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08aa,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08ac,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0921,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0927,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0939,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0946,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0949,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0953,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x095a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0961,6,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0202,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0360,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0364,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0802,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x085d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0860,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0868,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0889,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a6,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08aa,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08ac,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0921,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0927,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0939,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0946,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0949,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0953,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x095a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0961,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 #endif // 2014-02-26aRagexeRE, 2014-02-26bRagexeRE #if PACKETVER == 20140226 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0362,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0887,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0894,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0895,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0921,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0931,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0941,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0962,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0964,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0362,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0887,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0894,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0895,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0921,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0931,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0941,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0964,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-03-05aRagexeRE, 2014-03-05bRagexeRE #if PACKETVER == 20140305 - packet(0x0202,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x07e4,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0878,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0934,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x07e4,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0878,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0934,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-03-12bRagexeRE #if PACKETVER == 20140312 - packet(0x0202,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x023b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0366,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0889,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x088d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0891,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0894,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x089b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x089e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a6,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a9,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ad,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0948,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x094c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0957,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0202,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x023b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0366,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x086f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0889,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x088d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0891,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0894,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x089b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x089e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a9,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ad,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0948,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x094c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0957,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2014-03-19aRagexeRE #if PACKETVER == 20140319 - packet(0x02c4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07e4,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0802,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0811,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0815,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x085a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0864,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0865,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0866,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0872,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0883,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0890,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0893,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a2,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0923,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0933,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0942,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0944,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0947,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0954,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0955,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0964,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x096a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x02c4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07e4,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0802,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0811,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0815,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x085a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0864,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0865,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0866,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0872,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0883,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0890,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0893,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a2,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0923,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0933,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0942,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0944,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0947,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0954,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0955,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0964,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x096a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2014-03-26cRagexeRE #if PACKETVER == 20140326 - packet(0x0362,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0365,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x07ec,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x083c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0865,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0867,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0869,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0887,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0898,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08aa,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ac,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08ad,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0918,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0928,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0942,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0945,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0946,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0956,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0959,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0969,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0362,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0365,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x07ec,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x083c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0865,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0867,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0869,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0887,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0898,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08aa,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ac,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08ad,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0918,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0928,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0942,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0945,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0946,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0956,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0959,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0969,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2014-04-02eRagexeRE, 2014-04-02fRagexeRE #if PACKETVER == 20140402 - packet(0x023b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0360,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0364,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x085b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x085d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0867,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0868,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0882,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0883,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0890,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0896,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ac,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0920,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0926,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0933,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x093f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0944,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0946,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x094c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0950,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x023b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0360,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0364,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x085b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x085d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0867,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0868,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0882,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0883,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0890,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0896,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ac,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0920,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0926,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0933,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x093f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0944,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0946,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x094c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0950,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2014-04-09aRagexeRE #if PACKETVER == 20140409 - packet(0x0819,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x085b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0868,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0873,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0875,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x087e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0883,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0884,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0893,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0896,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a2,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a6,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08a7,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a9,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0918,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x092e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0942,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0947,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x095e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0819,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x085b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0868,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0873,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0875,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x087e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0883,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0884,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0893,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0896,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a6,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08a7,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a9,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0918,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x092e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0942,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0947,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x095e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2014-04-16aRagexeRE #if PACKETVER == 20140416 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-04-23aRagexeRE #if PACKETVER == 20140423 - packet(0x022d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0436,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0811,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x083c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x085a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0863,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0866,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x086f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0873,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0890,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0895,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0896,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a8,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ad,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x091a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0920,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x022d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0436,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0811,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x083c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x085a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0863,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0866,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x086f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0873,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0890,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0895,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0896,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a8,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ad,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x091a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0920,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2014-04-30aRagexeRE #if PACKETVER == 20140430 - packet(0x023b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x035f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0860,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0870,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0871,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0875,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0884,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0899,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a1,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0940,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0953,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0956,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x023b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x035f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0860,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0870,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0871,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0875,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0884,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0899,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a1,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0940,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0953,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0956,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 #endif // 2014-05-08bRagexeRE #if PACKETVER == 20140508 - packet(0x022d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x02c4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0366,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0368,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0802,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0861,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x089b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0927,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0930,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0932,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0934,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x094e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x022d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x02c4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0366,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0368,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0802,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0861,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x089b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0927,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0930,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0932,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0934,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x094e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2014-05-14bRagexeRE, 2014-05-14cRagexeRE #if PACKETVER == 20140514 - packet(0x0437,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0817,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0865,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0867,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0868,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0876,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0877,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0885,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0886,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0895,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a5,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0918,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0921,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0925,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0958,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0962,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0965,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x096a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0437,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0817,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0865,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0867,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0868,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0876,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0877,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0885,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0886,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0895,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a5,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0918,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0921,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0925,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0958,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0962,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0965,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x096a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2014-05-21aRagexeRE #if PACKETVER == 20140521 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x089c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ac,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0968,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x089c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ac,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0968,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-05-28aRagexeRE #if PACKETVER == 20140528 - packet(0x0202,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0360,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x085f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0862,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0872,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0875,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0877,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0879,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x088f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0894,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0896,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a8,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0929,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0930,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0938,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x093f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0963,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0964,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0966,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0202,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0360,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x085f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0862,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0872,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0875,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0877,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0879,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x088f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0894,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0896,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a8,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0929,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0930,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0938,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x093f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x094b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0963,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0964,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0966,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 #endif // 2014-06-05aRagexeRE #if PACKETVER == 20140605 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0369,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0921,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0931,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0369,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0921,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0931,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-06-11bRagexeRE #if PACKETVER == 20140611 - packet(0x0364,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0438,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x07e4,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0838,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0864,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0867,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x086c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0874,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0878,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0891,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0893,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0894,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a1,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a2,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0924,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0936,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0941,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0950,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0951,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0952,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0957,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0958,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0963,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0965,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0969,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0364,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0438,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x07e4,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0838,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0864,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0867,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0874,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0878,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0891,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0893,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0894,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a1,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0924,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0936,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0941,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0950,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0951,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0952,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0957,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0958,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0963,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0965,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0969,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2014-06-18cRagexeRE #if PACKETVER == 20140618 - packet(0x085d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0860,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0861,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0878,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0884,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0885,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0886,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0890,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0892,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a6,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a7,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08ac,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0917,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x091f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0929,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0935,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0938,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0939,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0945,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0957,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0962,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0967,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x085d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0860,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0861,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0878,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0884,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0885,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0886,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0890,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0892,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a7,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08ac,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0917,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x091f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0929,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0935,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0938,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0939,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0945,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0957,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0967,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 #endif // 2014-06-25aRagexeRE #if PACKETVER == 20140625 - packet(0x0202,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x023b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0815,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0817,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0861,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0875,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0885,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0886,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0888,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x088a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0897,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a1,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a2,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0923,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0928,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0940,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0946,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0959,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0960,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0968,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0969,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x023b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0815,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0817,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0861,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0875,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0885,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0886,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0888,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x088a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0897,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a1,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a2,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0923,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0928,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0940,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0946,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0959,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0960,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0968,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0969,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-07-02aRagexeRE #if PACKETVER == 20140702 - packet(0x022d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x023b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0438,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x07e4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0835,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x086c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0887,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0892,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0895,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a0,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a2,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0925,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0933,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0940,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x023b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0438,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x07e4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0835,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x086c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0887,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0892,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a0,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a2,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0925,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0933,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0940,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-07-09aRagexeRE #if PACKETVER == 20140709 - packet(0x0364,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0860,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0866,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0869,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0875,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0877,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0879,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x087a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0887,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0888,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0894,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0897,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0898,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08ad,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0925,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x092f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0931,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0934,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0939,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x093f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0940,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0961,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0364,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0860,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0866,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0869,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0875,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0877,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0879,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x087a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0887,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0888,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0894,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0897,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0898,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08ad,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0925,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x092f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0931,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0934,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0939,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x093f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0940,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0961,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2014-07-16aRagexeRE #if PACKETVER == 20140716 - packet(0x0362,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0811,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0868,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0871,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0881,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x088d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0896,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a2,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a4,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08ac,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0918,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0926,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x092c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0938,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0947,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0952,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0959,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0362,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0811,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0868,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0871,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0881,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x088d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0896,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a4,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08ac,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0918,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0926,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x092c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0938,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0947,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0952,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0959,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 #endif // 2014-07-23aRagexeRE, 2014-07-23bRagexeRE #if PACKETVER == 20140723 - packet(0x02c4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0436,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0819,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0838,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0869,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x087d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0888,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0891,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0896,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0898,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a2,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08ad,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0927,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0934,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0935,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0939,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x093d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0945,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0947,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0948,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0960,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x02c4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0436,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0819,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0838,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0869,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x087d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0888,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0891,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0896,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0898,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a2,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08ad,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0927,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0934,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0935,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0939,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x093d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0945,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0947,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0948,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0960,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2014-07-30bRagexeRE #if PACKETVER == 20140730 - packet(0x022d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0364,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0366,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0367,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0437,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x07ec,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0802,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0815,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0817,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x087d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x087f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0889,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0892,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a0,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a6,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a7,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a9,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08ad,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0924,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0934,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0940,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0946,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x022d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0364,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0366,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0367,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0437,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0815,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0817,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x087d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x087f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0889,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0892,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a0,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a7,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a9,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08ad,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0924,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0934,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0940,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0946,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 #endif // 2014-08-06aRagexeRE #if PACKETVER == 20140806 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0948,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0948,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-08-13aRagexeRE #if PACKETVER == 20140813 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0802,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0868,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0878,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0882,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0895,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0897,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0899,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a3,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a7,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0967,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0802,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0868,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0878,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0882,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0895,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0897,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0899,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a3,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a7,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0967,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-08-20aRagexeRE #if PACKETVER == 20140820 - packet(0x035f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0835,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0861,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0864,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0869,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0872,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0876,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0891,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0899,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089a,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a3,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a7,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0936,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0937,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x093a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0951,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0952,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0956,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0958,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x035f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0835,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0861,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0864,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0869,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0872,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0876,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0891,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0899,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089a,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a3,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a7,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0936,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0937,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x093a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x094a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0951,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0952,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0956,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0958,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2014-08-27aRagexeRE #if PACKETVER == 20140827 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0943,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0943,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-09-03aRagexeRE #if PACKETVER == 20140903 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0931,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0941,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0943,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0945,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0931,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0941,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0943,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0945,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-09-17cRagexeRE #if PACKETVER == 20140917 - packet(0x022d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0364,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0365,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0367,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0838,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0864,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0889,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0895,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0897,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0898,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a8,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0919,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x091e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x092a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0930,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0949,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0951,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0956,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0957,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x095c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x095e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0966,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x022d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0364,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0365,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0367,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0838,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0864,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0889,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0895,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0897,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0898,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a8,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0919,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x091e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x092a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0930,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0949,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0951,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0956,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0957,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x095c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x095e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0966,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2014-09-24bRagexeRE, 2014-09-24cRagexeRE #if PACKETVER == 20140924 - packet(0x0366,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0367,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0815,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0864,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0865,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0867,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x086b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0886,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0894,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0898,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a5,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a7,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0918,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0925,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0926,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0928,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0934,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0949,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0952,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0366,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0367,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0815,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0864,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0865,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0867,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x086b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0886,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0894,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0898,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a5,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a7,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0918,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0925,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0926,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0928,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0934,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0949,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0952,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 #endif // 2014-10-01bRagexeRE, 2014-10-01cRagexeRE #if PACKETVER == 20141001 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0365,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0885,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ad,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0937,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0939,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0952,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0365,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0885,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ad,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0937,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0939,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0952,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 #endif // 2014-10-08bRagexeRE, 2014-10-08cRagexeRE #if PACKETVER == 20141008 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0942,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0942,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-10-15bRagexeRE, 2014-10-16aRagexeRE #if PACKETVER == 20141015 || \ PACKETVER == 20141016 - packet(0x022d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0922,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0936,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0967,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0922,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0936,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0967,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-10-22aRagexeRE #if PACKETVER == 20141022 - packet(0x023b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0878,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0896,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0899,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08aa,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08ab,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ad,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x094e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0955,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0878,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0896,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0899,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08aa,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08ab,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ad,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x094e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0955,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-10-29aRagexeRE #if PACKETVER == 20141029 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-11-05aRagexeRE, 2014-11-05bRagexeRE #if PACKETVER == 20141105 - packet(0x022d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x035f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0360,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x085c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0863,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0864,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0865,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0871,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0874,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0875,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0877,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0879,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0887,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0892,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0898,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a0,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a7,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0944,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0948,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0950,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0957,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x095f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0968,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x022d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x035f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0360,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x085c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0863,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0864,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0865,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0871,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0874,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0875,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0877,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0879,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0887,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0892,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0898,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a0,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a7,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0944,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0948,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0950,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0957,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x095f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0968,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2014-11-12aRagexeRE #if PACKETVER == 20141112 - packet(0x0362,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0438,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x07e4,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0835,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0838,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0863,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0871,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0885,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0886,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0887,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08a0,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a1,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08ab,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0919,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0926,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0929,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0943,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0955,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0960,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0962,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0362,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0438,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x07e4,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0835,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0863,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0871,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0885,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0886,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0887,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08a0,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a1,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08ab,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0919,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0926,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0929,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0943,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0955,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0960,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0962,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2014-11-19bRagexeRE #if PACKETVER == 20141119 - packet(0x0202,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0861,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0865,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0866,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0872,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0873,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0875,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x087c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0887,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0888,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0895,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a8,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0918,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0920,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0921,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0933,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0938,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0940,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0942,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0948,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x094c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0963,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0202,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0861,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0865,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0866,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0872,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0873,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0875,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x087c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0887,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0888,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0895,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a8,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0918,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0920,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0921,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0933,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0938,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0940,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0942,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0948,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x094c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0963,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2014-11-26aRagexeRE, 2014-11-26bRagexeRE, 2014-11-26cRagexeRE, 2014-11-26dRagexeRE, 2014-11-26eRagexeRE #if PACKETVER == 20141126 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0367,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0871,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0884,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0896,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ad,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0920,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0942,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0367,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0871,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0896,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ad,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0920,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0942,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-12-03aRagexeRE #if PACKETVER == 20141203 - packet(0x0202,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0281,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0362,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0367,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0368,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0802,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0861,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x086e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0880,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0889,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0898,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a5,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08aa,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0917,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0928,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x092a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0936,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0957,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0962,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0202,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0281,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0362,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0367,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0368,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0802,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0861,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x086e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0880,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0889,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0898,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a5,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08aa,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0917,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0928,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x092a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0936,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0957,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0962,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2014-12-10cRagexeRE #if PACKETVER == 20141210 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0885,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08ac,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0917,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0927,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x092b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0947,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0954,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0955,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0958,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0961,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0963,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0967,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0885,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08ac,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0917,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0927,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x092b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0947,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0954,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0955,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0958,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0961,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0963,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0967,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2014-12-17aRagexeRE #if PACKETVER == 20141217 - packet(0x0360,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0860,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0875,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0878,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0879,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0883,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0889,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x088e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a1,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a2,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a8,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08ab,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08ac,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0919,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0924,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0930,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0932,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0933,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0936,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0939,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0940,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0944,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0945,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0948,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0960,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x0360,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0860,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0875,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0878,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0879,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0883,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0889,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x088e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a1,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a2,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a8,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08ab,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08ac,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0919,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0924,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0930,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0932,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0933,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0936,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0939,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0940,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0944,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0945,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0948,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0960,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2014-12-23cRagexeRE #if PACKETVER == 20141223 - packet(0x0361,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0438,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0835,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x085a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0865,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0870,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x089b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a3,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a8,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08ac,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0930,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0932,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0945,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0946,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0949,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x094f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0950,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0953,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0956,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0361,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0438,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0835,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x085a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0865,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0870,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x089b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a3,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a8,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08ac,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0930,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0932,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0945,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0946,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0949,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x094f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0950,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0953,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0956,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2014-12-31aRagexeRE #if PACKETVER == 20141231 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-01-07aRagexeRE #if PACKETVER == 20150107 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0895,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0943,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0947,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0895,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0943,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0947,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-01-14aRagexeRE #if PACKETVER == 20150114 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0868,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0899,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0946,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0955,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0957,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0868,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0899,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0946,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0955,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0957,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-01-21aRagexeRE, 2015-01-21bRagexeRE #if PACKETVER == 20150121 - packet(0x0281,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ab,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0918,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0919,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0955,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0959,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0963,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0967,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ab,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0918,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0919,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0955,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0959,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0963,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0967,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-01-28aRagexeRE #if PACKETVER == 20150128 - packet(0x0202,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x023b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0368,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0838,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0864,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0870,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0874,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0875,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x087d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0888,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ab,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0929,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0938,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0944,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0963,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0968,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x0202,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x023b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0368,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0838,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0864,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0870,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0874,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0875,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x087d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0888,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ab,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0929,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0938,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0944,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0963,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0968,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2015-02-04cRagexeRE #if PACKETVER == 20150204 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0966,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0966,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-02-11aRagexeRE #if PACKETVER == 20150211 - packet(0x023b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0368,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0369,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0436,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0437,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x07e4,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0817,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0819,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0835,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0862,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0863,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0873,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x087f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0882,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0883,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0885,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0886,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x089c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a0,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08aa,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0919,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0920,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0944,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0951,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0957,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0958,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x023b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0368,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0369,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0436,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0437,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x07e4,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0817,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0819,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0835,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0862,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0863,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0873,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x087f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0882,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0883,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0885,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0886,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x089c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a0,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08aa,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0919,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0920,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0944,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0951,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0957,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0958,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2015-02-17aRagexeRE #if PACKETVER == 20150217 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-02-25aRagexeRE, 2015-02-25bRagexeRE, 2015-02-25cRagexeRE, 2015-02-25dRagexeRE, 2015-02-25eRagexeRE, 2015-02-26aRagexeRE #if PACKETVER == 20150225 || \ PACKETVER == 20150226 - packet(0x02c4,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0362,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0896,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0940,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0946,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0948,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0952,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0955,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x02c4,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0362,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0896,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0940,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0946,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0948,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0952,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0955,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2015-03-04aRagexeRE, 2015-03-04bRagexeRE #if PACKETVER == 20150304 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x086d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0879,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0892,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0947,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0960,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0961,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x086d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0879,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0892,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0947,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0960,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0961,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-03-11aRagexeRE, 2015-03-11bRagexeRE #if PACKETVER == 20150311 - packet(0x023b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0360,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0436,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0438,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0838,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x087b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0883,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0886,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0888,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0896,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a1,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a3,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a5,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a6,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0928,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x092e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0943,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0946,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0957,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0958,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x095b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0963,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0964,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x023b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0360,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0436,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0438,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0838,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x087b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0883,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0886,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0888,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0896,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a1,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a3,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a5,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a6,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0928,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x092e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0943,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0946,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0957,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0958,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x095b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0963,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0964,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2015-03-18aRagexeRE, 2015-03-18bRagexeRE, 2015-03-18cRagexeRE #if PACKETVER == 20150318 - packet(0x0202,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x023b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0281,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0367,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x07e4,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0802,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0862,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0863,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0873,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0885,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0889,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x088c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x089c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a4,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x091d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0920,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0927,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0928,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0936,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0937,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0938,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0951,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0958,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0959,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0960,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0202,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x023b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0281,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x07e4,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0802,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0862,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0863,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0873,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0885,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0889,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x088c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x089c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a4,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x091d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0920,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0927,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0928,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0936,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0937,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0938,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0951,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0958,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0959,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0960,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2015-03-25bRagexeRE, 2015-03-25cRagexeRE #if PACKETVER == 20150325 - packet(0x0202,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0363,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0365,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0438,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0819,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0883,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0885,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0891,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0893,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0897,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0899,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a1,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a7,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0919,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0931,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0932,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0938,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0947,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0950,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0954,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0969,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY + packet(0x0202,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0363,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0365,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0438,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0819,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0883,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0885,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0891,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0893,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0897,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0899,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a1,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a7,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0919,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0931,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0932,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0938,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0947,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0950,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0954,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0969,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 #endif // 2015-04-01bRagexeRE #if PACKETVER == 20150401 - packet(0x0362,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0367,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0437,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x083c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0875,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0895,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0898,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a5,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0922,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0924,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0938,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0939,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x093b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x093e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0946,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0949,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0953,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0964,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0362,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0367,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0437,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x083c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0875,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0895,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0898,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a5,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0922,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0924,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0938,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0939,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x093b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x093e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0946,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0949,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0953,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0964,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2015-04-08aRagexeRE #if PACKETVER == 20150408 - packet(0x0819,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x085a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0865,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0868,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x086b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x086e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0878,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x087f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0888,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0889,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0891,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0898,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a2,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a4,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0922,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0946,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0957,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0959,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0963,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0819,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x085a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0865,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0868,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x086b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x086e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0878,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x087f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0888,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0889,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0891,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0898,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a2,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a4,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0922,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0946,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0957,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0959,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0963,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2015-04-15aRagexeRE #if PACKETVER == 20150415 - packet(0x0361,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0364,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0366,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0368,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0802,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0817,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0835,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0863,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0867,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0868,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0869,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0880,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0891,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0898,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a0,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0922,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x093c,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0941,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0946,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0953,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0960,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0361,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0364,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0366,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0368,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0802,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0817,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0835,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0863,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0867,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0868,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0869,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0880,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0891,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0898,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a0,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0922,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x093c,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0941,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0946,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0953,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0960,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2015-04-22aRagexeRE #if PACKETVER == 20150422 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0955,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0955,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-04-29aRagexeRE #if PACKETVER == 20150429 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0886,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0894,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0899,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x089f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a6,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a8,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ad,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0943,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0886,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0894,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0899,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x089f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a8,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ad,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0943,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-05-07bRagexeRE #if PACKETVER == 20150507 - packet(0x023b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0864,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0887,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0889,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0924,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x093b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0941,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0942,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0953,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0955,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0958,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0864,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0887,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0889,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0924,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x093b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0941,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0942,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0953,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0955,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0958,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-05-13aRagexeRE #if PACKETVER == 20150513 - packet(0x022d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x02c4,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0864,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0883,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a8,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0923,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0924,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0927,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0960,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x02c4,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0864,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0883,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a8,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0923,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0924,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0927,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0960,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-05-20aRagexeRE #if PACKETVER == 20150520 - packet(0x0202,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0361,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0865,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0868,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0880,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0882,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a2,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08ad,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0924,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0931,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0936,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x093d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0940,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0945,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0960,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0961,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x0202,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0865,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0868,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0880,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0882,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a2,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08ad,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0924,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0931,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0936,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x093d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0940,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0945,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0960,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0961,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2015-05-27aRagexeRE #if PACKETVER == 20150527 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x083c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0940,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x083c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0940,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-06-03bRagexeRE #if PACKETVER == 20150603 - packet(0x0361,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0437,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0811,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0819,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0860,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0864,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0867,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0873,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0877,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0881,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0884,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0897,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x089d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a1,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ad,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0922,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0956,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0960,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0969,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x096a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x0361,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0437,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0811,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0819,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0860,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0864,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0867,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0873,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0877,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0881,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0897,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x089d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a1,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ad,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0922,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0956,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0960,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0969,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x096a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 #endif // 2015-06-10aRagexeRE #if PACKETVER == 20150610 - packet(0x022d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0438,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x07e4,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0870,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0872,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0877,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0884,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0885,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0888,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x088d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0897,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a0,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08ac,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0925,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x092c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x092e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0932,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0940,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0946,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0949,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0957,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x095d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0964,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x022d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0438,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07e4,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0870,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0872,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0877,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0884,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0885,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0888,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x088d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0897,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a0,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08ac,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0925,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x092c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0932,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0940,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0946,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0949,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0957,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x095d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0964,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2015-06-17aRagexeRE, 2015-06-18aRagexeRE #if PACKETVER == 20150617 || \ PACKETVER == 20150618 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0365,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0811,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x086a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0870,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0886,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0894,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0362,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0365,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0811,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x086a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0870,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0886,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0894,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-06-24aRagexeRE #if PACKETVER == 20150624 - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0365,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0940,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0941,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0966,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0365,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0940,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0941,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0966,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-07-01bRagexeRE #if PACKETVER == 20150701 - packet(0x023b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x07e4,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0802,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x087d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x087e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0883,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0893,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a0,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a4,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a5,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a6,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08ad,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0919,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0923,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0928,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0946,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0954,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0956,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0958,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x095f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0960,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0968,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x023b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x07e4,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0802,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x087d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x087e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0883,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0893,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a0,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a4,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a5,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a6,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08ad,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0919,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0923,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0928,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0946,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0954,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0956,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0958,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x095f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0960,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0968,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2015-07-08bRagexeRE, 2015-07-08cRagexeRE, 2015-07-08dRagexeRE #if PACKETVER == 20150708 - packet(0x022d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x02c4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0368,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0872,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0884,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x089d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a5,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ad,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x092a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0962,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x02c4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0368,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0872,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0884,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x089d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a5,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ad,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x092a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-07-15aRagexeRE #if PACKETVER == 20150715 - packet(0x023b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0362,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0364,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0436,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0437,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0438,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0835,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x083c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0873,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0879,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x087c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x087f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0886,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0895,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0896,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0897,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0899,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x089a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a4,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08ac,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0917,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0944,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0950,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0956,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0961,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0965,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x023b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0362,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0364,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0436,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0437,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0438,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0835,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x083c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0873,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0879,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x087c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x087f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0886,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0895,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0896,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0897,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0899,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x089a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08ac,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0917,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0944,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0950,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0956,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0961,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0965,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2015-07-22bRagexeRE #if PACKETVER == 20150722 - packet(0x023b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0281,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0360,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0361,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0368,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0436,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0811,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0815,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0817,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0869,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0878,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x087d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0880,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0884,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0899,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a8,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0919,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0921,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0925,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x092e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x093d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x094c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0951,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0958,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x023b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0281,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0360,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0361,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0368,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0436,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0811,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0815,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0869,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0878,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x087d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0880,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0884,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0899,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a8,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0919,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0921,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0925,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x092e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x093d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x094c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0951,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0958,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2015-07-29aRagexeRE #if PACKETVER == 20150729 - packet(0x0437,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0438,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x085b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0860,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0870,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0880,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0881,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0886,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a3,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ac,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08ad,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0920,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x092f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x093a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0955,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0961,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0437,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0438,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x085b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0860,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0870,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0880,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0881,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0886,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a3,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ac,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08ad,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0920,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x092f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x093a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0955,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0961,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2015-08-05dRagexeRE #if PACKETVER == 20150805 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-08-12aRagexeRE #if PACKETVER == 20150812 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-08-19aRagexeRE, 2015-08-19bRagexeRE #if PACKETVER == 20150819 - packet(0x0202,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x022d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0281,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x085d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0862,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0865,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0871,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0888,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0919,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0927,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0961,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0967,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x022d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0281,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x085d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0865,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0871,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0888,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0919,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0927,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0961,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0967,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-08-26aRagexeRE, 2015-08-26bRagexeRE #if PACKETVER == 20150826 - packet(0x0362,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0436,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x07ec,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0819,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0861,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0865,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0870,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x087b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x088b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0890,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0891,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a0,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a1,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a8,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0924,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0928,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x092e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0945,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0951,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0959,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0964,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0968,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0969,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0362,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0436,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x07ec,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0819,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0861,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0865,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0870,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x087b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x088b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0890,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0891,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a0,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a1,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a8,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0924,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0928,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x092e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0945,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0951,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0959,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0964,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0968,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0969,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2015-09-02aRagexeRE #if PACKETVER == 20150902 - packet(0x023b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0360,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0367,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0802,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x083c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0863,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0886,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0887,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0889,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x088d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0892,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0897,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0899,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a9,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0923,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0928,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0941,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0947,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x094f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0953,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0960,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x023b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0360,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0367,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0802,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x083c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0863,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0886,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0887,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0889,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x088d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0892,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0897,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0899,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a9,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0923,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0928,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0941,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0947,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x094f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0953,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0960,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2015-09-09aRagexeRE #if PACKETVER == 20150909 - packet(0x023b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0361,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0365,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0437,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0861,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0871,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0883,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0886,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0895,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0928,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0940,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0941,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0962,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x023b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0361,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0365,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0437,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0861,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0871,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0883,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0886,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0895,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0928,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0940,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0941,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0962,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2015-09-16cRagexeRE #if PACKETVER == 20150916 - packet(0x022d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0817,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0835,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0869,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0873,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0877,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x087f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0881,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ac,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0920,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0924,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x092e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x092f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0934,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0936,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0938,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0942,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0948,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0960,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0961,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0969,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x022d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0817,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0835,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0869,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0873,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0877,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x087f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0881,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ac,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0920,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0924,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x092e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x092f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0934,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0936,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0938,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0942,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0948,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0960,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0961,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0969,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2015-09-23bRagexeRE, 2015-09-23eRagexeRE, 2015-09-23fRagexeRE #if PACKETVER == 20150923 - packet(0x0361,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0817,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x085c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x085d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0864,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0879,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0886,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x088e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0892,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0895,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a0,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a2,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a6,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x092b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0930,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0936,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0951,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0961,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0361,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0817,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x085c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x085d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0864,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0879,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0886,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x088e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0892,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a0,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a2,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a6,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x092b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0930,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0936,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0951,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0961,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 #endif // 2015-10-01bRagexeRE #if PACKETVER == 20151001 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0960,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0960,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-10-07aRagexeRE #if PACKETVER == 20151007 - packet(0x0202,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0961,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0967,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0961,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0967,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-10-14bRagexeRE #if PACKETVER == 20151014 - packet(0x0202,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0817,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0838,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0860,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0863,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0867,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0872,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0874,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0881,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0883,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0884,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0889,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x088e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x089f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08aa,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x091d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0930,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0934,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0944,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x094f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0956,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0961,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0964,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER + packet(0x0202,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0817,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0838,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0860,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0863,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0867,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0872,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0874,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0881,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0883,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0884,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0889,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x088e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x089f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08aa,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x091d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0930,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0934,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0944,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x094f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0956,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0961,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0964,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 #endif // 2015-10-21aRagexeRE, 2015-10-22aRagexeRE #if PACKETVER == 20151021 || \ PACKETVER == 20151022 - packet(0x023b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x02c4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x02c4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-10-28bRagexeRE, 2015-10-28bRagexeRE_2, 2015-10-28cRagexeRE, 2015-10-28dRagexeRE, 2015-10-29aRagexeRE #if PACKETVER == 20151028 || \ PACKETVER == 20151029 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0860,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0860,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-11-04aRagexeRE #if PACKETVER == 20151104 - packet(0x023b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0360,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0363,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0437,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0811,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0815,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0886,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0887,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x088d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a3,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a5,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0928,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0939,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093a,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x0940,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x0964,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x023b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0360,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0363,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0437,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0811,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0815,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0886,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0887,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x088d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a3,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a5,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0928,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0939,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093a,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0940,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0964,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2015-11-11aRagexeRE #if PACKETVER == 20151111 - packet(0x02c4,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x0862,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0871,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0885,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0942,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0958,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0966,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0967,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0969,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x02c4,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0862,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0871,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0885,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0942,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0958,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0966,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0967,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0969,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-11-18aRagexeRE #if PACKETVER == 20151118 - packet(0x022d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x035f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x088b,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x08ab,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0921,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0925,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0943,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0946,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x0957,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095c,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x035f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x088b,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08ab,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0921,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0925,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0943,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0946,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0957,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095c,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-11-25bRagexeRE, 2015-11-25cRagexeRE, 2015-11-25dRagexeRE #if PACKETVER == 20151125 - packet(0x0361,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0365,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0366,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0368,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x0438,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0802,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0838,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0863,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0883,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0884,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x0885,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088c,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a9,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08ad,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0920,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0939,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0951,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0956,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0957,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0959,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x0361,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0365,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0366,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0368,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0438,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0802,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0838,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0863,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0883,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0884,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088c,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a9,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08ad,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0920,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0939,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0951,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0956,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0957,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0959,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2015-12-02bRagexeRE #if PACKETVER == 20151202 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2015-12-09aRagexeRE #if PACKETVER == 20151209 - packet(0x0365,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x07e4,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x07ec,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0811,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0819,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085b,36,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD - packet(0x085d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0861,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0866,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0894,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a1,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0920,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0930,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0932,-1,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES - packet(0x093b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0948,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094a,18,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0956,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0961,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0964,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS + packet(0x0365,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x07e4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x07ec,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0811,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0819,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085b,clif->pStoragePassword,2,4,20); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x085d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0861,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0866,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0894,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a1,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0920,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0930,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0932,clif->pItemListWindowSelected,2,4,8,12); // CZ_ITEMLISTWIN_RES // -1 + packet(0x093b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0948,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094a,clif->pPartyBookingRegisterReq,2,4,6); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0956,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0961,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0964,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 #endif // 2015-12-16aRagexeRE #if PACKETVER == 20151216 - packet(0x022d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0361,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0364,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0436,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0864,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0865,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0870,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0874,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0885,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a2,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a9,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0944,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0947,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0949,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0954,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0960,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0966,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0968,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x022d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0361,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0364,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0436,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0864,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0865,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0870,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0874,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0885,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a2,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a9,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0944,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0947,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0949,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0954,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0960,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0966,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0968,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2015-12-23bRagexeRE #if PACKETVER == 20151223 - packet(0x02c4,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0362,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0802,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0815,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0864,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0866,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0872,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0875,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0876,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0881,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0884,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0886,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08aa,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0918,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x091b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0920,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0923,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0924,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x095e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0965,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0967,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x02c4,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0362,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0802,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0815,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0864,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0866,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0872,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0875,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0876,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0881,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0884,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0886,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08aa,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0918,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x091b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0920,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0923,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0924,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x095e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0965,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0967,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2015-12-30aRagexeRE #if PACKETVER == 20151230 - packet(0x02c4,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x07ec,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0861,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0869,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0886,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x088e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0897,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0923,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0949,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x02c4,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x07ec,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0861,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0869,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0886,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x088e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0897,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0923,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0949,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-01-06aRagexeRE #if PACKETVER == 20160106 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0861,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x086c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0878,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x087a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x087f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0885,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0889,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0891,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a0,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0940,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0861,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0878,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x087a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x087f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0885,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0889,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0891,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a0,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0940,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-01-13aRagexeRE, 2016-01-13bRagexeRE, 2016-01-13bRagexeRE_2, 2016-01-13cRagexeRE #if PACKETVER == 20160113 - packet(0x022d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x023b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0815,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x085b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0864,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0873,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0888,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0892,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0893,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a0,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a6,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08aa,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0919,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0924,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0930,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0932,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x093c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0941,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0967,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x022d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x023b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x035f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0815,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x085b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0864,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x086d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0873,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0888,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0892,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0893,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a0,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a6,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08aa,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0919,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0924,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0930,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0932,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x093c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0941,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0967,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2016-01-20aRagexeRE #if PACKETVER == 20160120 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0865,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0865,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-01-27aRagexeRE, 2016-01-27aRagexeRE_2, 2016-01-27bRagexeRE #if PACKETVER == 20160127 - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0922,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0961,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0922,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0961,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-02-03aRagexeRE #if PACKETVER == 20160203 - packet(0x0202,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0437,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0811,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0835,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0872,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0873,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0918,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0940,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0947,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0954,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0437,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0811,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0835,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0872,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0873,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0918,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0940,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0947,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0954,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-02-11aRagexeRE #if PACKETVER == 20160211 - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0870,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0886,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0870,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0886,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-02-17aRagexeRE, 2016-02-17bRagexeRE, 2016-02-17bRagexeRE_2, 2016-02-17cRagexeRE #if PACKETVER == 20160217 - packet(0x0202,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x023b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0362,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0365,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0864,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0870,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0873,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x087a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0888,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x088f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0899,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a0,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a9,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08ac,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ad,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x091d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0920,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0926,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x093e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0941,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0966,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0967,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0969,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0202,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x023b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0362,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0365,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0864,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0870,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0873,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x087a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0888,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x088f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0899,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a0,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a9,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08ac,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ad,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x091d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0920,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0926,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x093e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0941,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0966,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0967,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0969,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2016-02-24aRagexeRE, 2016-02-24bRagexeRE #if PACKETVER == 20160224 - packet(0x022d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0364,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0436,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0861,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0884,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0885,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0888,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a9,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0920,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0929,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0936,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0938,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0961,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0364,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0436,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0861,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0884,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0885,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0888,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a9,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0920,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0929,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0936,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0938,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0961,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-03-02bRagexeRE #if PACKETVER == 20160302 - packet(0x022d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0367,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0802,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0819,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0864,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0865,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0867,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0868,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0873,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0883,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a6,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a9,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0927,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0945,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094e,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0950,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0960,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0967,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0968,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x022d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0367,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0802,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0819,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0864,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0865,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0867,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0868,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0873,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0883,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a6,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a9,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0927,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0945,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094e,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0950,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0960,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0967,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0968,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2016-03-09aRagexeRE #if PACKETVER == 20160309 - packet(0x023b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0281,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0819,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0838,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x083c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x085a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0866,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0873,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x087e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a7,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0920,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0922,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0929,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092a,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0932,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0956,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x095e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x096a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x023b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0281,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0819,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0838,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x083c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x085a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0866,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0873,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x087e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a7,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0920,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0922,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0929,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092a,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0932,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0956,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x095e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x096a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2016-03-16aRagexeRE #if PACKETVER == 20160316 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0922,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0922,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-03-23aRagexeRE, 2016-03-23bRagexeRE #if PACKETVER == 20160323 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0869,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0872,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0878,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0883,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0896,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x091b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0926,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0927,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0933,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0869,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0872,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0878,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0883,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0896,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x091b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0926,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0927,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0933,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-03-30aRagexeRE #if PACKETVER == 20160330 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0365,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0878,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0889,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0918,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0925,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x092c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0930,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0939,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x093b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0365,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0878,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0889,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0918,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0925,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x092c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0930,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0939,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x093b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-04-06aRagexeRE #if PACKETVER == 20160406 - packet(0x0364,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x07e4,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0869,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0877,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0878,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0879,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0884,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0892,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0895,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0898,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a1,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a9,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ac,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0927,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0933,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0934,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0949,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0953,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0962,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x0364,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x07e4,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0869,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0877,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0878,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0879,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0884,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0892,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0895,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0898,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a1,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a9,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ac,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0927,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0933,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0934,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0949,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0953,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2016-04-14aRagexeRE, 2016-04-14bRagexeRE #if PACKETVER == 20160414 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0363,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0880,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0918,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0922,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0927,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0931,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0934,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0945,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0953,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0363,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0880,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0918,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0922,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0927,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0931,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0934,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0945,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0953,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-04-20aRagexeRE #if PACKETVER == 20160420 - packet(0x022d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x02c4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x035f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0864,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0870,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0872,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0874,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0888,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a5,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0935,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x094e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x02c4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x035f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0864,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0870,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0872,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0874,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0888,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a5,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0935,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x094e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-04-27aRagexeRE #if PACKETVER == 20160427 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0835,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0835,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-05-04aRagexeRE #if PACKETVER == 20160504 - packet(0x0202,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0363,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0365,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x083c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x087f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0884,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0887,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0890,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0893,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0898,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08ad,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0918,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0921,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0922,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0924,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0940,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0941,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0948,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0952,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0969,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0202,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0363,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0365,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x083c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x087f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0884,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0887,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0890,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0893,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0898,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08ad,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0918,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0921,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0922,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0924,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0940,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0941,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0948,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0952,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0969,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2016-05-11aRagexeRE, 2016-05-11bRagexeRE #if PACKETVER == 20160511 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0894,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0918,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0920,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0894,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0918,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0920,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-05-18aRagexeRE #if PACKETVER == 20160518 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0874,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a9,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0928,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0874,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a9,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0928,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-05-25aRagexeRE #if PACKETVER == 20160525 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0867,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0899,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x092c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0937,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0945,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0951,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0956,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0867,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0899,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x092c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0937,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0945,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0951,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0956,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-06-01aRagexeRE #if PACKETVER == 20160601 - packet(0x0202,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x02c4,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0863,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0870,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x088f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0895,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a7,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ac,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0924,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0961,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x02c4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0863,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0870,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x088f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0895,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a7,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ac,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0924,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0961,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-06-08aRagexeRE, 2016-06-08bRagexeRE #if PACKETVER == 20160608 - packet(0x022d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x02c4,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x035f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0437,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07ec,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0802,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0885,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0889,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0899,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a6,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0958,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0969,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x02c4,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x035f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0437,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07ec,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0802,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0885,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0889,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0899,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a6,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0958,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0969,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-06-15aRagexeRE #if PACKETVER == 20160615 - packet(0x0281,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0363,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0369,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x083c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0866,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0870,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0887,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0888,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x088d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0898,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x092f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0947,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0948,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x094a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0954,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0957,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0958,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0961,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x0281,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0363,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0369,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x083c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0866,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0870,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0887,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0888,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x088d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0898,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x092f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0947,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0948,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x094a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x094b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0954,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0957,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0958,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0961,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2016-06-22aRagexeRE #if PACKETVER == 20160622 - packet(0x023b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x035f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0361,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x07e4,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0861,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0865,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0867,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0880,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0887,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0890,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0891,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0892,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x089a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a2,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a8,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x092f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0936,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0937,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x093f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0946,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0959,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0965,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0969,6,clif->pDropItem,2,4); // CZ_ITEM_THROW + packet(0x023b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x035f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0361,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x07e4,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0861,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0865,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0867,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0880,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0887,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0890,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0891,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0892,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x089a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a2,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a8,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x092f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0936,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0937,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x093f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0946,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0959,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0965,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0969,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 #endif // 2016-06-29aRagexeRE, 2016-06-30aRagexeRE #if PACKETVER == 20160629 || \ PACKETVER == 20160630 - packet(0x0202,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x022d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x035f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0363,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0368,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x085c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x085e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0860,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0861,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0863,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0867,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x086b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0881,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0885,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0893,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0922,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0925,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0926,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0946,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0948,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0957,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0968,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0969,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x0202,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x022d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x035f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0363,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0368,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x085c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x085e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0860,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0861,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0863,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0867,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x086b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0881,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0885,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0893,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0922,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0925,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0926,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0946,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0948,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0957,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0968,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0969,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2016-07-06cRagexeRE #if PACKETVER == 20160706 - packet(0x0362,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0436,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x085f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0860,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0869,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x086b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0884,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0886,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0889,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0892,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0899,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a4,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a5,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a8,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0918,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x091b,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0924,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0926,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0927,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0929,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0939,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x093d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0944,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0945,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0952,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0957,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0958,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0362,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0436,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x085f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0860,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0869,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x086b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0884,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0886,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0889,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0892,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0899,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a4,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a5,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a8,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0918,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x091b,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0924,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0926,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0927,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0929,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0939,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x093d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0944,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0945,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0952,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0957,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0958,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2016-07-13aRagexeRE, 2016-07-13bRagexeRE #if PACKETVER == 20160713 - packet(0x022d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0363,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0364,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0838,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0860,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0865,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0869,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0877,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0883,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0892,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x089a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a2,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0921,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0922,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0931,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0939,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0944,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0945,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0947,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0957,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x095b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x022d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0363,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0364,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0838,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0860,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0865,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0869,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0877,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0883,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0892,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x089a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a2,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0921,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0922,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0931,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0939,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0944,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0945,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0947,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0957,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x095b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2016-07-20aRagexeRE, 2016-07-20bRagexeRE #if PACKETVER == 20160720 - packet(0x0362,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0363,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0365,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x07e4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0819,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0838,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x085b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0883,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0887,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0897,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a0,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08aa,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0917,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x091c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093b,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0946,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0953,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0960,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0969,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0362,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0363,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0365,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x07e4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0838,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x085b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0883,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0887,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0897,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a0,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08aa,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0917,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x091c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093b,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0946,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0953,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0960,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0969,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 #endif // 2016-07-27aRagexeRE, 2016-07-27bRagexeRE #if PACKETVER == 20160727 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x023b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0362,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0363,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0436,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x07ec,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0866,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0868,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0869,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0874,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0877,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0883,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0887,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0891,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a4,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a7,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0936,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0941,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0946,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0949,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0951,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0966,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x023b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0362,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0363,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0436,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x07ec,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0866,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0868,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0869,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0874,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0877,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0883,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0887,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0891,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a4,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a7,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0936,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0941,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0946,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0949,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0951,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0966,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 #endif // 2016-08-03bRagexeRE #if PACKETVER == 20160803 - packet(0x0364,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x085d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0878,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0881,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0886,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0887,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0888,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0891,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0895,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08a1,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0929,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0930,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0932,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0934,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0937,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x093a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x093e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0952,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0955,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0956,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0959,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x0364,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x085d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0878,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0881,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0886,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0887,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0888,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0891,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0895,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08a1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0929,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0930,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0932,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0934,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0937,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x093a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x093e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0952,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0955,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0956,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0959,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 #endif // 2016-08-10aRagexeRE #if PACKETVER == 20160810 - packet(0x0361,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0819,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0838,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x085d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x085e,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0860,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0875,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0879,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0885,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0888,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0890,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x089f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a9,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0926,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0935,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0943,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0959,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0967,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x0361,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0819,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0838,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x085d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x085e,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0860,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0875,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0879,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0885,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0888,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0890,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x089f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a9,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0926,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0935,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0943,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0959,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0967,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2016-08-17aRagexeRE #if PACKETVER == 20160817 - packet(0x0364,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0437,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x07e4,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0811,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0819,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x083c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x085c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0867,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0875,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x087f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0886,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0891,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a5,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a9,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08ab,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ac,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08ad,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0929,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0930,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0939,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0960,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0963,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0364,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0437,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x07e4,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0811,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0819,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x083c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x085c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0867,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0875,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x087f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0886,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0891,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a5,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a9,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08ab,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ac,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08ad,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0929,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0930,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0939,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0960,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0963,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2016-08-24aRagexeRE #if PACKETVER == 20160824 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0934,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0934,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-08-31aRagexeRE, 2016-08-31bRagexeRE #if PACKETVER == 20160831 - packet(0x022d,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0366,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0835,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0865,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0870,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0874,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0876,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0878,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x087c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08a8,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a9,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0917,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0938,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0946,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x094a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0950,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0954,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0957,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0960,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0964,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0967,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x022d,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0366,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0835,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0865,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0870,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0874,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0876,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0878,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x087c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08a8,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a9,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0917,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0938,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0946,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x094a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0950,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0954,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0957,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0960,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0964,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0967,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2016-09-07aRagexeRE #if PACKETVER == 20160907 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x091c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x091c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-09-13aRagexeRE #if PACKETVER == 20160913 - packet(0x0361,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0817,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0865,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0874,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0875,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0879,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0887,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0889,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x088e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0891,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0892,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x089b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a5,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0928,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0935,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0949,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0950,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0952,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0954,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0962,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0963,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0968,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE + packet(0x0361,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0817,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0865,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0874,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0875,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0879,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0887,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0889,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x088e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0891,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0892,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x089b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0928,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0935,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0949,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0950,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0952,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0954,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0962,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0963,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0968,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 #endif // 2016-09-21bRagexeRE #if PACKETVER == 20160921 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-09-28cRagexeRE, 2016-09-28dRagexeRE #if PACKETVER == 20160928 - packet(0x0202,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0366,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0436,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0811,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0838,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0864,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0866,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0872,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0878,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0889,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x088e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0897,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x089a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a9,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0919,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0927,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0944,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0953,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0955,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0957,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK + packet(0x0202,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0366,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0436,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0811,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0838,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0864,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0866,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0872,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0878,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0889,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x088e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0897,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x089a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a9,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0919,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0927,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0944,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0953,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0955,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0957,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 #endif // 2016-10-05aRagexeRE #if PACKETVER == 20161005 - packet(0x0202,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0838,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0863,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0886,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0891,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0892,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a0,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08ac,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0918,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0919,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x092b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0931,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0932,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0942,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0944,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0945,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x094a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0952,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x095b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0967,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0202,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0838,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0863,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0886,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0891,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0892,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a0,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08ac,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0918,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0919,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x092b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0931,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0932,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0942,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0944,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0945,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x094a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0952,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x095b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0967,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2016-10-12aRagexeRE #if PACKETVER == 20161012 - packet(0x023b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0364,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0365,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0369,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x07ec,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0819,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x085b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x085e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0863,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0868,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0872,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0875,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0880,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0893,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a0,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0936,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0937,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0939,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0943,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0944,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0951,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0962,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0966,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0967,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x023b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0364,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0365,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0369,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x07ec,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0819,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x085b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x085e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0863,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0868,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0872,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0875,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0880,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0893,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a0,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0936,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0937,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0939,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0943,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0944,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0951,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0962,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0966,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0967,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2016-10-19aRagexeRE #if PACKETVER == 20161019 - packet(0x022d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0361,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0889,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0892,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0946,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0963,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0361,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0889,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0892,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0946,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0963,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-10-26bRagexeRE, 2016-10-26cRagexeRE #if PACKETVER == 20161026 - packet(0x0363,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0438,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085f,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0861,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0862,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x086a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x087c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0886,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0891,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0894,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0898,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0926,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x092e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0930,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0953,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x095c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x095e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0962,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x0363,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0438,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085f,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0861,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0862,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x086a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x087c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0886,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0891,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0894,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0898,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0926,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x092e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0930,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0953,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x095c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x095e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0962,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2016-11-02aRagexeRE, 2016-11-03aRagexeRE #if PACKETVER == 20161102 || \ PACKETVER == 20161103 - packet(0x0361,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0367,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0436,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0802,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0838,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x083c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0869,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0874,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0886,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a2,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08aa,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0922,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0925,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0928,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0936,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0946,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0949,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x095e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0964,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0965,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0966,6,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0361,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0367,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0436,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0802,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0838,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x083c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0869,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0874,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0886,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a2,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08aa,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0922,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0925,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0928,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0936,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0946,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0949,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x095e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0964,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0965,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0966,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 #endif // 2016-11-09aRagexeRE, 2016-11-09bRagexeRE, 2016-11-09cRagexeRE, 2016-11-09dRagexeRE #if PACKETVER == 20161109 - packet(0x02c4,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0361,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0362,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0366,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x085d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x085e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0865,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0870,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0876,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0881,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x088e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0898,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a7,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ad,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0927,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0937,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0954,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0956,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x02c4,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0361,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0362,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0366,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x085d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x085e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0865,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0870,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0876,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0881,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x088e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0898,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a7,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ad,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0927,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0937,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0954,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0956,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2016-11-16bRagexeRE, 2016-11-16cRagexeRE #if PACKETVER == 20161116 - packet(0x0368,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0369,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0835,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x085f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0864,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0885,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x088d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x088f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0890,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0892,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0893,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a1,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a2,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08aa,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08ac,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0920,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0925,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x092a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0931,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x094a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0952,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0957,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x095b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0967,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD + packet(0x0368,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0369,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0835,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x085f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0864,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0885,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x088d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x088f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0890,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0892,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0893,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a1,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a2,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08aa,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08ac,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0920,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0925,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x092a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0931,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x094a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0952,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0957,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x095b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0967,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 #endif // 2016-11-23aRagexeRE #if PACKETVER == 20161123 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0362,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0437,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085c,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0861,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0866,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x086f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0871,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0880,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0882,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a9,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08aa,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0926,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0930,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0941,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x094d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x095a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0962,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0362,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0437,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085c,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0861,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0866,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x086f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0871,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0880,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0882,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a9,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08aa,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0926,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0930,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0941,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x094d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x095a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0962,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x096a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 #endif // 2016-11-30aRagexeRE, 2016-11-30bRagexeRE #if PACKETVER == 20161130 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0931,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0943,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0954,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0959,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0931,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0943,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0954,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0959,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-12-07cRagexeRE, 2016-12-07dRagexeRE, 2016-12-07eRagexeRE #if PACKETVER == 20161207 - packet(0x023b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0868,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0875,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0886,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a1,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a2,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08ad,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0918,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0943,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0965,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0868,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0875,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0886,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a1,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a2,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08ad,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0918,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0943,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0965,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-12-14bRagexeRE, 2016-12-14cRagexeRE #if PACKETVER == 20161214 - packet(0x022d,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0281,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x02c4,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0436,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0862,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x086d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0887,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0895,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0899,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x092e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0281,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x02c4,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0436,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0862,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x086d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0887,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0899,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x092e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2016-12-21aRagexeRE, 2016-12-21bRagexeRE, 2016-12-21cRagexeRE, 2016-12-21dRagexeRE #if PACKETVER == 20161221 - packet(0x035f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0438,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0817,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x085b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0866,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0876,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0881,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0885,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0890,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0899,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08aa,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0926,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0928,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x092e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0930,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0943,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0946,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x095a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0964,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0965,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x035f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0438,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0817,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x085b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0866,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0876,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0881,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0885,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0890,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0899,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08aa,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0926,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0928,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x092e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0930,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0943,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0946,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x095a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0964,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0965,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2016-12-28aRagexeRE #if PACKETVER == 20161228 - packet(0x0362,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x085a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0865,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x086a,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x086c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0870,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0871,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0875,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x087f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0886,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0889,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0893,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a3,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a5,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ab,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08ac,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08ad,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0929,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x092c,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0934,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0935,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0938,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x093d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0944,6,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0362,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x085a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0865,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x086a,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x086c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0870,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0871,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0875,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x087f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0886,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0889,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0893,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a3,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a5,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ab,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08ac,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08ad,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0929,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x092c,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0934,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0935,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0938,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x093d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0944,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 #endif // 2017-01-04bRagexeRE #if PACKETVER == 20170104 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x085a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0896,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x085a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0896,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-01-11aRagexeRE #if PACKETVER == 20170111 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a1,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a3,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a6,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0961,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0969,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a1,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a3,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a6,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0961,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0969,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-01-18aRagexeRE #if PACKETVER == 20170118 - packet(0x022d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0364,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0865,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086f,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0873,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08ad,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0927,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0933,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0958,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0962,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x022d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0364,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0865,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086f,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0873,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08ad,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0927,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0933,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0958,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0962,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2017-01-25aRagexeRE #if PACKETVER == 20170125 - packet(0x0438,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0877,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0879,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0881,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0893,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0894,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0895,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0898,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08a5,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x091c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0920,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0929,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x092b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0930,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0943,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0944,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0965,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0968,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0438,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0877,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0879,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0881,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0893,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0894,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0895,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0898,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08a5,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x091c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0920,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0929,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x092b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0930,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0943,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0944,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0965,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0968,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2017-02-01aRagexeRE #if PACKETVER == 20170201 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0815,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0875,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0879,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0881,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0884,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0885,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0886,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a4,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0919,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0920,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0938,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0940,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x094c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0966,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0969,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0815,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0875,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0879,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0881,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0884,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0885,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0886,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a4,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0919,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0920,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0938,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0940,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x094c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0966,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0969,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-02-08aRagexeRE, 2017-02-08bRagexeRE #if PACKETVER == 20170208 - packet(0x02c4,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0367,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0860,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0892,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a1,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ac,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0921,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0923,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0932,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0937,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x02c4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0367,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0860,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0892,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a1,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ac,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0921,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0923,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0932,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0937,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-02-15aRagexeRE #if PACKETVER == 20170215 - packet(0x02c4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x035f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0360,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x083c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0876,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087c,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087e,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0883,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x088b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x088c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0890,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0896,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a8,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0925,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x092d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0942,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0962,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0969,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE + packet(0x02c4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x035f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0360,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x083c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0876,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087c,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087e,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0883,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x088b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x088c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0890,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0896,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a8,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0925,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x092d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0942,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0962,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0969,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 #endif // 2017-02-22aRagexeRE #if PACKETVER == 20170222 - packet(0x0202,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0866,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0870,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0871,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0877,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0889,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0894,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a3,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a8,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0937,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0939,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0943,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0962,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0866,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0870,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0871,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0877,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0889,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0894,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a3,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a8,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0937,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0939,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0943,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0962,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-02-28aRagexeRE #if PACKETVER == 20170228 - packet(0x022d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0360,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0819,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x085e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0863,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086b,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0873,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0874,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0876,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0883,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0884,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0889,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0893,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x089e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a0,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a7,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x091f,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0937,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0944,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0947,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0948,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0952,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0955,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x022d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0360,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0819,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x085e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0863,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086b,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0873,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0874,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0876,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0883,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0884,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0889,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0893,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x089e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a0,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a7,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x091f,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0937,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0944,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0947,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0948,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0952,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0955,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2017-03-08bRagexeRE #if PACKETVER == 20170308 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-03-15cRagexeRE #if PACKETVER == 20170315 - packet(0x02c4,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x035f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0360,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0366,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0367,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0436,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x07ec,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0863,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x086a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0872,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0884,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x088b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x088d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0892,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08aa,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x091d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0920,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0922,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0944,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x094a,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x094e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0950,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0952,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x02c4,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x035f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0360,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0366,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0436,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x07ec,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0863,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x086a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0872,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0884,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x088b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x088d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0892,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08aa,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x091d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0920,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0922,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0944,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x094a,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x094e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0950,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0952,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2017-03-22aRagexeRE, 2017-03-22bRagexeRE #if PACKETVER == 20170322 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x091a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x091a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-03-29cRagexeRE, 2017-03-29dRagexeRE #if PACKETVER == 20170329 - packet(0x0281,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0363,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x087a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0888,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a8,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0917,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0926,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0929,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x092e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0937,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0939,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0949,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0363,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x087a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0888,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a8,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0917,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0926,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0929,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x092e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0937,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0939,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0949,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-04-05bRagexeRE, 2017-04-05cRagexeRE #if PACKETVER == 20170405 - packet(0x022d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0281,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0363,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085f,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0860,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0864,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0865,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0893,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a5,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094c,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0964,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0281,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085f,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0860,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0864,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0865,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0893,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a5,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094c,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0964,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-04-12aRagexeRE #if PACKETVER == 20170412 - packet(0x023b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0365,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0863,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0869,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0878,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0879,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0890,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0893,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0898,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x089a,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08a1,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x091e,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0929,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x092e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0938,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0942,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0945,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0949,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x094f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0952,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0959,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x095d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x023b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0365,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0863,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0869,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0878,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0879,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0890,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0893,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0898,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x089a,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08a1,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x091e,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0929,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0938,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0942,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0945,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0949,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x094f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0952,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0959,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x095d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2017-04-19bRagexeRE #if PACKETVER == 20170419 - packet(0x0811,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0819,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0838,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0862,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0868,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0872,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0881,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0897,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0898,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x089d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08aa,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0920,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0922,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0930,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0931,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0935,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0942,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x095c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x095d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0963,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0965,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE + packet(0x0811,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0819,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0838,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0862,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0868,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0872,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0881,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0897,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0898,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x089d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08aa,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0920,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0922,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0930,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0931,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0935,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0942,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x095c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x095d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0963,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0965,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 #endif // 2017-04-26dRagexeRE #if PACKETVER == 20170426 - packet(0x0281,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0866,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0887,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0899,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a2,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0927,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0940,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0958,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0963,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0866,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0887,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0899,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a2,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0927,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0940,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0958,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0963,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-05-02dRagexeRE #if PACKETVER == 20170502 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0875,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0894,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x089c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093c,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0950,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0875,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0894,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x089c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093c,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0950,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-05-17aRagexeRE, 2017-05-17bRagexeRE #if PACKETVER == 20170517 - packet(0x0364,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0367,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0815,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0817,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0868,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0875,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087b,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x088d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0894,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0896,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0899,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x089f,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a2,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a8,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08aa,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x091b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0923,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x093b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0945,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0946,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0947,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0958,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0960,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0964,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x0364,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0367,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0815,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0817,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0868,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0875,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087b,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x088d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0894,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0896,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0899,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x089f,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a2,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a8,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08aa,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x091b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0923,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x093b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0945,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0946,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0947,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0958,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0960,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0964,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2017-05-24aRagexeRE #if PACKETVER == 20170524 - packet(0x0364,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0368,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0860,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0864,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0866,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0868,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x086d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0873,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0874,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0882,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0894,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089c,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a1,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0923,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0925,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0934,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0946,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0958,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x095b,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0964,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0967,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0968,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0364,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0368,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0802,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0860,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0864,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0866,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0868,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x086d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0873,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0874,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0882,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0894,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089c,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a1,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0923,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0925,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0934,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0946,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0958,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x095b,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0964,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0967,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0968,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 #endif // 2017-05-31aRagexeRE #if PACKETVER == 20170531 - packet(0x0361,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0369,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x07e4,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x07ec,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0819,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x085f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0861,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0868,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0873,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0875,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0878,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0885,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x088d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0894,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a2,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08ac,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08ad,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0933,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0937,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0940,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0945,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0963,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0968,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0369,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x07e4,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x07ec,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0819,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x085f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0861,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0868,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0873,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0875,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0878,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0885,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x088d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0894,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08ac,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08ad,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0933,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0937,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0940,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0945,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0963,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0968,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2017-06-07bRagexeRE, 2017-06-07cRagexeRE #if PACKETVER == 20170607 - packet(0x0361,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0364,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x07e4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x085e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0862,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0863,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0864,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0871,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0873,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0875,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0885,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x088a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0897,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x089d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a9,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08ab,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0917,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0918,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0919,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0925,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0927,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0931,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0934,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0938,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x093d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0942,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0944,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0949,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0361,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0364,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x07e4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x085e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0862,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0863,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0864,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0871,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0873,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0875,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0885,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x088a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0897,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x089d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a9,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08ab,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0917,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0918,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0919,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0925,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0927,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0931,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0934,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0938,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x093d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0942,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0944,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0949,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2017-06-14bRagexeRE #if PACKETVER == 20170614 - packet(0x023b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0361,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0364,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0367,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0437,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0838,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x083c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0860,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0865,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0866,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0867,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x086b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x086c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0877,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x087e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0889,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0899,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a2,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08ad,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0928,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0936,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0944,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0957,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0963,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x023b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0361,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0364,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0367,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0437,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0838,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x083c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0860,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0865,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0866,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0867,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x086b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x086c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0877,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x087e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0889,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0899,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a2,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08ad,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0928,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0936,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0944,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0957,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0963,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2017-06-21aRagexeRE #if PACKETVER == 20170621 - packet(0x0202,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0365,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0366,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0802,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0885,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0889,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a8,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0956,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0957,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x095c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0961,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0365,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0366,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0802,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0885,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0889,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a8,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0956,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0957,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x095c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0961,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-06-28bRagexeRE #if PACKETVER == 20170628 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0863,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0863,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-07-05aRagexeRE #if PACKETVER == 20170705 - packet(0x0202,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x02c4,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0886,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x088d,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x092f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0930,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0932,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0934,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x094c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x02c4,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0886,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x088d,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x092f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0930,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0932,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0934,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x094c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-07-12bRagexeRE #if PACKETVER == 20170712 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0944,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0944,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-07-19aRagexeRE #if PACKETVER == 20170719 - packet(0x022d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0367,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0368,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0369,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x07e4,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085a,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0863,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x087d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0881,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0882,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0885,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0891,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0898,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089d,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a6,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a8,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091b,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x092c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x092e,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x092f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x093d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0944,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0946,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0966,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE + packet(0x022d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0367,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0368,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0369,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x07e4,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085a,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0863,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x086e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x087d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0881,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0882,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0885,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0891,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0898,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089d,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a6,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a8,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091b,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x092c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x092e,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x092f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x093d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0944,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0946,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0966,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 #endif // 2017-07-26cRagexeRE #if PACKETVER == 20170726 - packet(0x0363,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0369,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0438,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0838,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0873,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0874,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0878,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0881,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0888,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x088e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a3,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a7,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08aa,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08ab,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08ac,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x091e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0921,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0923,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0943,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x094f,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0950,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0952,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0954,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0963,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x0363,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0369,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0438,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0838,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0873,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0874,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0878,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0881,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0888,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x088e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a3,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a7,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08aa,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08ab,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08ac,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x091e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0921,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0923,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0943,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x094f,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0950,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0952,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0954,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0963,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2017-08-01aRagexeRE #if PACKETVER == 20170801 - packet(0x022d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0281,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0362,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095a,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0281,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0362,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095a,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-08-09cRagexeRE #if PACKETVER == 20170809 - packet(0x022d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0281,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0364,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0366,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0367,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x07e4,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0802,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0835,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0868,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x086e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086f,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0876,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0880,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0890,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0892,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0895,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0899,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a3,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a6,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0918,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0921,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x092b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0931,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0939,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0940,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x022d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0281,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0364,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0366,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0367,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x07e4,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0802,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0835,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0868,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x086e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086f,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0876,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0880,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0890,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0892,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0895,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0899,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a3,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a6,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0918,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0921,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x092b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0931,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0939,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0940,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2017-08-16cRagexeRE, 2017-08-16dRagexeRE #if PACKETVER == 20170816 - packet(0x022d,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x035f,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0361,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0362,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0438,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x085a,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0862,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0864,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x087e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0881,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0882,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0884,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0888,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0889,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x08a3,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a7,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a9,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08ac,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x091c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0921,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0925,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x092c,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x093a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0940,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0950,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0959,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0960,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO + packet(0x022d,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x035f,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0361,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0362,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0438,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x085a,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0862,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0864,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x087e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0881,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0882,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0884,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0888,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0889,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x08a3,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a7,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a9,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08ac,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x091c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0921,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0925,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x092c,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x093a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0940,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0950,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0959,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0960,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 #endif // 2017-08-23aRagexeRE #if PACKETVER == 20170823 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x086d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08ac,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x086d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08ac,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-08-30aRagexeRE, 2017-08-30bRagexeRE #if PACKETVER == 20170830 - packet(0x0281,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x02c4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0363,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0364,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0860,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0865,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x086a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0875,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0884,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0885,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0888,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0897,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0899,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089e,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a8,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0921,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0925,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x092e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0939,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x093e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0940,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0942,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0943,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0947,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0951,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0959,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0281,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x02c4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0363,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0364,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0860,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0865,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x086a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0875,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0884,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0885,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0888,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0897,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0899,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089e,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0921,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0925,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x092e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0939,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x093e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0940,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0942,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0943,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0947,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0951,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0959,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2017-09-06cRagexeRE #if PACKETVER == 20170906 - packet(0x0202,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0281,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x02c4,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0860,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0866,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a2,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a3,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a7,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x091a,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0953,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0281,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x02c4,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0860,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0866,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a2,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a3,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a7,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x091a,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0953,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-09-13bRagexeRE #if PACKETVER == 20170913 - packet(0x0281,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x035f,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0437,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x07e4,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0817,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0835,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x085a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0860,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0865,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0866,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x088c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0890,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0891,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0892,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a6,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a7,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08aa,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08ab,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08ac,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ad,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0920,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0923,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0925,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0927,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x095a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095c,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID + packet(0x0281,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x035f,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0437,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x07e4,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0817,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0835,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x085a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0860,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0865,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0866,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x088c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0890,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0891,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0892,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a7,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08aa,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08ab,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08ac,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ad,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0920,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0923,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0925,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0927,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x095a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095c,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 #endif // 2017-09-20bRagexeRE #if PACKETVER == 20170920 - packet(0x0369,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0436,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x07ec,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x085a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0861,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0862,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0864,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0865,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x086a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x086c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0874,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0875,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0889,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x088e,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x089b,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0919,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x091e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0921,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0923,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0926,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0937,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0939,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0945,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x094c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0961,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0966,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096a,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE + packet(0x0369,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0436,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07ec,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x085a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0861,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0862,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0864,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0865,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x086a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x086c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0874,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0875,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0889,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x088e,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x089b,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0919,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x091e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0921,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0923,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0926,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0937,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0939,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0945,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x094c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0961,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0966,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x096a,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 #endif // 2017-09-27bRagexeRE, 2017-09-27dRagexeRE #if PACKETVER == 20170927 - packet(0x02c4,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x035f,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0361,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0362,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0366,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x085c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0873,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0875,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x087e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x088b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0899,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x089a,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08a3,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a5,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a6,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08ad,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x091e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0922,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0923,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0927,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x093b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0942,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0945,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x094d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0959,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x02c4,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x035f,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0361,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0362,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0366,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x085c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0873,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0875,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x087e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x088b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0899,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x089a,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08a3,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a5,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a6,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08ad,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x091e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0922,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0923,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0927,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x093b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0942,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0945,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x094d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0959,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2017-10-02cRagexeRE #if PACKETVER == 20171002 - packet(0x022d,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0885,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0897,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0928,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x092d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0934,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093b,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x093e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0943,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x095f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x022d,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0885,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0897,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0928,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x092d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0934,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093b,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x093e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0943,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x095f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-10-11aRagexeRE, 2017-10-11bRagexeRE #if PACKETVER == 20171011 - packet(0x023b,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0882,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0950,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0954,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x023b,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0882,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0950,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0954,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-10-18aRagexeRE #if PACKETVER == 20171018 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0363,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x087a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0889,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089a,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a6,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0938,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0944,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x094a,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x094f,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0363,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x087a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0889,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089a,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a6,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0938,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0944,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x094a,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x094f,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-10-25bRagexeRE, 2017-10-25cRagexeRE, 2017-10-25dRagexeRE, 2017-10-25eRagexeRE #if PACKETVER == 20171025 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a2,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a2,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-11-01bRagexeRE #if PACKETVER == 20171101 - packet(0x022d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0369,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0438,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0835,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x085b,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0860,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0872,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0876,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0886,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0890,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0895,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0899,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x089b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x089c,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a0,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x08ab,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08ad,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x091b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0939,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x094a,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x094d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0952,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0957,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x095a,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0962,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0966,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x022d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0369,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0438,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0835,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x085b,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0860,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0872,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0876,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0886,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0890,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0895,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0899,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x089b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x089c,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a0,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x08ab,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08ad,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x091b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0939,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x094a,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x094d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0952,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0957,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x095a,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0962,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0966,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2017-11-08bRagexeRE #if PACKETVER == 20171108 - packet(0x0202,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0361,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x07e4,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0815,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0819,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0838,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x085d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0863,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0878,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x087e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0884,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0896,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0897,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x08a2,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x08a9,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08ad,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0940,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0941,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0945,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0947,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0949,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x094e,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0958,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x095a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0963,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0965,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0967,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x0202,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x07e4,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0815,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0819,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0838,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x085d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0863,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0878,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x087e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0884,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0896,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0897,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x08a2,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x08a9,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08ad,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0940,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0941,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0945,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0947,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0949,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x094e,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0958,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x095a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0963,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0965,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0967,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2017-11-15aRagexeRE #if PACKETVER == 20171115 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0365,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x086d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x086f,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x087e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0883,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0890,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0898,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0926,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0958,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x095a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0365,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x086d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x086f,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x087e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0883,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0890,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0898,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0926,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0958,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x095a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-11-22bRagexeRE #if PACKETVER == 20171122 - packet(0x0281,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x02c4,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x035f,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0838,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x083c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x085b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0862,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0867,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0877,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0885,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0890,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0891,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0893,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0897,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0898,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x089a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x089e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x08a6,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x08a9,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x091e,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0920,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0923,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0934,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0945,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0946,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0947,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0962,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0968,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE + packet(0x0281,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x02c4,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x035f,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0838,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x083c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x085b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0862,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0867,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0877,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0885,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0890,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0891,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0893,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0897,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0898,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x089a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x089e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x08a6,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x08a9,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x091e,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0920,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0923,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0934,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0945,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0946,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0947,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0962,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0968,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 #endif // 2017-11-29aRagexeRE #if PACKETVER == 20171129 - packet(0x02c4,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0363,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0365,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0862,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x086d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0876,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0878,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x08a5,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x094b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0953,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0966,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x02c4,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0363,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0365,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0862,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x086d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0876,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0878,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x08a5,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x094b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0953,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0966,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-12-06aRagexeRE #if PACKETVER == 20171206 - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0867,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x086a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x086e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0885,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0888,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0897,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x089d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08a2,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x08a4,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0923,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x092e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0936,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0942,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0958,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0961,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0867,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x086a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x086e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0885,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0888,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0897,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x089d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08a2,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x08a4,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0923,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0936,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0942,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0958,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0961,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-12-13bRagexeRE #if PACKETVER == 20171213 - packet(0x0202,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0860,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0881,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0890,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0957,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0860,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0881,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0890,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0957,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-12-20aRagexeRE #if PACKETVER == 20171220 - packet(0x0281,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0366,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0369,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0436,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0437,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x085e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0861,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0872,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0873,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0880,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0882,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0885,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0899,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x089e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a7,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x091b,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091e,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0924,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0929,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0933,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x093e,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0941,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0946,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x094e,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0951,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0957,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0960,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0964,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ + packet(0x0281,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0366,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0369,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0436,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0437,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x085e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0861,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0872,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0873,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0880,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0882,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0885,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0899,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x089e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a7,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x091b,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091e,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0924,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0929,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0933,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x093e,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0941,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0946,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x094e,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0951,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0957,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0960,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0964,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 #endif // 2017-12-27aRagexeRE #if PACKETVER == 20171227 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x087d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0888,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x088a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a0,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a5,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092c,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x092e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0938,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0945,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0946,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0969,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x096a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x087d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0888,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x088a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a0,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a5,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092c,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x092e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0938,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0945,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0946,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0969,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x096a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 #endif // 2018-01-03aRagexeRE, 2018-01-03bRagexeRE #if PACKETVER == 20180103 - packet(0x02c4,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0363,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0865,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x086b,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0872,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0876,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0879,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088e,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x089f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x08a9,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ab,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x08ac,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091d,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0922,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0926,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0927,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x092c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0935,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0938,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0941,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0946,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0948,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094e,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x095d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x095f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0960,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX + packet(0x02c4,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0363,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0865,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x086b,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0872,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0876,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0879,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088e,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x089f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x08a9,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ab,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x08ac,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091d,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0922,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0926,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0927,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x092c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0935,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0938,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0941,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0946,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0948,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094e,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x095d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x095f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0960,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 #endif // 2018-01-17aRagexeRE #if PACKETVER == 20180117 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0875,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0875,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2018-01-24bRagexeRE #if PACKETVER == 20180124 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0802,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085f,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0868,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x086a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x086f,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x087a,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0888,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0890,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0919,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0940,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0946,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x094d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0958,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0961,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0802,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085f,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0868,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x086a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x086f,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x087a,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0888,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0890,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0919,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0940,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0946,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x094d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0958,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0961,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2018-02-07bRagexeRE #if PACKETVER == 20180207 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0360,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0870,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0881,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0940,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0950,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0360,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0870,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0881,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0940,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0950,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2018-02-13aRagexeRE #if PACKETVER == 20180213 - packet(0x0369,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0802,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0817,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x085a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x086f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0874,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0875,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0878,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x087b,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0882,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x088c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0892,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0898,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x089c,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x08a3,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x08a5,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08a9,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08ad,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0917,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0922,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0924,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0926,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0933,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0936,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x093c,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0943,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0955,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0962,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0369,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0802,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0817,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x085a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x086f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0874,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0875,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0878,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x087b,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0882,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x088c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0892,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0898,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x089c,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x08a3,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x08a5,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08a9,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08ad,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0917,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0922,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0924,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0926,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0933,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0936,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x093c,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0943,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0955,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0962,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 #endif // 2018-02-21aRagexeRE, 2018-02-21bRagexeRE #if PACKETVER == 20180221 - packet(0x0202,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0366,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0436,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0838,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0867,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086c,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0871,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0876,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0879,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x087d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0880,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0881,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0883,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x088f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0891,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0897,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0899,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x089d,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0917,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x091e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0929,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x093d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x094b,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x094e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0957,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0964,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x096a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0202,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0366,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0436,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0838,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0867,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086c,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x086f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0871,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0876,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0879,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x087d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0880,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0881,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0883,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x088f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0891,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0897,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0899,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x089d,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0917,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x091e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0929,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x093d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x094b,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x094e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0957,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0964,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x096a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2018-03-07bRagexeRE #if PACKETVER == 20180307 - packet(0x0281,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x035f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0437,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x07e4,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0861,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0862,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0864,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x086c,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0870,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0872,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0877,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x088d,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0893,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a6,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x08aa,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08ab,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0917,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0920,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0937,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0939,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x093d,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0941,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0944,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0948,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0951,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0954,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0957,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0969,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT + packet(0x0281,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x035f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0437,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x07e4,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0861,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0862,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0864,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x086c,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0870,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0872,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0877,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x088d,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0893,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a6,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x08aa,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08ab,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0917,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0920,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0937,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0939,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x093d,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0941,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0944,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0948,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0951,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0954,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0957,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0969,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 #endif // 2018-03-21aRagexeRE, 2018-03-28bRagexeRE, 2018-04-04cRagexeRE, 2018-04-18bRagexeRE, 2018-04-25cRagexeRE, 2018-05-02bRagexeRE, 2018-05-02dRagexeRE, 2018-05-16cRagexeRE, 2018-05-23aRagexeRE, 2018-05-30bRagexeRE, 2018-05-30cRagexeRE, 2018-06-05bRagexeRE, 2018-06-12aRagexeRE, 2018-06-12bRagexeRE, 2018-06-20dRagexeRE, 2018-06-20eRagexeRE, 2018-06-21aRagexeRE @@ -9631,38 +9632,38 @@ PACKETVER == 20180612 || \ PACKETVER == 20180620 || \ PACKETVER == 20180621 - packet(0x0202,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x022d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x023b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0281,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x02c4,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0360,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0361,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0362,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0363,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0365,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0366,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0367,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0436,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0438,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x07e4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x07ec,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0811,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0815,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0817,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0819,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0838,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK -#endif - -// 2018-07-04aRagexeRE, 2018-07-11aRagexeRE, 2018-07-18bRagexeRE, 2018-07-18bRagexeRE1, 2018-07-18cRagexeRE, 2018-08-01cRagexeRE, 2018-08-08bRagexeRE, 2018-08-22cRagexeRE, 2018-08-29aRagexeRE, 2018-08-29bRagexeRE, 2018-09-12dRagexeRE, 2018-09-19aRagexeRE + packet(0x0202,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x022d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x023b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0281,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x02c4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0360,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0362,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0363,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0365,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0366,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x07e4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0811,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0815,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 +#endif + +// 2018-07-04aRagexeRE, 2018-07-11aRagexeRE, 2018-07-18bRagexeRE, 2018-07-18bRagexeRE1, 2018-07-18cRagexeRE, 2018-08-01cRagexeRE, 2018-08-08bRagexeRE, 2018-08-22cRagexeRE, 2018-08-29aRagexeRE, 2018-08-29bRagexeRE, 2018-09-12dRagexeRE, 2018-09-19aRagexeRE, 2018-10-02aRagexeRE, 2018-10-02bRagexeRE, 2018-10-17_02aRagexeRE, 2018-10-17_03aRagexeRE, 2018-10-17bRagexeRE, 2018-10-31cRagexeRE, 2018-11-07aRagexeRE, 2018-11-14cRagexeRE, 2018-11-14dRagexeRE, 2018-11-21cRagexeRE, 2018-11-28aRagexeRE, 2018-12-05bRagexeRE, 2018-12-12aRagexeRE, 2018-12-12bRagexeRE #if PACKETVER == 20180704 || \ PACKETVER == 20180711 || \ PACKETVER == 20180718 || \ @@ -9671,36 +9672,45 @@ PACKETVER == 20180822 || \ PACKETVER == 20180829 || \ PACKETVER == 20180912 || \ - PACKETVER >= 20180919 - packet(0x0202,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x022d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x023b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0281,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x02c4,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0360,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0361,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0362,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0363,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0365,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0366,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0367,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0436,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0438,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x07e4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x07ec,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0811,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0815,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0817,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0819,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0838,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,14,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + PACKETVER == 20180919 || \ + PACKETVER == 20181002 || \ + PACKETVER == 20181017 || \ + PACKETVER == 20181031 || \ + PACKETVER == 20181107 || \ + PACKETVER == 20181114 || \ + PACKETVER == 20181121 || \ + PACKETVER == 20181128 || \ + PACKETVER == 20181205 || \ + PACKETVER >= 20181212 + packet(0x0202,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x022d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x023b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0281,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x02c4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0360,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0362,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0363,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0365,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0366,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x07e4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0811,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0815,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 14 #endif diff --git a/src/map/packets_shuffle_zero.h b/src/map/packets_shuffle_zero.h index b7253fdda..d38ed4008 100644 --- a/src/map/packets_shuffle_zero.h +++ b/src/map/packets_shuffle_zero.h @@ -3,6 +3,7 @@ * http://herc.ws - http://github.com/HerculesWS/Hercules * * Copyright (C) 2013-2018 Hercules Dev Team + * Copyright (C) 2018 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,19 +25,19 @@ #define MAP_PACKETS_SHUFFLE_ZERO_H #ifndef packet - #define packet(a,b,...) + #define packet(a,...) #endif /* * packet syntax - * - packet(packet_id,length,function,offset ( specifies the offset of a packet field in bytes from the begin of the packet ),...) - * - Example: packet(0x0072,19,clif->pWantToConnection,2,6,10,14,18); + * - packet(packet_id,function,offset ( specifies the offset of a packet field in bytes from the begin of the packet ),...) + * - Example: packet(0x0072,clif->pWantToConnection,2,6,10,14,18); */ /* This file is autogenerated, please do not commit manual changes */ -// 2017-10-18aRagexe_zero, 2017-10-19aRagexe_zero, 2017-10-23aRagexe_zero, 2017-10-23bRagexe_zero, 2017-10-23cRagexe_zero, 2017-10-24aRagexe_2_zero, 2017-10-24aRagexe_zero, 2017-10-25bRagexe_zero, 2017-10-27aRagexe_zero, 2017-10-27bRagexe_zero, 2017-10-30aRagexe_zero, 2017-10-31aRagexe_zero, 2017-11-09aRagexe_zero, 2017-11-13aRagexe_zero, 2017-11-13bRagexe_zero, 2018-03-15aRagexe_zero, 2018-03-21aRagexe_zero, 2018-03-21bRagexe_zero, 2018-03-28_1aRagexe_zero, 2018-03-28cRagexe_zero, 2018-04-11aRagexe_zero, 2018-04-25_3aRagexe_zero, 2018-05-09_3aRagexe_zero, 2018-05-23aRagexe_zero, 2018-06-05bRagexe_zero, 2018-06-05cRagexe_zero, 2018-06-27aRagexe_zero, 2018-07-03aRagexe_zero, 2018-07-11_2aRagexe_zero, 2018-07-25_2aRagexe_zero, 2018-08-01aRagexe_zero, 2018-08-08_2aRagexe_zero, 2018-08-22aRagexe_zero, 2018-08-29aRagexe_zero, 2018-09-05aRagexe_zero, 2018-09-12aRagexe_zero, 2018-09-19aRagexe_zero +// 2017-10-18aRagexe_zero, 2017-10-19aRagexe_zero, 2017-10-23aRagexe_zero, 2017-10-23bRagexe_zero, 2017-10-23cRagexe_zero, 2017-10-24aRagexe_2_zero, 2017-10-24aRagexe_zero, 2017-10-25bRagexe_zero, 2017-10-27aRagexe_zero, 2017-10-27bRagexe_zero, 2017-10-30aRagexe_zero, 2017-10-31aRagexe_zero, 2017-11-09aRagexe_zero, 2017-11-13aRagexe_zero, 2017-11-13bRagexe_zero, 2018-03-15aRagexe_zero, 2018-03-21aRagexe_zero, 2018-03-21bRagexe_zero, 2018-03-28_1aRagexe_zero, 2018-03-28cRagexe_zero, 2018-04-11aRagexe_zero, 2018-04-25_3aRagexe_zero, 2018-05-09_3aRagexe_zero, 2018-05-23aRagexe_zero, 2018-06-05bRagexe_zero, 2018-06-05cRagexe_zero, 2018-06-27aRagexe_zero, 2018-07-03aRagexe_zero, 2018-07-11_2aRagexe_zero, 2018-07-25_2aRagexe_zero, 2018-08-01aRagexe_zero, 2018-08-08_2aRagexe_zero, 2018-08-22aRagexe_zero, 2018-08-29aRagexe_zero, 2018-09-05aRagexe_zero, 2018-09-12aRagexe_zero, 2018-09-19aRagexe_zero, 2018-09-28aRagexe_zero, 2018-10-10_2aRagexe_zero, 2018-10-24_2aRagexe_zero #if PACKETVER == 20171018 || \ PACKETVER == 20171019 || \ PACKETVER == 20171023 || \ @@ -65,238 +66,241 @@ PACKETVER == 20180829 || \ PACKETVER == 20180905 || \ PACKETVER == 20180912 || \ - PACKETVER >= 20180919 - packet(0x0202,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x022d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x023b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0281,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x02c4,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x035f,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0360,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0361,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0362,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0363,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0364,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0365,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0366,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0367,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0369,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0436,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0437,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0438,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x07e4,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x07ec,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0802,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0811,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0815,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0817,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0819,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0835,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0838,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x083c,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + PACKETVER == 20180919 || \ + PACKETVER == 20180928 || \ + PACKETVER == 20181010 || \ + PACKETVER == 20181024 + packet(0x0202,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x022d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x023b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0281,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x02c4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0360,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0362,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0363,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0365,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0366,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x07e4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0811,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0815,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2017-11-15aRagexe_zero, 2017-11-15bRagexe_zero, 2017-11-16aRagexe_zero, 2017-11-17aRagexe_zero #if PACKETVER == 20171115 || \ PACKETVER == 20171116 || \ PACKETVER == 20171117 - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0860,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0881,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0922,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0959,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0966,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0860,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0881,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0922,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0959,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0966,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-11-21aRagexe_zero, 2017-11-22aRagexe_zero #if PACKETVER == 20171121 || \ PACKETVER == 20171122 - packet(0x0202,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x022d,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0866,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0889,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0892,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08ad,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0918,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x091f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0928,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0943,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0950,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x022d,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0866,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0889,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0892,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08ad,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0918,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x091f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0928,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0943,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0950,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-11-23dRagexe_zero #if PACKETVER == 20171123 - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0367,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0860,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0876,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0882,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x088c,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0896,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x089e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x08a8,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x092b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0930,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0935,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0947,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0960,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0367,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0860,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0876,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0882,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x088c,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0896,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x089e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x08a8,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x092b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0930,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0935,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0947,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0960,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-11-27aRagexe_zero, 2017-11-27cRagexe_zero, 2017-11-28aRagexe_zero #if PACKETVER == 20171127 || \ PACKETVER == 20171128 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0893,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0893,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-11-30bRagexe_zero #if PACKETVER == 20171130 - packet(0x0361,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0864,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x086f,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0871,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0872,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0875,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0878,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0881,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0884,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0886,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0887,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x088b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0894,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0899,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x08a0,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x08a7,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0925,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0928,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0930,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0931,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0935,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093a,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0947,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x094c,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x095b,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x095f,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0960,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0965,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL + packet(0x0361,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0864,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x086f,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0871,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0872,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0875,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0878,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0881,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0884,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0886,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0887,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x088b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0894,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0899,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x08a0,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x08a7,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0925,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0928,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0930,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0931,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0935,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093a,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0947,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x094c,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x095b,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x095f,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0960,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0965,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 #endif // 2017-12-04bRagexe_zero #if PACKETVER == 20171204 - packet(0x0281,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x085b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086f,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x087d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0885,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0887,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0892,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0896,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x08aa,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0917,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0921,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0924,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0937,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0960,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0281,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x085b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086f,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x087d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0885,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0887,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0892,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0896,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x08aa,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0917,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0921,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0924,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0937,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0960,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2017-12-06aRagexe_zero, 2017-12-06bRagexe_zero, 2017-12-06cRagexe_zero, 2017-12-06dRagexe_zero, 2017-12-08aRagexe_zero, 2017-12-08cRagexe_zero, 2017-12-08dRagexe_zero, 2017-12-09bRagexe_zero, 2017-12-09cRagexe_zero, 2017-12-10aRagexe_zero, 2017-12-11bRagexe_zero, 2017-12-12aRagexe_zero, 2017-12-13aRagexe_zero, 2017-12-13bRagexe_zero, 2017-12-13cRagexe_zero @@ -307,435 +311,471 @@ PACKETVER == 20171211 || \ PACKETVER == 20171212 || \ PACKETVER == 20171213 - packet(0x0281,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0366,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0436,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0835,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x083c,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0860,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0862,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0864,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0870,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0878,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x087a,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x087b,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0885,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x088d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0893,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0897,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x089e,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a4,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x08ac,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0920,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0934,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0936,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x093a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0940,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0941,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0959,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x095c,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x095f,6,clif->pTickSend,2); // CZ_REQUEST_TIME + packet(0x0281,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0366,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0436,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0835,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x083c,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0860,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0862,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0864,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0870,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0878,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x087a,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x087b,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0885,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x088d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0893,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0897,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x089e,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a4,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x08ac,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0920,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0934,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0936,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x093a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0940,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0941,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0959,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x095c,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x095f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 #endif // 2017-12-14cRagexe_zero #if PACKETVER == 20171214 - packet(0x023b,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x02c4,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0438,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x085b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x085e,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0862,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0864,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x086a,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0871,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0873,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0886,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x088b,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088c,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0892,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0894,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0897,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x08a3,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x08a5,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x08ac,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0933,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x094a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x094f,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0951,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x095a,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x095b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0960,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0969,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x096a,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND + packet(0x023b,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x02c4,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0438,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x085b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x085e,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0862,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0864,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x086a,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0871,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0873,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0886,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x088b,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088c,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0892,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0894,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0897,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x08a3,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x08a5,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x08ac,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0933,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x094a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x094f,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0951,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x095a,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x095b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0960,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0969,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x096a,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 #endif // 2017-12-20aRagexe_zero, 2017-12-21aRagexe_zero, 2017-12-21bRagexe_zero #if PACKETVER == 20171220 || \ PACKETVER == 20171221 - packet(0x022d,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0281,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0438,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x07ec,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0819,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0835,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0838,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x085f,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0867,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x086c,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0872,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x087e,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0899,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x089b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x089c,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a3,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a5,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x08ad,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x091f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0921,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092d,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x092e,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0932,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0934,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0937,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x094d,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x095b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION + packet(0x022d,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0281,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0438,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x07ec,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0819,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0835,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x085f,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0867,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x086c,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0872,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x087e,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0899,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x089b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x089c,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a3,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a5,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x08ad,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x091f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0921,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092d,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x092e,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0932,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0934,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0937,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x094d,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x095b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 #endif // 2017-12-27bRagexe_zero, 2017-12-29aRagexe_zero #if PACKETVER == 20171227 || \ PACKETVER == 20171229 - packet(0x02c4,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0860,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x086c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0871,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0872,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0874,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0876,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0877,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0878,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x087b,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0885,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0889,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x088b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0894,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x089f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x091c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0920,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0925,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092d,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0930,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0939,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x093e,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0941,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0945,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0946,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x094b,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x095e,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0967,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0968,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES + packet(0x02c4,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0860,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x086c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0871,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0872,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0874,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0876,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0877,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0878,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x087b,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0885,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0889,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x088b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0894,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x089f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x091c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0920,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0925,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092d,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0930,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0939,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x093e,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0941,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0945,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0946,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x094b,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x095e,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0967,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0968,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 #endif // 2018-01-03aRagexe_zero #if PACKETVER == 20180103 - packet(0x035f,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0360,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x07e4,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x083c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0860,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0866,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x086d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0871,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0872,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0874,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x087b,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0885,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0888,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0890,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0896,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x089d,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x08a6,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x091e,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0924,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0938,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x093b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0956,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0958,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x095b,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x095d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0964,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0966,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x096a,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK + packet(0x035f,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0360,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x07e4,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x083c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0860,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0866,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x086d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0871,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0872,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0874,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x087b,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0885,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0888,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0890,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0896,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x089d,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x08a6,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x091e,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0924,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0938,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x093b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0956,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0958,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x095b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x095d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0964,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0966,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x096a,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 #endif // 2018-01-17aRagexe_zero #if PACKETVER == 20180117 - packet(0x0361,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0364,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0438,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x07e4,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x083c,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0866,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x086e,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086f,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x087d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0881,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0884,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0886,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0890,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0891,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0893,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0899,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x089d,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x089e,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0919,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x091c,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x091f,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0921,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0928,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0929,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x092d,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0933,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0946,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x095e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0963,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER + packet(0x0361,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0364,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0438,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x07e4,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x083c,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0866,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x086e,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086f,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x087d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0881,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0884,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0886,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0890,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0891,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0893,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0899,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x089d,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x089e,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0919,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x091c,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x091f,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0921,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0928,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0929,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x092d,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0933,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0946,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x095e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0963,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 #endif // 2018-01-31dRagexe_zero #if PACKETVER == 20180131 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0367,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0940,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0367,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0940,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2018-02-07bRagexe_zero #if PACKETVER == 20180207 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0967,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0967,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2018-02-13aRagexe_zero #if PACKETVER == 20180213 - packet(0x022d,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x02c4,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x035f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0361,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0802,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0815,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0838,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x085a,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085d,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0868,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x087b,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0882,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0887,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0888,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x088a,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x088e,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0899,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0917,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091d,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0922,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0930,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0941,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0942,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0947,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x094d,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0958,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x095b,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x095c,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0967,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x022d,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x02c4,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x035f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0361,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0802,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0815,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x085a,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0868,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x087b,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0882,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0887,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0888,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x088a,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x088e,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0899,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0917,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091d,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0922,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0930,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0941,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0942,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0947,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x094d,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0958,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x095b,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x095c,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0967,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 #endif // 2018-02-21aRagexe_zero #if PACKETVER == 20180221 - packet(0x02c4,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0362,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0364,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x0438,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x0817,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x085b,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x086a,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0878,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0880,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0884,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x088d,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0892,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0895,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x08a1,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x08a3,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x091b,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0921,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0923,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x092d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0932,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x093b,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x093d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x093e,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0942,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0951,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0952,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0958,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0959,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x095d,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP + packet(0x02c4,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0362,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0364,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0438,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x0817,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x085b,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x086a,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0878,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0880,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0884,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x088d,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0892,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0895,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x08a1,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x08a3,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x091b,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0921,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0923,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x092d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0932,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x093b,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x093d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x093e,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0942,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0951,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0952,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0958,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0959,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x095d,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 #endif // 2018-02-28bRagexe_zero, 2018-03-07aRagexe_zero, 2018-03-09aRagexe_zero #if PACKETVER == 20180228 || \ PACKETVER == 20180307 || \ PACKETVER == 20180309 - packet(0x0202,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x022d,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x023b,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0281,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x035f,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0360,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x0361,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0362,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0363,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x0364,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0365,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0366,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0368,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0369,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0436,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0437,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0438,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x07e4,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x07ec,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0802,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0811,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0815,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x0819,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0835,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0838,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x083c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x0930,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x096a,6,clif->pGetCharNameRequest,2); // CZ_REQNAME + packet(0x0202,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x022d,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x023b,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0281,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x035f,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0360,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0361,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0362,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0363,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0364,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0365,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0366,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0369,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0436,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0437,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0438,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x07e4,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x07ec,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0802,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0811,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0815,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0819,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0835,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0838,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x083c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x0930,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x096a,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 #endif // 2018-03-14nRagexe_zero #if PACKETVER == 20180314 - packet(0x023b,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x0438,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x07ec,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0817,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x083c,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x085d,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x085f,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0866,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0878,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x088d,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD - packet(0x0891,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x0897,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x0899,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x089e,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x08a1,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x0917,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0918,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x091f,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0920,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0923,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x0930,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0931,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x093f,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x0946,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x094a,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x094e,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x0954,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0956,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0958,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE + packet(0x023b,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x0438,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x07ec,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0817,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x083c,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x085d,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x085f,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0866,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0878,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x088d,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0891,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0897,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0899,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x089e,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x08a1,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x0917,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0918,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x091f,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0920,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0923,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x0930,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0931,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x093f,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0946,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x094a,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x094e,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0954,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0956,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0958,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 #endif // 2018-05-11aRagexe_zero, 2018-05-11bRagexe_zero #if PACKETVER == 20180511 - packet(0x0817,6,clif->pSolveCharName,2); // CZ_REQNAME_BYGID - packet(0x085f,6,clif->pDropItem,2,4); // CZ_ITEM_THROW - packet(0x0863,6,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE - packet(0x086c,7,clif->pActionRequest,2,6); // CZ_REQUEST_ACT - packet(0x0877,8,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY - packet(0x087e,-1,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO - packet(0x0880,6,clif->pGetCharNameRequest,2); // CZ_REQNAME - packet(0x0889,8,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE - packet(0x0893,18,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER - packet(0x0896,19,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER - packet(0x0899,12,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK - packet(0x08a2,6,clif->pTakeItem,2); // CZ_ITEM_PICKUP - packet(0x08a4,2,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE - packet(0x08a5,6,clif->pTickSend,2); // CZ_REQUEST_TIME - packet(0x0919,5,clif->pWalkToXY,2); // CZ_REQUEST_MOVE - packet(0x091a,-1,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES - packet(0x091d,-1,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE - packet(0x0920,4,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK - packet(0x092c,10,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL - packet(0x092d,26,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ - packet(0x092e,-1,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE - packet(0x0941,2,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE - packet(0x0942,5,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION - packet(0x094a,90,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX - packet(0x0955,26,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS - packet(0x0956,8,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD - packet(0x095c,10,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND - packet(0x0961,5,clif->pHomMenu,2,4); // CZ_COMMAND_MER - packet(0x0968,36,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD + packet(0x0817,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x085f,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0863,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x086c,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0877,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x087e,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0880,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0889,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0893,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0896,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0899,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 12 + packet(0x08a2,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x08a4,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x08a5,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0919,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x091a,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x091d,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0920,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x092c,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x092d,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x092e,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0941,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x0942,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x094a,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0955,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x0956,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x095c,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0961,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x0968,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 +#endif + +// 2018-11-14aRagexe_zero, 2018-11-20aRagexe_zero, 2018-11-28aRagexe_zero, 2018-12-12aRagexe_zero +#if PACKETVER == 20181114 || \ + PACKETVER == 20181120 || \ + PACKETVER == 20181128 || \ + PACKETVER >= 20181212 + packet(0x0202,clif->pFriendsListAdd,2); // CZ_ADD_FRIENDS // 26 + packet(0x022d,clif->pHomMenu,2,4); // CZ_COMMAND_MER // 5 + packet(0x023b,clif->pStoragePassword,0); // CZ_ACK_STORE_PASSWORD // 36 + packet(0x0281,clif->pDull/*,XXX*/); // CZ_GANGSI_RANK // 4 + packet(0x02c4,clif->pPartyInvite2,2); // CZ_PARTY_JOIN_REQ // 26 + packet(0x035f,clif->pWalkToXY,2); // CZ_REQUEST_MOVE // 5 + packet(0x0360,clif->pTickSend,2); // CZ_REQUEST_TIME // 6 + packet(0x0361,clif->pChangeDir,2,4); // CZ_CHANGE_DIRECTION // 5 + packet(0x0362,clif->pTakeItem,2); // CZ_ITEM_PICKUP // 6 + packet(0x0363,clif->pDropItem,2,4); // CZ_ITEM_THROW // 6 + packet(0x0364,clif->pMoveToKafra,2,4); // CZ_MOVE_ITEM_FROM_BODY_TO_STORE // 8 + packet(0x0365,clif->pMoveFromKafra,2,4); // CZ_MOVE_ITEM_FROM_STORE_TO_BODY // 8 + packet(0x0366,clif->pUseSkillToPos,2,4,6,8); // CZ_USE_SKILL_TOGROUND // 10 + packet(0x0367,clif->pUseSkillToPosMoreInfo,2,4,6,8,10); // CZ_USE_SKILL_TOGROUND_WITHTALKBOX // 90 + packet(0x0368,clif->pGetCharNameRequest,2); // CZ_REQNAME // 6 + packet(0x0369,clif->pSolveCharName,2); // CZ_REQNAME_BYGID // 6 + packet(0x0436,clif->pWantToConnection,2,6,10,14,18); // CZ_ENTER // 19 + packet(0x0437,clif->pActionRequest,2,6); // CZ_REQUEST_ACT // 7 + packet(0x0438,clif->pUseSkillToId,2,4,6); // CZ_USE_SKILL // 10 + packet(0x07e4,clif->pItemListWindowSelected,2,4,8); // CZ_ITEMLISTWIN_RES // -1 + packet(0x07ec,clif->pDull/*,XXX*/); // CZ_JOIN_BATTLE_FIELD // 8 + packet(0x0802,clif->pPartyBookingRegisterReq,2,4); // CZ_PARTY_BOOKING_REQ_REGISTER // 18 + packet(0x0811,clif->pReqOpenBuyingStore,2,4,8,9,89); // CZ_REQ_OPEN_BUYING_STORE // -1 + packet(0x0815,clif->pReqCloseBuyingStore,0); // CZ_REQ_CLOSE_BUYING_STORE // 2 + packet(0x0817,clif->pReqClickBuyingStore,2); // CZ_REQ_CLICK_TO_BUYING_STORE // 6 + packet(0x0819,clif->pReqTradeBuyingStore,2,4,8,12); // CZ_REQ_TRADE_BUYING_STORE // -1 + packet(0x0835,clif->pSearchStoreInfo,2,4,5,9,13,14,15); // CZ_SEARCH_STORE_INFO // -1 + packet(0x0838,clif->pSearchStoreInfoNextPage,0); // CZ_SEARCH_STORE_INFO_NEXT_PAGE // 2 + packet(0x083c,clif->pSearchStoreInfoListItemClick,2,6,10); // CZ_SSILIST_ITEM_CLICK // 14 #endif diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index af76a66d7..f9b5fab0d 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -25,10 +25,9 @@ #include "common/cbasetypes.h" #include "common/mmo.h" +#include "common/packetsstatic_len.h" // Packet DB -#define MIN_PACKET_DB 0x0064 -#define MAX_PACKET_DB 0x0F00 #define MAX_PACKET_POS 20 /** @@ -198,7 +197,7 @@ enum packet_headers { #else dropflooritemType = 0x9e, #endif -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 inventorylistnormalType = 0xb09, #elif PACKETVER >= 20120925 inventorylistnormalType = 0x991, @@ -209,7 +208,7 @@ enum packet_headers { #else inventorylistnormalType = 0xa3, #endif -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 inventorylistequipType = 0xb0a, #elif PACKETVER >= 20150226 inventorylistequipType = 0xa0d, @@ -222,7 +221,7 @@ enum packet_headers { #else inventorylistequipType = 0xa4, #endif -#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 storageListNormalType = 0xb09, #elif PACKETVER >= 20120925 storageListNormalType = 0x995, @@ -233,7 +232,7 @@ enum packet_headers { #else storageListNormalType = 0xa5, #endif -#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 storageListEquipType = 0xb0a, #elif PACKETVER >= 20150226 storageListEquipType = 0xa10, @@ -246,7 +245,7 @@ enum packet_headers { #else storageListEquipType = 0xa6, #endif -#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 cartlistnormalType = 0xb09, #elif PACKETVER >= 20120925 cartlistnormalType = 0x993, @@ -257,7 +256,7 @@ enum packet_headers { #else cartlistnormalType = 0x123, #endif -#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180829 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 cartlistequipType = 0xb0a, #elif PACKETVER >= 20150226 cartlistequipType = 0xa0f, @@ -324,7 +323,9 @@ enum packet_headers { achievementUpdateType = 0xa24, achievementRewardAckType = 0xa26, #endif // PACKETVER >= 20141016 -#if PACKETVER >= 20150513 // [4144] 0x09f8 handling in client from 2014-10-29aRagexe and 2014-03-26cRagexeRE +#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017 + questListType = 0xaff, ///< ZC_ALL_QUEST_LIST4 +#elif PACKETVER >= 20150513 // [4144] 0x09f8 handling in client from 2014-10-29aRagexe and 2014-03-26cRagexeRE questListType = 0x9f8, ///< ZC_ALL_QUEST_LIST3 #elif PACKETVER >= 20141022 questListType = 0x97a, ///< ZC_ALL_QUEST_LIST2 @@ -370,20 +371,21 @@ enum packet_headers { partymemberinfo = 0x01e9, partyinfo = 0x00fb, #endif -#if PACKETVER >= 20120702 - clanBasicInfo = 0x098A, ///< ZC_CLANINFO -#endif #if PACKETVER >= 20120716 clanOnlineCount = 0x0988, ///< ZC_NOTIFY_CLAN_CONNECTINFO clanLeave = 0x0989, ///< ZC_ACK_CLAN_LEAVE clanMessage = 0x098E, ///< ZC_NOTIFY_CLAN_CHAT #endif -#if PACKETVER >= 20150513 // [4144] 0x09f9 handled in client from 2014-10-29aRagexe and 2014-03-26cRagexeRE +#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017 + questAddType = 0xb0c, +#elif PACKETVER >= 20150513 // [4144] 0x09f9 handled in client from 2014-10-29aRagexe and 2014-03-26cRagexeRE questAddType = 0x9f9, #else questAddType = 0x2b3, #endif // PACKETVER < 20150513 -#if PACKETVER >= 20150513 +#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017 + questUpdateType = 0xafe, +#elif PACKETVER >= 20150513 questUpdateType = 0x9fa, #else questUpdateType = 0x2b5, @@ -416,12 +418,6 @@ enum packet_headers { #else buyingStoreUpdateItemType = 0x81b, #endif -// probably can works also for < 20141223, but in 3CeaM packet size defined only for 20150513 -#if PACKETVER >= 20150513 - hominfoType = 0x9f7, -#else - hominfoType = 0x22e, -#endif reqName = 0x95, #if PACKETVER >= 20150503 // Confirm this? reqNameAllType = 0xA30, @@ -455,7 +451,7 @@ enum packet_headers { * structs for data */ struct EQUIPSLOTINFO { -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 card[4]; #else uint16 card[4]; @@ -464,7 +460,7 @@ struct EQUIPSLOTINFO { struct NORMALITEM_INFO { int16 index; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 ITID; #else uint16 ITID; @@ -502,7 +498,7 @@ struct ItemOptions { struct EQUIPITEM_INFO { int16 index; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 ITID; #else uint16 ITID; @@ -579,7 +575,7 @@ struct packet_additem { int16 PacketType; uint16 Index; uint16 count; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 nameid; #else uint16 nameid; @@ -613,7 +609,7 @@ struct packet_additem { struct packet_dropflooritem { int16 PacketType; uint32 ITAID; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 ITID; #else uint16 ITID; @@ -725,7 +721,7 @@ struct packet_spawn_unit { #else uint32 weapon; #endif -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 shield; #endif uint16 accessory; @@ -798,7 +794,7 @@ struct packet_unit_walking { #else uint32 weapon; #endif -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 shield; #endif uint16 accessory; @@ -870,7 +866,7 @@ struct packet_idle_unit { #else uint32 weapon; #endif -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 shield; #endif uint16 accessory; @@ -1033,7 +1029,7 @@ struct packet_package_item_announce { int16 PacketType; int16 PacketLength; uint8 type; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 ItemID; #else uint16 ItemID; @@ -1041,7 +1037,7 @@ struct packet_package_item_announce { int8 len; char Name[NAME_LENGTH]; int8 unknown; // probably unused -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 BoxItemID; #else uint16 BoxItemID; @@ -1053,7 +1049,7 @@ struct packet_item_drop_announce { int16 PacketType; int16 PacketLength; uint8 type; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 ItemID; #else uint16 ItemID; @@ -1108,7 +1104,7 @@ struct packet_roulette_open_ack { int32 Serial; int8 Step; int8 Idx; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 AdditionItemID; #else uint16 AdditionItemID; @@ -1146,7 +1142,7 @@ struct packet_roulette_generate_ack { uint8 Result; uint16 Step; uint16 Idx; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 AdditionItemID; #else uint16 AdditionItemID; @@ -1164,7 +1160,7 @@ struct packet_roulette_itemrecv_req { struct packet_roulette_itemrecv_ack { int16 PacketType; uint8 Result; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 AdditionItemID; #else uint16 AdditionItemID; @@ -1174,7 +1170,7 @@ struct packet_roulette_itemrecv_ack { struct packet_itemlist_normal { int16 PacketType; int16 PacketLength; -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 uint8 invType; #endif struct NORMALITEM_INFO list[MAX_ITEMLIST]; @@ -1183,7 +1179,7 @@ struct packet_itemlist_normal { struct packet_itemlist_equip { int16 PacketType; int16 PacketLength; -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 uint8 invType; #endif struct EQUIPITEM_INFO list[MAX_ITEMLIST]; @@ -1192,10 +1188,10 @@ struct packet_itemlist_equip { struct ZC_STORE_ITEMLIST_NORMAL { int16 PacketType; int16 PacketLength; -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 uint8 invType; #endif -#if PACKETVER >= 20120925 && PACKETVER_RE_NUM < 20180829 && PACKETVER_ZERO_NUM < 20180919 +#if PACKETVER >= 20120925 && PACKETVER_RE_NUM < 20180829 && PACKETVER_ZERO_NUM < 20180919 && PACKETVER_MAIN_NUM < 20181002 char name[NAME_LENGTH]; #endif struct NORMALITEM_INFO list[MAX_ITEMLIST]; @@ -1203,13 +1199,13 @@ struct ZC_STORE_ITEMLIST_NORMAL { struct ZC_INVENTORY_START { int16 packetType; -#if PACKETVER_RE_NUM >= 20180919 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180919 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 int16 packetLength; #endif -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 uint8 invType; #endif -#if PACKETVER_RE_NUM >= 20180919 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180919 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 char name[]; #else char name[NAME_LENGTH]; @@ -1218,7 +1214,7 @@ struct ZC_INVENTORY_START { struct ZC_INVENTORY_END { int16 packetType; -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 uint8 invType; #endif char flag; @@ -1227,10 +1223,10 @@ struct ZC_INVENTORY_END { struct ZC_STORE_ITEMLIST_EQUIP { int16 PacketType; int16 PacketLength; -#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 +#if PACKETVER_RE_NUM >= 20180912 || PACKETVER_ZERO_NUM >= 20180919 || PACKETVER_MAIN_NUM >= 20181002 uint8 invType; #endif -#if PACKETVER >= 20120925 && PACKETVER_RE_NUM < 20180829 && PACKETVER_ZERO_NUM < 20180919 +#if PACKETVER >= 20120925 && PACKETVER_RE_NUM < 20180829 && PACKETVER_ZERO_NUM < 20180919 && PACKETVER_MAIN_NUM < 20181002 char name[NAME_LENGTH]; #endif struct EQUIPITEM_INFO list[MAX_ITEMLIST]; @@ -1289,6 +1285,7 @@ struct packet_viewequip_ack { int16 body2; #endif uint8 sex; + // [4144] need remove MAX_INVENTORY from here struct EQUIPITEM_INFO list[MAX_INVENTORY]; } __attribute__((packed)); @@ -1369,7 +1366,7 @@ struct packet_npc_market_purchase { int16 PacketType; int16 PacketLength; struct { -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 ITID; #else uint16 ITID; @@ -1383,36 +1380,40 @@ struct packet_npc_market_result_ack { int16 PacketLength; uint8 result; struct { -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 ITID; #else uint16 ITID; #endif uint16 qty; uint32 price; + // [4144] need remove MAX_INVENTORY from here } list[MAX_INVENTORY];/* assuming MAX_INVENTORY is max since you can't hold more than MAX_INVENTORY items thus cant buy that many at once. */ } __attribute__((packed)); -struct packet_npc_market_open { - int16 PacketType; - int16 PacketLength; - /* inner struct figured by Ind after some annoying hour of debugging (data Thanks to Yommy) */ - struct { -#if PACKETVER_RE_NUM >= 20180704 - uint32 nameid; +#if PACKETVER_MAIN_NUM >= 20131120 || PACKETVER_RE_NUM >= 20131106 || defined(PACKETVER_ZERO) +/* inner struct figured by Ind after some annoying hour of debugging (data Thanks to Yommy) */ +struct PACKET_ZC_NPC_MARKET_OPEN_sub { +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 + uint32 nameid; #else - uint16 nameid; + uint16 nameid; #endif - uint8 type; - uint32 price; - uint32 qty; - uint16 view; - // It seems that the client doesn't have any hard-coded limit for this list - // it's possible to send up to 1890 items without dropping a packet that's - // too large [Panikon] - } list[1000];/* TODO: whats the actual max of this? */ + uint8 type; + uint32 price; + uint32 qty; + uint16 weight; } __attribute__((packed)); +struct PACKET_ZC_NPC_MARKET_OPEN { + int16 packetType; + int16 packetLength; + struct PACKET_ZC_NPC_MARKET_OPEN_sub list[]; +} __attribute__((packed)); + +DEFINE_PACKET_HEADER(ZC_NPC_MARKET_OPEN, 0x09d5); +#endif + struct packet_wis_end { int16 PacketType; int8 result; @@ -1449,7 +1450,11 @@ struct packet_hotkey { * MISSION_HUNT_INFO_EX (PACKETVER >= 20150513) */ struct packet_mission_info_sub { -#if PACKETVER >= 20150513 +#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017 + uint32 huntIdent; + uint32 huntIdent2; + uint32 mobType; +#elif PACKETVER >= 20150513 uint32 huntIdent; uint32 mobType; #endif @@ -1519,7 +1524,7 @@ struct PACKET_ZC_ADD_ITEM_TO_MAIL { int8 result; int16 index; int16 count; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -1537,7 +1542,7 @@ struct PACKET_ZC_ADD_ITEM_TO_MAIL { struct mail_item { int16 count; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 ITID; #else uint16 ITID; @@ -1786,6 +1791,7 @@ struct PACKET_ZC_GROUP_LIST { struct PACKET_ZC_GROUP_LIST_SUB members[]; } __attribute__((packed)); +#if PACKETVER_MAIN_NUM >= 20130626 || PACKETVER_RE_NUM >= 20130605 || defined(PACKETVER_ZERO) struct PACKET_ZC_CLANINFO { int16 PacketType; int16 PacketLength; @@ -1796,6 +1802,8 @@ struct PACKET_ZC_CLANINFO { uint8 AllyCount; uint8 AntagonistCount; } __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_CLANINFO, 0x098a); +#endif struct PACKET_ZC_NOTIFY_CLAN_CONNECTINFO { int16 PacketType; @@ -1819,7 +1827,11 @@ struct PACKET_ZC_NOTIFY_CLAN_CHAT { * PACKET_ZC_MISSION_HUNT_EX (PACKETVER >= 20150513) */ struct packet_quest_hunt_sub { -#if PACKETVER >= 20150513 +#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017 + uint32 huntIdent; + uint32 huntIdent2; + uint32 mobType; +#elif PACKETVER >= 20150513 uint32 huntIdent; uint32 mobType; #endif @@ -1853,7 +1865,10 @@ struct packet_quest_add_header { */ struct packet_quest_update_hunt { uint32 questID; -#if PACKETVER >= 20150513 +#if PACKETVER_ZERO_NUM >= 20181010 || PACKETVER >= 20181017 + uint32 huntIdent; + uint32 huntIdent2; +#elif PACKETVER >= 20150513 uint32 huntIdent; #else uint32 mob_id; @@ -1906,7 +1921,9 @@ struct PACKET_ZC_FORMATSTRING_MSG_COLOR { uint16 PacketType; uint16 PacketLength; uint16 messageId; +#if PACKETVER >= 20160406 uint32 color; +#endif char messageString[]; } __attribute__((packed)); @@ -1938,7 +1955,7 @@ struct PACKET_ZC_UI_ACTION { struct PACKET_CZ_PRIVATE_AIRSHIP_REQUEST { int16 PacketType; char mapName[MAP_NAME_LENGTH_EXT]; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 ItemID; #else uint16 ItemID; @@ -1984,7 +2001,7 @@ struct pet_evolution_items { struct PACKET_CZ_PET_EVOLUTION { int16 PacketType; uint16 PacketLength; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 EvolvedPetEggID; #else uint16 EvolvedPetEggID; @@ -2018,7 +2035,7 @@ struct PACKET_ZC_NOTIFY_PLAYERCHAT { struct PACKET_ZC_ITEM_ENTRY { int16 packetType; uint32 AID; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2035,7 +2052,7 @@ struct PACKET_ZC_ADD_ITEM_TO_STORE { int16 packetType; int16 index; int32 amount; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2054,7 +2071,7 @@ struct PACKET_ZC_ADD_ITEM_TO_STORE { struct PACKET_ZC_MVP_GETTING_ITEM { int16 packetType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2064,7 +2081,7 @@ struct PACKET_ZC_MVP_GETTING_ITEM { struct PACKET_ZC_ACK_TOUSESKILL { int16 packetType; uint16 skillId; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 int32 btype; uint32 itemId; #else @@ -2079,7 +2096,7 @@ struct PACKET_ZC_ADD_ITEM_TO_CART { int16 packetType; int16 index; int32 amount; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2098,7 +2115,7 @@ struct PACKET_ZC_ADD_ITEM_TO_CART { struct PACKET_CZ_REQMAKINGITEM { int16 packetType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; uint32 material[3]; #else @@ -2110,7 +2127,7 @@ struct PACKET_CZ_REQMAKINGITEM { struct PACKET_ZC_ACK_REQMAKINGITEM { int16 packetType; int16 result; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2120,7 +2137,7 @@ struct PACKET_ZC_ACK_REQMAKINGITEM { struct PACKET_ZC_FEED_PET { int16 packetType; uint8 result; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2130,7 +2147,7 @@ struct PACKET_ZC_FEED_PET { struct PACKET_ZC_FEED_MER { int16 packetType; uint8 result; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2140,7 +2157,7 @@ struct PACKET_ZC_FEED_MER { struct PACKET_ZC_USE_ITEM_ACK { int16 packetType; int16 index; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; uint32 AID; #elif PACKETVER >= 3 @@ -2155,7 +2172,7 @@ struct PACKET_ZC_SPRITE_CHANGE { int16 packetType; uint32 AID; uint8 type; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 val; uint32 val2; #elif PACKETVER >= 4 @@ -2168,7 +2185,7 @@ struct PACKET_ZC_SPRITE_CHANGE { struct PACKET_ZC_ADD_EXCHANGE_ITEM { int16 packetType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; uint8 itemType; int32 amount; @@ -2191,7 +2208,7 @@ struct PACKET_ZC_ADD_EXCHANGE_ITEM { struct PACKET_ZC_CASH_TIME_COUNTER { int16 packetType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2202,7 +2219,7 @@ struct PACKET_ZC_CASH_TIME_COUNTER { struct PACKET_ZC_CASH_ITEM_DELETE { int16 packetType; uint16 index; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2212,7 +2229,7 @@ struct PACKET_ZC_CASH_ITEM_DELETE { struct PACKET_ZC_ITEM_PICKUP_PARTY { int16 packetType; uint32 AID; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2227,7 +2244,7 @@ struct PACKET_ZC_ITEM_PICKUP_PARTY { struct PACKET_ZC_UPDATE_ITEM_FROM_BUYING_STORE { int16 packetType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2246,13 +2263,15 @@ struct PACKET_ZC_UPDATE_ITEM_FROM_BUYING_STORE { struct PACKET_ZC_ACK_WEAPONREFINE { int16 packetType; int32 result; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; #endif } __attribute__((packed)); +#if PACKETVER_MAIN_NUM >= 20131230 || PACKETVER_RE_NUM >= 20131230 || defined(PACKETVER_ZERO_NUM) +// PACKET_ZC_PROPERTY_HOMUN2 struct PACKET_ZC_PROPERTY_HOMUN { int16 packetType; char name[NAME_LENGTH]; @@ -2261,7 +2280,7 @@ struct PACKET_ZC_PROPERTY_HOMUN { uint16 level; uint16 hunger; uint16 intimacy; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2283,11 +2302,46 @@ struct PACKET_ZC_PROPERTY_HOMUN { uint16 skillPoints; uint16 range; } __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_PROPERTY_HOMUN, 0x09f7); +#elif PACKETVER_MAIN_NUM >= 20101005 || PACKETVER_RE_NUM >= 20080827 || defined(PACKETVER_ZERO_NUM) +// PACKET_ZC_PROPERTY_HOMUN1 +struct PACKET_ZC_PROPERTY_HOMUN { + int16 packetType; + char name[NAME_LENGTH]; + // Bit field, bit 0 : rename_flag (1 = already renamed), bit 1 : homunc vaporized (1 = true), bit 2 : homunc dead (1 = true) + uint8 flags; + uint16 level; + uint16 hunger; + uint16 intimacy; +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 + uint32 itemId; +#else + uint16 itemId; +#endif + uint16 atk2; + uint16 matk; + uint16 hit; + uint16 crit; + uint16 def; + uint16 mdef; + uint16 flee; + uint16 amotion; + uint16 hp; + uint16 maxHp; + uint16 sp; + uint16 maxSp; + uint32 exp; + uint32 expNext; + uint16 skillPoints; + uint16 range; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_PROPERTY_HOMUN, 0x022e); +#endif struct PACKET_ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER { int16 packetType; uint16 result; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2297,7 +2351,7 @@ struct PACKET_ZC_FAILED_TRADE_BUYING_STORE_TO_SELLER { struct PACKET_CZ_REQ_ITEMREPAIR { int16 packetType; int16 index; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2309,7 +2363,7 @@ struct PACKET_CZ_REQ_ITEMREPAIR { struct PACKET_CZ_REQ_MAKINGITEM { int16 packetType; int16 type; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2320,7 +2374,7 @@ struct PACKET_CZ_SSILIST_ITEM_CLICK { int16 packetType; uint32 AID; uint32 storeId; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2328,7 +2382,7 @@ struct PACKET_CZ_SSILIST_ITEM_CLICK { } __attribute__((packed)); struct PACKET_ZC_ACK_SCHEDULER_CASHITEM_sub { -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2349,7 +2403,7 @@ struct PACKET_ZC_PC_PURCHASE_MYITEMLIST_sub { int16 index; int16 amount; uint8 itemType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2374,7 +2428,7 @@ struct PACKET_ZC_PC_PURCHASE_ITEMLIST_sub { uint32 price; uint32 discountPrice; uint8 itemType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2389,7 +2443,7 @@ struct PACKET_ZC_PC_PURCHASE_ITEMLIST { struct PACKET_CZ_PC_PURCHASE_ITEMLIST_sub { uint16 amount; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2403,7 +2457,7 @@ struct PACKET_CZ_PC_PURCHASE_ITEMLIST { } __attribute__((packed)); struct PACKET_CZ_REQ_OPEN_BUYING_STORE_sub { -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2425,7 +2479,7 @@ struct PACKET_ZC_MYITEMLIST_BUYING_STORE_sub { uint32 price; uint16 amount; uint8 itemType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2445,7 +2499,7 @@ struct PACKET_ZC_PC_PURCHASE_ITEMLIST_FROMMC_sub { uint16 amount; int16 index; uint8 itemType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2478,7 +2532,7 @@ struct PACKET_ZC_ACK_ITEMLIST_BUYING_STORE_sub { uint32 price; uint16 amount; uint8 itemType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2496,7 +2550,7 @@ struct PACKET_ZC_ACK_ITEMLIST_BUYING_STORE { struct PACKET_CZ_REQ_TRADE_BUYING_STORE_sub { int16 index; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2513,7 +2567,7 @@ struct PACKET_CZ_REQ_TRADE_BUYING_STORE { } __attribute__((packed)); struct PACKET_ZC_MAKABLEITEMLIST_sub { -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; uint32 material[3]; #else @@ -2529,7 +2583,7 @@ struct PACKET_ZC_MAKABLEITEMLIST { } __attribute__((packed)); struct PACKET_ZC_MAKINGARROW_LIST_sub { -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2544,7 +2598,7 @@ struct PACKET_ZC_MAKINGARROW_LIST { struct PACKET_ZC_REPAIRITEMLIST_sub { int16 index; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2561,7 +2615,7 @@ struct PACKET_ZC_REPAIRITEMLIST { struct PACKET_ZC_NOTIFY_WEAPONITEMLIST_sub { int16 index; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2577,7 +2631,7 @@ struct PACKET_ZC_NOTIFY_WEAPONITEMLIST { } __attribute__((packed)); struct PACKET_ZC_MAKINGITEM_LIST_sub { -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2587,7 +2641,7 @@ struct PACKET_ZC_MAKINGITEM_LIST_sub { struct PACKET_ZC_MAKINGITEM_LIST { int16 packetType; int16 packetLength; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 makeItem; #else uint16 makeItem; @@ -2599,7 +2653,7 @@ struct PACKET_ZC_PC_CASH_POINT_ITEMLIST_sub { uint32 price; uint32 discountPrice; uint8 itemType; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2618,7 +2672,7 @@ struct PACKET_ZC_PC_CASH_POINT_ITEMLIST { struct PACKET_CZ_PC_BUY_CASH_POINT_ITEM_sub { uint16 amount; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2642,7 +2696,7 @@ struct PACKET_CZ_PC_BUY_CASH_POINT_ITEM { } __attribute__((packed)); struct PACKET_CZ_SEARCH_STORE_INFO_item { -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2667,7 +2721,7 @@ struct PACKET_ZC_SEARCH_STORE_INFO_ACK_sub { uint32 storeId; uint32 AID; char shopName[MESSAGE_SIZE]; -#if PACKETVER_RE_NUM >= 20180704 +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 uint32 itemId; #else uint16 itemId; @@ -2722,7 +2776,7 @@ struct packet_achievement_update { struct packet_achievement_reward_ack { uint16 packet_id; - uint8 received; + uint8 failed; uint32 ach_id; } __attribute__((packed)); @@ -2836,6 +2890,173 @@ struct PACKET_CZ_MEMORIALDUNGEON_COMMAND { int32 command; } __attribute__((packed)); +struct PACKET_ZC_REMOVE_EFFECT { + int16 packetType; + uint32 aid; + uint32 effectId; +} __attribute__((packed)); + +#if PACKETVER >= 20160525 +struct PACKET_ZC_CAMERA_INFO { + int16 packetType; + int8 action; + float range; + float rotation; + float latitude; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_CAMERA_INFO, 0x0a78); +#endif + +#if PACKETVER >= 20160525 +struct PACKET_CZ_CAMERA_INFO { + int16 packetType; + int8 action; + float range; + float rotation; + float latitude; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_CAMERA_INFO, 0x0a77); +#endif + +#if PACKETVER_MAIN_NUM >= 20181128 || PACKETVER_RE_NUM >= 20181031 +// PACKET_ZC_AUTOSPELLLIST2 +struct PACKET_ZC_AUTOSPELLLIST { + int16 packetType; + int16 packetLength; + int skills[]; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_AUTOSPELLLIST, 0x0afb); +#elif PACKETVER_MAIN_NUM >= 20090406 || defined(PACKETVER_RE) || defined(PACKETVER_ZERO) || PACKETVER_SAK_NUM >= 20080618 +// PACKET_ZC_AUTOSPELLLIST1 +struct PACKET_ZC_AUTOSPELLLIST { + int16 packetType; + int skills[7]; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_AUTOSPELLLIST, 0x01cd); +#endif + +#if PACKETVER_MAIN_NUM >= 20170726 || PACKETVER_RE_NUM >= 20170621 || defined(PACKETVER_ZERO) +#if PACKETVER_MAIN_NUM >= 20181017 || PACKETVER_RE_NUM >= 20181017 || PACKETVER_ZERO_NUM >= 20181024 +struct PACKET_ZC_ITEM_PREVIEW { + int16 packetType; + int16 index; + int8 isDamaged; + int16 refiningLevel; + struct EQUIPSLOTINFO slot; + struct ItemOptions option_data[MAX_ITEM_OPTIONS]; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_ITEM_PREVIEW, 0x0b13); +#else // PACKETVER_MAIN_NUM >= 20181017 || PACKETVER_RE_NUM >= 20181017 || PACKETVER_ZERO_NUM >= 20181024 + +struct PACKET_ZC_ITEM_PREVIEW { + int16 packetType; + int16 index; + int16 refiningLevel; + struct EQUIPSLOTINFO slot; + struct ItemOptions option_data[MAX_ITEM_OPTIONS]; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_ITEM_PREVIEW, 0x0ab9); +#endif // PACKETVER_MAIN_NUM >= 20181017 || PACKETVER_RE_NUM >= 20181017 || PACKETVER_ZERO_NUM >= 20181024 +#endif // PACKETVER_MAIN_NUM >= 20170726 || PACKETVER_RE_NUM >= 20170621 || defined(PACKETVER_ZERO) + +#if PACKETVER_MAIN_NUM >= 20160831 || PACKETVER_RE_NUM >= 20151118 || defined(PACKETVER_ZERO) +struct PACKET_ZC_ENCHANT_EQUIPMENT { + int16 packetType; + int16 wearState; + int16 cardSlot; +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 + int32 itemId; +#else + int16 itemId; +#endif + int8 equipFlag; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_ENCHANT_EQUIPMENT, 0x0a3f); +#endif // PACKETVER_MAIN_NUM >= 20160831 || PACKETVER_RE_NUM >= 20151118 || defined(PACKETVER_ZERO) + +#if PACKETVER_MAIN_NUM >= 20170830 || PACKETVER_RE_NUM >= 20170830 || defined(PACKETVER_ZERO) +struct PACKET_ZC_SERVICE_MESSAGE_COLOR { + int16 packetType; + int16 packetLength; + int32 color; + char message[]; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_SERVICE_MESSAGE_COLOR, 0x0adb); +#endif + +#if PACKETVER_MAIN_NUM >= 20181002 || PACKETVER_RE_NUM >= 20181002 || PACKETVER_ZERO_NUM >= 20181010 +struct PACKET_CZ_START_USE_SKILL { + int16 packetType; + int16 skillId; + int16 skillLv; + uint32 targetId; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_START_USE_SKILL, 0x0b10); + +struct PACKET_CZ_STOP_USE_SKILL { + int16 packetType; + int16 skillId; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_STOP_USE_SKILL, 0x0b11); +#endif + +#if PACKETVER_ZERO_NUM >= 20181212 +struct PACKET_ZC_INVENTORY_EXPANSION_INFO { + int16 packetType; + int16 expansionSize; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_INVENTORY_EXPANSION_INFO, 0x0b18); +#endif + +#if PACKETVER_ZERO_NUM >= 20181212 +struct PACKET_ZC_ACK_INVENTORY_EXPAND { + int16 packetType; + uint8 result; + uint32 itemId; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_ACK_INVENTORY_EXPAND, 0x0b15); +#endif + +#if PACKETVER_ZERO_NUM >= 20181212 +struct PACKET_ZC_ACK_INVENTORY_EXPAND_RESULT { + int16 packetType; + uint8 result; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_ACK_INVENTORY_EXPAND_RESULT, 0x0b17); +#endif + +#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +struct PACKET_CZ_INVENTORY_EXPAND { + int16 packetType; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_INVENTORY_EXPAND, 0x0b14); +#endif + +#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +struct PACKET_CZ_INVENTORY_EXPAND_CONFIRMED { + int16 packetType; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_INVENTORY_EXPAND_CONFIRMED, 0x0b16); +#endif + +#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +struct PACKET_CZ_INVENTORY_EXPAND_REJECTED { + int16 packetType; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_INVENTORY_EXPAND_REJECTED, 0x0b19); +#endif + +struct PACKET_CZ_REQ_REMAINTIME { + int16 packetType; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_REQ_REMAINTIME, 0x01c0); + +struct PACKET_CZ_PARTY_CONFIG { + int16 packetType; + uint8 refuseInvite; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_PARTY_CONFIG, 0x02c8); + #if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute #pragma pack(pop) #endif // not NetBSD < 6 / Solaris diff --git a/src/map/pc.c b/src/map/pc.c index 961dda9f5..95c10cbe7 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -399,7 +399,7 @@ static int pc_banding(struct map_session_data *sd, uint16 skill_lv) for( j = 0; j < i; j++ ) { bsd = map->id2sd(b_sd[j]); if( bsd != NULL ) { - status->set_hp(&bsd->bl,hp,0); // Set hp + status->set_hp(&bsd->bl, hp, STATUS_HEAL_DEFAULT); // Set hp if( (sc = status->get_sc(&bsd->bl)) != NULL && sc->data[SC_BANDING] ) { sc->data[SC_BANDING]->val2 = c; // Set the counter. It doesn't count your self. status_calc_bl(&bsd->bl, status->sc2scb_flag(SC_BANDING)); // Set atk and def. @@ -523,10 +523,9 @@ static int pc_setrestartvalue(struct map_session_data *sd, int type) if (type&1) { //Normal resurrection - st->hp = 1; //Otherwise status->heal may fail if dead. - status->heal(&sd->bl, bst->hp, 0, 1); + status->heal(&sd->bl, bst->hp, 0, STATUS_HEAL_FORCED | STATUS_HEAL_ALLOWREVIVE); if( st->sp < bst->sp ) - status->set_sp(&sd->bl, bst->sp, 1); + status->set_sp(&sd->bl, bst->sp, STATUS_HEAL_FORCED); } else { //Just for saving on the char-server (with values as if respawned) sd->status.hp = bst->hp; sd->status.sp = (st->sp < bst->sp) ? bst->sp : st->sp; @@ -569,7 +568,7 @@ static void pc_rental_expire(struct map_session_data *sd, int i) int nameid; nullpo_retv(sd); - Assert_retv(i >= 0 && i < MAX_INVENTORY); + Assert_retv(i >= 0 && i < sd->status.inventorySize); nameid = sd->status.inventory[i].nameid; /* Soon to be dropped, we got plans to integrate it with item db */ @@ -638,11 +637,11 @@ static void pc_rental_expire(struct map_session_data *sd, int i) } static void pc_inventory_rentals(struct map_session_data *sd) { - int i, c = 0; + int c = 0; int64 expire_tick, next_tick = INT64_MAX; nullpo_retv(sd); - for( i = 0; i < MAX_INVENTORY; i++ ) + for (int i = 0; i < sd->status.inventorySize; i++ ) { // Check for Rentals on Inventory if( sd->status.inventory[i].nameid == 0 ) continue; // Nothing here @@ -783,7 +782,7 @@ static int pc_equippoint(struct map_session_data *sd, int n) int ep = 0; nullpo_ret(sd); - Assert_ret(n >= 0 && n < MAX_INVENTORY); + Assert_ret(n >= 0 && n < sd->status.inventorySize); if(!sd->inventory_data[n]) return 0; @@ -839,11 +838,9 @@ static int pc_item_equippoint(struct map_session_data *sd, struct item_data *id) static int pc_setinventorydata(struct map_session_data *sd) { - int i; - nullpo_ret(sd); - for (i = 0; i < MAX_INVENTORY; i++) { + for (int i = 0; i < sd->status.inventorySize; i++) { int id = sd->status.inventory[i].nameid; sd->inventory_data[i] = id?itemdb->search(id):NULL; } @@ -903,7 +900,7 @@ static int pc_setequipindex(struct map_session_data *sd) for(i=0;i<EQI_MAX;i++) sd->equip_index[i] = -1; - for(i=0;i<MAX_INVENTORY;i++) { + for (i = 0; i < sd->status.inventorySize; i++) { if(sd->status.inventory[i].nameid <= 0) continue; if(sd->status.inventory[i].equip) { @@ -1074,6 +1071,7 @@ static int pc_isequip(struct map_session_data *sd, int n) struct item_data *item; nullpo_ret(sd); + Assert_ret(n >= 0 && n < sd->status.inventorySize); item = sd->inventory_data[n]; @@ -1330,6 +1328,7 @@ static bool pc_authok(struct map_session_data *sd, int login_id2, time_t expirat sd->bg_queue.client_has_bg_data = 0; sd->bg_queue.type = 0; + VECTOR_INIT(sd->channels); VECTOR_INIT(sd->script_queues); VECTOR_INIT(sd->achievement); // Achievements [Smokexyz/Hercules] VECTOR_INIT(sd->storage.item); // initialize storage item vector. @@ -1379,6 +1378,7 @@ static bool pc_authok(struct map_session_data *sd, int login_id2, time_t expirat pc->setpos(sd,sd->status.last_point.map,0,0,CLR_OUTSIGHT); } + clif->inventoryExpansionInfo(sd); clif->overweight_percent(sd); clif->authok(sd); @@ -2221,11 +2221,12 @@ static int pc_bonus_addeff_onskill(struct s_addeffectonskill *effect, int max, e return 1; } -static int pc_bonus_item_drop(struct s_add_drop *drop, const short max, short id, short group, int race_mask, int rate) +static int pc_bonus_item_drop(struct s_add_drop *drop, const short max, int id, bool is_group, int race_mask, int rate) { int i; nullpo_ret(drop); + Assert_ret(is_group || id > 0); //Apply config rate adjustment settings. if (rate >= 0) { //Absolute drop. if (battle_config.item_rate_adddrop != 100) @@ -2240,17 +2241,14 @@ static int pc_bonus_item_drop(struct s_add_drop *drop, const short max, short id if (rate > -1) rate = -1; } - for(i = 0; i < max && (drop[i].id || drop[i].group); i++) { - if (((id && drop[i].id == id) || (group && drop[i].group == group)) - && race_mask != RCMASK_NONE - ) { + for (i = 0; i < max && (drop[i].id != 0 || drop[i].is_group); i++) { + if (drop[i].id == id && race_mask != RCMASK_NONE) { drop[i].race |= race_mask; if (drop[i].rate > 0 && rate > 0) { //Both are absolute rates. if (drop[i].rate < rate) drop[i].rate = rate; - } else - if(drop[i].rate < 0 && rate < 0) { + } else if (drop[i].rate < 0 && rate < 0) { //Both are relative rates. if (drop[i].rate > rate) drop[i].rate = rate; @@ -2264,7 +2262,7 @@ static int pc_bonus_item_drop(struct s_add_drop *drop, const short max, short id return 0; } drop[i].id = id; - drop[i].group = group; + drop[i].is_group = is_group; drop[i].race |= race_mask; drop[i].rate = rate; return 1; @@ -3111,7 +3109,7 @@ static int pc_bonus(struct map_session_data *sd, int type, int val) #endif case SP_ADD_MONSTER_DROP_CHAINITEM: if (sd->state.lr_flag != 2) - pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), 0, val, map->race_id2mask(RC_ALL), 10000); + pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), val, true, map->race_id2mask(RC_ALL), 10000); break; case SP_ADDMAXWEIGHT: if (sd->state.lr_flag != 2) @@ -3686,7 +3684,7 @@ static int pc_bonus2(struct map_session_data *sd, int type, int type2, int val) break; case SP_ADD_MONSTER_DROP_ITEM: if (sd->state.lr_flag != 2) - pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), type2, 0, map->race_id2mask(RC_ALL), val); + pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), type2, false, map->race_id2mask(RC_ALL), val); break; case SP_SP_LOSS_RATE: if(sd->state.lr_flag != 2) { @@ -3892,7 +3890,7 @@ static int pc_bonus2(struct map_session_data *sd, int type, int type2, int val) break; } if (sd->state.lr_flag != 2) - pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), 0, type2, race_mask, 10000); + pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), type2, true, race_mask, 10000); } break; #ifdef RENEWAL @@ -3932,12 +3930,12 @@ static int pc_bonus3(struct map_session_data *sd, int type, int type2, int type3 break; } if (sd->state.lr_flag != 2) - pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), type2, 0, race_mask, val); + pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), type2, false, race_mask, val); } break; case SP_ADD_CLASS_DROP_ITEM: if(sd->state.lr_flag != 2) - pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), type2, 0, -type3, val); + pc->bonus_item_drop(sd->add_drop, ARRAYLENGTH(sd->add_drop), type2, false, -type3, val); break; case SP_AUTOSPELL: if(sd->state.lr_flag != 2) @@ -4308,7 +4306,7 @@ static bool pc_can_insert_card_into(struct map_session_data *sd, int idx_card, i nullpo_ret(sd); - if (idx_equip < 0 || idx_equip >= MAX_INVENTORY || sd->inventory_data[idx_equip] == NULL) + if (idx_equip < 0 || idx_equip >= sd->status.inventorySize || sd->inventory_data[idx_equip] == NULL) return false; //Invalid item index. if (sd->status.inventory[idx_equip].nameid <= 0 || sd->status.inventory[idx_equip].amount < 1) return false; // target item missing @@ -4342,7 +4340,7 @@ static bool pc_can_insert_card(struct map_session_data *sd, int idx_card) { nullpo_ret(sd); - if (idx_card < 0 || idx_card >= MAX_INVENTORY || sd->inventory_data[idx_card] == NULL) + if (idx_card < 0 || idx_card >= sd->status.inventorySize || sd->inventory_data[idx_card] == NULL) return false; //Invalid card index. if (sd->status.inventory[idx_card].nameid <= 0 || sd->status.inventory[idx_card].amount < 1) return false; // target card missing @@ -4402,8 +4400,6 @@ static int pc_insert_card(struct map_session_data *sd, int idx_card, int idx_equ static int pc_modifybuyvalue(struct map_session_data *sd, int orig_value) { int skill_lv, rate1 = 0, rate2 = 0; - if (orig_value <= 0) - return 0; if ((skill_lv=pc->checkskill(sd,MC_DISCOUNT)) > 0) // merchant discount rate1 = 5+skill_lv*2-((skill_lv==10)? 1:0); if ((skill_lv=pc->checkskill(sd,RG_COMPULSION)) > 0) // rogue discount @@ -4412,8 +4408,9 @@ static int pc_modifybuyvalue(struct map_session_data *sd, int orig_value) rate1 = rate2; if (rate1 != 0) orig_value = apply_percentrate(orig_value, 100-rate1, 100); - if (orig_value < 1) - orig_value = 1; + + if (orig_value < battle_config.min_item_buy_price) + orig_value = battle_config.min_item_buy_price; return orig_value; } @@ -4423,14 +4420,13 @@ static int pc_modifybuyvalue(struct map_session_data *sd, int orig_value) static int pc_modifysellvalue(struct map_session_data *sd, int orig_value) { int skill_lv, rate = 0; - if (orig_value <= 0) - return 0; if ((skill_lv=pc->checkskill(sd,MC_OVERCHARGE)) > 0) //OverCharge rate = 5+skill_lv*2-((skill_lv==10)? 1:0); if (rate != 0) orig_value = apply_percentrate(orig_value, 100+rate, 100); - if (orig_value < 1) - orig_value = 1; + + if (orig_value < battle_config.min_item_sell_price) + orig_value = battle_config.min_item_sell_price; return orig_value; } @@ -4440,7 +4436,6 @@ static int pc_modifysellvalue(struct map_session_data *sd, int orig_value) *------------------------------------------*/ static int pc_checkadditem(struct map_session_data *sd, int nameid, int amount) { - int i; struct item_data* data; nullpo_ret(sd); @@ -4456,7 +4451,7 @@ static int pc_checkadditem(struct map_session_data *sd, int nameid, int amount) if( data->stack.inventory && amount > data->stack.amount ) return ADDITEM_OVERAMOUNT; - for(i=0;i<MAX_INVENTORY;i++){ + for(int i = 0; i < sd->status.inventorySize; i++) { // FIXME: This does not consider the checked item's cards, thus could check a wrong slot for stackability. if(sd->status.inventory[i].nameid==nameid){ if( amount > MAX_AMOUNT - sd->status.inventory[i].amount || ( data->stack.inventory && amount > data->stack.amount - sd->status.inventory[i].amount ) ) @@ -4474,11 +4469,10 @@ static int pc_checkadditem(struct map_session_data *sd, int nameid, int amount) *------------------------------------------*/ static int pc_inventoryblank(struct map_session_data *sd) { - int i,b; - nullpo_ret(sd); + int b = 0; - for(i=0,b=0;i<MAX_INVENTORY;i++){ + for (int i = 0; i < sd->status.inventorySize; i++) { if(sd->status.inventory[i].nameid==0) b++; } @@ -4506,14 +4500,15 @@ static int pc_payzeny(struct map_session_data *sd, int zeny, enum e_log_pick_typ sd->status.zeny -= zeny; clif->updatestatus(sd,SP_ZENY); - achievement->validate_zeny(sd, -zeny); // Achievements [Smokexyz/Hercules] + if (zeny > 0) { + achievement->validate_zeny(sd, -zeny); // Achievements [Smokexyz/Hercules] + logs->zeny(sd, type, tsd ? tsd : sd, -zeny); - if(!tsd) tsd = sd; - logs->zeny(sd, type, tsd, -zeny); - if( zeny > 0 && sd->state.showzeny ) { - char output[255]; - sprintf(output, "Removed %dz.", zeny); - clif_disp_onlyself(sd, output); + if (sd->state.showzeny) { + char output[255]; + sprintf(output, "Removed %dz.", zeny); + clif_disp_onlyself(sd, output); + } } return 0; @@ -4644,14 +4639,15 @@ static int pc_getzeny(struct map_session_data *sd, int zeny, enum e_log_pick_typ sd->status.zeny += zeny; clif->updatestatus(sd,SP_ZENY); - achievement->validate_zeny(sd, zeny); // Achievements [Smokexyz/Hercules] + if (zeny > 0) { + achievement->validate_zeny(sd, zeny); // Achievements [Smokexyz/Hercules] + logs->zeny(sd, type, tsd ? tsd : sd, zeny); - if(!tsd) tsd = sd; - logs->zeny(sd, type, tsd, zeny); - if( zeny > 0 && sd->state.showzeny ) { - char output[255]; - sprintf(output, "Gained %dz.", zeny); - clif_disp_onlyself(sd, output); + if (sd->state.showzeny) { + char output[255]; + sprintf(output, "Gained %dz.", zeny); + clif_disp_onlyself(sd, output); + } } return 0; @@ -4673,8 +4669,8 @@ static int pc_search_inventory(struct map_session_data *sd, int item_id) int i; nullpo_retr(INDEX_NOT_FOUND, sd); - ARR_FIND( 0, MAX_INVENTORY, i, sd->status.inventory[i].nameid == item_id && (sd->status.inventory[i].amount > 0 || item_id == 0) ); - return ( i < MAX_INVENTORY ) ? i : INDEX_NOT_FOUND; + ARR_FIND(0, sd->status.inventorySize, i, sd->status.inventory[i].nameid == item_id && (sd->status.inventory[i].amount > 0 || item_id == 0)); + return (i < sd->status.inventorySize) ? i : INDEX_NOT_FOUND; } /*========================================== @@ -4689,7 +4685,7 @@ static int pc_search_inventory(struct map_session_data *sd, int item_id) * 6 = ? * 7 = stack limitation *------------------------------------------*/ -static int pc_additem(struct map_session_data *sd, struct item *item_data, int amount, e_log_pick_type log_type) +static int pc_additem(struct map_session_data *sd, const struct item *item_data, int amount, e_log_pick_type log_type) { struct item_data *data; int i; @@ -4736,11 +4732,11 @@ static int pc_additem(struct map_session_data *sd, struct item *item_data, int a } } - i = MAX_INVENTORY; + i = sd->status.inventorySize; // Stackable | Non Rental if( itemdb->isstackable2(data) && item_data->expire_time == 0 ) { - for( i = 0; i < MAX_INVENTORY; i++ ) { + for (i = 0; i < sd->status.inventorySize; i++) { if( sd->status.inventory[i].nameid == item_data->nameid && sd->status.inventory[i].bound == item_data->bound && sd->status.inventory[i].expire_time == 0 && @@ -4755,7 +4751,7 @@ static int pc_additem(struct map_session_data *sd, struct item *item_data, int a } } - if ( i >= MAX_INVENTORY ) { + if (i >= sd->status.inventorySize) { i = pc->search_inventory(sd,0); if (i == INDEX_NOT_FOUND) return 4; @@ -4815,7 +4811,7 @@ static int pc_additem(struct map_session_data *sd, struct item *item_data, int a static int pc_delitem(struct map_session_data *sd, int n, int amount, int type, short reason, e_log_pick_type log_type) { nullpo_retr(1, sd); - Assert_retr(1, n >= 0 && n < MAX_INVENTORY); + Assert_retr(1, n >= 0 && n < sd->status.inventorySize); if(sd->status.inventory[n].nameid==0 || amount <= 0 || sd->status.inventory[n].amount<amount || sd->inventory_data[n] == NULL) return 1; @@ -4849,7 +4845,7 @@ static int pc_dropitem(struct map_session_data *sd, int n, int amount) { nullpo_retr(1, sd); - if(n < 0 || n >= MAX_INVENTORY) + if(n < 0 || n >= sd->status.inventorySize) return 0; if(amount <= 0) @@ -4960,7 +4956,7 @@ static int pc_isUseitem(struct map_session_data *sd, int n) int nameid; nullpo_ret(sd); - Assert_ret(n >= 0 && n < MAX_INVENTORY); + Assert_ret(n >= 0 && n < sd->status.inventorySize); item = sd->inventory_data[n]; nameid = sd->status.inventory[n].nameid; @@ -5196,7 +5192,7 @@ static int pc_useitem(struct map_session_data *sd, int n) bool removeItem = false; nullpo_ret(sd); - Assert_ret(n >= 0 && n < MAX_INVENTORY); + Assert_ret(n >= 0 && n < sd->status.inventorySize); if (sd->npc_id || sd->state.workinprogress & 1) { #if PACKETVER >= 20110308 @@ -5433,7 +5429,7 @@ static int pc_cart_delitem(struct map_session_data *sd, int n, int amount, int t { struct item_data * data; nullpo_retr(1, sd); - Assert_retr(1, n >= 0 && n < MAX_INVENTORY); + Assert_retr(1, n >= 0 && n < MAX_CART); if( sd->status.cart[n].nameid == 0 || sd->status.cart[n].amount < amount || !(data = itemdb->exists(sd->status.cart[n].nameid)) ) return 1; @@ -5467,7 +5463,7 @@ static int pc_putitemtocart(struct map_session_data *sd, int idx, int amount) nullpo_ret(sd); - if (idx < 0 || idx >= MAX_INVENTORY) //Invalid index check [Skotlex] + if (idx < 0 || idx >= sd->status.inventorySize) //Invalid index check [Skotlex] return 1; item_data = &sd->status.inventory[idx]; @@ -5537,7 +5533,7 @@ static void pc_bound_clear(struct map_session_data *sd, enum e_item_bound_type t /* both restricted to inventory */ case IBT_PARTY: case IBT_CHARACTER: - for( i = 0; i < MAX_INVENTORY; i++ ){ + for (i = 0; i < sd->status.inventorySize; i++ ) { if( sd->status.inventory[i].bound == type ) { pc->delitem(sd, i, sd->status.inventory[i].amount, 0, DELITEM_SKILLUSE, LOG_TYPE_OTHER); // FIXME: is this the correct reason flag? } @@ -5549,7 +5545,7 @@ static void pc_bound_clear(struct map_session_data *sd, enum e_item_bound_type t case IBT_GUILD: { struct guild_storage *gstor = idb_get(gstorage->db,sd->status.guild_id); - for( i = 0; i < MAX_INVENTORY; i++ ){ + for (i = 0; i < sd->status.inventorySize; i++ ) { if(sd->status.inventory[i].bound == type) { if( gstor ) gstorage->additem(sd,gstor,&sd->status.inventory[i],sd->status.inventory[i].amount); @@ -5706,7 +5702,7 @@ static int pc_steal_coin(struct map_session_data *sd, struct block_list *target, * 1 - Invalid map index. * 2 - Map not in this map-server, and failed to locate alternate map-server. *------------------------------------------*/ -static int pc_setpos(struct map_session_data *sd, unsigned short map_index, int x, int y, clr_type clrtype) +static int pc_setpos(struct map_session_data *sd, unsigned short map_index, int x, int y, enum clr_type clrtype) { int16 m; @@ -5838,8 +5834,11 @@ static int pc_setpos(struct map_session_data *sd, unsigned short map_index, int vending->close(sd); } - if (map->list[sd->bl.m].channel) { - channel->leave(map->list[sd->bl.m].channel,sd); + if (sd->mapindex != 0) { + // Only if the character is already on a map + if (map->list[sd->bl.m].channel) { + channel->leave(map->list[sd->bl.m].channel,sd); + } } } @@ -5943,7 +5942,7 @@ static int pc_setpos(struct map_session_data *sd, unsigned short map_index, int * 0 = fail or FIXME success (from pc->setpos) * x(1|2) = fail *------------------------------------------*/ -static int pc_randomwarp(struct map_session_data *sd, clr_type type) +static int pc_randomwarp(struct map_session_data *sd, enum clr_type type) { int x,y,i=0; int16 m; @@ -7942,7 +7941,7 @@ static int pc_skillheal2_bonus(struct map_session_data *sd, uint16 skill_id) return bonus; } -static void pc_respawn(struct map_session_data *sd, clr_type clrtype) +static void pc_respawn(struct map_session_data *sd, enum clr_type clrtype) { if( !pc_isdead(sd) ) return; // not applicable @@ -8287,15 +8286,15 @@ static int pc_dead(struct map_session_data *sd, struct block_list *src) if(id == 0) continue; if(id == -1){ - int eq_num=0,eq_n[MAX_INVENTORY],k; + int eq_num = 0, eq_n[MAX_INVENTORY], k; memset(eq_n,0,sizeof(eq_n)); - for(i=0;i<MAX_INVENTORY;i++){ + for(i = 0; i < sd->status.inventorySize; i++) { if( (type == 1 && !sd->status.inventory[i].equip) || (type == 2 && sd->status.inventory[i].equip) || type == 3) { - ARR_FIND( 0, MAX_INVENTORY, k, eq_n[k] <= 0 ); - if( k < MAX_INVENTORY ) + ARR_FIND(0, sd->status.inventorySize, k, eq_n[k] <= 0); + if (k < sd->status.inventorySize) eq_n[k] = i; eq_num++; @@ -8311,7 +8310,7 @@ static int pc_dead(struct map_session_data *sd, struct block_list *src) } } else if(id > 0){ - for(i=0;i<MAX_INVENTORY;i++){ + for( i = 0; i < sd->status.inventorySize; i++) { if(sd->status.inventory[i].nameid == id && rnd()%10000 < per && ((type == 1 && !sd->status.inventory[i].equip) @@ -8827,7 +8826,7 @@ static int pc_itemheal(struct map_session_data *sd, int itemid, int hp, int sp) } } - return status->heal(&sd->bl, hp, sp, 1); + return status->heal(&sd->bl, hp, sp, STATUS_HEAL_FORCED); } /*========================================== @@ -10142,7 +10141,7 @@ static int pc_equipitem(struct map_session_data *sd, int n, int req_pos) nullpo_ret(sd); - if( n < 0 || n >= MAX_INVENTORY ) { + if (n < 0 || n >= sd->status.inventorySize) { clif->equipitemack(sd,0,0,EIA_FAIL); return 0; } @@ -10350,7 +10349,7 @@ static int pc_unequipitem(struct map_session_data *sd, int n, int flag) nullpo_ret(sd); - if (n < 0 || n >= MAX_INVENTORY) { + if (n < 0 || n >= sd->status.inventorySize) { clif->unequipitemack(sd, 0, 0, UIA_FAIL); return 0; } @@ -10502,7 +10501,7 @@ static int pc_checkitem(struct map_session_data *sd) int id = 0; if (sd->itemcheck & PCCHECKITEM_INVENTORY) { - for (i = 0; i < MAX_INVENTORY; i++) { + for (i = 0; i < sd->status.inventorySize; i++) { if ((id = sd->status.inventory[i].nameid) == 0) continue; @@ -10582,7 +10581,7 @@ static int pc_checkitem(struct map_session_data *sd) } } - for (i = 0; i < MAX_INVENTORY; i++) { + for (i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].nameid == 0) continue; @@ -10756,11 +10755,14 @@ static int pc_divorce(struct map_session_data *sd) // Both players online, lets do the divorce manually sd->status.partner_id = 0; p_sd->status.partner_id = 0; - for( i = 0; i < MAX_INVENTORY; i++ ) + for (i = 0; i < sd->status.inventorySize; i++) { - if( sd->status.inventory[i].nameid == WEDDING_RING_M || sd->status.inventory[i].nameid == WEDDING_RING_F ) + if (sd->status.inventory[i].nameid == WEDDING_RING_M || sd->status.inventory[i].nameid == WEDDING_RING_F) pc->delitem(sd, i, 1, 0, DELITEM_NORMAL, LOG_TYPE_DIVORCE); - if( p_sd->status.inventory[i].nameid == WEDDING_RING_M || p_sd->status.inventory[i].nameid == WEDDING_RING_F ) + } + for (i = 0; i < p_sd->status.inventorySize; i++) + { + if (p_sd->status.inventory[i].nameid == WEDDING_RING_M || p_sd->status.inventory[i].nameid == WEDDING_RING_F) pc->delitem(p_sd, i, 1, 0, DELITEM_NORMAL, LOG_TYPE_DIVORCE); } @@ -10878,7 +10880,7 @@ static void pc_regen(struct map_session_data *sd, unsigned int diff_tick) } if (hp > 0 || sp > 0) - status->heal(&sd->bl, hp, sp, 0); + status->heal(&sd->bl, hp, sp, STATUS_HEAL_DEFAULT); return; } @@ -12334,6 +12336,23 @@ static bool pc_has_second_costume(struct map_session_data *sd) return false; } +static bool pc_expandInventory(struct map_session_data *sd, int adjustSize) +{ + nullpo_retr(false, sd); + const int invSize = sd->status.inventorySize; + if (adjustSize > MAX_INVENTORY || invSize + adjustSize <= FIXED_INVENTORY_SIZE || invSize + adjustSize > MAX_INVENTORY) { + clif->inventoryExpandResult(sd, EXPAND_INVENTORY_RESULT_MAX_SIZE); + return false; + } + if (pc_isdead(sd) || sd->state.vending || sd->state.buyingstore || sd->chat_id != 0 || sd->state.trading || sd->state.storage_flag || sd->state.prevend) { + clif->inventoryExpandResult(sd, EXPAND_INVENTORY_RESULT_OTHER_WORK); + return false; + } + sd->status.inventorySize += adjustSize; + clif->inventoryExpansionInfo(sd); + return true; +} + static void do_final_pc(void) { @@ -12736,4 +12755,5 @@ void pc_defaults(void) pc->isDeathPenaltyJob = pc_isDeathPenaltyJob; pc->has_second_costume = pc_has_second_costume; + pc->expandInventory = pc_expandInventory; } diff --git a/src/map/pc.h b/src/map/pc.h index 17a9b8200..90e59edb2 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -151,8 +151,8 @@ struct s_addeffectonskill { unsigned char target; }; struct s_add_drop { + bool is_group; int id; - short group; int race, rate; }; struct s_autobonus { @@ -557,8 +557,7 @@ END_ZEROED_BLOCK; int shadowform_id; /* [Ind/Hercules] */ - struct channel_data **channels; - unsigned char channel_count; + VECTOR_DECL(struct channel_data *) channels; struct channel_data *gcbind; unsigned char fontcolor; int fontcolor_tid; @@ -906,7 +905,7 @@ END_ZEROED_BLOCK; /* End */ int (*setrestartvalue) (struct map_session_data *sd,int type); int (*makesavestatus) (struct map_session_data *sd); - void (*respawn) (struct map_session_data* sd, clr_type clrtype); + void (*respawn) (struct map_session_data* sd, enum clr_type clrtype); int (*setnewpc) (struct map_session_data *sd, int account_id, int char_id, int login_id1, unsigned int client_tick, int sex, int fd); bool (*authok) (struct map_session_data *sd, int login_id2, time_t expiration_time, int group_id, const struct mmo_charstatus *st, bool changing_mapservers); void (*authfail) (struct map_session_data *sd); @@ -928,16 +927,16 @@ END_ZEROED_BLOCK; /* End */ int (*calc_skilltree_normalize_job) (struct map_session_data *sd); int (*clean_skilltree) (struct map_session_data *sd); - int (*setpos) (struct map_session_data* sd, unsigned short map_index, int x, int y, clr_type clrtype); + int (*setpos) (struct map_session_data* sd, unsigned short map_index, int x, int y, enum clr_type clrtype); int (*setsavepoint) (struct map_session_data *sd, short map_index, int x, int y); - int (*randomwarp) (struct map_session_data *sd,clr_type type); + int (*randomwarp) (struct map_session_data *sd, enum clr_type type); int (*memo) (struct map_session_data* sd, int pos); int (*checkadditem) (struct map_session_data *sd,int nameid,int amount); int (*inventoryblank) (struct map_session_data *sd); int (*search_inventory) (struct map_session_data *sd,int item_id); int (*payzeny) (struct map_session_data *sd,int zeny, enum e_log_pick_type type, struct map_session_data *tsd); - int (*additem) (struct map_session_data *sd,struct item *item_data,int amount,e_log_pick_type log_type); + int (*additem) (struct map_session_data *sd, const struct item *item_data, int amount, e_log_pick_type log_type); int (*getzeny) (struct map_session_data *sd,int zeny, enum e_log_pick_type type, struct map_session_data *tsd); int (*delitem) (struct map_session_data *sd,int n,int amount,int type, short reason, e_log_pick_type log_type); @@ -1125,7 +1124,7 @@ END_ZEROED_BLOCK; /* End */ int (*bonus_autospell_onskill) (struct s_autospell *spell, int max, short src_skill, short id, short lv, short rate, int card_id); int (*bonus_addeff) (struct s_addeffect* effect, int max, enum sc_type id, int16 rate, int16 arrow_rate, uint8 flag, uint16 duration); int (*bonus_addeff_onskill) (struct s_addeffectonskill* effect, int max, enum sc_type id, short rate, short skill_id, unsigned char target); - int (*bonus_item_drop) (struct s_add_drop *drop, const short max, short id, short group, int race, int rate); + int (*bonus_item_drop) (struct s_add_drop *drop, const short max, int id, bool is_group, int race, int rate); void (*calcexp) (struct map_session_data *sd, uint64 *base_exp, uint64 *job_exp, struct block_list *src); int (*respawn_timer) (int tid, int64 tick, int id, intptr_t data); int (*jobchange_killclone) (struct block_list *bl, va_list ap); @@ -1186,6 +1185,7 @@ END_ZEROED_BLOCK; /* End */ bool (*check_basicskill) (struct map_session_data *sd, int level); bool (*isDeathPenaltyJob) (uint16 job); bool (*has_second_costume) (struct map_session_data *sd); + bool (*expandInventory) (struct map_session_data *sd, int adjustSize); }; #ifdef HERCULES_CORE diff --git a/src/map/pet.c b/src/map/pet.c index c32a92b78..dd9f1ebbf 100644 --- a/src/map/pet.c +++ b/src/map/pet.c @@ -94,10 +94,10 @@ static void pet_set_intimate(struct pet_data *pd, int value) if (value <= 0) { int i; - ARR_FIND(0, MAX_INVENTORY, i, sd->status.inventory[i].card[0] == CARD0_PET && + ARR_FIND(0, sd->status.inventorySize, i, sd->status.inventory[i].card[0] == CARD0_PET && pd->pet.pet_id == MakeDWord(sd->status.inventory[i].card[1], sd->status.inventory[i].card[2])); - if (i != MAX_INVENTORY) { + if (i != sd->status.inventorySize) { pc->delitem(sd, i, 1, 0, DELITEM_NORMAL, LOG_TYPE_EGG); } } @@ -342,10 +342,10 @@ static int pet_return_egg(struct map_session_data *sd, struct pet_data *pd) pet->lootitem_drop(pd,sd); // Pet Evolution - ARR_FIND(0, MAX_INVENTORY, i, sd->status.inventory[i].card[0] == CARD0_PET && + ARR_FIND(0, sd->status.inventorySize, i, sd->status.inventory[i].card[0] == CARD0_PET && pd->pet.pet_id == MakeDWord(sd->status.inventory[i].card[1], sd->status.inventory[i].card[2])); - if (i != MAX_INVENTORY) { + if (i != sd->status.inventorySize) { sd->status.inventory[i].attribute &= ~ATTR_BROKEN; sd->status.inventory[i].bound = IBT_NONE; } @@ -492,10 +492,10 @@ static int pet_recv_petdata(int account_id, struct s_pet *p, int flag) if(p->incubate == 1) { int i; // Get Egg Index - ARR_FIND(0, MAX_INVENTORY, i, sd->status.inventory[i].card[0] == CARD0_PET && + ARR_FIND(0, sd->status.inventorySize, i, sd->status.inventory[i].card[0] == CARD0_PET && p->pet_id == MakeDWord(sd->status.inventory[i].card[1], sd->status.inventory[i].card[2])); - if(i == MAX_INVENTORY) { + if(i == sd->status.inventorySize) { ShowError("pet_recv_petdata: Hatching pet (%d:%s) aborted, couldn't find egg in inventory for removal!\n",p->pet_id, p->name); sd->status.pet_id = 0; return 1; @@ -527,7 +527,7 @@ static int pet_select_egg(struct map_session_data *sd, int egg_index) { nullpo_ret(sd); - if(egg_index < 0 || egg_index >= MAX_INVENTORY) + if (egg_index < 0 || egg_index >= sd->status.inventorySize) return 0; //Forged packet! if(sd->status.inventory[egg_index].card[0] == CARD0_PET) diff --git a/src/map/quest.c b/src/map/quest.c index 02bf7638b..7a216095e 100644 --- a/src/map/quest.c +++ b/src/map/quest.c @@ -30,6 +30,7 @@ #include "map/itemdb.h" #include "map/log.h" #include "map/map.h" +#include "map/mercenary.h" #include "map/mob.h" #include "map/npc.h" #include "map/party.h" @@ -719,6 +720,8 @@ static bool quest_questinfo_validate(struct map_session_data *sd, struct questin return false; if (VECTOR_LENGTH(qi->quest_requirement) > 0 && quest->questinfo_validate_quests(sd, qi) == false) return false; + if (qi->mercenary_class != 0 && quest->questinfo_validate_mercenary_class(sd, qi) == false) + return false; return true; } @@ -811,7 +814,7 @@ static bool quest_questinfo_validate_items(struct map_session_data *sd, struct q for (int i = 0; i < VECTOR_LENGTH(qi->items); i++) { struct questinfo_itemreq *item = &VECTOR_INDEX(qi->items, i); int count = 0; - for (int j = 0; j < MAX_INVENTORY; j++) { + for (int j = 0; j < sd->status.inventorySize; j++) { if (sd->status.inventory[j].nameid == item->nameid) count += sd->status.inventory[j].amount; } @@ -901,6 +904,29 @@ static bool quest_questinfo_validate_quests(struct map_session_data *sd, struct } /** + * Validate mercenary class required for the questinfo + * + * @param sd session data. + * @param qi questinfo data. + * + * @retval true if player have a mercenary with the given class. + * @retval false if player does NOT have a mercenary with the given class. + */ +static bool quest_questinfo_validate_mercenary_class(struct map_session_data *sd, struct questinfo *qi) +{ + nullpo_retr(false, sd); + nullpo_retr(false, qi); + + if (sd->md == NULL) + return false; + + if (sd->md->mercenary.class_ != qi->mercenary_class) + return false; + + return true; +} + +/** * Clears the questinfo data vector * * @param m mapindex. @@ -993,5 +1019,6 @@ void quest_defaults(void) quest->questinfo_validate_homunculus_level = quest_questinfo_validate_homunculus_level; quest->questinfo_validate_homunculus_type = quest_questinfo_validate_homunculus_type; quest->questinfo_validate_quests = quest_questinfo_validate_quests; + quest->questinfo_validate_mercenary_class = quest_questinfo_validate_mercenary_class; quest->questinfo_vector_clear = quest_questinfo_vector_clear; } diff --git a/src/map/quest.h b/src/map/quest.h index 305a48df1..206a7902f 100644 --- a/src/map/quest.h +++ b/src/map/quest.h @@ -92,6 +92,7 @@ struct quest_interface { bool (*questinfo_validate_homunculus_level) (struct map_session_data *sd, struct questinfo *qi); bool (*questinfo_validate_homunculus_type) (struct map_session_data *sd, struct questinfo *qi); bool (*questinfo_validate_quests) (struct map_session_data *sd, struct questinfo *qi); + bool (*questinfo_validate_mercenary_class) (struct map_session_data *sd, struct questinfo *qi); void (*questinfo_vector_clear) (int m); }; diff --git a/src/map/rodex.c b/src/map/rodex.c index 602754d42..eea27b6d0 100644 --- a/src/map/rodex.c +++ b/src/map/rodex.c @@ -83,7 +83,7 @@ static void rodex_add_item(struct map_session_data *sd, int16 idx, int16 amount) nullpo_retv(sd); - if (idx < 0 || idx >= MAX_INVENTORY) { + if (idx < 0 || idx >= sd->status.inventorySize) { clif->rodex_add_item_result(sd, idx, amount, RODEX_ADD_ITEM_FATAL_ERROR); return; } @@ -160,7 +160,7 @@ static void rodex_remove_item(struct map_session_data *sd, int16 idx, int16 amou struct item_data *itd; nullpo_retv(sd); - Assert_retv(idx >= 0 && idx < MAX_INVENTORY); + Assert_retv(idx >= 0 && idx < sd->status.inventorySize); for (i = 0; i < RODEX_MAX_ITEM; ++i) { if (sd->rodex.tmp.items[i].idx == idx) @@ -504,7 +504,7 @@ static void rodex_get_items(struct map_session_data *sd, int8 opentype, int64 ma } required_slots = msg->items_count; - for (i = 0; i < MAX_INVENTORY; ++i) { + for (i = 0; i < sd->status.inventorySize; ++i) { if (sd->status.inventory[i].nameid == 0) { empty_slots++; } else if (itemdb->isstackable(sd->status.inventory[i].nameid) == 1) { diff --git a/src/map/script.c b/src/map/script.c index b787d0138..25bf59839 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -3316,95 +3316,28 @@ static void set_reg_npcscope_str(struct script_state *st, struct reg_db *n, int6 static void set_reg_pc_ref_str(struct script_state *st, struct reg_db *n, int64 num, const char *name, const char *str) { - struct script_reg_str *p = NULL; - unsigned int index = script_getvaridx(num); - - nullpo_retv(n); - - if ((p = i64db_get(n->vars, num)) != NULL) { - if (str[0]) { - if (p->value) { - aFree(p->value); - } else if (index) { - script->array_update(n, num, false); - } - p->value = aStrdup(str); - } else { - p->value = NULL; - if (index) { - script->array_update(n, num, true); - } - } + struct DBIterator *iter = db_iterator(map->pc_db); - if (!pc->reg_load) { - p->flag.update = 1; - } - } else if (str[0]) { - struct DBData prev; - if (index) { - script->array_update(n, num, false); - } - - p = ers_alloc(pc->str_reg_ers, struct script_reg_str); - p->value = aStrdup(str); - - if (!pc->reg_load) { - p->flag.update = 1; - } - p->flag.type = 1; - - if(n->vars->put(n->vars, DB->i642key(num), DB->ptr2data(p), &prev)) { - p = DB->data2ptr(&prev); - if (p->value) { - aFree(p->value); - } - ers_free(pc->str_reg_ers, p); + for (struct map_session_data *sd = dbi_first(iter); dbi_exists(iter); sd = dbi_next(iter)) { + if (sd != NULL && n == &sd->regs) { + pc->setregistry_str(sd, num, str); + break; } } + dbi_destroy(iter); } static void set_reg_pc_ref_num(struct script_state *st, struct reg_db *n, int64 num, const char *name, int val) { - struct script_reg_num *p = NULL; - unsigned int index = script_getvaridx(num); + struct DBIterator *iter = db_iterator(map->pc_db); - nullpo_retv(n); - - if ((p = i64db_get(n->vars, num)) != NULL) { - if (val) { - if (!p->value && index) { - script->array_update(n, num, false); - } - p->value = val; - } else { - p->value = 0; - if (index) { - script->array_update(n, num, true); - } - } - - if (!pc->reg_load) { - p->flag.update = 1; - } - } else if (val) { - struct DBData prev; - if (index) { - script->array_update(n, num, false); - } - - p = ers_alloc(pc->num_reg_ers, struct script_reg_num); - p->value = val; - - if (!pc->reg_load) { - p->flag.update = 1; - } - p->flag.type = 1; - - if(n->vars->put(n->vars, DB->i642key(num), DB->ptr2data(p), &prev)) { - p = DB->data2ptr(&prev); - ers_free(pc->num_reg_ers, p); + for (struct map_session_data *sd = dbi_first(iter); dbi_exists(iter); sd = dbi_next(iter)) { + if (sd != NULL && n == &sd->regs) { + pc->setregistry(sd, num, val); + break; } } + dbi_destroy(iter); } static void set_reg_npcscope_num(struct script_state *st, struct reg_db *n, int64 num, const char *name, int val) @@ -6166,11 +6099,11 @@ static BUILDIN(menu) sd->state.menu_or_input = 1; /* menus beyond this length crash the client (see bugreport:6402) */ - if( StrBuf->Length(&buf) >= 2047 ) { + if( StrBuf->Length(&buf) >= MAX_MENU_LENGTH - 1 ) { struct npc_data * nd = map->id2nd(st->oid); char* menu; - CREATE(menu, char, 2048); - safestrncpy(menu, StrBuf->Value(&buf), 2047); + CREATE(menu, char, MAX_MENU_LENGTH); + safestrncpy(menu, StrBuf->Value(&buf), MAX_MENU_LENGTH - 1); ShowWarning("NPC Menu too long! (source:%s / length:%d)\n",nd?nd->name:"Unknown",StrBuf->Length(&buf)); clif->scriptmenu(sd, st->oid, menu); aFree(menu); @@ -6179,13 +6112,13 @@ static BUILDIN(menu) StrBuf->Destroy(&buf); - if( sd->npc_menu >= 0xff ) + if( sd->npc_menu >= MAX_MENU_OPTIONS ) {// client supports only up to 254 entries; 0 is not used and 255 is reserved for cancel; excess entries are displayed but cause 'uint8' overflow - ShowWarning("buildin_menu: Too many options specified (current=%d, max=254).\n", sd->npc_menu); + ShowWarning("buildin_menu: Too many options specified (current=%d, max=%d).\n", sd->npc_menu, MAX_MENU_OPTIONS - 1); script->reportsrc(st); } } - else if( sd->npc_menu == 0xff ) + else if( sd->npc_menu == MAX_MENU_OPTIONS ) {// Cancel was pressed sd->state.menu_or_input = 0; st->state = END; @@ -6267,11 +6200,11 @@ static BUILDIN(select) sd->state.menu_or_input = 1; /* menus beyond this length crash the client (see bugreport:6402) */ - if( StrBuf->Length(&buf) >= 2047 ) { + if( StrBuf->Length(&buf) >= MAX_MENU_LENGTH - 1 ) { struct npc_data * nd = map->id2nd(st->oid); char* menu; - CREATE(menu, char, 2048); - safestrncpy(menu, StrBuf->Value(&buf), 2047); + CREATE(menu, char, MAX_MENU_LENGTH); + safestrncpy(menu, StrBuf->Value(&buf), MAX_MENU_LENGTH - 1); ShowWarning("NPC Menu too long! (source:%s / length:%d)\n",nd?nd->name:"Unknown",StrBuf->Length(&buf)); clif->scriptmenu(sd, st->oid, menu); aFree(menu); @@ -6279,107 +6212,31 @@ static BUILDIN(select) clif->scriptmenu(sd, st->oid, StrBuf->Value(&buf)); StrBuf->Destroy(&buf); - if( sd->npc_menu >= 0xff ) { - ShowWarning("buildin_select: Too many options specified (current=%d, max=254).\n", sd->npc_menu); + if( sd->npc_menu >= MAX_MENU_OPTIONS ) { + ShowWarning("buildin_select: Too many options specified (current=%d, max=%d).\n", sd->npc_menu, MAX_MENU_OPTIONS - 1); script->reportsrc(st); } - } else if( sd->npc_menu == 0xff ) {// Cancel was pressed - sd->state.menu_or_input = 0; - st->state = END; - } else {// return selected option - int menu = 0; - + } else if(sd->npc_menu == MAX_MENU_OPTIONS) { // Cancel was pressed sd->state.menu_or_input = 0; - for( i = 2; i <= script_lastdata(st); ++i ) { - text = script_getstr(st, i); - sd->npc_menu -= script->menu_countoptions(text, sd->npc_menu, &menu); - if( sd->npc_menu <= 0 ) - break;// entry found - } - pc->setreg(sd, script->add_variable("@menu"), menu); - script_pushint(st, menu); - st->state = RUN; - } - return true; -} - -/// Displays a menu with options and returns the selected option. -/// Behaves like 'menu' without the target labels, except when cancel is -/// pressed. -/// When cancel is pressed, the script continues and 255 is returned. -/// -/// prompt(<option_text>{,<option_text>,...}) -> <selected_option> -/// -/// @see menu -static BUILDIN(prompt) -{ - int i; - const char *text; - struct map_session_data *sd = script->rid2sd(st); - if (sd == NULL) - return true; - -#ifdef SECURE_NPCTIMEOUT - sd->npc_idle_type = NPCT_MENU; -#endif - - if( sd->state.menu_or_input == 0 ) - { - struct StringBuf buf; - - StrBuf->Init(&buf); - sd->npc_menu = 0; - for( i = 2; i <= script_lastdata(st); ++i ) - { - text = script_getstr(st, i); - if( sd->npc_menu > 0 ) - StrBuf->AppendStr(&buf, ":"); - StrBuf->AppendStr(&buf, text); - sd->npc_menu += script->menu_countoptions(text, 0, NULL); - } - - st->state = RERUNLINE; - sd->state.menu_or_input = 1; - - /* menus beyond this length crash the client (see bugreport:6402) */ - if( StrBuf->Length(&buf) >= 2047 ) { - struct npc_data * nd = map->id2nd(st->oid); - char* menu; - CREATE(menu, char, 2048); - safestrncpy(menu, StrBuf->Value(&buf), 2047); - ShowWarning("NPC Menu too long! (source:%s / length:%d)\n",nd?nd->name:"Unknown",StrBuf->Length(&buf)); - clif->scriptmenu(sd, st->oid, menu); - aFree(menu); - } else - clif->scriptmenu(sd, st->oid, StrBuf->Value(&buf)); - StrBuf->Destroy(&buf); - if( sd->npc_menu >= 0xff ) - { - ShowWarning("buildin_prompt: Too many options specified (current=%d, max=254).\n", sd->npc_menu); - script->reportsrc(st); + if (strncmp(get_buildin_name(st), "prompt", 6) == 0) { + pc->setreg(sd, script->add_variable("@menu"), MAX_MENU_OPTIONS); + script_pushint(st, MAX_MENU_OPTIONS); // XXX: we should really be pushing -1 instead + st->state = RUN; + } else { + st->state = END; } - } - else if( sd->npc_menu == 0xff ) - {// Cancel was pressed - sd->state.menu_or_input = 0; - pc->setreg(sd, script->add_variable("@menu"), 0xff); - script_pushint(st, 0xff); - st->state = RUN; - } - else - {// return selected option + } else {// return selected option int menu = 0; sd->state.menu_or_input = 0; - for( i = 2; i <= script_lastdata(st); ++i ) - { + for( i = 2; i <= script_lastdata(st); ++i ) { text = script_getstr(st, i); sd->npc_menu -= script->menu_countoptions(text, sd->npc_menu, &menu); if( sd->npc_menu <= 0 ) break;// entry found } - pc->setreg(sd, script->add_variable("@menu"), menu); + pc->setreg(sd, script->add_variable("@menu"), menu); // TODO: throw a deprecation warning for scripts using @menu script_pushint(st, menu); st->state = RUN; } @@ -6998,7 +6855,7 @@ static BUILDIN(heal) hp=script_getnum(st,2); sp=script_getnum(st,3); - status->heal(&sd->bl, hp, sp, 1); + status->heal(&sd->bl, hp, sp, STATUS_HEAL_FORCED); return true; } /*========================================== @@ -7696,7 +7553,6 @@ static BUILDIN(viewpoint) *------------------------------------------*/ static BUILDIN(countitem) { - int nameid, i; int count = 0; struct item_data* id = NULL; @@ -7718,11 +7574,12 @@ static BUILDIN(countitem) return false; } - nameid = id->nameid; + int nameid = id->nameid; - for(i = 0; i < MAX_INVENTORY; i++) - if(sd->status.inventory[i].nameid == nameid) + for (int i = 0; i < sd->status.inventorySize; i++) { + if (sd->status.inventory[i].nameid == nameid) count += sd->status.inventory[i].amount; + } script_pushint(st,count); return true; @@ -7736,7 +7593,6 @@ static BUILDIN(countitem2) { int nameid, iden, ref, attr, c1, c2, c3, c4; int count = 0; - int i; struct item_data* id = NULL; struct map_session_data *sd = script->rid2sd(st); @@ -7766,7 +7622,7 @@ static BUILDIN(countitem2) c3 = script_getnum(st,8); c4 = script_getnum(st,9); - for(i = 0; i < MAX_INVENTORY; i++) + for (int i = 0; i < sd->status.inventorySize; i++) if (sd->status.inventory[i].nameid > 0 && sd->inventory_data[i] != NULL && sd->status.inventory[i].amount > 0 && sd->status.inventory[i].nameid == nameid && sd->status.inventory[i].identify == iden && sd->status.inventory[i].refine == ref && @@ -8841,32 +8697,23 @@ static BUILDIN(getcharid) return true; } + /*========================================== * returns the GID of an NPC *------------------------------------------*/ static BUILDIN(getnpcid) { - int num = script_getnum(st,2); - struct npc_data* nd = NULL; - - if( script_hasdata(st,3) ) - {// unique npc name - if( ( nd = npc->name2id(script_getstr(st,3)) ) == NULL ) - { - ShowError("buildin_getnpcid: No such NPC '%s'.\n", script_getstr(st,3)); - script_pushint(st,0); - return false; + if (script_hasdata(st, 2)) { + if (script_isinttype(st, 2)) { + // Deprecate old form - getnpcid(<type>{, <"npc name">}) + ShowWarning("buildin_getnpcid: Use of type is deprecated. Format - getnpcid({<\"npc name\">})\n"); + script_pushint(st, 0); + } else { + struct npc_data *nd = npc->name2id(script_getstr(st, 2)); + script_pushint(st, (nd != NULL) ? nd->bl.id : 0); } - } - - switch (num) { - case 0: - script_pushint(st,nd ? nd->bl.id : st->oid); - break; - default: - ShowError("buildin_getnpcid: invalid parameter (%d).\n", num); - script_pushint(st,0); - return false; + } else { + script_pushint(st, st->oid); } return true; @@ -9300,13 +9147,13 @@ static BUILDIN(getequipname) *------------------------------------------*/ static BUILDIN(getbrokenid) { - int i,num,id=0,brokencounter=0; + int num,id=0,brokencounter=0; struct map_session_data *sd = script->rid2sd(st); if (sd == NULL) return true; num=script_getnum(st,2); - for(i=0; i<MAX_INVENTORY; i++) { + for (int i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].card[0] == CARD0_PET) continue; if ((sd->status.inventory[i].attribute & ATTR_BROKEN) != 0) { @@ -9333,7 +9180,7 @@ static BUILDIN(getbrokencount) if (sd == NULL) return true; - for (i = 0; i < MAX_INVENTORY; i++) { + for (i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].card[0] == CARD0_PET) continue; if ((sd->status.inventory[i].attribute & ATTR_BROKEN) != 0) @@ -9350,14 +9197,13 @@ static BUILDIN(getbrokencount) *------------------------------------------*/ static BUILDIN(repair) { - int i,num; int repaircounter=0; struct map_session_data *sd = script->rid2sd(st); if (sd == NULL) return true; - num=script_getnum(st,2); - for(i=0; i<MAX_INVENTORY; i++) { + int num = script_getnum(st, 2); + for(int i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].card[0] == CARD0_PET) continue; if ((sd->status.inventory[i].attribute & ATTR_BROKEN) != 0) { @@ -9381,12 +9227,12 @@ static BUILDIN(repair) *------------------------------------------*/ static BUILDIN(repairall) { - int i, repaircounter = 0; + int repaircounter = 0; struct map_session_data *sd = script->rid2sd(st); if (sd == NULL) return true; - for(i = 0; i < MAX_INVENTORY; i++) + for (int i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].card[0] == CARD0_PET) continue; @@ -9809,6 +9655,25 @@ static BUILDIN(statusup2) return true; } + +/*========================================== +* Returns the number of stat points needed to change the specified stat by val. +* needed_status_point(<type>,<val>{,<char id>}); [secretdataz] +*------------------------------------------*/ +static BUILDIN(needed_status_point) +{ + int type = script_getnum(st, 2); + int val = script_getnum(st, 3);; + struct map_session_data *sd = script->rid2sd(st); + + if (sd == NULL) + script_pushint(st, 0); + else + script_pushint(st, pc->need_status_point(sd, type, val)); + + return true; +} + /// See 'doc/item_bonus.txt' /// /// bonus <bonus type>,<val1>; @@ -11443,7 +11308,7 @@ static int buildin_getunits_sub(struct block_list *bl, va_list ap) (const void *)h64BPTRSIZE(bl->id), ref); (*count)++; - return 0; + return 1; } static int buildin_getunits_sub_pc(struct map_session_data *sd, va_list ap) @@ -11515,18 +11380,10 @@ static BUILDIN(getunits) int16 x2 = script_getnum(st, 8); int16 y2 = script_getnum(st, 9); - // FIXME: map_foreachinarea does NOT stop iterating when the callback - // function returns -1. we still limit the array size, but - // this doesn't break the loop. We need a foreach function - // that behaves like map_foreachiddb, but for areas - map->foreachinarea(buildin_getunits_sub, m, x1, y1, x2, y2, type, + map->forcountinarea(buildin_getunits_sub, m, x1, y1, x2, y2, limit, type, st, sd, id, start, &count, limit, name, ref, type); } else { - // FIXME: map_foreachinmap does NOT stop iterating when the callback - // function returns -1. we still limit the array size, but - // this doesn't break the loop. We need a foreach function - // that behaves like map_foreachiddb, but for maps - map->foreachinmap(buildin_getunits_sub, m, type, + map->forcountinmap(buildin_getunits_sub, m, limit, type, st, sd, id, start, &count, limit, name, ref, type); } } else { @@ -12335,7 +12192,9 @@ static BUILDIN(sc_end) } //This should help status_change_end force disabling the SC in case it has no limit. - sce->val1 = sce->val2 = sce->val3 = sce->val4 = 0; + if (type != SC_BERSERK) + sce->val1 = 0; // SC_BERSERK requires skill_lv that's stored in sce->val1 when being removed [KirieZ] + sce->val2 = sce->val3 = sce->val4 = 0; status_change_end(bl, (sc_type)type, INVALID_TIMER); } else @@ -14480,6 +14339,9 @@ static BUILDIN(getiteminfo) case ITEMINFO_VIEWSPRITE: script_pushint(st, it->view_sprite); break; + case ITEMINFO_TRADE: + script_pushint(st, it->flag.trade_restriction); + break; default: ShowError("buildin_getiteminfo: Invalid item type %d.\n", n); script_pushint(st,-1); @@ -14746,6 +14608,9 @@ static BUILDIN(setiteminfo) case ITEMINFO_VIEWSPRITE: it->view_sprite = value; break; + case ITEMINFO_TRADE: + it->flag.trade_restriction = value; + break; default: ShowError("buildin_setiteminfo: invalid type %d.\n", n); script_pushint(st,-1); @@ -14874,10 +14739,10 @@ static BUILDIN(getinventorylist) struct map_session_data *sd = script->rid2sd(st); char card_var[SCRIPT_VARNAME_LENGTH]; - int i,j=0,k; + int j=0,k; if(!sd) return true; - for(i=0;i<MAX_INVENTORY;i++) { + for (int i = 0;i < sd->status.inventorySize; i++) { if(sd->status.inventory[i].nameid > 0 && sd->status.inventory[i].amount > 0) { pc->setreg(sd,reference_uid(script->add_variable("@inventorylist_id"), j),sd->status.inventory[i].nameid); pc->setreg(sd,reference_uid(script->add_variable("@inventorylist_amount"), j),sd->status.inventory[i].amount); @@ -14968,10 +14833,9 @@ static BUILDIN(getskilllist) static BUILDIN(clearitem) { struct map_session_data *sd = script->rid2sd(st); - int i; if (sd == NULL) return true; - for (i=0; i<MAX_INVENTORY; i++) { + for (int i = 0; i < sd->status.inventorySize; i++) { if (sd->status.inventory[i].amount) { pc->delitem(sd, i, sd->status.inventory[i].amount, 0, DELITEM_NORMAL, LOG_TYPE_SCRIPT); } @@ -15428,6 +15292,50 @@ static BUILDIN(specialeffect2) return true; } +static BUILDIN(removespecialeffect) +{ + struct block_list *bl = NULL; + int type = script_getnum(st, 2); + enum send_target target = AREA; + + if (script_hasdata(st, 3)) { + target = script_getnum(st, 3); + } + + if (script_hasdata(st, 4)) { + if (script_isstringtype(st, 4)) { + struct npc_data *nd = npc->name2id(script_getstr(st, 4)); + if (nd != NULL) { + bl = &nd->bl; + } + } else { + bl = map->id2bl(script_getnum(st, 4)); + } + } else { + bl = map->id2bl(st->oid); + } + + if (bl == NULL) { + return true; + } + + if (target == SELF) { + struct map_session_data *sd; + if (script_hasdata(st, 5)) { + sd = map->id2sd(script_getnum(st, 5)); + } else { + sd = script->rid2sd(st); + } + if (sd != NULL) { + clif->removeSpecialEffect_single(bl, type, &sd->bl); + } + } else { + clif->removeSpecialEffect(bl, type, target); + } + + return true; +} + /*========================================== * Nude [Valaris] *------------------------------------------*/ @@ -15698,19 +15606,18 @@ static BUILDIN(getmercinfo) *------------------------------------------*/ static BUILDIN(checkequipedcard) { - int n,i,c=0; struct map_session_data *sd = script->rid2sd(st); if (sd == NULL) return true; - c = script_getnum(st,2); + int c = script_getnum(st,2); - for( i=0; i<MAX_INVENTORY; i++) { + for (int i = 0; i < sd->status.inventorySize; i++) { if(sd->status.inventory[i].nameid > 0 && sd->status.inventory[i].amount && sd->inventory_data[i]) { if (itemdb_isspecial(sd->status.inventory[i].card[0])) continue; - for(n=0;n<sd->inventory_data[i]->slot;n++) { + for (int n = 0; n < sd->inventory_data[i]->slot; n++) { if(sd->status.inventory[i].card[n]==c) { script_pushint(st,1); return true; @@ -15786,6 +15693,29 @@ static BUILDIN(message) return true; } +static BUILDIN(servicemessage) +{ + struct map_session_data *sd = NULL; + + if (script_hasdata(st, 4)) { + if (script_isstringtype(st, 4)) + sd = script->nick2sd(st, script_getstr(st, 4)); + else + sd = script->id2sd(st, script_getnum(st, 4)); + } else { + sd = script->rid2sd(st); + } + + if (sd == NULL) + return true; + + const char *message = script_getstr(st, 2); + const int color = script_getnum(st, 3); + clif->serviceMessageColor(sd, color, message); + + return true; +} + /*========================================== * npctalk (sends message to surrounding area) * usage: npctalk("<message>"{, "<npc name>"{, <show_name>}}); @@ -16555,9 +16485,9 @@ static BUILDIN(equip) ShowError("wrong item ID : equipitem(%d)\n",nameid); return false; } - ARR_FIND( 0, MAX_INVENTORY, i, sd->status.inventory[i].nameid == nameid && sd->status.inventory[i].equip == 0 ); - if( i < MAX_INVENTORY ) - pc->equipitem(sd,i,item_data->equip); + ARR_FIND(0, sd->status.inventorySize, i, sd->status.inventory[i].nameid == nameid && sd->status.inventory[i].equip == 0); + if (i < sd->status.inventorySize) + pc->equipitem(sd, i, item_data->equip); return true; } @@ -16615,21 +16545,21 @@ static BUILDIN(equip2) c2 = script_getnum(st, 7); c3 = script_getnum(st, 8); - ARR_FIND( 0, MAX_INVENTORY, i,( sd->status.inventory[i].equip == 0 && + ARR_FIND(0, sd->status.inventorySize, i, (sd->status.inventory[i].equip == 0 && sd->status.inventory[i].nameid == nameid && sd->status.inventory[i].refine == ref && sd->status.inventory[i].attribute == attr && sd->status.inventory[i].card[0] == c0 && sd->status.inventory[i].card[1] == c1 && sd->status.inventory[i].card[2] == c2 && - sd->status.inventory[i].card[3] == c3 ) ); + sd->status.inventory[i].card[3] == c3)); - if( i < MAX_INVENTORY ) { + if (i < sd->status.inventorySize) { script_pushint(st,1); pc->equipitem(sd,i,item_data->equip); - } - else + } else { script_pushint(st,0); + } return true; } @@ -16816,6 +16746,63 @@ static BUILDIN(getdatatype) return true; } +static BUILDIN(data_to_string) +{ + if (script_hasdata(st, 2)) { + struct script_data *data = script_getdata(st, 2); + + if (data_isstring(data)) { + script_pushcopy(st, 2); + } else if (data_isint(data)) { + char *str = NULL; + + CREATE(str, char, 20); + safesnprintf(str, 20, "%"PRId64"", data->u.num); + script_pushstr(st, str); + } else if (data_islabel(data)) { + const char *str = ""; + + // XXX: because all we have is the label pos we can't be sure which + // one is the correct label if more than one has the same pos. + // We might want to store both the pos and str_data index in + // data->u.num, similar to how C_NAME stores both the array + // index and str_data index in u.num with bitmasking. This + // would also avoid the awkward for() loops as we could + // directly access the string with script->get_str(). + + if (st->oid) { + struct npc_data *nd = map->id2nd(st->oid); + + for (int i = 0; i < nd->u.scr.label_list_num; ++i) { + if (nd->u.scr.label_list[i].pos == data->u.num) { + str = nd->u.scr.label_list[i].name; + break; + } + } + } else { + for (int i = LABEL_START; script->str_data[i].next != 0; i = script->str_data[i].next) { + if (script->str_data[i].label == data->u.num) { + str = script->get_str(i); + break; + } + } + } + + script_pushconststr(st, str); + } else if (data_isreference(data)) { + script_pushstrcopy(st, reference_getname(data)); + } else { + ShowWarning("script:data_to_string: unknown data type!\n"); + script->reportdata(data); + script_pushconststr(st, ""); + } + } else { + script_pushconststr(st, ""); // NIL + } + + return true; +} + //======================================================= // chr <int> //------------------------------------------------------- @@ -17870,7 +17857,9 @@ static BUILDIN(getd) id = script->add_variable(varname); - if (script->str_data[id].type != C_NAME) { + if (script->str_data[id].type != C_NAME && // variable + script->str_data[id].type != C_PARAM && // param + script->str_data[id].type != C_INT) { // constant ShowError("script:getd: `%s` is already used by something that is not a variable.\n", varname); st->state = END; return false; @@ -18830,7 +18819,7 @@ static BUILDIN(setunitdata) md->level = val; break; case UDT_HP: - status->set_hp(bl, (unsigned int) val, 0); + status->set_hp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); clif->charnameack(0, &md->bl); break; case UDT_MAXHP: @@ -18838,7 +18827,7 @@ static BUILDIN(setunitdata) clif->charnameack(0, &md->bl); break; case UDT_SP: - status->set_sp(bl, (unsigned int) val, 0); + status->set_sp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXSP: md->status.max_sp = (unsigned int) val; @@ -18999,13 +18988,13 @@ static BUILDIN(setunitdata) hd->homunculus.level = (short) val; break; case UDT_HP: - status->set_hp(bl, (unsigned int) val, 0); + status->set_hp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXHP: hd->homunculus.max_hp = val; break; case UDT_SP: - status->set_sp(bl, (unsigned int) val, 0); + status->set_sp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXSP: hd->homunculus.max_sp = val; @@ -19138,13 +19127,13 @@ static BUILDIN(setunitdata) pd->pet.level = (short) val; break; case UDT_HP: - status->set_hp(bl, (unsigned int) val, 0); + status->set_hp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXHP: pd->status.max_hp = (unsigned int) val; break; case UDT_SP: - status->set_sp(bl, (unsigned int) val, 0); + status->set_sp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXSP: pd->status.max_sp = (unsigned int) val; @@ -19272,13 +19261,13 @@ static BUILDIN(setunitdata) mc->base_status.size = (unsigned char) val; break; case UDT_HP: - status->set_hp(bl, (unsigned int) val, 0); + status->set_hp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXHP: mc->base_status.max_hp = (unsigned int) val; break; case UDT_SP: - status->set_sp(bl, (unsigned int) val, 0); + status->set_sp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXSP: mc->base_status.max_sp = (unsigned int) val; @@ -19406,13 +19395,13 @@ static BUILDIN(setunitdata) ed->base_status.size = (unsigned char) val; break; case UDT_HP: - status->set_hp(bl, (unsigned int) val, 0); + status->set_hp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXHP: ed->base_status.max_hp = (unsigned int) val; break; case UDT_SP: - status->set_sp(bl, (unsigned int) val, 0); + status->set_sp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXSP: ed->base_status.max_sp = (unsigned int) val; @@ -19538,13 +19527,13 @@ static BUILDIN(setunitdata) nd->level = (unsigned short) val; break; case UDT_HP: - status->set_hp(bl, (unsigned int) val, 0); + status->set_hp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXHP: nd->status.max_hp = (unsigned int) val; break; case UDT_SP: - status->set_sp(bl, (unsigned int) val, 0); + status->set_sp(bl, (unsigned int) val, STATUS_HEAL_DEFAULT); break; case UDT_MAXSP: nd->status.max_sp = (unsigned int) val; @@ -20698,7 +20687,7 @@ static BUILDIN(getvariableofpc) } if (!sd->regs.vars) - sd->regs.vars = i64db_alloc(DB_OPT_RELEASE_DATA); + sd->regs.vars = i64db_alloc(DB_OPT_BASE); script->push_val(st->stack, C_NAME, reference_getuid(data), &sd->regs); return true; @@ -20855,7 +20844,7 @@ static BUILDIN(mercenary_heal) hp = script_getnum(st,2); sp = script_getnum(st,3); - status->heal(&sd->md->bl, hp, sp, 0); + status->heal(&sd->md->bl, hp, sp, STATUS_HEAL_DEFAULT); return true; } @@ -21190,6 +21179,17 @@ static BUILDIN(setquestinfo) VECTOR_PUSH(qi->quest_requirement, quest_req); break; } + case QINFO_MERCENARY_CLASS: + { + int mer_class = script_getnum(st, 3); + + if (!mercenary->class(mer_class)) { + ShowWarning("buildin_setquestinfo: invalid mercenary class given (%d).\n", mer_class); + return false; + } + qi->mercenary_class = mer_class; + break; + } default: ShowWarning("buildin_setquestinfo: invalid type given (%u).\n", type); return false; @@ -21343,18 +21343,7 @@ static BUILDIN(showevent) } } -#if PACKETVER >= 20170315 - if (icon < 0 || (icon > 10 && icon != 9999)) - icon = 9999; -#elif PACKETVER >= 20120410 - if (icon < 0 || (icon > 8 && icon != 9999) || icon == 7) - icon = 9999; // Default to nothing if icon id is invalid. -#else - if (icon < 0 || icon > 7) - icon = 0; - else - icon = icon + 1; -#endif + icon = quest->questinfo_validate_icon(icon); clif->quest_show_event(sd, &nd->bl, icon, color); return true; @@ -23684,7 +23673,7 @@ static BUILDIN(bg_join_team) *------------------------------------------*/ static BUILDIN(countbound) { - int i, type, j=0, k=0; + int type, j=0, k=0; struct map_session_data *sd = script->rid2sd(st); if (sd == NULL) @@ -23692,7 +23681,7 @@ static BUILDIN(countbound) type = script_hasdata(st,2)?script_getnum(st,2):0; - for(i=0;i<MAX_INVENTORY;i++) { + for (int i = 0; i < sd->status.inventorySize; i++) { if(sd->status.inventory[i].nameid > 0 && ( (!type && sd->status.inventory[i].bound > 0) || (type && sd->status.inventory[i].bound == type) @@ -23738,20 +23727,21 @@ static BUILDIN(checkbound) ShowError("script_checkbound: Not a valid bind type! Type=%d\n", bound_type); } - ARR_FIND( 0, MAX_INVENTORY, i, (sd->status.inventory[i].nameid == nameid && + ARR_FIND(0, sd->status.inventorySize, i, (sd->status.inventory[i].nameid == nameid && ( sd->status.inventory[i].refine == (script_hasdata(st,4)? script_getnum(st,4) : sd->status.inventory[i].refine) ) && ( sd->status.inventory[i].attribute == (script_hasdata(st,5)? script_getnum(st,5) : sd->status.inventory[i].attribute) ) && ( sd->status.inventory[i].card[0] == (script_hasdata(st,6)? script_getnum(st,6) : sd->status.inventory[i].card[0]) ) && ( sd->status.inventory[i].card[1] == (script_hasdata(st,7)? script_getnum(st,7) : sd->status.inventory[i].card[1]) ) && ( sd->status.inventory[i].card[2] == (script_hasdata(st,8)? script_getnum(st,8) : sd->status.inventory[i].card[2]) ) && ( sd->status.inventory[i].card[3] == (script_hasdata(st,9)? script_getnum(st,9) : sd->status.inventory[i].card[3]) ) && - ((sd->status.inventory[i].bound > 0 && !bound_type) || sd->status.inventory[i].bound == bound_type )) ); + ((sd->status.inventory[i].bound > 0 && !bound_type) || sd->status.inventory[i].bound == bound_type))); - if( i < MAX_INVENTORY ){ + if (i < sd->status.inventorySize) { script_pushint(st, sd->status.inventory[i].bound); return true; - } else + } else { script_pushint(st,0); + } return true; } @@ -24803,6 +24793,136 @@ static BUILDIN(msgtable2) return true; } +// show/hide camera info +static BUILDIN(camerainfo) +{ + struct map_session_data *sd = script_rid2sd(st); + if (sd == NULL) + return false; + + clif->camera_showWindow(sd); + return true; +} + +// allow change some camera parameters +static BUILDIN(changecamera) +{ + struct map_session_data *sd = script_rid2sd(st); + if (sd == NULL) + return false; + + enum send_target target = SELF; + if (script_hasdata(st, 5)) { + target = script_getnum(st, 5); + } + clif->camera_change(sd, (float)script_getnum(st, 2), (float)script_getnum(st, 3), (float)script_getnum(st, 4), target); + return true; +} + +// update preview window to given item +static BUILDIN(itempreview) +{ + struct map_session_data *sd = script_rid2sd(st); + if (sd == NULL) + return false; + clif->item_preview(sd, script_getnum(st, 2)); + return true; +} + +// insert or remove card into equipped item +static BUILDIN(enchantitem) +{ + struct map_session_data *sd = script_rid2sd(st); + if (sd == NULL) + return false; + const int pos = script_getnum(st, 2); + if ((pos < EQI_ACC_L || pos > EQI_HAND_R) && pos != EQI_AMMO) { + ShowError("Wrong equip position: %d\n", pos); + script->reportfunc(st); + script->reportsrc(st); + script_pushint(st, false); + return true; + } + const int cardId = script_getnum(st, 4); + struct item_data *it = itemdb->exists(cardId); + if (it == NULL || it->type != IT_CARD) { + ShowError("Item id is not card or not exists: %d\n", cardId); + script->reportfunc(st); + script->reportsrc(st); + script_pushint(st, false); + return true; + } + const int n = sd->equip_index[pos]; + if (n < 0) { + ShowError("Item in equipment slot %d is not equipped\n", pos); + script->reportfunc(st); + script->reportsrc(st); + script_pushint(st, false); + return true; + } + const int cardSlot = script_getnum(st, 3); + if (cardSlot < 0 || cardSlot >= MAX_SLOTS) { + ShowError("Wrong card slot %d. Must be in range 0-3.\n", cardSlot); + script->reportfunc(st); + script->reportsrc(st); + script_pushint(st, false); + return true; + } + const bool res = clif->enchant_equipment(sd, pc->equip_pos[pos], cardSlot, cardId); + if (res) { + logs->pick_pc(sd, LOG_TYPE_CARD, -1, &sd->status.inventory[n],sd->inventory_data[n]); + sd->status.inventory[n].card[cardSlot] = cardId; + logs->pick_pc(sd, LOG_TYPE_CARD, 1, &sd->status.inventory[n],sd->inventory_data[n]); + status_calc_pc(sd, SCO_NONE); + } + script_pushint(st, res); + return true; +} + +// send ack to inventory expand request +static BUILDIN(expandInventoryAck) +{ + struct map_session_data *sd = script_rid2sd(st); + if (sd == NULL) + return false; + int itemId = 0; + if (script_hasdata(st, 3)) { + itemId = script_getnum(st, 3); + } + clif->inventoryExpandAck(sd, script_getnum(st, 2), itemId); + return true; +} + +// send final ack to inventory expand request +static BUILDIN(expandInventoryResult) +{ + struct map_session_data *sd = script_rid2sd(st); + if (sd == NULL) + return false; + clif->inventoryExpandResult(sd, script_getnum(st, 2)); + return true; +} + +// adjust player inventory size to given value positive or negative +static BUILDIN(expandInventory) +{ + struct map_session_data *sd = script_rid2sd(st); + if (sd == NULL) + return false; + script_pushint(st, pc->expandInventory(sd, script_getnum(st, 2))); + return true; +} + +// return current player inventory size +static BUILDIN(getInventorySize) +{ + struct map_session_data *sd = script_rid2sd(st); + if (sd == NULL) + return false; + script_pushint(st, sd->status.inventorySize); + return true; +} + /** * Adds a built-in script function. * @@ -24971,7 +25091,7 @@ static void script_parse_builtin(void) BUILDIN_DEF(close2,""), BUILDIN_DEF(menu,"sl*"), BUILDIN_DEF(select,"s*"), //for future jA script compatibility - BUILDIN_DEF(prompt,"s*"), + BUILDIN_DEF2(select, "prompt", "s*"), // BUILDIN_DEF(goto,"l"), BUILDIN_DEF(callsub,"l*"), @@ -25020,7 +25140,7 @@ static void script_parse_builtin(void) BUILDIN_DEF(readparam,"i?"), BUILDIN_DEF(setparam,"ii?"), BUILDIN_DEF(getcharid,"i?"), - BUILDIN_DEF(getnpcid,"i?"), + BUILDIN_DEF(getnpcid, "?"), BUILDIN_DEF(getpartyname,"i"), BUILDIN_DEF(getpartymember,"i?"), BUILDIN_DEF(getpartyleader,"i?"), @@ -25048,6 +25168,7 @@ static void script_parse_builtin(void) BUILDIN_DEF(downrefitem,"i?"), BUILDIN_DEF(statusup,"i"), BUILDIN_DEF(statusup2,"ii"), + BUILDIN_DEF(needed_status_point,"ii?"), BUILDIN_DEF(bonus,"iv"), BUILDIN_DEF2(bonus,"bonus2","ivi"), BUILDIN_DEF2(bonus,"bonus3","ivii"), @@ -25199,6 +25320,7 @@ static void script_parse_builtin(void) BUILDIN_DEF(skilleffect,"vi"), // skill effect [Celest] BUILDIN_DEF(npcskilleffect,"viii"), // npc skill effect [Valaris] BUILDIN_DEF(specialeffect,"i???"), // npc skill effect [Valaris] + BUILDIN_DEF(removespecialeffect,"i???"), BUILDIN_DEF_DEPRECATED(specialeffect2,"i??"), // skill effect on players[Valaris] BUILDIN_DEF(nude,""), // nude command [Valaris] BUILDIN_DEF(mapwarp,"ssii??"), // Added by RoVeRT @@ -25206,6 +25328,7 @@ static void script_parse_builtin(void) BUILDIN_DEF2(atcommand,"charcommand","s"), // [MouseJstr] BUILDIN_DEF(movenpc,"sii?"), // [MouseJstr] BUILDIN_DEF(message,"vs"), // [MouseJstr] + BUILDIN_DEF(servicemessage, "si?"), BUILDIN_DEF(npctalk,"s??"), // [Valaris][Murilo BiO] BUILDIN_DEF(mobcount,"ss"), BUILDIN_DEF(getlook,"i"), @@ -25251,6 +25374,8 @@ static void script_parse_builtin(void) BUILDIN_DEF(charat,"si"), BUILDIN_DEF(isstr,"v"), BUILDIN_DEF(getdatatype, "?"), + BUILDIN_DEF(data_to_string, "?"), + BUILDIN_DEF2(getd, "string_to_data", "?"), BUILDIN_DEF(chr,"i"), BUILDIN_DEF(ord,"s"), BUILDIN_DEF(setchar,"ssi"), @@ -25532,6 +25657,17 @@ static void script_parse_builtin(void) // -- HatEffect BUILDIN_DEF(hateffect, "ii"), + + // camera + BUILDIN_DEF(camerainfo, ""), + BUILDIN_DEF(changecamera, "iii?"), + + BUILDIN_DEF(itempreview, "i"), + BUILDIN_DEF(enchantitem, "iii"), + BUILDIN_DEF(expandInventoryAck, "i?"), + BUILDIN_DEF(expandInventoryResult, "i"), + BUILDIN_DEF(expandInventory, "i"), + BUILDIN_DEF(getInventorySize, ""), }; int i, len = ARRAYLENGTH(BUILDIN); RECREATE(script->buildin, char *, script->buildin_count + len); // Pre-alloc to speed up @@ -25571,13 +25707,16 @@ static void script_hardcoded_constants(void) script->set_constant("MAX_LEVEL",MAX_LEVEL,false, false); script->set_constant("MAX_STORAGE",MAX_STORAGE,false, false); script->set_constant("MAX_GUILD_STORAGE",MAX_GUILD_STORAGE,false, false); - script->set_constant("MAX_CART",MAX_INVENTORY,false, false); + script->set_constant("MAX_CART", MAX_CART, false, false); script->set_constant("MAX_INVENTORY",MAX_INVENTORY,false, false); + script->set_constant("FIXED_INVENTORY_SIZE", FIXED_INVENTORY_SIZE, false, false); script->set_constant("MAX_ZENY",MAX_ZENY,false, false); script->set_constant("MAX_BANK_ZENY", MAX_BANK_ZENY, false, false); script->set_constant("MAX_BG_MEMBERS",MAX_BG_MEMBERS,false, false); script->set_constant("MAX_CHAT_USERS",MAX_CHAT_USERS,false, false); script->set_constant("MAX_REFINE",MAX_REFINE,false, false); + script->set_constant("MAX_MENU_OPTIONS", MAX_MENU_OPTIONS, false, false); + script->set_constant("MAX_MENU_LENGTH", MAX_MENU_LENGTH, false, false); script->constdb_comment("status options"); script->set_constant("Option_Nothing",OPTION_NOTHING,false, false); @@ -25847,6 +25986,7 @@ static void script_hardcoded_constants(void) script->set_constant("ITEMINFO_VIEWID", ITEMINFO_VIEWID, false, false); script->set_constant("ITEMINFO_MATK", ITEMINFO_MATK, false, false); script->set_constant("ITEMINFO_VIEWSPRITE", ITEMINFO_VIEWSPRITE, false, false); + script->set_constant("ITEMINFO_TRADE", ITEMINFO_TRADE, false, false); script->constdb_comment("monster skill states"); script->set_constant("MSS_ANY", MSS_ANY, false, false); @@ -25930,6 +26070,7 @@ static void script_hardcoded_constants(void) script->set_constant("QINFO_HOMUN_LEVEL", QINFO_HOMUN_LEVEL, false, false); script->set_constant("QINFO_HOMUN_TYPE", QINFO_HOMUN_TYPE, false, false); script->set_constant("QINFO_QUEST", QINFO_QUEST, false, false); + script->set_constant("QINFO_MERCENARY_CLASS", QINFO_MERCENARY_CLASS, false, false); script->constdb_comment("function types"); script->set_constant("FUNCTION_IS_COMMAND", FUNCTION_IS_COMMAND, false, false); @@ -25937,6 +26078,33 @@ static void script_hardcoded_constants(void) script->set_constant("FUNCTION_IS_LOCAL", FUNCTION_IS_LOCAL, false, false); script->set_constant("FUNCTION_IS_LABEL", FUNCTION_IS_LABEL, false, false); + script->constdb_comment("item trade restrictions"); + script->set_constant("ITR_NONE", ITR_NONE, false, false); + script->set_constant("ITR_NODROP", ITR_NODROP, false, false); + script->set_constant("ITR_NOTRADE", ITR_NOTRADE, false, false); + script->set_constant("ITR_PARTNEROVERRIDE", ITR_PARTNEROVERRIDE, false, false); + script->set_constant("ITR_NOSELLTONPC", ITR_NOSELLTONPC, false, false); + script->set_constant("ITR_NOCART", ITR_NOCART, false, false); + script->set_constant("ITR_NOSTORAGE", ITR_NOSTORAGE, false, false); + script->set_constant("ITR_NOGSTORAGE", ITR_NOGSTORAGE, false, false); + script->set_constant("ITR_NOMAIL", ITR_NOMAIL, false, false); + script->set_constant("ITR_NOAUCTION", ITR_NOAUCTION, false, false); + script->set_constant("ITR_ALL", ITR_ALL, false, false); + + script->constdb_comment("inventory expand ack responds"); + script->set_constant("EXPAND_INV_ASK_CONFIRMATION", EXPAND_INVENTORY_ASK_CONFIRMATION, false, false); + script->set_constant("EXPAND_INV_FAILED", EXPAND_INVENTORY_FAILED, false, false); + script->set_constant("EXPAND_INV_OTHER_WORK", EXPAND_INVENTORY_OTHER_WORK, false, false); + script->set_constant("EXPAND_INV_MISSING_ITEM", EXPAND_INVENTORY_MISSING_ITEM, false, false); + script->set_constant("EXPAND_INV_MAX_SIZE", EXPAND_INVENTORY_MAX_SIZE, false, false); + + script->constdb_comment("inventory expand final responds"); + script->set_constant("EXPAND_INV_RESULT_SUCCESS", EXPAND_INVENTORY_RESULT_SUCCESS, false, false); + script->set_constant("EXPAND_INV_RESULT_FAILED", EXPAND_INVENTORY_RESULT_FAILED, false, false); + script->set_constant("EXPAND_INV_RESULT_OTHER_WORK", EXPAND_INVENTORY_RESULT_OTHER_WORK, false, false); + script->set_constant("EXPAND_INV_RESULT_MISSING_ITEM", EXPAND_INVENTORY_RESULT_MISSING_ITEM, false, false); + script->set_constant("EXPAND_INV_RESULT_MAX_SIZE", EXPAND_INVENTORY_RESULT_MAX_SIZE, false, false); + script->constdb_comment("Renewal"); #ifdef RENEWAL script->set_constant("RENEWAL", 1, false, false); diff --git a/src/map/script.h b/src/map/script.h index 9c72b793c..549ad3284 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -64,6 +64,9 @@ struct item_data; #define SCRIPT_EQUIP_TABLE_SIZE 20 +#define MAX_MENU_OPTIONS 0xFF +#define MAX_MENU_LENGTH 0x800 + //#define SCRIPT_DEBUG_DISP //#define SCRIPT_DEBUG_DISASM //#define SCRIPT_DEBUG_HASH @@ -177,6 +180,8 @@ struct item_data; #define BUILDIN(x) bool buildin_ ## x (struct script_state* st) +#define get_buildin_name(st) ( script->get_str((int)(script_getdata((st), 0)->u.num)) ) + #define script_fetch(st, n, t) do { \ if( script_hasdata((st),(n)) ) \ (t)=script_getnum((st),(n)); \ @@ -450,6 +455,7 @@ enum script_iteminfo_types { ITEMINFO_VIEWID, ITEMINFO_MATK, ITEMINFO_VIEWSPRITE, + ITEMINFO_TRADE, ITEMINFO_MAX }; diff --git a/src/map/skill.c b/src/map/skill.c index 4eaab5457..069db55df 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -2361,11 +2361,11 @@ static int skill_counter_additional_effect(struct block_list *src, struct block_ ) { // Soul Drain should only work on targeted spells [Skotlex] if( pc_issit(sd) ) pc->setstand(sd); // Character stuck in attacking animation while 'sitting' fix. [Skotlex] - if( skill->get_nk(skill_id)&NK_SPLASH && skill->area_temp[1] != bl->id ) + if (skill->get_nk(skill_id)&NK_SPLASH && skill->area_temp[1] != bl->id) { ; - else { + } else { clif->skill_nodamage(src,bl,HW_SOULDRAIN,rate,1); - status->heal(src, 0, status->get_lv(bl)*(95+15*rate)/100, 2); + status->heal(src, 0, status->get_lv(bl)*(95+15*rate)/100, STATUS_HEAL_SHOWEFFECT); } } @@ -2388,9 +2388,9 @@ static int skill_counter_additional_effect(struct block_list *src, struct block_ sc->data[SC_SOULLINK]->val3 = 0; //Clear bounced spell check. } } - if( hp || sp ) { + if (hp != 0 || sp != 0) { // updated to force healing to allow healing through berserk - status->heal(src, hp, sp, battle_config.show_hp_sp_gain ? 3 : 1); + status->heal(src, hp, sp, STATUS_HEAL_FORCED | (battle_config.show_hp_sp_gain ? STATUS_HEAL_SHOWEFFECT : STATUS_HEAL_DEFAULT)); } } @@ -2899,7 +2899,7 @@ static int skill_attack(int attack_type, struct block_list *src, struct block_li sp = sp * sc->data[SC_MAGICROD]->val2 / 100; if(skill_id == WZ_WATERBALL && skill_lv > 1) sp = sp/((skill_lv|1)*(skill_lv|1)); //Estimate SP cost of a single water-ball - status->heal(bl, 0, sp, 2); + status->heal(bl, 0, sp, STATUS_HEAL_SHOWEFFECT); } } @@ -4138,7 +4138,7 @@ static int skill_activate_reverberation(struct block_list *bl, va_list ap) if( su->alive && (sg = su->group) != NULL && sg->skill_id == WM_REVERBERATION && sg->unit_id == UNT_REVERBERATION ) { int64 tick = timer->gettick(); clif->changetraplook(bl,UNT_USED_TRAPS); - map->foreachinrange(skill->trap_splash, bl, skill->get_splash(sg->skill_id, sg->skill_lv), sg->bl_flag, bl, tick); + skill->trap_do_splash(bl, sg->skill_id, sg->skill_lv, sg->bl_flag, tick); su->limit = DIFF_TICK32(tick,sg->tick)+1500; sg->unit_id = UNT_USED_TRAPS; } @@ -4477,7 +4477,7 @@ static int skill_castend_damage_id(struct block_list *src, struct block_list *bl if( skill_id == MO_EXTREMITYFIST ) { mbl = src; i = 3; // for Asura(from caster) - status->set_sp(src, 0, 0); + status->set_sp(src, 0, STATUS_HEAL_DEFAULT); status_change_end(src, SC_EXPLOSIONSPIRITS, INVALID_TIMER); status_change_end(src, SC_BLADESTOP, INVALID_TIMER); #ifdef RENEWAL @@ -4487,9 +4487,9 @@ static int skill_castend_damage_id(struct block_list *src, struct block_list *bl status_change_end(src, SC_NJ_NEN, INVALID_TIMER); status_change_end(src, SC_HIDING, INVALID_TIMER); #ifdef RENEWAL - status->set_hp(src, max(status_get_max_hp(src)/100, 1), 0); + status->set_hp(src, max(status_get_max_hp(src)/100, 1), STATUS_HEAL_DEFAULT); #else // not RENEWAL - status->set_hp(src, 1, 0); + status->set_hp(src, 1, STATUS_HEAL_DEFAULT); #endif // RENEWAL } dir = map->calc_dir(src,bl->x,bl->y); @@ -4603,7 +4603,7 @@ static int skill_castend_damage_id(struct block_list *src, struct block_list *bl heal = skill->attack(skill->get_type(skill_id), src, src, bl, skill_id, skill_lv, tick, sflag); if (skill_id == NPC_VAMPIRE_GIFT && heal > 0) { clif->skill_nodamage(NULL, src, AL_HEAL, heal, 1); - status->heal(src,heal,0,0); + status->heal(src, heal, 0, STATUS_HEAL_DEFAULT); } if (skill_id == SU_SCRATCH && status->get_lv(src) >= 30 && (rnd() % 100 < (int)(status->get_lv(src) / 30) + 10)) // TODO: Need activation chance. skill->addtimerskill(src, tick + skill->get_delay(skill_id, skill_lv), bl->id, 0, 0, skill_id, skill_lv, BF_WEAPON, flag); @@ -4971,7 +4971,7 @@ static int skill_castend_damage_id(struct block_list *src, struct block_list *bl src, src, bl, skill_id, skill_lv, tick, flag); if (heal > 0){ clif->skill_nodamage(NULL, src, AL_HEAL, heal, 1); - status->heal(src, heal, 0, 0); + status->heal(src, heal, 0, STATUS_HEAL_DEFAULT); } } break; @@ -5082,7 +5082,7 @@ static int skill_castend_damage_id(struct block_list *src, struct block_list *bl heal = 0; // Don't absorb heal from Ice Walls or other skill units. if( heal && rnd()%100 < rate ) { - status->heal(src, heal, 0, 0); + status->heal(src, heal, 0, STATUS_HEAL_DEFAULT); clif->skill_nodamage(NULL, src, AL_HEAL, heal, 1); } } @@ -5843,7 +5843,7 @@ static int skill_castend_id(int tid, int64 tick, int id, intptr_t data) //When Asura fails... (except when it fails from Fog of Wall) //Consume SP/spheres skill->consume_requirement(sd,ud->skill_id, ud->skill_lv,1); - status->set_sp(src, 0, 0); + status->set_sp(src, 0, STATUS_HEAL_DEFAULT); sc = &sd->sc; if (sc->count) { //End states @@ -6126,7 +6126,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * clif->skill_nodamage (src, bl, skill_id, heal, 1); if( tsc && tsc->data[SC_AKAITSUKI] && heal && skill_id != HLIF_HEAL ) heal = ~heal + 1; - heal_get_jobexp = status->heal(bl,heal,0,0); + heal_get_jobexp = status->heal(bl, heal, 0, STATUS_HEAL_DEFAULT); if(sd && dstsd && heal > 0 && sd != dstsd && battle_config.heal_exp > 0){ heal_get_jobexp = heal_get_jobexp * battle_config.heal_exp / 100; @@ -6159,8 +6159,8 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * clif->updatestatus(sd,SP_BASEEXP); clif->updatestatus(sd,SP_JOBEXP); } - status->set_hp(src, 1, 0); - status->set_sp(src, 0, 0); + status->set_hp(src, 1, STATUS_HEAL_DEFAULT); + status->set_sp(src, 0, STATUS_HEAL_DEFAULT); break; } else if (status->isdead(bl) && flag&1) { //Revive skill->area_temp[0]++; //Count it in, then fall-through to the Resurrection code. @@ -6333,7 +6333,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * break; case SA_INSTANTDEATH: clif->skill_nodamage(src,bl,skill_id,skill_lv,1); - status->set_hp(bl,1,0); + status->set_hp(bl, 1, STATUS_HEAL_DEFAULT); break; case SA_QUESTION: case SA_GRAVITY: @@ -6911,7 +6911,8 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * if (dstsd && dstsd->charm_type != CHARM_TYPE_NONE && dstsd->charm_count > 0) { pc->del_charm(dstsd, dstsd->charm_count, dstsd->charm_type); } - if (sp) status->heal(src, 0, sp, 3); + if (sp != 0) + status->heal(src, 0, sp, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT); clif->skill_nodamage(src,bl,skill_id,skill_lv,sp?1:0); } break; @@ -7273,7 +7274,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * case NV_FIRSTAID: clif->skill_nodamage(src,bl,skill_id,5,1); - status->heal(bl,5,0,0); + status->heal(bl, 5, 0, STATUS_HEAL_DEFAULT); break; case AL_CURE: @@ -7350,7 +7351,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * case MER_SCAPEGOAT: if( mer && mer->master ) { - status->heal(&mer->master->bl, mer->battle_status.hp, 0, 2); + status->heal(&mer->master->bl, mer->battle_status.hp, 0, STATUS_HEAL_SHOWEFFECT); status->damage(src, src, mer->battle_status.max_hp, 0, 0, 1); } break; @@ -7667,7 +7668,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * if( tsc && tsc->data[SC_EXTREMITYFIST2] ) sp = 0; #endif - status->heal(bl,(int)hp,sp,0); + status->heal(bl, (int)hp, sp, STATUS_HEAL_DEFAULT); } break; case AM_CP_WEAPON: @@ -7842,7 +7843,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * sp = skill->get_sp(skill_id,skill_lv); sp = sp * tsc->data[SC_MAGICROD]->val2 / 100; if(sp < 1) sp = 1; - status->heal(bl,0,sp,2); + status->heal(bl, 0, sp, STATUS_HEAL_SHOWEFFECT); status_percent_damage(bl, src, 0, -20, false); //20% max SP damage. } else { struct unit_data *ud = unit->bl2ud(bl); @@ -7874,8 +7875,8 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * if (sp) //Recover some of the SP used sp = sp*(25*(skill_lv-1))/100; - if(hp || sp) - status->heal(src, hp, sp, 2); + if (hp != 0 || sp != 0) + status->heal(src, hp, sp, STATUS_HEAL_SHOWEFFECT); } } break; @@ -8118,14 +8119,14 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * { int hp_rate = skill_lv == 0 ? 0 : skill->get_hp_rate(skill_id, skill_lv); int gain_hp = tstatus->max_hp*abs(hp_rate)/100; // The earned is the same % of the target HP than it cost the caster. [Skotlex] - clif->skill_nodamage(src,bl,skill_id,status->heal(bl, gain_hp, 0, 0),1); + clif->skill_nodamage(src, bl, skill_id, status->heal(bl, gain_hp, 0, STATUS_HEAL_DEFAULT), 1); } break; case WE_FEMALE: { int sp_rate = skill_lv == 0 ? 0 : skill->get_sp_rate(skill_id, skill_lv); int gain_sp = tstatus->max_sp*abs(sp_rate)/100;// The earned is the same % of the target SP than it cost the caster. [Skotlex] - clif->skill_nodamage(src,bl,skill_id,status->heal(bl, 0, gain_sp, 0),1); + clif->skill_nodamage(src, bl, skill_id, status->heal(bl, 0, gain_sp, STATUS_HEAL_DEFAULT), 1); } break; @@ -8165,7 +8166,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * break; } clif->skill_nodamage(src, bl, skill_id, skill_lv, 1); - status->heal(bl,0,sp,2); + status->heal(bl, 0, sp, STATUS_HEAL_SHOWEFFECT); } break; @@ -8320,7 +8321,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * } dstmd->state.soul_change_flag = 1; sp2 = sstatus->max_sp * 3 /100; - status->heal(src, 0, sp2, 2); + status->heal(src, 0, sp2, STATUS_HEAL_SHOWEFFECT); clif->skill_nodamage(src,bl,skill_id,skill_lv,1); break; } @@ -8332,8 +8333,8 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * if( tsc && tsc->data[SC_EXTREMITYFIST2] ) sp1 = tstatus->sp; #endif // RENEWAL - status->set_sp(src, sp2, 3); - status->set_sp(bl, sp1, 3); + status->set_sp(src, sp2, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT); + status->set_sp(bl, sp1, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT); clif->skill_nodamage(src,bl,skill_id,skill_lv,1); } break; @@ -8371,7 +8372,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * clif->skill_nodamage(NULL,bl,AL_HEAL,hp,1); if(sp > 0) clif->skill_nodamage(NULL,bl,MG_SRECOVERY,sp,1); - status->heal(bl,hp,sp,0); + status->heal(bl, hp, sp, STATUS_HEAL_DEFAULT); } break; // Full Chemical Protection @@ -8460,7 +8461,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * sc_start(src,bl,SC_INCATKRATE,100,-50,skill->get_time2(skill_id,skill_lv)); break; case 5: // 2000HP heal, random teleported - status->heal(src, 2000, 0, 0); + status->heal(src, 2000, 0, STATUS_HEAL_DEFAULT); if( !map_flag_vs(bl->m) ) unit->warp(bl, -1,-1,-1, CLR_TELEPORT); break; @@ -8754,7 +8755,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * //Eh? why double skill packet? clif->skill_nodamage(src,bl,AL_HEAL,hp,1); clif->skill_nodamage(src,bl,skill_id,hp,1); - status->heal(bl, hp, 0, 0); + status->heal(bl, hp, 0, STATUS_HEAL_DEFAULT); } break; // Homun single-target support skills [orn] @@ -8901,7 +8902,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * int heal = status_get_max_hp(bl) * 25 / 100; clif->skill_nodamage(src,bl,skill_id,skill_lv, sc_start(src,bl,type,100,skill_lv,skill->get_time(skill_id,skill_lv))); - status->heal(bl,heal,0,1); + status->heal(bl, heal, 0, STATUS_HEAL_FORCED); status->change_clear_buffs(bl,4); } break; @@ -8955,7 +8956,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * value = status_get_max_hp(bl) * 25 / 100; status->change_clear_buffs(bl,4); skill->area_temp[5] &= ~0x20; - status->heal(bl,value,0,1); + status->heal(bl, value, 0, STATUS_HEAL_FORCED); type = SC_REFRESH; }else if( skill->area_temp[5]&0x40 ){ skill->area_temp[5] &= ~0x40; @@ -9140,7 +9141,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * clif->skill_nodamage(bl, bl, skill_id, heal, 1); if( tsc && tsc->data[SC_AKAITSUKI] && heal ) heal = ~heal + 1; - status->heal(bl, heal, 0, 1); + status->heal(bl, heal, 0, STATUS_HEAL_FORCED); } } else if( sd ) party->foreachsamemap(skill->area_sub, sd, skill->get_splash(skill_id, skill_lv), src, skill_id, skill_lv, tick, flag|BCT_PARTY|1, skill->castend_nodamage_id); @@ -9416,7 +9417,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * pc->setmadogear(sd, false); clif->skill_nodamage(src, bl, skill_id, skill_lv, 1); skill->castend_damage_id(src, src, skill_id, skill_lv, tick, flag); - status->set_sp(src, 0, 0); + status->set_sp(src, 0, STATUS_HEAL_DEFAULT); } break; @@ -9455,7 +9456,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * case 5: hp = 23; break; } heal = tstatus->max_hp * hp / 100; - status->heal(bl,heal,0,2); + status->heal(bl, heal, 0, STATUS_HEAL_SHOWEFFECT); clif->skill_nodamage(src, bl, skill_id, skill_lv, heal); } break; @@ -9533,7 +9534,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * int sp = 100 * skill_lv; if( dstmd ) sp = dstmd->level * 2; if( status_zap(bl,0,sp) ) - status->heal(src,0,sp/2,3);//What does flag 3 do? [Rytech] + status->heal(src, 0, sp / 2, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT); } if ( tsc && tsc->data[SC__UNLUCKY] && skill_id == SC_UNLUCKY) { //If the target was successfully inflected with the Unlucky status, give 1 of 3 random status's. @@ -9657,7 +9658,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * case 3: sc_start(src, bl, SC_SHIELDSPELL_REF, 100, opt, INFINITE_DURATION); // HP Recovery val = sstatus->max_hp * ((status->get_lv(src) / 10) + (shield->refine + 1)) / 100; - status->heal(bl, val, 0, 2); + status->heal(bl, val, 0, STATUS_HEAL_SHOWEFFECT); status_change_end(bl,SC_SHIELDSPELL_REF,INVALID_TIMER); break; } @@ -9800,7 +9801,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * } heal = 120 * skill_lv + status_get_max_hp(bl) * (2 + skill_lv) / 100; - status->heal(bl, heal, 0, 0); + status->heal(bl, heal, 0, STATUS_HEAL_DEFAULT); if( (tsc && tsc->opt1) && (rnd()%100 < ((skill_lv * 5) + (status_get_dex(src) + status->get_lv(src)) / 4) - (1 + (rnd() % 10))) ) { status_change_end(bl, SC_STONE, INVALID_TIMER); @@ -9871,7 +9872,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * heal = 1; status->fixed_revive(bl, heal, 0); clif->skill_nodamage(src,bl,skill_id,skill_lv,1); - status->set_sp(bl, 0, 0); + status->set_sp(bl, 0, STATUS_HEAL_DEFAULT); } } break; @@ -10208,7 +10209,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * } e_hp = ed->battle_status.max_hp * 10 / 100; e_sp = ed->battle_status.max_sp * 10 / 100; - status->heal(&ed->bl,e_hp,e_sp,3); + status->heal(&ed->bl, e_hp, e_sp, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT); clif->skill_nodamage(src,&ed->bl,skill_id,skill_lv,1); } break; @@ -10518,7 +10519,7 @@ static int skill_castend_nodamage_id(struct block_list *src, struct block_list * } } heal = 5 * status->get_lv(&hd->bl) + status->base_matk(&hd->bl, &hd->battle_status, status->get_lv(&hd->bl)); - status->heal(bl, heal, 0, 0); + status->heal(bl, heal, 0, STATUS_HEAL_DEFAULT); clif->skill_nodamage(src, src, skill_id, skill_lv, clif->skill_nodamage(src, bl, AL_HEAL, heal, 1)); status->change_start(src, src, type, 1000, skill_lv, 0, 0, 0, skill->get_time(skill_id,skill_lv), SCFLAG_NOAVOID|SCFLAG_FIXEDTICK|SCFLAG_FIXEDRATE); status->change_start(src, bl, type, 1000, skill_lv, 0, 0, 0, skill->get_time(skill_id,skill_lv), SCFLAG_NOAVOID|SCFLAG_FIXEDTICK|SCFLAG_FIXEDRATE); @@ -12644,7 +12645,7 @@ static int skill_unit_onplace(struct skill_unit *src, struct block_list *bl, int if (sg->src_id == bl->id) break; //Does not affect the caster. clif->changetraplook(&src->bl,UNT_USED_TRAPS); - map->foreachinrange(skill->trap_splash,&src->bl, skill->get_splash(sg->skill_id, sg->skill_lv), sg->bl_flag, &src->bl,tick); + skill->trap_do_splash(&src->bl, sg->skill_id, sg->skill_lv, sg->bl_flag, tick); sg->unit_id = UNT_USED_TRAPS; sg->limit = DIFF_TICK32(tick,sg->tick) + 1500; break; @@ -12800,7 +12801,7 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b clif->skill_nodamage(&src->bl, bl, AL_HEAL, heal, 1); if (tsc && tsc->data[SC_AKAITSUKI] && heal) heal = ~heal + 1; - status->heal(bl, heal, 0, 0); + status->heal(bl, heal, 0, STATUS_HEAL_DEFAULT); if (diff >= 500) sg->val1--; } @@ -12821,7 +12822,7 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b if (status->isimmune(bl)) heal = 0; clif->skill_nodamage(&src->bl, bl, AL_HEAL, heal, 1); - status->heal(bl, heal, 0, 0); + status->heal(bl, heal, 0, STATUS_HEAL_DEFAULT); } break; @@ -12938,7 +12939,7 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b } - map->foreachinrange(skill->trap_splash, &src->bl, skill->get_splash(sg->skill_id, sg->skill_lv), sg->bl_flag, &src->bl, tick); + skill->trap_do_splash(&src->bl, sg->skill_id, sg->skill_lv, sg->bl_flag, tick); sg->unit_id = UNT_USED_TRAPS; //Changed ID so it does not invoke a for each in area again. } break; @@ -12969,10 +12970,10 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b case UNT_FREEZINGTRAP: case UNT_FIREPILLAR_ACTIVE: case UNT_CLAYMORETRAP: - if( sg->unit_id == UNT_FIRINGTRAP || sg->unit_id == UNT_ICEBOUNDTRAP || sg->unit_id == UNT_CLAYMORETRAP ) - map->foreachinrange(skill->trap_splash,&src->bl, skill->get_splash(sg->skill_id, sg->skill_lv), sg->bl_flag|BL_SKILL|~BCT_SELF, &src->bl,tick); + if (sg->unit_id == UNT_FIRINGTRAP || sg->unit_id == UNT_ICEBOUNDTRAP || sg->unit_id == UNT_CLAYMORETRAP) + skill->trap_do_splash(&src->bl, sg->skill_id, sg->skill_lv, sg->bl_flag | BL_SKILL | ~BCT_SELF, tick); else - map->foreachinrange(skill->trap_splash,&src->bl, skill->get_splash(sg->skill_id, sg->skill_lv), sg->bl_flag, &src->bl,tick); + skill->trap_do_splash(&src->bl, sg->skill_id, sg->skill_lv, sg->bl_flag, tick); if (sg->unit_id != UNT_FIREPILLAR_ACTIVE) clif->changetraplook(&src->bl, sg->unit_id==UNT_LANDMINE?UNT_FIREPILLAR_ACTIVE:UNT_USED_TRAPS); sg->limit=DIFF_TICK32(tick,sg->tick)+1500 + @@ -13032,7 +13033,7 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b if( tsc && tsc->data[SC_AKAITSUKI] && heal ) heal = ~heal + 1; clif->skill_nodamage(&src->bl, bl, AL_HEAL, heal, 1); - status->heal(bl, heal, 0, 0); + status->heal(bl, heal, 0, STATUS_HEAL_DEFAULT); } } break; @@ -13086,7 +13087,7 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b case 0: // Heal 1~9999 HP heal = rnd() %9999+1; clif->skill_nodamage(ss,bl,AL_HEAL,heal,1); - status->heal(bl,heal,0,0); + status->heal(bl, heal, 0, STATUS_HEAL_DEFAULT); break; case 1: // End all negative status status->change_clear_buffs(bl,2); @@ -13203,9 +13204,7 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b case UNT_GROUNDDRIFT_POISON: case UNT_GROUNDDRIFT_WATER: case UNT_GROUNDDRIFT_FIRE: - map->foreachinrange(skill->trap_splash,&src->bl, - skill->get_splash(sg->skill_id, sg->skill_lv), sg->bl_flag, - &src->bl,tick); + skill->trap_do_splash(&src->bl, sg->skill_id, sg->skill_lv, sg->bl_flag, tick); sg->unit_id = UNT_USED_TRAPS; //clif->changetraplook(&src->bl, UNT_FIREPILLAR_ACTIVE); sg->limit=DIFF_TICK32(tick,sg->tick)+1500; @@ -13233,7 +13232,7 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b } hp = tstatus->max_hp * hp / 100; sp = tstatus->max_sp * sp / 100; - status->heal(bl, hp, sp, 2); + status->heal(bl, hp, sp, STATUS_HEAL_SHOWEFFECT); sc_start(ss, bl, type, 100, sg->skill_lv, (sg->interval * 3) + 100); } // Reveal hidden players every 5 seconds. @@ -13266,7 +13265,7 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b case UNT_REVERBERATION: clif->changetraplook(&src->bl,UNT_USED_TRAPS); - map->foreachinrange(skill->trap_splash,&src->bl, skill->get_splash(sg->skill_id, sg->skill_lv), sg->bl_flag, &src->bl,tick); + skill->trap_do_splash(&src->bl, sg->skill_id, sg->skill_lv, sg->bl_flag, tick); sg->limit = DIFF_TICK32(tick,sg->tick)+1500; sg->unit_id = UNT_USED_TRAPS; break; @@ -13355,7 +13354,7 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b clif->skill_nodamage(&src->bl, bl, AL_HEAL, hp, 0); if( tsc && tsc->data[SC_AKAITSUKI] && hp ) hp = ~hp + 1; - status->heal(bl, hp, 0, 0); + status->heal(bl, hp, 0, STATUS_HEAL_DEFAULT); sc_start(ss, bl, type, 100, sg->skill_lv, sg->interval + 100); } break; @@ -13369,13 +13368,13 @@ static int skill_unit_onplace_timer(struct skill_unit *src, struct block_list *b int hp = tstatus->max_hp / 100; //+1% each 5s if ((sg->val3) % 5) { //each 5s if (tstatus->def_ele == skill->get_ele(sg->skill_id,sg->skill_lv)) { - status->heal(bl, hp, 0, 2); + status->heal(bl, hp, 0, STATUS_HEAL_SHOWEFFECT); } else if( (sg->unit_id == UNT_FIRE_INSIGNIA && tstatus->def_ele == ELE_EARTH) || (sg->unit_id == UNT_WATER_INSIGNIA && tstatus->def_ele == ELE_FIRE) || (sg->unit_id == UNT_WIND_INSIGNIA && tstatus->def_ele == ELE_WATER) || (sg->unit_id == UNT_EARTH_INSIGNIA && tstatus->def_ele == ELE_WIND) ) { - status->heal(bl, -hp, 0, 0); + status->heal(bl, -hp, 0, STATUS_HEAL_DEFAULT); } } sg->val3++; //timer @@ -14491,8 +14490,8 @@ static int skill_check_condition_castbegin(struct map_session_data *sd, uint16 s **/ case AB_ANCILLA: { - int count = 0, i; - for( i = 0; i < MAX_INVENTORY; i ++ ) + int count = 0; + for (int i = 0; i < sd->status.inventorySize; i ++) if (sd->status.inventory[i].nameid == ITEMID_ANSILA) count += sd->status.inventory[i].amount; if( count >= 3 ) { @@ -16110,7 +16109,7 @@ static void skill_repairweapon(struct map_session_data *sd, int idx) if (idx == 0xFFFF || idx == -1) // No item selected ('Cancel' clicked) return; - if( idx < 0 || idx >= MAX_INVENTORY ) + if (idx < 0 || idx >= sd->status.inventorySize) return; //Invalid index?? item = &target_sd->status.inventory[idx]; @@ -16158,7 +16157,7 @@ static void skill_identify(struct map_session_data *sd, int idx) nullpo_retv(sd); sd->state.workinprogress = 0; - if(idx >= 0 && idx < MAX_INVENTORY) { + if (idx >= 0 && idx < sd->status.inventorySize) { if(sd->status.inventory[idx].nameid > 0 && sd->status.inventory[idx].identify == 0 ){ flag=0; sd->status.inventory[idx].identify=1; @@ -16174,7 +16173,7 @@ static void skill_weaponrefine(struct map_session_data *sd, int idx) { nullpo_retv(sd); - if (idx >= 0 && idx < MAX_INVENTORY) { + if (idx >= 0 && idx < sd->status.inventorySize) { struct item *item; struct item_data *ditem = sd->inventory_data[idx]; item = &sd->status.inventory[idx]; @@ -16630,10 +16629,10 @@ static int skill_detonator(struct block_list *bl, va_list ap) case UNT_CLAYMORETRAP: case UNT_FIRINGTRAP: case UNT_ICEBOUNDTRAP: - map->foreachinrange(skill->trap_splash,bl,skill->get_splash(su->group->skill_id,su->group->skill_lv),su->group->bl_flag|BL_SKILL|~BCT_SELF,bl,su->group->tick); + skill->trap_do_splash(bl, su->group->skill_id, su->group->skill_lv, su->group->bl_flag | BL_SKILL | ~BCT_SELF, su->group->tick); break; default: - map->foreachinrange(skill->trap_splash,bl,skill->get_splash(su->group->skill_id,su->group->skill_lv),su->group->bl_flag,bl,su->group->tick); + skill->trap_do_splash(bl, su->group->skill_id, su->group->skill_lv, su->group->bl_flag, su->group->tick); } clif->changetraplook(bl, UNT_USED_TRAPS); su->group->limit = DIFF_TICK32(timer->gettick(),su->group->tick) + @@ -16766,6 +16765,27 @@ static int skill_chastle_mob_changetarget(struct block_list *bl, va_list ap) return 0; } +/** + * Does final adjustments (e.g. count enemies affected by splash) then runs trap splash function (skill_trap_splash). + * + * @param bl : trap skill unit's bl + * @param skill_id : Trap Skill ID + * @param skill_lv : Trap Skill Level + * @param bl_flag : Flag representing units affected by this trap + * @param tick : tick related to this trap + */ +static void skill_trap_do_splash(struct block_list *bl, uint16 skill_id, uint16 skill_lv, int bl_flag, int64 tick) +{ + int enemy_count = 0; + + if (skill->get_nk(skill_id) & NK_SPLASHSPLIT) { + enemy_count = map->foreachinrange(skill->area_sub, bl, skill->get_splash(skill_id, skill_lv), BL_CHAR, bl, skill_id, skill_lv, tick, BCT_ENEMY, skill->area_sub_count); + enemy_count = max(1, enemy_count); // Don't let enemy_count be 0 when spliting trap damage + } + + map->foreachinrange(skill->trap_splash, bl, skill->get_splash(skill_id, skill_lv), bl_flag, bl, tick, enemy_count); +} + /*========================================== * *------------------------------------------*/ @@ -16776,6 +16796,7 @@ static int skill_trap_splash(struct block_list *bl, va_list ap) struct skill_unit *src_su = NULL; struct skill_unit_group *sg; struct block_list *ss; + int enemy_count = va_arg(ap, int); nullpo_ret(bl); nullpo_ret(src); @@ -16870,7 +16891,7 @@ static int skill_trap_splash(struct block_list *bl, va_list ap) } /* Fall through */ default: - skill->attack(skill->get_type(sg->skill_id),ss,src,bl,sg->skill_id,sg->skill_lv,tick,0); + skill->attack(skill->get_type(sg->skill_id), ss, src, bl, sg->skill_id, sg->skill_lv, tick, enemy_count); break; } return 1; @@ -17585,7 +17606,7 @@ static int skill_unit_timer_sub(union DBKey key, struct DBData *data, va_list ap break; } clif->changetraplook(bl,UNT_USED_TRAPS); - map->foreachinrange(skill->trap_splash, bl, skill->get_splash(group->skill_id, group->skill_lv), group->bl_flag, bl, tick); + skill->trap_do_splash(bl, group->skill_id, group->skill_lv, group->bl_flag, tick); group->limit = DIFF_TICK32(tick,group->tick)+1500; su->limit = DIFF_TICK32(tick,group->tick)+1500; group->unit_id = UNT_USED_TRAPS; @@ -17971,8 +17992,8 @@ static int skill_can_produce_mix(struct map_session_data *sd, int nameid, int tr if (pc->search_inventory(sd,id) == INDEX_NOT_FOUND) return 0; } else { - int x, y; - for(y=0,x=0;y<MAX_INVENTORY;y++) + int x = 0; + for (int y = 0; y < sd->status.inventorySize; y++) if( sd->status.inventory[y].nameid == id ) x+=sd->status.inventory[y].amount; if(x<qty*skill->dbs->produce_db[i].mat_amount[j]) @@ -18043,7 +18064,7 @@ static int skill_produce_mix(struct map_session_data *sd, uint16 skill_id, int n else temp_qty = 1; if (data->stack.inventory) { - for( i = 0; i < MAX_INVENTORY; i++ ) { + for (i = 0; i < sd->status.inventorySize; i++ ) { if( sd->status.inventory[i].nameid == nameid ) { if( sd->status.inventory[i].amount >= data->stack.amount ) { #if PACKETVER >= 20090729 @@ -18851,7 +18872,7 @@ static int skill_elementalanalysis(struct map_session_data *sd, uint16 skill_lv, del_amount -= (del_amount % 10); add_amount = (skill_lv == 1) ? del_amount * (5 + rnd()%5) : del_amount / 10 ; - if (idx < 0 || idx >= MAX_INVENTORY + if (idx < 0 || idx >= sd->status.inventorySize || (nameid = sd->status.inventory[idx].nameid) <= 0 || del_amount < 0 || del_amount > sd->status.inventory[idx].amount) { clif->skill_fail(sd, SO_EL_ANALYSIS, USESKILL_FAIL_LEVEL, 0, 0); @@ -18922,7 +18943,7 @@ static int skill_changematerial(struct map_session_data *sd, const struct itemli for (k = 0; k < VECTOR_LENGTH(*item_list); k++) { const struct itemlist_entry *entry = &VECTOR_INDEX(*item_list, k); int idx = entry->id; - Assert_ret(idx >= 0 && idx < MAX_INVENTORY); + Assert_ret(idx >= 0 && idx < sd->status.inventorySize); amount = entry->amount; nameid = sd->status.inventory[idx].nameid; if (nameid > 0 && sd->status.inventory[idx].identify == 0) { @@ -18973,7 +18994,7 @@ static int skill_destroy_trap(struct block_list *bl, va_list ap) case UNT_CLAYMORETRAP: case UNT_FIRINGTRAP: case UNT_ICEBOUNDTRAP: - map->foreachinrange(skill->trap_splash,&su->bl, skill->get_splash(sg->skill_id, sg->skill_lv), sg->bl_flag|BL_SKILL|~BCT_SELF, &su->bl,tick); + skill->trap_do_splash(&su->bl, sg->skill_id, sg->skill_lv, sg->bl_flag | BL_SKILL | ~BCT_SELF, tick); break; case UNT_LANDMINE: case UNT_BLASTMINE: @@ -18982,7 +19003,7 @@ static int skill_destroy_trap(struct block_list *bl, va_list ap) case UNT_FLASHER: case UNT_FREEZINGTRAP: case UNT_CLUSTERBOMB: - map->foreachinrange(skill->trap_splash,&su->bl, skill->get_splash(sg->skill_id, sg->skill_lv), sg->bl_flag, &su->bl,tick); + skill->trap_do_splash(&su->bl, sg->skill_id, sg->skill_lv, sg->bl_flag, tick); break; } // Traps aren't recovered. @@ -21578,6 +21599,7 @@ void skill_defaults(void) skill->onskillusage = skill_onskillusage; skill->cell_overlap = skill_cell_overlap; skill->timerskill = skill_timerskill; + skill->trap_do_splash = skill_trap_do_splash; skill->trap_splash = skill_trap_splash; skill->check_condition_mercenary = skill_check_condition_mercenary; skill->locate_element_field = skill_locate_element_field; diff --git a/src/map/skill.h b/src/map/skill.h index 97134224e..0ace19927 100644 --- a/src/map/skill.h +++ b/src/map/skill.h @@ -2059,6 +2059,7 @@ struct skill_interface { int (*onskillusage) (struct map_session_data *sd, struct block_list *bl, uint16 skill_id, int64 tick); int (*cell_overlap) (struct block_list *bl, va_list ap); int (*timerskill) (int tid, int64 tick, int id, intptr_t data); + void (*trap_do_splash) (struct block_list *bl, uint16 skill_id, uint16 skill_lv, int bl_flag, int64 tick); int (*trap_splash) (struct block_list *bl, va_list ap); int (*check_condition_mercenary) (struct block_list *bl, int skill_id, int lv, int type); struct skill_unit_group *(*locate_element_field) (struct block_list *bl); diff --git a/src/map/status.c b/src/map/status.c index 2bd3700b3..65b52cbcf 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -1240,10 +1240,15 @@ static void status_copy(struct status_data *a, const struct status_data *b) memcpy((void*)&a->max_hp, (const void*)&b->max_hp, sizeof(struct status_data)-(sizeof(a->hp)+sizeof(a->sp))); } -//Sets HP to given value. Flag is the flag passed to status->heal in case -//final value is higher than current (use 2 to make a healing effect display -//on players) It will always succeed (overrides Berserk block), but it can't kill. -static int status_set_hp(struct block_list *bl, unsigned int hp, int flag) +/** + * Sets HP to the given value. + * + * @param bl The target unit. + * @param hp The desired HP value. + * @param flag Additional options. @see enum status_heal_flag. STATUS_HEAL_FORCED is always implied. + * @return The amount of HP gained. + */ +static int status_set_hp(struct block_list *bl, unsigned int hp, enum status_heal_flag flag) { struct status_data *st; if (hp < 1) return 0; @@ -1254,14 +1259,19 @@ static int status_set_hp(struct block_list *bl, unsigned int hp, int flag) if (hp > st->max_hp) hp = st->max_hp; if (hp == st->hp) return 0; if (hp > st->hp) - return status->heal(bl, hp - st->hp, 0, 1|flag); + return status->heal(bl, hp - st->hp, 0, STATUS_HEAL_FORCED | flag); return status_zap(bl, st->hp - hp, 0); } -//Sets SP to given value. Flag is the flag passed to status->heal in case -//final value is higher than current (use 2 to make a healing effect display -//on players) -static int status_set_sp(struct block_list *bl, unsigned int sp, int flag) +/** + * Sets SP to the given value. + * + * @param bl The target unit. + * @param hp The desired SP value. + * @param flag Additional options. @see enum status_heal_flag. STATUS_HEAL_FORCED is always implied. + * @return The amount of SP gained. + */ +static int status_set_sp(struct block_list *bl, unsigned int sp, enum status_heal_flag flag) { struct status_data *st; @@ -1272,7 +1282,7 @@ static int status_set_sp(struct block_list *bl, unsigned int sp, int flag) if (sp > st->max_sp) sp = st->max_sp; if (sp == st->sp) return 0; if (sp > st->sp) - return status->heal(bl, 0, sp - st->sp, 1|flag); + return status->heal(bl, 0, sp - st->sp, STATUS_HEAL_FORCED | flag); return status_zap(bl, 0, st->sp - sp); } @@ -1304,12 +1314,12 @@ static int status_damage(struct block_list *src, struct block_list *target, int6 sp = 0; //Not a valid SP target. if (hp < 0) { //Assume absorbed damage. - status->heal(target, -hp, 0, 1); + status->heal(target, -hp, 0, STATUS_HEAL_FORCED); hp = 0; } if (sp < 0) { - status->heal(target, 0, -sp, 1); + status->heal(target, 0, -sp, STATUS_HEAL_FORCED); sp = 0; } @@ -1527,9 +1537,16 @@ static int status_damage(struct block_list *src, struct block_list *target, int6 return (int)(hp+sp); } -//Heals a character. If flag&1, this is forced healing (otherwise stuff like Berserk can block it) -//If flag&2, when the player is healed, show the HP/SP heal effect. -static int status_heal(struct block_list *bl, int64 in_hp, int64 in_sp, int flag) +/** + * Heals a character. + * + * @param bl The target unit. + * @param in_hp Amount of HP to recover. + * @param in_sp Amount of SP to recover. + * @param flag Additional options, @see enum status_heal_flag. + * @return The amount of HP + SP healed. + */ +static int status_heal(struct block_list *bl, int64 in_hp, int64 in_sp, enum status_heal_flag flag) { struct status_data *st; struct status_change *sc; @@ -1538,7 +1555,9 @@ static int status_heal(struct block_list *bl, int64 in_hp, int64 in_sp, int flag nullpo_ret(bl); st = status->get_status_data(bl); - if (st == &status->dummy || !st->hp) + if (st == &status->dummy) + return 0; + if (st->hp == 0 && (flag & STATUS_HEAL_ALLOWREVIVE) == 0) return 0; /* From here onwards, we consider it a 32-type as the client does not support higher and the value doesn't get through percentage modifiers */ @@ -1555,10 +1574,10 @@ static int status_heal(struct block_list *bl, int64 in_hp, int64 in_sp, int flag hp = 0; } - if(hp) { - if( sc && sc->data[SC_BERSERK] ) { - if( flag&1 ) - flag &= ~2; + if (hp != 0) { + if (sc && sc->data[SC_BERSERK] != NULL) { + if ((flag & STATUS_HEAL_FORCED) != 0) + flag &= ~STATUS_HEAL_SHOWEFFECT; else hp = 0; } @@ -1593,7 +1612,7 @@ static int status_heal(struct block_list *bl, int64 in_hp, int64 in_sp, int flag // send hp update to client switch(bl->type) { - case BL_PC: pc->heal(BL_UCAST(BL_PC, bl), hp, sp, (flag&2) ? 1 : 0); break; + case BL_PC: pc->heal(BL_UCAST(BL_PC, bl), hp, sp, (flag & STATUS_HEAL_SHOWEFFECT) != 0 ? 1 : 0); break; case BL_MOB: mob->heal(BL_UCAST(BL_MOB, bl), hp); break; case BL_HOM: homun->healed(BL_UCAST(BL_HOM, bl)); break; case BL_MER: mercenary->heal(BL_UCAST(BL_MER, bl), hp, sp); break; @@ -1648,18 +1667,18 @@ static int status_percent_change(struct block_list *src, struct block_list *targ if (flag) status->damage(src, target, INT_MAX, 0, 0, (!src||src==target?5:1)); else - status->heal(target, INT_MAX, 0, 0); + status->heal(target, INT_MAX, 0, STATUS_HEAL_DEFAULT); } if (sp > INT_MAX) { sp -= INT_MAX; if (flag) status->damage(src, target, 0, INT_MAX, 0, (!src||src==target?5:1)); else - status->heal(target, 0, INT_MAX, 0); + status->heal(target, 0, INT_MAX, STATUS_HEAL_DEFAULT); } if (flag) return status->damage(src, target, hp, sp, 0, (!src||src==target?5:1)); - return status->heal(target, hp, sp, 0); + return status->heal(target, hp, sp, STATUS_HEAL_DEFAULT); } static int status_revive(struct block_list *bl, unsigned char per_hp, unsigned char per_sp) @@ -2330,6 +2349,51 @@ static unsigned int status_get_base_maxhp(const struct map_session_data *sd, con return (unsigned int)cap_value(val,0,UINT_MAX); } +/** + * Calculates the HP that a character will have after death, on respawn. + * + * @param sd The character to calculate. + * @param st The character's status data. + */ +static unsigned int status_get_restart_hp(const struct map_session_data *sd, const struct status_data *st) +{ + unsigned int hp = 0; + + if (sd->special_state.restart_full_recover) + return st->max_hp; + + if ((sd->job & MAPID_BASEMASK) == MAPID_NOVICE && (sd->job & JOBL_2) == 0 && battle_config.restart_hp_rate < 50) + hp = st->max_hp / 2; + else + hp = APPLY_RATE(st->max_hp, battle_config.restart_hp_rate); + + if (hp > 0) + return hp; + + return 1; +} + +/** + * Calculates the SP that a character will have after death, on respawn. + * + * @param sd The character to calculate. + * @param st The character's status data. + */ +static unsigned int status_get_restart_sp(const struct map_session_data *sd, const struct status_data *st) +{ + unsigned int sp = 0; + + if (sd->special_state.restart_full_recover) + return st->max_sp; + + sp = APPLY_RATE(st->max_sp, battle_config.restart_sp_rate); + + if (sp > 0) + return sp; + + return 1; // the minimum for the respawn setting is SP:1 +} + static void status_calc_pc_additional(struct map_session_data *sd, enum e_status_calc_opt opt) { /* Just used for Plugin to give bonuses. */ @@ -2382,7 +2446,7 @@ static int status_calc_pc_(struct map_session_data *sd, enum e_status_calc_opt o sd->regen.sregen = &sd->sregen; sd->regen.ssregen = &sd->ssregen; sd->weight=0; - for(i=0;i<MAX_INVENTORY;i++){ + for (i = 0; i < sd->status.inventorySize; i++) { if(sd->status.inventory[i].nameid==0 || sd->inventory_data[i] == NULL) continue; sd->weight += sd->inventory_data[i]->weight*sd->status.inventory[i].amount; @@ -2884,20 +2948,8 @@ static int status_calc_pc_(struct map_session_data *sd, enum e_status_calc_opt o // ----- RESPAWN HP/SP ----- // //Calc respawn hp and store it on base_status - if (sd->special_state.restart_full_recover) - { - bstatus->hp = bstatus->max_hp; - bstatus->sp = bstatus->max_sp; - } else { - status->calc_pc_recover_hp(sd, bstatus); - if(!bstatus->hp) - bstatus->hp = 1; - - bstatus->sp = APPLY_RATE(bstatus->max_sp, battle_config.restart_sp_rate); - - if( !bstatus->sp ) /* the minimum for the respawn setting is SP:1 */ - bstatus->sp = 1; - } + bstatus->hp = status->get_restart_hp(sd, bstatus); + bstatus->sp = status->get_restart_sp(sd, bstatus); // ----- MISC CALCULATION ----- status->calc_misc(&sd->bl, bstatus, sd->status.base_level); @@ -9410,10 +9462,10 @@ static int status_change_start(struct block_list *src, struct block_list *bl, en return 0; PER( 100 / (status_get_max_hp(bl) / hp), lv ); - status->heal(bl, (!(hp%2) ? (6-lv) *4 / 100 : -(lv*4) / 100), 0, 1); + status->heal(bl, (!(hp%2) ? (6-lv) *4 / 100 : -(lv*4) / 100), 0, STATUS_HEAL_FORCED); PER( 100 / (status_get_max_sp(bl) / sp), lv ); - status->heal(bl, 0,(!(sp%2) ? (6-lv) *3 / 100 : -(lv*3) / 100), 1); + status->heal(bl, 0,(!(sp%2) ? (6-lv) *3 / 100 : -(lv*3) / 100), STATUS_HEAL_FORCED); } #undef PER break; @@ -9646,8 +9698,8 @@ static int status_change_start(struct block_list *src, struct block_list *bl, en switch (type) { case SC_BERSERK: if (!(sce->val2)) { //don't heal if already set - status->heal(bl, st->max_hp, 0, 1); //Do not use percent_heal as this healing must override BERSERK's block. - status->set_sp(bl, 0, 0); //Damage all SP + status->heal(bl, st->max_hp, 0, STATUS_HEAL_FORCED); //Do not use percent_heal as this healing must override BERSERK's block. + status->set_sp(bl, 0, STATUS_HEAL_DEFAULT); //Damage all SP } sce->val2 = 5 * st->max_hp / 100; break; @@ -10557,20 +10609,9 @@ static bool status_is_immune_to_status(struct status_change *sc, enum sc_type ty if (type >= SC_COMMON_MIN && type <= SC_COMMON_MAX) // Confirmed. return true; // Immune to status ailements switch (type) { - case SC_DEEP_SLEEP: case SC__CHAOS: - case SC_BURNING: - case SC_STUN: - case SC_SLEEP: - case SC_CURSE: case SC_STONE: - case SC_POISON: - case SC_BLIND: - case SC_SILENCE: - case SC_BLOODING: - case SC_FREEZE: case SC_FROSTMISTY: - case SC_COLD: case SC_TOXIN: case SC_PARALYSE: case SC_VENOMBLEED: @@ -10586,20 +10627,9 @@ static bool status_is_immune_to_status(struct status_change *sc, enum sc_type ty if (type >= SC_COMMON_MIN && type <= SC_COMMON_MAX) return true; // Immune to status ailements switch (type) { - case SC_POISON: - case SC_BLIND: - case SC_STUN: - case SC_SILENCE: case SC__CHAOS: case SC_STONE: - case SC_SLEEP: - case SC_BLOODING: - case SC_CURSE: - case SC_BURNING: case SC_FROSTMISTY: - case SC_FREEZE: - case SC_COLD: - case SC_FEAR: case SC_TOXIN: case SC_PARALYSE: case SC_VENOMBLEED: @@ -10608,7 +10638,6 @@ static bool status_is_immune_to_status(struct status_change *sc, enum sc_type ty case SC_PYREXIA: case SC_OBLIVIONCURSE: case SC_LEECHESEND: - case SC_DEEP_SLEEP: case SC_SATURDAY_NIGHT_FEVER: case SC__BODYPAINT: case SC__ENERVATION: @@ -10996,7 +11025,7 @@ static int status_change_end_(struct block_list *bl, enum sc_type type, int tid, status_percent_heal(bl, 100, 0); status_change_end(bl, SC__BLOODYLUST, INVALID_TIMER); } else if(st->hp > 100 && sce->val2) //If val2 is removed, no HP penalty (dispelled?) [Skotlex] - status->set_hp(bl, 100, 0); + status->set_hp(bl, 100, STATUS_HEAL_DEFAULT); if(sc->data[SC_ENDURE] && sc->data[SC_ENDURE]->val4 == 2) { sc->data[SC_ENDURE]->val4 = 0; status_change_end(bl, SC_ENDURE, INVALID_TIMER); @@ -11048,8 +11077,8 @@ static int status_change_end_(struct block_list *bl, enum sc_type type, int tid, if (tid == INVALID_TIMER) break; // "lose almost all their HP and SP" on natural expiration. - status->set_hp(bl, 10, 0); - status->set_sp(bl, 10, 0); + status->set_hp(bl, 10, STATUS_HEAL_DEFAULT); + status->set_sp(bl, 10, STATUS_HEAL_DEFAULT); break; case SC_AUTOTRADE: if (tid == INVALID_TIMER) @@ -11460,8 +11489,8 @@ static int kaahi_heal_timer(int tid, int64 tick, int id, intptr_t data) hp = st->max_hp - st->hp; if (hp > sce->val2) hp = sce->val2; - if (hp) - status->heal(bl, hp, 0, 2); + if (hp != 0) + status->heal(bl, hp, 0, STATUS_HEAL_SHOWEFFECT); sce->val4 = INVALID_TIMER; return 1; } @@ -11667,7 +11696,7 @@ static int status_change_timer(int tid, int64 tick, int id, intptr_t data) int hp = 0; if (st->hp < st->max_hp) hp = (sce->val1 < 0) ? (int)(sd->status.max_hp * -1 * sce->val1 / 100.) : sce->val1 ; - status->heal(bl, hp, 0, 2); + status->heal(bl, hp, 0, STATUS_HEAL_SHOWEFFECT); sc_timer_next((sce->val2 * 1000) + tick, status->change_timer, bl->id, data); return 0; } @@ -11816,7 +11845,7 @@ static int status_change_timer(int tid, int64 tick, int id, intptr_t data) break; case SC_ABUNDANCE: if(--(sce->val4) > 0) { - status->heal(bl,0,60,0); + status->heal(bl, 0, 60, STATUS_HEAL_DEFAULT); sc_timer_next(10000+tick, status->change_timer, bl->id, data); } break; @@ -11932,7 +11961,7 @@ static int status_change_timer(int tid, int64 tick, int id, intptr_t data) heal = ~heal + 1; map->freeblock_lock(); - status->heal(bl, heal, 0, 2); + status->heal(bl, heal, 0, STATUS_HEAL_SHOWEFFECT); if( sc->data[type] ) { sc_timer_next(5000 + tick, status->change_timer, bl->id, data); } @@ -12055,7 +12084,7 @@ static int status_change_timer(int tid, int64 tick, int id, intptr_t data) if ( sc->data[type] ) { sc_timer_next(1000 + tick, status->change_timer, bl->id, data); } - status->heal(src, damage*(5 + 5 * sce->val1)/100, 0, 0); // 5 + 5% per level + status->heal(src, damage*(5 + 5 * sce->val1)/100, 0, STATUS_HEAL_DEFAULT); // 5 + 5% per level map->freeblock_unlock(); return 0; } @@ -12072,7 +12101,7 @@ static int status_change_timer(int tid, int64 tick, int id, intptr_t data) case SC_DEEP_SLEEP: if( --(sce->val4) >= 0 ) {// Recovers 3% of the player's MaxHP/MaxSP every 2 seconds. - status->heal(bl, st->max_hp * 3 / 100, st->max_sp * 3 / 100, 2); + status->heal(bl, st->max_hp * 3 / 100, st->max_sp * 3 / 100, STATUS_HEAL_SHOWEFFECT); sc_timer_next(2000 + tick, status->change_timer, bl->id, data); return 0; } @@ -12082,7 +12111,7 @@ static int status_change_timer(int tid, int64 tick, int id, intptr_t data) if( --(sce->val4) >= 0 ) { if( !status->charge(bl,0,sce->val3) ) break; - status->heal(bl, sce->val2, 0, 1); + status->heal(bl, sce->val2, 0, STATUS_HEAL_FORCED); sc_timer_next(1000 + tick, status->change_timer, bl->id, data); return 0; } @@ -12090,7 +12119,7 @@ static int status_change_timer(int tid, int64 tick, int id, intptr_t data) case SC_SONG_OF_MANA: if( --(sce->val4) >= 0 ) { - status->heal(bl,0,sce->val3,3); + status->heal(bl, 0, sce->val3, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT); sc_timer_next(5000 + tick, status->change_timer, bl->id, data); return 0; } @@ -12284,7 +12313,7 @@ static int status_change_timer(int tid, int64 tick, int id, intptr_t data) return 0; case SC_MEIKYOUSISUI: if( --(sce->val4) > 0 ) { - status->heal(bl, st->max_hp * (sce->val1+1) / 100, st->max_sp * sce->val1 / 100, 0); + status->heal(bl, st->max_hp * (sce->val1+1) / 100, st->max_sp * sce->val1 / 100, STATUS_HEAL_DEFAULT); sc_timer_next(1000 + tick, status->change_timer, bl->id, data); return 0; } @@ -12320,7 +12349,7 @@ static int status_change_timer(int tid, int64 tick, int id, intptr_t data) break; case SC_FRIGG_SONG: if( --(sce->val4) > 0 ) { - status->heal(bl, sce->val3, 0, 0); + status->heal(bl, sce->val3, 0, STATUS_HEAL_DEFAULT); sc_timer_next(1000 + tick, status->change_timer, bl->id, data); return 0; } @@ -12902,7 +12931,7 @@ static int status_natural_heal(struct block_list *bl, va_list args) sregen->tick.hp += val; while(sregen->tick.hp >= (unsigned int)battle_config.natural_heal_skill_interval) { sregen->tick.hp -= battle_config.natural_heal_skill_interval; - if(status->heal(bl, sregen->hp, 0, 3) < sregen->hp) { + if (status->heal(bl, sregen->hp, 0, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT) < sregen->hp) { //Full flag&=~(RGN_HP|RGN_SHP); break; @@ -12917,7 +12946,7 @@ static int status_natural_heal(struct block_list *bl, va_list args) sregen->tick.sp += val; while(sregen->tick.sp >= (unsigned int)battle_config.natural_heal_skill_interval) { sregen->tick.sp -= battle_config.natural_heal_skill_interval; - if(status->heal(bl, 0, sregen->sp, 3) < sregen->sp) { + if (status->heal(bl, 0, sregen->sp, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT) < sregen->sp) { //Full flag&=~(RGN_SP|RGN_SSP); break; @@ -12966,7 +12995,7 @@ static int status_natural_heal(struct block_list *bl, va_list args) val += regen->hp; regen->tick.hp -= battle_config.natural_healhp_interval; } while(regen->tick.hp >= (unsigned int)battle_config.natural_healhp_interval); - if (status->heal(bl, val, 0, 1) < val) + if (status->heal(bl, val, 0, STATUS_HEAL_FORCED) < val) flag&=~RGN_SHP; //full. } } @@ -12985,7 +13014,7 @@ static int status_natural_heal(struct block_list *bl, va_list args) val += regen->sp; regen->tick.sp -= battle_config.natural_healsp_interval; } while(regen->tick.sp >= (unsigned int)battle_config.natural_healsp_interval); - if (status->heal(bl, 0, val, 1) < val) + if (status->heal(bl, 0, val, STATUS_HEAL_FORCED) < val) flag&=~RGN_SSP; //full. } } @@ -13002,7 +13031,7 @@ static int status_natural_heal(struct block_list *bl, va_list args) while(sregen->tick.hp >= (unsigned int)battle_config.natural_heal_skill_interval) { sregen->tick.hp -= battle_config.natural_heal_skill_interval; - if(status->heal(bl, sregen->hp, 0, 3) < sregen->hp) + if (status->heal(bl, sregen->hp, 0, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT) < sregen->hp) break; //Full } } @@ -13027,7 +13056,7 @@ static int status_natural_heal(struct block_list *bl, va_list args) } } sregen->tick.sp -= battle_config.natural_heal_skill_interval; - if(status->heal(bl, 0, val, 3) < val) + if (status->heal(bl, 0, val, STATUS_HEAL_FORCED | STATUS_HEAL_SHOWEFFECT) < val) break; //Full } } @@ -13752,6 +13781,8 @@ void status_defaults(void) status->base_atk = status_base_atk; status->get_base_maxhp = status_get_base_maxhp; status->get_base_maxsp = status_get_base_maxsp; + status->get_restart_hp = status_get_restart_hp; + status->get_restart_sp = status_get_restart_sp; status->calc_npc_ = status_calc_npc_; status->calc_str = status_calc_str; status->calc_agi = status_calc_agi; diff --git a/src/map/status.h b/src/map/status.h index e7cd5e94c..17af22703 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -99,6 +99,16 @@ enum scstart_flag { SCFLAG_ALL = SCFLAG_NONE|SCFLAG_NOAVOID|SCFLAG_FIXEDTICK|SCFLAG_LOADED|SCFLAG_FIXEDRATE|SCFLAG_NOICON }; +/** + * Flags to be used with status->heal() and related functions. + */ +enum status_heal_flag { + STATUS_HEAL_DEFAULT = 0x00, ///< Default + STATUS_HEAL_FORCED = 0x01, ///< Forced healing (bypassing Berserk and similar) + STATUS_HEAL_SHOWEFFECT = 0x02, ///< Show the HP/SP heal effect + STATUS_HEAL_ALLOWREVIVE = 0x04, ///< Force resurrection in case of dead targets. +}; + // Status changes listing. These code are for use by the server. typedef enum sc_type { SC_NONE = -1, @@ -1900,7 +1910,7 @@ enum e_joint_break /** * Mob mode definitions. [Skotlex] * - * @see doc/mob_db_mode_list.txt for a description of each mode. + * @see doc/mob_db_mode_list.md for a description of each mode. */ enum e_mode { @@ -2309,9 +2319,9 @@ struct status_interface { int (*charge) (struct block_list* bl, int64 hp, int64 sp); int (*percent_change) (struct block_list *src,struct block_list *target,signed char hp_rate, signed char sp_rate, int flag); //Used to set the hp/sp of an object to an absolute value (can't kill) - int (*set_hp) (struct block_list *bl, unsigned int hp, int flag); - int (*set_sp) (struct block_list *bl, unsigned int sp, int flag); - int (*heal) (struct block_list *bl,int64 hp,int64 sp, int flag); + int (*set_hp) (struct block_list *bl, unsigned int hp, enum status_heal_flag flag); + int (*set_sp) (struct block_list *bl, unsigned int sp, enum status_heal_flag flag); + int (*heal) (struct block_list *bl,int64 hp,int64 sp, enum status_heal_flag flag); int (*revive) (struct block_list *bl, unsigned char per_hp, unsigned char per_sp); int (*fixed_revive) (struct block_list *bl, unsigned int per_hp, unsigned int per_sp); struct regen_data * (*get_regen_data) (struct block_list *bl); @@ -2384,6 +2394,8 @@ struct status_interface { unsigned short (*base_atk) (const struct block_list *bl, const struct status_data *st); unsigned int (*get_base_maxhp) (const struct map_session_data *sd, const struct status_data *st); unsigned int (*get_base_maxsp) (const struct map_session_data *sd, const struct status_data *st); + unsigned int (*get_restart_hp) (const struct map_session_data *sd, const struct status_data *st); + unsigned int (*get_restart_sp) (const struct map_session_data *sd, const struct status_data *st); int (*calc_npc_) (struct npc_data *nd, enum e_status_calc_opt opt); unsigned short (*calc_str) (struct block_list *bl, struct status_change *sc, int str); unsigned short (*calc_agi) (struct block_list *bl, struct status_change *sc, int agi); diff --git a/src/map/storage.c b/src/map/storage.c index a6f0715e7..90b620f63 100644 --- a/src/map/storage.c +++ b/src/map/storage.c @@ -285,7 +285,7 @@ static int storage_add_from_inventory(struct map_session_data *sd, int index, in if (sd->storage.aggregate > MAX_STORAGE) return 0; // storage full - if (index < 0 || index >= MAX_INVENTORY) + if (index < 0 || index >= sd->status.inventorySize) return 0; if (sd->status.inventory[index].nameid <= 0) @@ -623,7 +623,7 @@ static int storage_guild_storageadd(struct map_session_data *sd, int index, int if( !stor->storage_status || stor->storage_amount > MAX_GUILD_STORAGE ) return 0; - if( index<0 || index>=MAX_INVENTORY ) + if (index < 0 || index >= sd->status.inventorySize) return 0; if( sd->status.inventory[index].nameid <= 0 ) diff --git a/src/map/trade.c b/src/map/trade.c index d4f846d19..9c284ba23 100644 --- a/src/map/trade.c +++ b/src/map/trade.c @@ -209,7 +209,7 @@ static int impossible_trade_check(struct map_session_data *sd) // remove this part: arrows can be trade and equipped // re-added! [celest] // remove equipped items (they can not be trade) - for (i = 0; i < MAX_INVENTORY; i++) + for (i = 0; i < sd->status.inventorySize; i++) if (inventory[i].nameid > 0 && inventory[i].equip && !(inventory[i].equip & EQP_AMMO)) memset(&inventory[i], 0, sizeof(struct item)); @@ -218,7 +218,7 @@ static int impossible_trade_check(struct map_session_data *sd) if (!sd->deal.item[i].amount) continue; index = sd->deal.item[i].index; - if (index < 0 || index >= MAX_INVENTORY) + if (index < 0 || index >= sd->status.inventorySize) return 1; if (inventory[index].amount < sd->deal.item[i].amount) { // if more than the player have -> hack @@ -281,9 +281,9 @@ static int trade_check(struct map_session_data *sd, struct map_session_data *tsd return 0; //qty Exploit? data = itemdb->search(inventory[n].nameid); - i = MAX_INVENTORY; + i = tsd->status.inventorySize; if (itemdb->isstackable2(data)) { //Stackable item. - for(i = 0; i < MAX_INVENTORY; i++) + for(i = 0; i < tsd->status.inventorySize; i++) if (inventory2[i].nameid == inventory[n].nameid && inventory2[i].card[0] == inventory[n].card[0] && inventory2[i].card[1] == inventory[n].card[1] && inventory2[i].card[2] == inventory[n].card[2] && inventory2[i].card[3] == inventory[n].card[3]) { @@ -295,9 +295,9 @@ static int trade_check(struct map_session_data *sd, struct map_session_data *tsd } } - if (i == MAX_INVENTORY) {// look for an empty slot. - for(i = 0; i < MAX_INVENTORY && inventory2[i].nameid; i++); - if (i == MAX_INVENTORY) + if (i == tsd->status.inventorySize) {// look for an empty slot. + for (i = 0; i < tsd->status.inventorySize && inventory2[i].nameid; i++); + if (i == tsd->status.inventorySize) return 0; memcpy(&inventory2[i], &inventory[n], sizeof(struct item)); inventory2[i].amount = amount; @@ -308,15 +308,15 @@ static int trade_check(struct map_session_data *sd, struct map_session_data *tsd if (!amount) continue; n = tsd->deal.item[trade_i].index; - if (n < 0 || n >= MAX_INVENTORY) + if (n < 0 || n >= tsd->status.inventorySize) return 0; if (amount > inventory2[n].amount) return 0; // search if it's possible to add item (for full inventory) data = itemdb->search(inventory2[n].nameid); - i = MAX_INVENTORY; + i = sd->status.inventorySize; if (itemdb->isstackable2(data)) { - for(i = 0; i < MAX_INVENTORY; i++) + for(i = 0; i < sd->status.inventorySize; i++) if (inventory[i].nameid == inventory2[n].nameid && inventory[i].card[0] == inventory2[n].card[0] && inventory[i].card[1] == inventory2[n].card[1] && inventory[i].card[2] == inventory2[n].card[2] && inventory[i].card[3] == inventory2[n].card[3]) { @@ -327,9 +327,9 @@ static int trade_check(struct map_session_data *sd, struct map_session_data *tsd break; } } - if (i == MAX_INVENTORY) { - for(i = 0; i < MAX_INVENTORY && inventory[i].nameid; i++); - if (i == MAX_INVENTORY) + if (i == sd->status.inventorySize) { + for(i = 0; i < sd->status.inventorySize && inventory[i].nameid; i++); + if (i == sd->status.inventorySize) return 0; memcpy(&inventory[i], &inventory2[n], sizeof(struct item)); inventory[i].amount = amount; @@ -369,7 +369,7 @@ static void trade_tradeadditem(struct map_session_data *sd, short index, short a index -= 2; // 0 is for zeny, 1 is unknown. Gravity, go figure... //Item checks... - if( index < 0 || index >= MAX_INVENTORY ) + if (index < 0 || index >= sd->status.inventorySize) return; if( amount < 0 || amount > sd->status.inventory[index].amount ) return; diff --git a/src/map/unit.c b/src/map/unit.c index 9174bdccd..68e6aeec1 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -918,7 +918,7 @@ static int unit_blown(struct block_list *bl, int dx, int dy, int count, int flag //Warps a unit/ud to a given map/position. //In the case of players, pc->setpos is used. //it respects the no warp flags, so it is safe to call this without doing nowarpto/nowarp checks. -static int unit_warp(struct block_list *bl, short m, short x, short y, clr_type type) +static int unit_warp(struct block_list *bl, short m, short x, short y, enum clr_type type) { struct unit_data *ud; nullpo_ret(bl); @@ -1836,7 +1836,7 @@ static int unit_set_target(struct unit_data *ud, int target_id) struct block_list* target; if (ud->target && (target = map->id2bl(ud->target)) != NULL && (ux = unit->bl2ud(target)) != NULL && ux->target_count > 0) --ux->target_count; - if (target_id && (target = map->id2bl(target_id)) != NULL && (ux = unit->bl2ud(target)) != NULL) + if (target_id && (target = map->id2bl(target_id)) != NULL && (ux = unit->bl2ud(target)) != NULL && ux->target_count < UCHAR_MAX) ++ux->target_count; } @@ -2419,7 +2419,7 @@ static int unit_changeviewsize(struct block_list *bl, short size) * Otherwise it is assumed bl is being warped. * On-Kill specific stuff is not performed here, look at status->damage for that. *------------------------------------------*/ -static int unit_remove_map(struct block_list *bl, clr_type clrtype, const char *file, int line, const char *func) +static int unit_remove_map(struct block_list *bl, enum clr_type clrtype, const char *file, int line, const char *func) { struct unit_data *ud = unit->bl2ud(bl); struct status_change *sc = status->get_sc(bl); @@ -2665,7 +2665,7 @@ static int unit_remove_map(struct block_list *bl, clr_type clrtype, const char * return 1; } -static void unit_remove_map_pc(struct map_session_data *sd, clr_type clrtype) +static void unit_remove_map_pc(struct map_session_data *sd, enum clr_type clrtype) { nullpo_retv(sd); unit->remove_map(&sd->bl,clrtype,ALC_MARK); @@ -2697,7 +2697,7 @@ static void unit_free_pc(struct map_session_data *sd) * Function to free all related resources to the bl * if unit is on map, it is removed using the clrtype specified *------------------------------------------*/ -static int unit_free(struct block_list *bl, clr_type clrtype) +static int unit_free(struct block_list *bl, enum clr_type clrtype) { struct unit_data *ud = unit->bl2ud( bl ); nullpo_ret(bl); @@ -2764,6 +2764,7 @@ static int unit_free(struct block_list *bl, clr_type clrtype) aFree(sd->instance); sd->instance = NULL; } + VECTOR_CLEAR(sd->channels); VECTOR_CLEAR(sd->script_queues); VECTOR_CLEAR(sd->achievement); // Achievement [Smokexyz/Hercules] VECTOR_CLEAR(sd->storage.item); diff --git a/src/map/unit.h b/src/map/unit.h index 0c1c2405c..5c01cdc2e 100644 --- a/src/map/unit.h +++ b/src/map/unit.h @@ -116,7 +116,7 @@ struct unit_interface { int (*setdir) (struct block_list *bl, unsigned char dir); uint8 (*getdir) (struct block_list *bl); int (*blown) (struct block_list *bl, int dx, int dy, int count, int flag); - int (*warp) (struct block_list *bl, short m, short x, short y, clr_type type); + int (*warp) (struct block_list *bl, short m, short x, short y, enum clr_type type); int (*stop_walking) (struct block_list *bl, int type); int (*skilluse_id) (struct block_list *src, int target_id, uint16 skill_id, uint16 skill_lv); int (*step_timer) (int tid, int64 tick, int id, intptr_t data); @@ -142,10 +142,10 @@ struct unit_interface { int (*counttargeted) (struct block_list *bl); int (*fixdamage) (struct block_list *src, struct block_list *target, int sdelay, int ddelay, int64 damage, short div, unsigned char type, int64 damage2); int (*changeviewsize) (struct block_list *bl, short size); - int (*remove_map) (struct block_list *bl, clr_type clrtype, const char *file, int line, const char *func); - void (*remove_map_pc) (struct map_session_data *sd, clr_type clrtype); + int (*remove_map) (struct block_list *bl, enum clr_type clrtype, const char *file, int line, const char *func); + void (*remove_map_pc) (struct map_session_data *sd, enum clr_type clrtype); void (*free_pc) (struct map_session_data *sd); - int (*free) (struct block_list *bl, clr_type clrtype); + int (*free) (struct block_list *bl, enum clr_type clrtype); }; #ifdef HERCULES_CORE diff --git a/src/plugins/HPMHooking.c b/src/plugins/HPMHooking.c index b477cb5c3..aef09d7a7 100644 --- a/src/plugins/HPMHooking.c +++ b/src/plugins/HPMHooking.c @@ -25,6 +25,7 @@ #include "common/memmgr.h" #include "common/mmo.h" #include "common/socket.h" +#include "common/packets.h" PRAGMA_GCC5(GCC diagnostic push) PRAGMA_GCC5(GCC diagnostic ignored "-Wdiscarded-qualifiers") @@ -40,6 +41,8 @@ PRAGMA_GCC5(GCC diagnostic ignored "-Wdiscarded-qualifiers") #include "login/lclif.p.h" #include "login/login.h" #include "login/loginlog.h" +#include "login/packets_ac_struct.h" +#include "login/packets_ca_struct.h" #elif defined (HPMHOOKING_CHAR) #define HPM_SERVER_TYPE SERVER_TYPE_CHAR #define HPM_CORE_INCLUDE "HPMHooking/HPMHooking_char.HPMHooksCore.inc" diff --git a/src/plugins/HPMHooking/HPMHooking.Defs.inc b/src/plugins/HPMHooking/HPMHooking.Defs.inc index f80dc9003..0a186939e 100644 --- a/src/plugins/HPMHooking/HPMHooking.Defs.inc +++ b/src/plugins/HPMHooking/HPMHooking.Defs.inc @@ -176,8 +176,12 @@ typedef void (*HPMHOOK_pre_achievement_init_titles) (struct map_session_data **s typedef void (*HPMHOOK_post_achievement_init_titles) (struct map_session_data *sd); typedef bool (*HPMHOOK_pre_achievement_check_title) (struct map_session_data **sd, int *title_id); typedef bool (*HPMHOOK_post_achievement_check_title) (bool retVal___, struct map_session_data *sd, int title_id); -typedef void (*HPMHOOK_pre_achievement_get_rewards) (struct map_session_data **sd, const struct achievement_data **ad); -typedef void (*HPMHOOK_post_achievement_get_rewards) (struct map_session_data *sd, const struct achievement_data *ad); +typedef bool (*HPMHOOK_pre_achievement_get_rewards) (struct map_session_data **sd, const struct achievement_data **ad); +typedef bool (*HPMHOOK_post_achievement_get_rewards) (bool retVal___, struct map_session_data *sd, const struct achievement_data *ad); +typedef void (*HPMHOOK_pre_achievement_get_rewards_buffs) (struct map_session_data **sd, const struct achievement_data **ad); +typedef void (*HPMHOOK_post_achievement_get_rewards_buffs) (struct map_session_data *sd, const struct achievement_data *ad); +typedef void (*HPMHOOK_pre_achievement_get_rewards_items) (struct map_session_data **sd, const struct achievement_data **ad); +typedef void (*HPMHOOK_post_achievement_get_rewards_items) (struct map_session_data *sd, const struct achievement_data *ad); #endif // MAP_ACHIEVEMENT_H #ifdef MAP_ATCOMMAND_H /* atcommand */ typedef void (*HPMHOOK_pre_atcommand_init) (bool *minimal); @@ -278,6 +282,8 @@ typedef void (*HPMHOOK_pre_battle_drain) (struct map_session_data **sd, struct b typedef void (*HPMHOOK_post_battle_drain) (struct map_session_data *sd, struct block_list *tbl, int64 rdamage, int64 ldamage, int race, int boss); typedef void (*HPMHOOK_pre_battle_reflect_damage) (struct block_list **target, struct block_list **src, struct Damage **wd, uint16 *skill_id); typedef void (*HPMHOOK_post_battle_reflect_damage) (struct block_list *target, struct block_list *src, struct Damage *wd, uint16 skill_id); +typedef void (*HPMHOOK_pre_battle_reflect_trap) (struct block_list **target, struct block_list **src, struct Damage **md, uint16 *skill_id); +typedef void (*HPMHOOK_post_battle_reflect_trap) (struct block_list *target, struct block_list *src, struct Damage *md, uint16 skill_id); typedef int (*HPMHOOK_pre_battle_attr_ratio) (int *atk_elem, int *def_type, int *def_lv); typedef int (*HPMHOOK_post_battle_attr_ratio) (int retVal___, int atk_elem, int def_type, int def_lv); typedef int64 (*HPMHOOK_pre_battle_attr_fix) (struct block_list **src, struct block_list **target, int64 *damage, int *atk_elem, int *def_type, int *def_lv); @@ -532,8 +538,8 @@ typedef int (*HPMHOOK_pre_chr_memitemdata_to_sql) (const struct item *items[], i typedef int (*HPMHOOK_post_chr_memitemdata_to_sql) (int retVal___, const struct item items[], int id, enum inventory_table_type table); typedef int (*HPMHOOK_pre_chr_mmo_gender) (const struct char_session_data **sd, const struct mmo_charstatus **p, char *sex); typedef int (*HPMHOOK_post_chr_mmo_gender) (int retVal___, const struct char_session_data *sd, const struct mmo_charstatus *p, char sex); -typedef int (*HPMHOOK_pre_chr_mmo_chars_fromsql) (struct char_session_data **sd, uint8 **buf); -typedef int (*HPMHOOK_post_chr_mmo_chars_fromsql) (int retVal___, struct char_session_data *sd, uint8 *buf); +typedef int (*HPMHOOK_pre_chr_mmo_chars_fromsql) (struct char_session_data **sd, uint8 **buf, int **count); +typedef int (*HPMHOOK_post_chr_mmo_chars_fromsql) (int retVal___, struct char_session_data *sd, uint8 *buf, int *count); typedef int (*HPMHOOK_pre_chr_mmo_char_fromsql) (int *char_id, struct mmo_charstatus **p, bool *load_everything); typedef int (*HPMHOOK_post_chr_mmo_char_fromsql) (int retVal___, int char_id, struct mmo_charstatus *p, bool load_everything); typedef int (*HPMHOOK_pre_chr_mmo_char_sql_init) (void); @@ -554,8 +560,8 @@ typedef int (*HPMHOOK_pre_chr_count_users) (void); typedef int (*HPMHOOK_post_chr_count_users) (int retVal___); typedef int (*HPMHOOK_pre_chr_mmo_char_tobuf) (uint8 **buffer, struct mmo_charstatus **p); typedef int (*HPMHOOK_post_chr_mmo_char_tobuf) (int retVal___, uint8 *buffer, struct mmo_charstatus *p); -typedef void (*HPMHOOK_pre_chr_mmo_char_send099d) (int *fd, struct char_session_data **sd); -typedef void (*HPMHOOK_post_chr_mmo_char_send099d) (int fd, struct char_session_data *sd); +typedef void (*HPMHOOK_pre_chr_send_HC_ACK_CHARINFO_PER_PAGE) (int *fd, struct char_session_data **sd); +typedef void (*HPMHOOK_post_chr_send_HC_ACK_CHARINFO_PER_PAGE) (int fd, struct char_session_data *sd); typedef void (*HPMHOOK_pre_chr_mmo_char_send_ban_list) (int *fd, struct char_session_data **sd); typedef void (*HPMHOOK_post_chr_mmo_char_send_ban_list) (int fd, struct char_session_data *sd); typedef void (*HPMHOOK_pre_chr_mmo_char_send_slots_info) (int *fd, struct char_session_data **sd); @@ -1154,12 +1160,12 @@ typedef void (*HPMHOOK_pre_clif_package_announce) (struct map_session_data **sd, typedef void (*HPMHOOK_post_clif_package_announce) (struct map_session_data *sd, int nameid, int containerid); typedef void (*HPMHOOK_pre_clif_item_drop_announce) (struct map_session_data **sd, int *nameid, char **monsterName); typedef void (*HPMHOOK_post_clif_item_drop_announce) (struct map_session_data *sd, int nameid, char *monsterName); -typedef void (*HPMHOOK_pre_clif_clearunit_single) (int *id, clr_type *type, int *fd); -typedef void (*HPMHOOK_post_clif_clearunit_single) (int id, clr_type type, int fd); -typedef void (*HPMHOOK_pre_clif_clearunit_area) (struct block_list **bl, clr_type *type); -typedef void (*HPMHOOK_post_clif_clearunit_area) (struct block_list *bl, clr_type type); -typedef void (*HPMHOOK_pre_clif_clearunit_delayed) (struct block_list **bl, clr_type *type, int64 *tick); -typedef void (*HPMHOOK_post_clif_clearunit_delayed) (struct block_list *bl, clr_type type, int64 tick); +typedef void (*HPMHOOK_pre_clif_clearunit_single) (int *id, enum clr_type *type, int *fd); +typedef void (*HPMHOOK_post_clif_clearunit_single) (int id, enum clr_type type, int fd); +typedef void (*HPMHOOK_pre_clif_clearunit_area) (struct block_list **bl, enum clr_type *type); +typedef void (*HPMHOOK_post_clif_clearunit_area) (struct block_list *bl, enum clr_type type); +typedef void (*HPMHOOK_pre_clif_clearunit_delayed) (struct block_list **bl, enum clr_type *type, int64 *tick); +typedef void (*HPMHOOK_post_clif_clearunit_delayed) (struct block_list *bl, enum clr_type type, int64 tick); typedef void (*HPMHOOK_pre_clif_walkok) (struct map_session_data **sd); typedef void (*HPMHOOK_post_clif_walkok) (struct map_session_data *sd); typedef void (*HPMHOOK_pre_clif_move) (struct unit_data **ud); @@ -1332,6 +1338,18 @@ typedef void (*HPMHOOK_pre_clif_cartList) (struct map_session_data **sd); typedef void (*HPMHOOK_post_clif_cartList) (struct map_session_data *sd); typedef void (*HPMHOOK_pre_clif_cartItems) (struct map_session_data **sd, enum inventory_type *type); typedef void (*HPMHOOK_post_clif_cartItems) (struct map_session_data *sd, enum inventory_type type); +typedef void (*HPMHOOK_pre_clif_inventoryExpansionInfo) (struct map_session_data **sd); +typedef void (*HPMHOOK_post_clif_inventoryExpansionInfo) (struct map_session_data *sd); +typedef void (*HPMHOOK_pre_clif_inventoryExpandAck) (struct map_session_data **sd, enum expand_inventory *result, int *itemId); +typedef void (*HPMHOOK_post_clif_inventoryExpandAck) (struct map_session_data *sd, enum expand_inventory result, int itemId); +typedef void (*HPMHOOK_pre_clif_inventoryExpandResult) (struct map_session_data **sd, enum expand_inventory_result *result); +typedef void (*HPMHOOK_post_clif_inventoryExpandResult) (struct map_session_data *sd, enum expand_inventory_result result); +typedef void (*HPMHOOK_pre_clif_pInventoryExpansion) (int *fd, struct map_session_data **sd); +typedef void (*HPMHOOK_post_clif_pInventoryExpansion) (int fd, struct map_session_data *sd); +typedef void (*HPMHOOK_pre_clif_pInventoryExpansionConfirmed) (int *fd, struct map_session_data **sd); +typedef void (*HPMHOOK_post_clif_pInventoryExpansionConfirmed) (int fd, struct map_session_data *sd); +typedef void (*HPMHOOK_pre_clif_pInventoryExpansionRejected) (int *fd, struct map_session_data **sd); +typedef void (*HPMHOOK_post_clif_pInventoryExpansionRejected) (int fd, struct map_session_data *sd); typedef void (*HPMHOOK_pre_clif_favorite_item) (struct map_session_data **sd, unsigned short *index); typedef void (*HPMHOOK_post_clif_favorite_item) (struct map_session_data *sd, unsigned short index); typedef void (*HPMHOOK_pre_clif_clearcart) (int *fd); @@ -1512,6 +1530,10 @@ typedef void (*HPMHOOK_pre_clif_specialeffect_single) (struct block_list **bl, i typedef void (*HPMHOOK_post_clif_specialeffect_single) (struct block_list *bl, int type, int fd); typedef void (*HPMHOOK_pre_clif_specialeffect_value) (struct block_list **bl, int *effect_id, int *num, send_target *target); typedef void (*HPMHOOK_post_clif_specialeffect_value) (struct block_list *bl, int effect_id, int num, send_target target); +typedef void (*HPMHOOK_pre_clif_removeSpecialEffect) (struct block_list **bl, int *effectId, enum send_target *target); +typedef void (*HPMHOOK_post_clif_removeSpecialEffect) (struct block_list *bl, int effectId, enum send_target target); +typedef void (*HPMHOOK_pre_clif_removeSpecialEffect_single) (struct block_list **bl, int *effectId, struct block_list **targetBl); +typedef void (*HPMHOOK_post_clif_removeSpecialEffect_single) (struct block_list *bl, int effectId, struct block_list *targetBl); typedef void (*HPMHOOK_pre_clif_millenniumshield) (struct block_list **bl, short *shields); typedef void (*HPMHOOK_post_clif_millenniumshield) (struct block_list *bl, short shields); typedef void (*HPMHOOK_pre_clif_spiritcharm) (struct map_session_data **sd); @@ -1562,6 +1584,8 @@ typedef void (*HPMHOOK_pre_clif_messagecolor_self) (int *fd, uint32 *color, cons typedef void (*HPMHOOK_post_clif_messagecolor_self) (int fd, uint32 color, const char *msg); typedef void (*HPMHOOK_pre_clif_messagecolor) (struct block_list **bl, uint32 *color, const char **msg); typedef void (*HPMHOOK_post_clif_messagecolor) (struct block_list *bl, uint32 color, const char *msg); +typedef void (*HPMHOOK_pre_clif_serviceMessageColor) (struct map_session_data **sd, uint32 *color, const char **msg); +typedef void (*HPMHOOK_post_clif_serviceMessageColor) (struct map_session_data *sd, uint32 color, const char *msg); typedef void (*HPMHOOK_pre_clif_disp_overhead) (struct block_list **bl, const char **mes, enum send_target *target, struct block_list **target_bl); typedef void (*HPMHOOK_post_clif_disp_overhead) (struct block_list *bl, const char *mes, enum send_target target, struct block_list *target_bl); typedef void (*HPMHOOK_pre_clif_notify_playerchat) (struct block_list **bl, const char **mes); @@ -1996,8 +2020,8 @@ typedef void (*HPMHOOK_pre_clif_npc_market_purchase_ack) (struct map_session_dat typedef void (*HPMHOOK_post_clif_npc_market_purchase_ack) (struct map_session_data *sd, const struct itemlist *item_list, unsigned char response); typedef bool (*HPMHOOK_pre_clif_parse_roulette_db) (void); typedef bool (*HPMHOOK_post_clif_parse_roulette_db) (bool retVal___); -typedef void (*HPMHOOK_pre_clif_roulette_generate_ack) (struct map_session_data **sd, unsigned char *result, short *stage, short *prizeIdx, int *bonusItemID); -typedef void (*HPMHOOK_post_clif_roulette_generate_ack) (struct map_session_data *sd, unsigned char result, short stage, short prizeIdx, int bonusItemID); +typedef void (*HPMHOOK_pre_clif_roulette_generate_ack) (struct map_session_data **sd, enum GENERATE_ROULETTE_ACK *result, short *stage, short *prizeIdx, int *bonusItemID); +typedef void (*HPMHOOK_post_clif_roulette_generate_ack) (struct map_session_data *sd, enum GENERATE_ROULETTE_ACK result, short stage, short prizeIdx, int bonusItemID); typedef void (*HPMHOOK_pre_clif_openmergeitem) (int *fd, struct map_session_data **sd); typedef void (*HPMHOOK_post_clif_openmergeitem) (int fd, struct map_session_data *sd); typedef void (*HPMHOOK_pre_clif_cancelmergeitem) (int *fd, struct map_session_data **sd); @@ -2116,8 +2140,14 @@ typedef void (*HPMHOOK_pre_clif_pStatusUp) (int *fd, struct map_session_data **s typedef void (*HPMHOOK_post_clif_pStatusUp) (int fd, struct map_session_data *sd); typedef void (*HPMHOOK_pre_clif_pSkillUp) (int *fd, struct map_session_data **sd); typedef void (*HPMHOOK_post_clif_pSkillUp) (int fd, struct map_session_data *sd); +typedef void (*HPMHOOK_pre_clif_useSkillToIdReal) (int *fd, struct map_session_data **sd, int *skill_id, int *skill_lv, int *target_id); +typedef void (*HPMHOOK_post_clif_useSkillToIdReal) (int fd, struct map_session_data *sd, int skill_id, int skill_lv, int target_id); typedef void (*HPMHOOK_pre_clif_pUseSkillToId) (int *fd, struct map_session_data **sd); typedef void (*HPMHOOK_post_clif_pUseSkillToId) (int fd, struct map_session_data *sd); +typedef void (*HPMHOOK_pre_clif_pStartUseSkillToId) (int *fd, struct map_session_data **sd); +typedef void (*HPMHOOK_post_clif_pStartUseSkillToId) (int fd, struct map_session_data *sd); +typedef void (*HPMHOOK_pre_clif_pStopUseSkillToId) (int *fd, struct map_session_data **sd); +typedef void (*HPMHOOK_post_clif_pStopUseSkillToId) (int fd, struct map_session_data *sd); typedef void (*HPMHOOK_pre_clif_pUseSkillToId_homun) (struct homun_data **hd, struct map_session_data **sd, int64 *tick, uint16 *skill_id, uint16 *skill_lv, int *target_id); typedef void (*HPMHOOK_post_clif_pUseSkillToId_homun) (struct homun_data *hd, struct map_session_data *sd, int64 tick, uint16 skill_id, uint16 skill_lv, int target_id); typedef void (*HPMHOOK_pre_clif_pUseSkillToId_mercenary) (struct mercenary_data **md, struct map_session_data **sd, int64 *tick, uint16 *skill_id, uint16 *skill_lv, int *target_id); @@ -2616,6 +2646,18 @@ typedef void (*HPMHOOK_pre_clif_party_dead_notification) (struct map_session_dat typedef void (*HPMHOOK_post_clif_party_dead_notification) (struct map_session_data *sd); typedef void (*HPMHOOK_pre_clif_pMemorialDungeonCommand) (int *fd, struct map_session_data **sd); typedef void (*HPMHOOK_post_clif_pMemorialDungeonCommand) (int fd, struct map_session_data *sd); +typedef void (*HPMHOOK_pre_clif_camera_showWindow) (struct map_session_data **sd); +typedef void (*HPMHOOK_post_clif_camera_showWindow) (struct map_session_data *sd); +typedef void (*HPMHOOK_pre_clif_camera_change) (struct map_session_data **sd, float *range, float *rotation, float *latitude, enum send_target *target); +typedef void (*HPMHOOK_post_clif_camera_change) (struct map_session_data *sd, float range, float rotation, float latitude, enum send_target target); +typedef void (*HPMHOOK_pre_clif_pCameraInfo) (int *fd, struct map_session_data **sd); +typedef void (*HPMHOOK_post_clif_pCameraInfo) (int fd, struct map_session_data *sd); +typedef void (*HPMHOOK_pre_clif_item_preview) (struct map_session_data **sd, int *n); +typedef void (*HPMHOOK_post_clif_item_preview) (struct map_session_data *sd, int n); +typedef bool (*HPMHOOK_pre_clif_enchant_equipment) (struct map_session_data **sd, enum equip_pos *pos, int *cardSlot, int *cardId); +typedef bool (*HPMHOOK_post_clif_enchant_equipment) (bool retVal___, struct map_session_data *sd, enum equip_pos pos, int cardSlot, int cardId); +typedef void (*HPMHOOK_pre_clif_pReqRemainTime) (int *fd, struct map_session_data **sd); +typedef void (*HPMHOOK_post_clif_pReqRemainTime) (int fd, struct map_session_data *sd); #endif // MAP_CLIF_H #ifdef COMMON_CORE_H /* cmdline */ typedef void (*HPMHOOK_pre_cmdline_init) (void); @@ -4056,6 +4098,10 @@ typedef enum parsefunc_rcode (*HPMHOOK_pre_PRIV__lclif_parse_CA_SSO_LOGIN_REQ) ( typedef enum parsefunc_rcode (*HPMHOOK_post_PRIV__lclif_parse_CA_SSO_LOGIN_REQ) (enum parsefunc_rcode retVal___, int fd, struct login_session_data *sd); typedef enum parsefunc_rcode (*HPMHOOK_pre_PRIV__lclif_parse_CA_LOGIN_OTP) (int *fd, struct login_session_data **sd); typedef enum parsefunc_rcode (*HPMHOOK_post_PRIV__lclif_parse_CA_LOGIN_OTP) (enum parsefunc_rcode retVal___, int fd, struct login_session_data *sd); +typedef enum parsefunc_rcode (*HPMHOOK_pre_PRIV__lclif_parse_CA_ACK_MOBILE_OTP) (int *fd, struct login_session_data **sd); +typedef enum parsefunc_rcode (*HPMHOOK_post_PRIV__lclif_parse_CA_ACK_MOBILE_OTP) (enum parsefunc_rcode retVal___, int fd, struct login_session_data *sd); +typedef enum parsefunc_rcode (*HPMHOOK_pre_PRIV__lclif_parse_CA_OTP_CODE) (int *fd, struct login_session_data **sd); +typedef enum parsefunc_rcode (*HPMHOOK_post_PRIV__lclif_parse_CA_OTP_CODE) (enum parsefunc_rcode retVal___, int fd, struct login_session_data *sd); typedef enum parsefunc_rcode (*HPMHOOK_pre_PRIV__lclif_parse_CA_REQ_HASH) (int *fd, struct login_session_data **sd); typedef enum parsefunc_rcode (*HPMHOOK_post_PRIV__lclif_parse_CA_REQ_HASH) (enum parsefunc_rcode retVal___, int fd, struct login_session_data *sd); typedef enum parsefunc_rcode (*HPMHOOK_pre_PRIV__lclif_parse_CA_CHARSERVERCONNECT) (int *fd, struct login_session_data **sd); @@ -4338,6 +4384,8 @@ typedef bool (*HPMHOOK_pre_login_client_login) (int *fd, struct login_session_da typedef bool (*HPMHOOK_post_login_client_login) (bool retVal___, int fd, struct login_session_data *sd); typedef bool (*HPMHOOK_pre_login_client_login_otp) (int *fd, struct login_session_data **sd); typedef bool (*HPMHOOK_post_login_client_login_otp) (bool retVal___, int fd, struct login_session_data *sd); +typedef void (*HPMHOOK_pre_login_client_login_mobile_otp_request) (int *fd, struct login_session_data **sd); +typedef void (*HPMHOOK_post_login_client_login_mobile_otp_request) (int fd, struct login_session_data *sd); typedef void (*HPMHOOK_pre_login_char_server_connection_status) (int *fd, struct login_session_data **sd, uint8 *status); typedef void (*HPMHOOK_post_login_char_server_connection_status) (int fd, struct login_session_data *sd, uint8 status); typedef void (*HPMHOOK_pre_login_parse_request_connection) (int *fd, struct login_session_data **sd, const char **ip, uint32 *ipl); @@ -4442,6 +4490,8 @@ typedef void (*HPMHOOK_pre_map_zone_init) (void); typedef void (*HPMHOOK_post_map_zone_init) (void); typedef void (*HPMHOOK_pre_map_zone_remove) (int *m); typedef void (*HPMHOOK_post_map_zone_remove) (int m); +typedef void (*HPMHOOK_pre_map_zone_remove_all) (int *m); +typedef void (*HPMHOOK_post_map_zone_remove_all) (int m); typedef void (*HPMHOOK_pre_map_zone_apply) (int *m, struct map_zone_data **zone, const char **start, const char **buffer, const char **filepath); typedef void (*HPMHOOK_post_map_zone_apply) (int m, struct map_zone_data *zone, const char *start, const char *buffer, const char *filepath); typedef void (*HPMHOOK_pre_map_zone_change) (int *m, struct map_zone_data **zone, const char **start, const char **buffer, const char **filepath); @@ -5657,6 +5707,16 @@ typedef int (*HPMHOOK_post_npc_secure_timeout_timer) (int retVal___, int tid, in typedef void (*HPMHOOK_pre_nullpo_assert_report) (const char **file, int *line, const char **func, const char **targetname, const char **title); typedef void (*HPMHOOK_post_nullpo_assert_report) (const char *file, int line, const char *func, const char *targetname, const char *title); #endif // COMMON_NULLPO_H +#ifdef COMMON_PACKETS_H /* packets */ +typedef void (*HPMHOOK_pre_packets_init) (void); +typedef void (*HPMHOOK_post_packets_init) (void); +typedef void (*HPMHOOK_pre_packets_final) (void); +typedef void (*HPMHOOK_post_packets_final) (void); +typedef void (*HPMHOOK_pre_packets_addLens) (void); +typedef void (*HPMHOOK_post_packets_addLens) (void); +typedef void (*HPMHOOK_pre_packets_addLen) (int *id, int *len); +typedef void (*HPMHOOK_post_packets_addLen) (int id, int len); +#endif // COMMON_PACKETS_H #ifdef MAP_PARTY_H /* party */ typedef void (*HPMHOOK_pre_party_init) (bool *minimal); typedef void (*HPMHOOK_post_party_init) (bool minimal); @@ -5820,8 +5880,8 @@ typedef int (*HPMHOOK_pre_pc_setrestartvalue) (struct map_session_data **sd, int typedef int (*HPMHOOK_post_pc_setrestartvalue) (int retVal___, struct map_session_data *sd, int type); typedef int (*HPMHOOK_pre_pc_makesavestatus) (struct map_session_data **sd); typedef int (*HPMHOOK_post_pc_makesavestatus) (int retVal___, struct map_session_data *sd); -typedef void (*HPMHOOK_pre_pc_respawn) (struct map_session_data **sd, clr_type *clrtype); -typedef void (*HPMHOOK_post_pc_respawn) (struct map_session_data *sd, clr_type clrtype); +typedef void (*HPMHOOK_pre_pc_respawn) (struct map_session_data **sd, enum clr_type *clrtype); +typedef void (*HPMHOOK_post_pc_respawn) (struct map_session_data *sd, enum clr_type clrtype); typedef int (*HPMHOOK_pre_pc_setnewpc) (struct map_session_data **sd, int *account_id, int *char_id, int *login_id1, unsigned int *client_tick, int *sex, int *fd); typedef int (*HPMHOOK_post_pc_setnewpc) (int retVal___, struct map_session_data *sd, int account_id, int char_id, int login_id1, unsigned int client_tick, int sex, int fd); typedef bool (*HPMHOOK_pre_pc_authok) (struct map_session_data **sd, int *login_id2, time_t *expiration_time, int *group_id, const struct mmo_charstatus **st, bool *changing_mapservers); @@ -5856,12 +5916,12 @@ typedef int (*HPMHOOK_pre_pc_calc_skilltree_normalize_job) (struct map_session_d typedef int (*HPMHOOK_post_pc_calc_skilltree_normalize_job) (int retVal___, struct map_session_data *sd); typedef int (*HPMHOOK_pre_pc_clean_skilltree) (struct map_session_data **sd); typedef int (*HPMHOOK_post_pc_clean_skilltree) (int retVal___, struct map_session_data *sd); -typedef int (*HPMHOOK_pre_pc_setpos) (struct map_session_data **sd, unsigned short *map_index, int *x, int *y, clr_type *clrtype); -typedef int (*HPMHOOK_post_pc_setpos) (int retVal___, struct map_session_data *sd, unsigned short map_index, int x, int y, clr_type clrtype); +typedef int (*HPMHOOK_pre_pc_setpos) (struct map_session_data **sd, unsigned short *map_index, int *x, int *y, enum clr_type *clrtype); +typedef int (*HPMHOOK_post_pc_setpos) (int retVal___, struct map_session_data *sd, unsigned short map_index, int x, int y, enum clr_type clrtype); typedef int (*HPMHOOK_pre_pc_setsavepoint) (struct map_session_data **sd, short *map_index, int *x, int *y); typedef int (*HPMHOOK_post_pc_setsavepoint) (int retVal___, struct map_session_data *sd, short map_index, int x, int y); -typedef int (*HPMHOOK_pre_pc_randomwarp) (struct map_session_data **sd, clr_type *type); -typedef int (*HPMHOOK_post_pc_randomwarp) (int retVal___, struct map_session_data *sd, clr_type type); +typedef int (*HPMHOOK_pre_pc_randomwarp) (struct map_session_data **sd, enum clr_type *type); +typedef int (*HPMHOOK_post_pc_randomwarp) (int retVal___, struct map_session_data *sd, enum clr_type type); typedef int (*HPMHOOK_pre_pc_memo) (struct map_session_data **sd, int *pos); typedef int (*HPMHOOK_post_pc_memo) (int retVal___, struct map_session_data *sd, int pos); typedef int (*HPMHOOK_pre_pc_checkadditem) (struct map_session_data **sd, int *nameid, int *amount); @@ -5872,8 +5932,8 @@ typedef int (*HPMHOOK_pre_pc_search_inventory) (struct map_session_data **sd, in typedef int (*HPMHOOK_post_pc_search_inventory) (int retVal___, struct map_session_data *sd, int item_id); typedef int (*HPMHOOK_pre_pc_payzeny) (struct map_session_data **sd, int *zeny, enum e_log_pick_type *type, struct map_session_data **tsd); typedef int (*HPMHOOK_post_pc_payzeny) (int retVal___, struct map_session_data *sd, int zeny, enum e_log_pick_type type, struct map_session_data *tsd); -typedef int (*HPMHOOK_pre_pc_additem) (struct map_session_data **sd, struct item **item_data, int *amount, e_log_pick_type *log_type); -typedef int (*HPMHOOK_post_pc_additem) (int retVal___, struct map_session_data *sd, struct item *item_data, int amount, e_log_pick_type log_type); +typedef int (*HPMHOOK_pre_pc_additem) (struct map_session_data **sd, const struct item **item_data, int *amount, e_log_pick_type *log_type); +typedef int (*HPMHOOK_post_pc_additem) (int retVal___, struct map_session_data *sd, const struct item *item_data, int amount, e_log_pick_type log_type); typedef int (*HPMHOOK_pre_pc_getzeny) (struct map_session_data **sd, int *zeny, enum e_log_pick_type *type, struct map_session_data **tsd); typedef int (*HPMHOOK_post_pc_getzeny) (int retVal___, struct map_session_data *sd, int zeny, enum e_log_pick_type type, struct map_session_data *tsd); typedef int (*HPMHOOK_pre_pc_delitem) (struct map_session_data **sd, int *n, int *amount, int *type, short *reason, e_log_pick_type *log_type); @@ -6178,8 +6238,8 @@ typedef int (*HPMHOOK_pre_pc_bonus_addeff) (struct s_addeffect **effect, int *ma typedef int (*HPMHOOK_post_pc_bonus_addeff) (int retVal___, struct s_addeffect *effect, int max, enum sc_type id, int16 rate, int16 arrow_rate, uint8 flag, uint16 duration); typedef int (*HPMHOOK_pre_pc_bonus_addeff_onskill) (struct s_addeffectonskill **effect, int *max, enum sc_type *id, short *rate, short *skill_id, unsigned char *target); typedef int (*HPMHOOK_post_pc_bonus_addeff_onskill) (int retVal___, struct s_addeffectonskill *effect, int max, enum sc_type id, short rate, short skill_id, unsigned char target); -typedef int (*HPMHOOK_pre_pc_bonus_item_drop) (struct s_add_drop **drop, const short *max, short *id, short *group, int *race, int *rate); -typedef int (*HPMHOOK_post_pc_bonus_item_drop) (int retVal___, struct s_add_drop *drop, const short max, short id, short group, int race, int rate); +typedef int (*HPMHOOK_pre_pc_bonus_item_drop) (struct s_add_drop **drop, const short *max, int *id, bool *is_group, int *race, int *rate); +typedef int (*HPMHOOK_post_pc_bonus_item_drop) (int retVal___, struct s_add_drop *drop, const short max, int id, bool is_group, int race, int rate); typedef void (*HPMHOOK_pre_pc_calcexp) (struct map_session_data **sd, uint64 **base_exp, uint64 **job_exp, struct block_list **src); typedef void (*HPMHOOK_post_pc_calcexp) (struct map_session_data *sd, uint64 *base_exp, uint64 *job_exp, struct block_list *src); typedef int (*HPMHOOK_pre_pc_respawn_timer) (int *tid, int64 *tick, int *id, intptr_t *data); @@ -6274,6 +6334,8 @@ typedef bool (*HPMHOOK_pre_pc_isDeathPenaltyJob) (uint16 *job); typedef bool (*HPMHOOK_post_pc_isDeathPenaltyJob) (bool retVal___, uint16 job); typedef bool (*HPMHOOK_pre_pc_has_second_costume) (struct map_session_data **sd); typedef bool (*HPMHOOK_post_pc_has_second_costume) (bool retVal___, struct map_session_data *sd); +typedef bool (*HPMHOOK_pre_pc_expandInventory) (struct map_session_data **sd, int *adjustSize); +typedef bool (*HPMHOOK_post_pc_expandInventory) (bool retVal___, struct map_session_data *sd, int adjustSize); #endif // MAP_PC_H #ifdef MAP_NPC_H /* libpcre */ typedef pcre* (*HPMHOOK_pre_libpcre_compile) (const char **pattern, int *options, const char ***errptr, int **erroffset, const unsigned char **tableptr); @@ -6468,6 +6530,8 @@ typedef bool (*HPMHOOK_pre_quest_questinfo_validate_homunculus_type) (struct map typedef bool (*HPMHOOK_post_quest_questinfo_validate_homunculus_type) (bool retVal___, struct map_session_data *sd, struct questinfo *qi); typedef bool (*HPMHOOK_pre_quest_questinfo_validate_quests) (struct map_session_data **sd, struct questinfo **qi); typedef bool (*HPMHOOK_post_quest_questinfo_validate_quests) (bool retVal___, struct map_session_data *sd, struct questinfo *qi); +typedef bool (*HPMHOOK_pre_quest_questinfo_validate_mercenary_class) (struct map_session_data **sd, struct questinfo **qi); +typedef bool (*HPMHOOK_post_quest_questinfo_validate_mercenary_class) (bool retVal___, struct map_session_data *sd, struct questinfo *qi); typedef void (*HPMHOOK_pre_quest_questinfo_vector_clear) (int *m); typedef void (*HPMHOOK_post_quest_questinfo_vector_clear) (int m); #endif // MAP_QUEST_H @@ -7186,6 +7250,8 @@ typedef int (*HPMHOOK_pre_skill_cell_overlap) (struct block_list **bl, va_list a typedef int (*HPMHOOK_post_skill_cell_overlap) (int retVal___, struct block_list *bl, va_list ap); typedef int (*HPMHOOK_pre_skill_timerskill) (int *tid, int64 *tick, int *id, intptr_t *data); typedef int (*HPMHOOK_post_skill_timerskill) (int retVal___, int tid, int64 tick, int id, intptr_t data); +typedef void (*HPMHOOK_pre_skill_trap_do_splash) (struct block_list **bl, uint16 *skill_id, uint16 *skill_lv, int *bl_flag, int64 *tick); +typedef void (*HPMHOOK_post_skill_trap_do_splash) (struct block_list *bl, uint16 skill_id, uint16 skill_lv, int bl_flag, int64 tick); typedef int (*HPMHOOK_pre_skill_trap_splash) (struct block_list **bl, va_list ap); typedef int (*HPMHOOK_post_skill_trap_splash) (int retVal___, struct block_list *bl, va_list ap); typedef int (*HPMHOOK_pre_skill_check_condition_mercenary) (struct block_list **bl, int *skill_id, int *lv, int *type); @@ -7432,12 +7498,16 @@ typedef int (*HPMHOOK_pre_sockt_realloc_fifo) (int *fd, unsigned int *rfifo_size typedef int (*HPMHOOK_post_sockt_realloc_fifo) (int retVal___, int fd, unsigned int rfifo_size, unsigned int wfifo_size); typedef int (*HPMHOOK_pre_sockt_realloc_writefifo) (int *fd, size_t *addition); typedef int (*HPMHOOK_post_sockt_realloc_writefifo) (int retVal___, int fd, size_t addition); -typedef int (*HPMHOOK_pre_sockt_wfifoset) (int *fd, size_t *len); -typedef int (*HPMHOOK_post_sockt_wfifoset) (int retVal___, int fd, size_t len); +typedef int (*HPMHOOK_pre_sockt_wfifoset) (int *fd, size_t *len, bool *validate); +typedef int (*HPMHOOK_post_sockt_wfifoset) (int retVal___, int fd, size_t len, bool validate); +typedef void (*HPMHOOK_pre_sockt_wfifohead) (int *fd, size_t *len); +typedef void (*HPMHOOK_post_sockt_wfifohead) (int fd, size_t len); typedef int (*HPMHOOK_pre_sockt_rfifoskip) (int *fd, size_t *len); typedef int (*HPMHOOK_post_sockt_rfifoskip) (int retVal___, int fd, size_t len); typedef void (*HPMHOOK_pre_sockt_close) (int *fd); typedef void (*HPMHOOK_post_sockt_close) (int fd); +typedef void (*HPMHOOK_pre_sockt_validateWfifo) (int *fd, size_t *len); +typedef void (*HPMHOOK_post_sockt_validateWfifo) (int fd, size_t len); typedef bool (*HPMHOOK_pre_sockt_session_is_valid) (int *fd); typedef bool (*HPMHOOK_post_sockt_session_is_valid) (bool retVal___, int fd); typedef bool (*HPMHOOK_pre_sockt_session_is_active) (int *fd); @@ -7562,12 +7632,12 @@ typedef int (*HPMHOOK_pre_status_charge) (struct block_list **bl, int64 *hp, int typedef int (*HPMHOOK_post_status_charge) (int retVal___, struct block_list *bl, int64 hp, int64 sp); typedef int (*HPMHOOK_pre_status_percent_change) (struct block_list **src, struct block_list **target, signed char *hp_rate, signed char *sp_rate, int *flag); typedef int (*HPMHOOK_post_status_percent_change) (int retVal___, struct block_list *src, struct block_list *target, signed char hp_rate, signed char sp_rate, int flag); -typedef int (*HPMHOOK_pre_status_set_hp) (struct block_list **bl, unsigned int *hp, int *flag); -typedef int (*HPMHOOK_post_status_set_hp) (int retVal___, struct block_list *bl, unsigned int hp, int flag); -typedef int (*HPMHOOK_pre_status_set_sp) (struct block_list **bl, unsigned int *sp, int *flag); -typedef int (*HPMHOOK_post_status_set_sp) (int retVal___, struct block_list *bl, unsigned int sp, int flag); -typedef int (*HPMHOOK_pre_status_heal) (struct block_list **bl, int64 *hp, int64 *sp, int *flag); -typedef int (*HPMHOOK_post_status_heal) (int retVal___, struct block_list *bl, int64 hp, int64 sp, int flag); +typedef int (*HPMHOOK_pre_status_set_hp) (struct block_list **bl, unsigned int *hp, enum status_heal_flag *flag); +typedef int (*HPMHOOK_post_status_set_hp) (int retVal___, struct block_list *bl, unsigned int hp, enum status_heal_flag flag); +typedef int (*HPMHOOK_pre_status_set_sp) (struct block_list **bl, unsigned int *sp, enum status_heal_flag *flag); +typedef int (*HPMHOOK_post_status_set_sp) (int retVal___, struct block_list *bl, unsigned int sp, enum status_heal_flag flag); +typedef int (*HPMHOOK_pre_status_heal) (struct block_list **bl, int64 *hp, int64 *sp, enum status_heal_flag *flag); +typedef int (*HPMHOOK_post_status_heal) (int retVal___, struct block_list *bl, int64 hp, int64 sp, enum status_heal_flag flag); typedef int (*HPMHOOK_pre_status_revive) (struct block_list **bl, unsigned char *per_hp, unsigned char *per_sp); typedef int (*HPMHOOK_post_status_revive) (int retVal___, struct block_list *bl, unsigned char per_hp, unsigned char per_sp); typedef int (*HPMHOOK_pre_status_fixed_revive) (struct block_list **bl, unsigned int *per_hp, unsigned int *per_sp); @@ -7710,6 +7780,10 @@ typedef unsigned int (*HPMHOOK_pre_status_get_base_maxhp) (const struct map_sess typedef unsigned int (*HPMHOOK_post_status_get_base_maxhp) (unsigned int retVal___, const struct map_session_data *sd, const struct status_data *st); typedef unsigned int (*HPMHOOK_pre_status_get_base_maxsp) (const struct map_session_data **sd, const struct status_data **st); typedef unsigned int (*HPMHOOK_post_status_get_base_maxsp) (unsigned int retVal___, const struct map_session_data *sd, const struct status_data *st); +typedef unsigned int (*HPMHOOK_pre_status_get_restart_hp) (const struct map_session_data **sd, const struct status_data **st); +typedef unsigned int (*HPMHOOK_post_status_get_restart_hp) (unsigned int retVal___, const struct map_session_data *sd, const struct status_data *st); +typedef unsigned int (*HPMHOOK_pre_status_get_restart_sp) (const struct map_session_data **sd, const struct status_data **st); +typedef unsigned int (*HPMHOOK_post_status_get_restart_sp) (unsigned int retVal___, const struct map_session_data *sd, const struct status_data *st); typedef int (*HPMHOOK_pre_status_calc_npc_) (struct npc_data **nd, enum e_status_calc_opt *opt); typedef int (*HPMHOOK_post_status_calc_npc_) (int retVal___, struct npc_data *nd, enum e_status_calc_opt opt); typedef unsigned short (*HPMHOOK_pre_status_calc_str) (struct block_list **bl, struct status_change **sc, int *str); @@ -8038,8 +8112,8 @@ typedef uint8 (*HPMHOOK_pre_unit_getdir) (struct block_list **bl); typedef uint8 (*HPMHOOK_post_unit_getdir) (uint8 retVal___, struct block_list *bl); typedef int (*HPMHOOK_pre_unit_blown) (struct block_list **bl, int *dx, int *dy, int *count, int *flag); typedef int (*HPMHOOK_post_unit_blown) (int retVal___, struct block_list *bl, int dx, int dy, int count, int flag); -typedef int (*HPMHOOK_pre_unit_warp) (struct block_list **bl, short *m, short *x, short *y, clr_type *type); -typedef int (*HPMHOOK_post_unit_warp) (int retVal___, struct block_list *bl, short m, short x, short y, clr_type type); +typedef int (*HPMHOOK_pre_unit_warp) (struct block_list **bl, short *m, short *x, short *y, enum clr_type *type); +typedef int (*HPMHOOK_post_unit_warp) (int retVal___, struct block_list *bl, short m, short x, short y, enum clr_type type); typedef int (*HPMHOOK_pre_unit_stop_walking) (struct block_list **bl, int *type); typedef int (*HPMHOOK_post_unit_stop_walking) (int retVal___, struct block_list *bl, int type); typedef int (*HPMHOOK_pre_unit_skilluse_id) (struct block_list **src, int *target_id, uint16 *skill_id, uint16 *skill_lv); @@ -8090,14 +8164,14 @@ typedef int (*HPMHOOK_pre_unit_fixdamage) (struct block_list **src, struct block typedef int (*HPMHOOK_post_unit_fixdamage) (int retVal___, struct block_list *src, struct block_list *target, int sdelay, int ddelay, int64 damage, short div, unsigned char type, int64 damage2); typedef int (*HPMHOOK_pre_unit_changeviewsize) (struct block_list **bl, short *size); typedef int (*HPMHOOK_post_unit_changeviewsize) (int retVal___, struct block_list *bl, short size); -typedef int (*HPMHOOK_pre_unit_remove_map) (struct block_list **bl, clr_type *clrtype, const char **file, int *line, const char **func); -typedef int (*HPMHOOK_post_unit_remove_map) (int retVal___, struct block_list *bl, clr_type clrtype, const char *file, int line, const char *func); -typedef void (*HPMHOOK_pre_unit_remove_map_pc) (struct map_session_data **sd, clr_type *clrtype); -typedef void (*HPMHOOK_post_unit_remove_map_pc) (struct map_session_data *sd, clr_type clrtype); +typedef int (*HPMHOOK_pre_unit_remove_map) (struct block_list **bl, enum clr_type *clrtype, const char **file, int *line, const char **func); +typedef int (*HPMHOOK_post_unit_remove_map) (int retVal___, struct block_list *bl, enum clr_type clrtype, const char *file, int line, const char *func); +typedef void (*HPMHOOK_pre_unit_remove_map_pc) (struct map_session_data **sd, enum clr_type *clrtype); +typedef void (*HPMHOOK_post_unit_remove_map_pc) (struct map_session_data *sd, enum clr_type clrtype); typedef void (*HPMHOOK_pre_unit_free_pc) (struct map_session_data **sd); typedef void (*HPMHOOK_post_unit_free_pc) (struct map_session_data *sd); -typedef int (*HPMHOOK_pre_unit_free) (struct block_list **bl, clr_type *clrtype); -typedef int (*HPMHOOK_post_unit_free) (int retVal___, struct block_list *bl, clr_type clrtype); +typedef int (*HPMHOOK_pre_unit_free) (struct block_list **bl, enum clr_type *clrtype); +typedef int (*HPMHOOK_post_unit_free) (int retVal___, struct block_list *bl, enum clr_type clrtype); #endif // MAP_UNIT_H #ifdef MAP_VENDING_H /* vending */ typedef void (*HPMHOOK_pre_vending_init) (bool *minimal); diff --git a/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc b/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc index 2b0291453..3bbfc8670 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc @@ -90,8 +90,8 @@ struct { struct HPMHookPoint *HP_chr_count_users_post; struct HPMHookPoint *HP_chr_mmo_char_tobuf_pre; struct HPMHookPoint *HP_chr_mmo_char_tobuf_post; - struct HPMHookPoint *HP_chr_mmo_char_send099d_pre; - struct HPMHookPoint *HP_chr_mmo_char_send099d_post; + struct HPMHookPoint *HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_pre; + struct HPMHookPoint *HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_post; struct HPMHookPoint *HP_chr_mmo_char_send_ban_list_pre; struct HPMHookPoint *HP_chr_mmo_char_send_ban_list_post; struct HPMHookPoint *HP_chr_mmo_char_send_slots_info_pre; @@ -1322,6 +1322,14 @@ struct { struct HPMHookPoint *HP_mutex_cond_broadcast_post; struct HPMHookPoint *HP_nullpo_assert_report_pre; struct HPMHookPoint *HP_nullpo_assert_report_post; + struct HPMHookPoint *HP_packets_init_pre; + struct HPMHookPoint *HP_packets_init_post; + struct HPMHookPoint *HP_packets_final_pre; + struct HPMHookPoint *HP_packets_final_post; + struct HPMHookPoint *HP_packets_addLens_pre; + struct HPMHookPoint *HP_packets_addLens_post; + struct HPMHookPoint *HP_packets_addLen_pre; + struct HPMHookPoint *HP_packets_addLen_post; struct HPMHookPoint *HP_pincode_handle_pre; struct HPMHookPoint *HP_pincode_handle_post; struct HPMHookPoint *HP_pincode_decrypt_pre; @@ -1396,10 +1404,14 @@ struct { struct HPMHookPoint *HP_sockt_realloc_writefifo_post; struct HPMHookPoint *HP_sockt_wfifoset_pre; struct HPMHookPoint *HP_sockt_wfifoset_post; + struct HPMHookPoint *HP_sockt_wfifohead_pre; + struct HPMHookPoint *HP_sockt_wfifohead_post; struct HPMHookPoint *HP_sockt_rfifoskip_pre; struct HPMHookPoint *HP_sockt_rfifoskip_post; struct HPMHookPoint *HP_sockt_close_pre; struct HPMHookPoint *HP_sockt_close_post; + struct HPMHookPoint *HP_sockt_validateWfifo_pre; + struct HPMHookPoint *HP_sockt_validateWfifo_post; struct HPMHookPoint *HP_sockt_session_is_valid_pre; struct HPMHookPoint *HP_sockt_session_is_valid_post; struct HPMHookPoint *HP_sockt_session_is_active_pre; @@ -1713,8 +1725,8 @@ struct { int HP_chr_count_users_post; int HP_chr_mmo_char_tobuf_pre; int HP_chr_mmo_char_tobuf_post; - int HP_chr_mmo_char_send099d_pre; - int HP_chr_mmo_char_send099d_post; + int HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_pre; + int HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_post; int HP_chr_mmo_char_send_ban_list_pre; int HP_chr_mmo_char_send_ban_list_post; int HP_chr_mmo_char_send_slots_info_pre; @@ -2945,6 +2957,14 @@ struct { int HP_mutex_cond_broadcast_post; int HP_nullpo_assert_report_pre; int HP_nullpo_assert_report_post; + int HP_packets_init_pre; + int HP_packets_init_post; + int HP_packets_final_pre; + int HP_packets_final_post; + int HP_packets_addLens_pre; + int HP_packets_addLens_post; + int HP_packets_addLen_pre; + int HP_packets_addLen_post; int HP_pincode_handle_pre; int HP_pincode_handle_post; int HP_pincode_decrypt_pre; @@ -3019,10 +3039,14 @@ struct { int HP_sockt_realloc_writefifo_post; int HP_sockt_wfifoset_pre; int HP_sockt_wfifoset_post; + int HP_sockt_wfifohead_pre; + int HP_sockt_wfifohead_post; int HP_sockt_rfifoskip_pre; int HP_sockt_rfifoskip_post; int HP_sockt_close_pre; int HP_sockt_close_post; + int HP_sockt_validateWfifo_pre; + int HP_sockt_validateWfifo_post; int HP_sockt_session_is_valid_pre; int HP_sockt_session_is_valid_post; int HP_sockt_session_is_active_pre; @@ -3301,6 +3325,7 @@ struct { struct md5_interface md5; struct mutex_interface mutex; struct nullpo_interface nullpo; + struct packets_interface packets; struct pincode_interface pincode; struct rnd_interface rnd; struct showmsg_interface showmsg; diff --git a/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc index cb6ae1bb8..96f210386 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc @@ -60,7 +60,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(chr->divorce_char_sql, HP_chr_divorce_char_sql) }, { HP_POP(chr->count_users, HP_chr_count_users) }, { HP_POP(chr->mmo_char_tobuf, HP_chr_mmo_char_tobuf) }, - { HP_POP(chr->mmo_char_send099d, HP_chr_mmo_char_send099d) }, + { HP_POP(chr->send_HC_ACK_CHARINFO_PER_PAGE, HP_chr_send_HC_ACK_CHARINFO_PER_PAGE) }, { HP_POP(chr->mmo_char_send_ban_list, HP_chr_mmo_char_send_ban_list) }, { HP_POP(chr->mmo_char_send_slots_info, HP_chr_mmo_char_send_slots_info) }, { HP_POP(chr->mmo_char_send_characters, HP_chr_mmo_char_send_characters) }, @@ -703,6 +703,11 @@ struct HookingPointData HookingPoints[] = { { HP_POP(mutex->cond_broadcast, HP_mutex_cond_broadcast) }, /* nullpo_interface */ { HP_POP(nullpo->assert_report, HP_nullpo_assert_report) }, +/* packets_interface */ + { HP_POP(packets->init, HP_packets_init) }, + { HP_POP(packets->final, HP_packets_final) }, + { HP_POP(packets->addLens, HP_packets_addLens) }, + { HP_POP(packets->addLen, HP_packets_addLen) }, /* pincode_interface */ { HP_POP(pincode->handle, HP_pincode_handle) }, { HP_POP(pincode->decrypt, HP_pincode_decrypt) }, @@ -744,8 +749,10 @@ struct HookingPointData HookingPoints[] = { { HP_POP(sockt->realloc_fifo, HP_sockt_realloc_fifo) }, { HP_POP(sockt->realloc_writefifo, HP_sockt_realloc_writefifo) }, { HP_POP(sockt->wfifoset, HP_sockt_wfifoset) }, + { HP_POP(sockt->wfifohead, HP_sockt_wfifohead) }, { HP_POP(sockt->rfifoskip, HP_sockt_rfifoskip) }, { HP_POP(sockt->close, HP_sockt_close) }, + { HP_POP(sockt->validateWfifo, HP_sockt_validateWfifo) }, { HP_POP(sockt->session_is_valid, HP_sockt_session_is_valid) }, { HP_POP(sockt->session_is_active, HP_sockt_session_is_active) }, { HP_POP(sockt->flush, HP_sockt_flush) }, diff --git a/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc index 767c7d24e..dc0256ff3 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc @@ -609,15 +609,15 @@ int HP_chr_mmo_gender(const struct char_session_data *sd, const struct mmo_chars } return retVal___; } -int HP_chr_mmo_chars_fromsql(struct char_session_data *sd, uint8 *buf) { +int HP_chr_mmo_chars_fromsql(struct char_session_data *sd, uint8 *buf, int *count) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_chr_mmo_chars_fromsql_pre > 0) { - int (*preHookFunc) (struct char_session_data **sd, uint8 **buf); + int (*preHookFunc) (struct char_session_data **sd, uint8 **buf, int **count); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_chr_mmo_chars_fromsql_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_chr_mmo_chars_fromsql_pre[hIndex].func; - retVal___ = preHookFunc(&sd, &buf); + retVal___ = preHookFunc(&sd, &buf, &count); } if (*HPMforce_return) { *HPMforce_return = false; @@ -625,13 +625,13 @@ int HP_chr_mmo_chars_fromsql(struct char_session_data *sd, uint8 *buf) { } } { - retVal___ = HPMHooks.source.chr.mmo_chars_fromsql(sd, buf); + retVal___ = HPMHooks.source.chr.mmo_chars_fromsql(sd, buf, count); } if (HPMHooks.count.HP_chr_mmo_chars_fromsql_post > 0) { - int (*postHookFunc) (int retVal___, struct char_session_data *sd, uint8 *buf); + int (*postHookFunc) (int retVal___, struct char_session_data *sd, uint8 *buf, int *count); for (hIndex = 0; hIndex < HPMHooks.count.HP_chr_mmo_chars_fromsql_post; hIndex++) { postHookFunc = HPMHooks.list.HP_chr_mmo_chars_fromsql_post[hIndex].func; - retVal___ = postHookFunc(retVal___, sd, buf); + retVal___ = postHookFunc(retVal___, sd, buf, count); } } return retVal___; @@ -906,13 +906,13 @@ int HP_chr_mmo_char_tobuf(uint8 *buffer, struct mmo_charstatus *p) { } return retVal___; } -void HP_chr_mmo_char_send099d(int fd, struct char_session_data *sd) { +void HP_chr_send_HC_ACK_CHARINFO_PER_PAGE(int fd, struct char_session_data *sd) { int hIndex = 0; - if (HPMHooks.count.HP_chr_mmo_char_send099d_pre > 0) { + if (HPMHooks.count.HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_pre > 0) { void (*preHookFunc) (int *fd, struct char_session_data **sd); *HPMforce_return = false; - for (hIndex = 0; hIndex < HPMHooks.count.HP_chr_mmo_char_send099d_pre; hIndex++) { - preHookFunc = HPMHooks.list.HP_chr_mmo_char_send099d_pre[hIndex].func; + for (hIndex = 0; hIndex < HPMHooks.count.HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_pre[hIndex].func; preHookFunc(&fd, &sd); } if (*HPMforce_return) { @@ -921,12 +921,12 @@ void HP_chr_mmo_char_send099d(int fd, struct char_session_data *sd) { } } { - HPMHooks.source.chr.mmo_char_send099d(fd, sd); + HPMHooks.source.chr.send_HC_ACK_CHARINFO_PER_PAGE(fd, sd); } - if (HPMHooks.count.HP_chr_mmo_char_send099d_post > 0) { + if (HPMHooks.count.HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_post > 0) { void (*postHookFunc) (int fd, struct char_session_data *sd); - for (hIndex = 0; hIndex < HPMHooks.count.HP_chr_mmo_char_send099d_post; hIndex++) { - postHookFunc = HPMHooks.list.HP_chr_mmo_char_send099d_post[hIndex].func; + for (hIndex = 0; hIndex < HPMHooks.count.HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_chr_send_HC_ACK_CHARINFO_PER_PAGE_post[hIndex].func; postHookFunc(fd, sd); } } @@ -17357,6 +17357,111 @@ void HP_nullpo_assert_report(const char *file, int line, const char *func, const } return; } +/* packets_interface */ +void HP_packets_init(void) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_init_pre > 0) { + void (*preHookFunc) (void); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_init_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_init_pre[hIndex].func; + preHookFunc(); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.init(); + } + if (HPMHooks.count.HP_packets_init_post > 0) { + void (*postHookFunc) (void); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_init_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_init_post[hIndex].func; + postHookFunc(); + } + } + return; +} +void HP_packets_final(void) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_final_pre > 0) { + void (*preHookFunc) (void); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_final_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_final_pre[hIndex].func; + preHookFunc(); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.final(); + } + if (HPMHooks.count.HP_packets_final_post > 0) { + void (*postHookFunc) (void); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_final_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_final_post[hIndex].func; + postHookFunc(); + } + } + return; +} +void HP_packets_addLens(void) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_addLens_pre > 0) { + void (*preHookFunc) (void); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLens_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_addLens_pre[hIndex].func; + preHookFunc(); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.addLens(); + } + if (HPMHooks.count.HP_packets_addLens_post > 0) { + void (*postHookFunc) (void); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLens_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_addLens_post[hIndex].func; + postHookFunc(); + } + } + return; +} +void HP_packets_addLen(int id, int len) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_addLen_pre > 0) { + void (*preHookFunc) (int *id, int *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLen_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_addLen_pre[hIndex].func; + preHookFunc(&id, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.addLen(id, len); + } + if (HPMHooks.count.HP_packets_addLen_post > 0) { + void (*postHookFunc) (int id, int len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLen_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_addLen_post[hIndex].func; + postHookFunc(id, len); + } + } + return; +} /* pincode_interface */ void HP_pincode_handle(int fd, struct char_session_data *sd) { int hIndex = 0; @@ -18317,15 +18422,15 @@ int HP_sockt_realloc_writefifo(int fd, size_t addition) { } return retVal___; } -int HP_sockt_wfifoset(int fd, size_t len) { +int HP_sockt_wfifoset(int fd, size_t len, bool validate) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_sockt_wfifoset_pre > 0) { - int (*preHookFunc) (int *fd, size_t *len); + int (*preHookFunc) (int *fd, size_t *len, bool *validate); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifoset_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sockt_wfifoset_pre[hIndex].func; - retVal___ = preHookFunc(&fd, &len); + retVal___ = preHookFunc(&fd, &len, &validate); } if (*HPMforce_return) { *HPMforce_return = false; @@ -18333,17 +18438,43 @@ int HP_sockt_wfifoset(int fd, size_t len) { } } { - retVal___ = HPMHooks.source.sockt.wfifoset(fd, len); + retVal___ = HPMHooks.source.sockt.wfifoset(fd, len, validate); } if (HPMHooks.count.HP_sockt_wfifoset_post > 0) { - int (*postHookFunc) (int retVal___, int fd, size_t len); + int (*postHookFunc) (int retVal___, int fd, size_t len, bool validate); for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifoset_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sockt_wfifoset_post[hIndex].func; - retVal___ = postHookFunc(retVal___, fd, len); + retVal___ = postHookFunc(retVal___, fd, len, validate); } } return retVal___; } +void HP_sockt_wfifohead(int fd, size_t len) { + int hIndex = 0; + if (HPMHooks.count.HP_sockt_wfifohead_pre > 0) { + void (*preHookFunc) (int *fd, size_t *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifohead_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_sockt_wfifohead_pre[hIndex].func; + preHookFunc(&fd, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.sockt.wfifohead(fd, len); + } + if (HPMHooks.count.HP_sockt_wfifohead_post > 0) { + void (*postHookFunc) (int fd, size_t len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifohead_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_sockt_wfifohead_post[hIndex].func; + postHookFunc(fd, len); + } + } + return; +} int HP_sockt_rfifoskip(int fd, size_t len) { int hIndex = 0; int retVal___ = 0; @@ -18397,6 +18528,32 @@ void HP_sockt_close(int fd) { } return; } +void HP_sockt_validateWfifo(int fd, size_t len) { + int hIndex = 0; + if (HPMHooks.count.HP_sockt_validateWfifo_pre > 0) { + void (*preHookFunc) (int *fd, size_t *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_validateWfifo_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_sockt_validateWfifo_pre[hIndex].func; + preHookFunc(&fd, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.sockt.validateWfifo(fd, len); + } + if (HPMHooks.count.HP_sockt_validateWfifo_post > 0) { + void (*postHookFunc) (int fd, size_t len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_validateWfifo_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_sockt_validateWfifo_post[hIndex].func; + postHookFunc(fd, len); + } + } + return; +} bool HP_sockt_session_is_valid(int fd) { int hIndex = 0; bool retVal___ = false; diff --git a/src/plugins/HPMHooking/HPMHooking_char.sources.inc b/src/plugins/HPMHooking/HPMHooking_char.sources.inc index 0d69cd755..7fb575afe 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.sources.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.sources.inc @@ -54,6 +54,7 @@ HPMHooks.source.mapindex = *mapindex; HPMHooks.source.md5 = *md5; HPMHooks.source.mutex = *mutex; HPMHooks.source.nullpo = *nullpo; +HPMHooks.source.packets = *packets; HPMHooks.source.pincode = *pincode; HPMHooks.source.rnd = *rnd; HPMHooks.source.showmsg = *showmsg; diff --git a/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc b/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc index 5300ca3a6..20607bdfd 100644 --- a/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc +++ b/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc @@ -204,6 +204,10 @@ struct { struct HPMHookPoint *HP_PRIV__lclif_parse_CA_SSO_LOGIN_REQ_post; struct HPMHookPoint *HP_PRIV__lclif_parse_CA_LOGIN_OTP_pre; struct HPMHookPoint *HP_PRIV__lclif_parse_CA_LOGIN_OTP_post; + struct HPMHookPoint *HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_pre; + struct HPMHookPoint *HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_post; + struct HPMHookPoint *HP_PRIV__lclif_parse_CA_OTP_CODE_pre; + struct HPMHookPoint *HP_PRIV__lclif_parse_CA_OTP_CODE_post; struct HPMHookPoint *HP_PRIV__lclif_parse_CA_REQ_HASH_pre; struct HPMHookPoint *HP_PRIV__lclif_parse_CA_REQ_HASH_post; struct HPMHookPoint *HP_PRIV__lclif_parse_CA_CHARSERVERCONNECT_pre; @@ -436,6 +440,8 @@ struct { struct HPMHookPoint *HP_login_client_login_post; struct HPMHookPoint *HP_login_client_login_otp_pre; struct HPMHookPoint *HP_login_client_login_otp_post; + struct HPMHookPoint *HP_login_client_login_mobile_otp_request_pre; + struct HPMHookPoint *HP_login_client_login_mobile_otp_request_post; struct HPMHookPoint *HP_login_char_server_connection_status_pre; struct HPMHookPoint *HP_login_char_server_connection_status_post; struct HPMHookPoint *HP_login_parse_request_connection_pre; @@ -512,6 +518,14 @@ struct { struct HPMHookPoint *HP_mutex_cond_broadcast_post; struct HPMHookPoint *HP_nullpo_assert_report_pre; struct HPMHookPoint *HP_nullpo_assert_report_post; + struct HPMHookPoint *HP_packets_init_pre; + struct HPMHookPoint *HP_packets_init_post; + struct HPMHookPoint *HP_packets_final_pre; + struct HPMHookPoint *HP_packets_final_post; + struct HPMHookPoint *HP_packets_addLens_pre; + struct HPMHookPoint *HP_packets_addLens_post; + struct HPMHookPoint *HP_packets_addLen_pre; + struct HPMHookPoint *HP_packets_addLen_post; struct HPMHookPoint *HP_rnd_init_pre; struct HPMHookPoint *HP_rnd_init_post; struct HPMHookPoint *HP_rnd_final_pre; @@ -554,10 +568,14 @@ struct { struct HPMHookPoint *HP_sockt_realloc_writefifo_post; struct HPMHookPoint *HP_sockt_wfifoset_pre; struct HPMHookPoint *HP_sockt_wfifoset_post; + struct HPMHookPoint *HP_sockt_wfifohead_pre; + struct HPMHookPoint *HP_sockt_wfifohead_post; struct HPMHookPoint *HP_sockt_rfifoskip_pre; struct HPMHookPoint *HP_sockt_rfifoskip_post; struct HPMHookPoint *HP_sockt_close_pre; struct HPMHookPoint *HP_sockt_close_post; + struct HPMHookPoint *HP_sockt_validateWfifo_pre; + struct HPMHookPoint *HP_sockt_validateWfifo_post; struct HPMHookPoint *HP_sockt_session_is_valid_pre; struct HPMHookPoint *HP_sockt_session_is_valid_post; struct HPMHookPoint *HP_sockt_session_is_active_pre; @@ -985,6 +1003,10 @@ struct { int HP_PRIV__lclif_parse_CA_SSO_LOGIN_REQ_post; int HP_PRIV__lclif_parse_CA_LOGIN_OTP_pre; int HP_PRIV__lclif_parse_CA_LOGIN_OTP_post; + int HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_pre; + int HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_post; + int HP_PRIV__lclif_parse_CA_OTP_CODE_pre; + int HP_PRIV__lclif_parse_CA_OTP_CODE_post; int HP_PRIV__lclif_parse_CA_REQ_HASH_pre; int HP_PRIV__lclif_parse_CA_REQ_HASH_post; int HP_PRIV__lclif_parse_CA_CHARSERVERCONNECT_pre; @@ -1217,6 +1239,8 @@ struct { int HP_login_client_login_post; int HP_login_client_login_otp_pre; int HP_login_client_login_otp_post; + int HP_login_client_login_mobile_otp_request_pre; + int HP_login_client_login_mobile_otp_request_post; int HP_login_char_server_connection_status_pre; int HP_login_char_server_connection_status_post; int HP_login_parse_request_connection_pre; @@ -1293,6 +1317,14 @@ struct { int HP_mutex_cond_broadcast_post; int HP_nullpo_assert_report_pre; int HP_nullpo_assert_report_post; + int HP_packets_init_pre; + int HP_packets_init_post; + int HP_packets_final_pre; + int HP_packets_final_post; + int HP_packets_addLens_pre; + int HP_packets_addLens_post; + int HP_packets_addLen_pre; + int HP_packets_addLen_post; int HP_rnd_init_pre; int HP_rnd_init_post; int HP_rnd_final_pre; @@ -1335,10 +1367,14 @@ struct { int HP_sockt_realloc_writefifo_post; int HP_sockt_wfifoset_pre; int HP_sockt_wfifoset_post; + int HP_sockt_wfifohead_pre; + int HP_sockt_wfifohead_post; int HP_sockt_rfifoskip_pre; int HP_sockt_rfifoskip_post; int HP_sockt_close_pre; int HP_sockt_close_post; + int HP_sockt_validateWfifo_pre; + int HP_sockt_validateWfifo_post; int HP_sockt_session_is_valid_pre; int HP_sockt_session_is_valid_post; int HP_sockt_session_is_active_pre; @@ -1605,6 +1641,7 @@ struct { struct md5_interface md5; struct mutex_interface mutex; struct nullpo_interface nullpo; + struct packets_interface packets; struct rnd_interface rnd; struct showmsg_interface showmsg; struct socket_interface sockt; diff --git a/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc index 6eb2e8121..20667f45f 100644 --- a/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc @@ -126,6 +126,8 @@ struct HookingPointData HookingPoints[] = { { HP_POP(lclif->p->parse_CA_LOGIN_HAN, HP_PRIV__lclif_parse_CA_LOGIN_HAN) }, { HP_POP(lclif->p->parse_CA_SSO_LOGIN_REQ, HP_PRIV__lclif_parse_CA_SSO_LOGIN_REQ) }, { HP_POP(lclif->p->parse_CA_LOGIN_OTP, HP_PRIV__lclif_parse_CA_LOGIN_OTP) }, + { HP_POP(lclif->p->parse_CA_ACK_MOBILE_OTP, HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP) }, + { HP_POP(lclif->p->parse_CA_OTP_CODE, HP_PRIV__lclif_parse_CA_OTP_CODE) }, { HP_POP(lclif->p->parse_CA_REQ_HASH, HP_PRIV__lclif_parse_CA_REQ_HASH) }, { HP_POP(lclif->p->parse_CA_CHARSERVERCONNECT, HP_PRIV__lclif_parse_CA_CHARSERVERCONNECT) }, /* libconfig_interface */ @@ -244,6 +246,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(login->auth_failed, HP_login_auth_failed) }, { HP_POP(login->client_login, HP_login_client_login) }, { HP_POP(login->client_login_otp, HP_login_client_login_otp) }, + { HP_POP(login->client_login_mobile_otp_request, HP_login_client_login_mobile_otp_request) }, { HP_POP(login->char_server_connection_status, HP_login_char_server_connection_status) }, { HP_POP(login->parse_request_connection, HP_login_parse_request_connection) }, { HP_POP(login->config_set_defaults, HP_login_config_set_defaults) }, @@ -286,6 +289,11 @@ struct HookingPointData HookingPoints[] = { { HP_POP(mutex->cond_broadcast, HP_mutex_cond_broadcast) }, /* nullpo_interface */ { HP_POP(nullpo->assert_report, HP_nullpo_assert_report) }, +/* packets_interface */ + { HP_POP(packets->init, HP_packets_init) }, + { HP_POP(packets->final, HP_packets_final) }, + { HP_POP(packets->addLens, HP_packets_addLens) }, + { HP_POP(packets->addLen, HP_packets_addLen) }, /* rnd_interface */ { HP_POP(rnd->init, HP_rnd_init) }, { HP_POP(rnd->final, HP_rnd_final) }, @@ -310,8 +318,10 @@ struct HookingPointData HookingPoints[] = { { HP_POP(sockt->realloc_fifo, HP_sockt_realloc_fifo) }, { HP_POP(sockt->realloc_writefifo, HP_sockt_realloc_writefifo) }, { HP_POP(sockt->wfifoset, HP_sockt_wfifoset) }, + { HP_POP(sockt->wfifohead, HP_sockt_wfifohead) }, { HP_POP(sockt->rfifoskip, HP_sockt_rfifoskip) }, { HP_POP(sockt->close, HP_sockt_close) }, + { HP_POP(sockt->validateWfifo, HP_sockt_validateWfifo) }, { HP_POP(sockt->session_is_valid, HP_sockt_session_is_valid) }, { HP_POP(sockt->session_is_active, HP_sockt_session_is_active) }, { HP_POP(sockt->flush, HP_sockt_flush) }, diff --git a/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc index e432da70d..f556c621d 100644 --- a/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc @@ -2409,6 +2409,60 @@ enum parsefunc_rcode HP_PRIV__lclif_parse_CA_LOGIN_OTP(int fd, struct login_sess } return retVal___; } +enum parsefunc_rcode HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP(int fd, struct login_session_data *sd) { + int hIndex = 0; + enum parsefunc_rcode retVal___ = PACKET_UNKNOWN; + if (HPMHooks.count.HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_pre > 0) { + enum parsefunc_rcode (*preHookFunc) (int *fd, struct login_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_pre[hIndex].func; + retVal___ = preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.PRIV__lclif.parse_CA_ACK_MOBILE_OTP(fd, sd); + } + if (HPMHooks.count.HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_post > 0) { + enum parsefunc_rcode (*postHookFunc) (enum parsefunc_rcode retVal___, int fd, struct login_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_PRIV__lclif_parse_CA_ACK_MOBILE_OTP_post[hIndex].func; + retVal___ = postHookFunc(retVal___, fd, sd); + } + } + return retVal___; +} +enum parsefunc_rcode HP_PRIV__lclif_parse_CA_OTP_CODE(int fd, struct login_session_data *sd) { + int hIndex = 0; + enum parsefunc_rcode retVal___ = PACKET_UNKNOWN; + if (HPMHooks.count.HP_PRIV__lclif_parse_CA_OTP_CODE_pre > 0) { + enum parsefunc_rcode (*preHookFunc) (int *fd, struct login_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_PRIV__lclif_parse_CA_OTP_CODE_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_PRIV__lclif_parse_CA_OTP_CODE_pre[hIndex].func; + retVal___ = preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.PRIV__lclif.parse_CA_OTP_CODE(fd, sd); + } + if (HPMHooks.count.HP_PRIV__lclif_parse_CA_OTP_CODE_post > 0) { + enum parsefunc_rcode (*postHookFunc) (enum parsefunc_rcode retVal___, int fd, struct login_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_PRIV__lclif_parse_CA_OTP_CODE_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_PRIV__lclif_parse_CA_OTP_CODE_post[hIndex].func; + retVal___ = postHookFunc(retVal___, fd, sd); + } + } + return retVal___; +} enum parsefunc_rcode HP_PRIV__lclif_parse_CA_REQ_HASH(int fd, struct login_session_data *sd) { int hIndex = 0; enum parsefunc_rcode retVal___ = PACKET_UNKNOWN; @@ -5521,6 +5575,32 @@ bool HP_login_client_login_otp(int fd, struct login_session_data *sd) { } return retVal___; } +void HP_login_client_login_mobile_otp_request(int fd, struct login_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_login_client_login_mobile_otp_request_pre > 0) { + void (*preHookFunc) (int *fd, struct login_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_login_client_login_mobile_otp_request_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_login_client_login_mobile_otp_request_pre[hIndex].func; + preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.login.client_login_mobile_otp_request(fd, sd); + } + if (HPMHooks.count.HP_login_client_login_mobile_otp_request_post > 0) { + void (*postHookFunc) (int fd, struct login_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_login_client_login_mobile_otp_request_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_login_client_login_mobile_otp_request_post[hIndex].func; + postHookFunc(fd, sd); + } + } + return; +} void HP_login_char_server_connection_status(int fd, struct login_session_data *sd, uint8 status) { int hIndex = 0; if (HPMHooks.count.HP_login_char_server_connection_status_pre > 0) { @@ -6532,6 +6612,111 @@ void HP_nullpo_assert_report(const char *file, int line, const char *func, const } return; } +/* packets_interface */ +void HP_packets_init(void) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_init_pre > 0) { + void (*preHookFunc) (void); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_init_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_init_pre[hIndex].func; + preHookFunc(); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.init(); + } + if (HPMHooks.count.HP_packets_init_post > 0) { + void (*postHookFunc) (void); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_init_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_init_post[hIndex].func; + postHookFunc(); + } + } + return; +} +void HP_packets_final(void) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_final_pre > 0) { + void (*preHookFunc) (void); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_final_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_final_pre[hIndex].func; + preHookFunc(); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.final(); + } + if (HPMHooks.count.HP_packets_final_post > 0) { + void (*postHookFunc) (void); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_final_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_final_post[hIndex].func; + postHookFunc(); + } + } + return; +} +void HP_packets_addLens(void) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_addLens_pre > 0) { + void (*preHookFunc) (void); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLens_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_addLens_pre[hIndex].func; + preHookFunc(); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.addLens(); + } + if (HPMHooks.count.HP_packets_addLens_post > 0) { + void (*postHookFunc) (void); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLens_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_addLens_post[hIndex].func; + postHookFunc(); + } + } + return; +} +void HP_packets_addLen(int id, int len) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_addLen_pre > 0) { + void (*preHookFunc) (int *id, int *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLen_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_addLen_pre[hIndex].func; + preHookFunc(&id, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.addLen(id, len); + } + if (HPMHooks.count.HP_packets_addLen_post > 0) { + void (*postHookFunc) (int id, int len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLen_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_addLen_post[hIndex].func; + postHookFunc(id, len); + } + } + return; +} /* rnd_interface */ void HP_rnd_init(void) { int hIndex = 0; @@ -7072,15 +7257,15 @@ int HP_sockt_realloc_writefifo(int fd, size_t addition) { } return retVal___; } -int HP_sockt_wfifoset(int fd, size_t len) { +int HP_sockt_wfifoset(int fd, size_t len, bool validate) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_sockt_wfifoset_pre > 0) { - int (*preHookFunc) (int *fd, size_t *len); + int (*preHookFunc) (int *fd, size_t *len, bool *validate); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifoset_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sockt_wfifoset_pre[hIndex].func; - retVal___ = preHookFunc(&fd, &len); + retVal___ = preHookFunc(&fd, &len, &validate); } if (*HPMforce_return) { *HPMforce_return = false; @@ -7088,17 +7273,43 @@ int HP_sockt_wfifoset(int fd, size_t len) { } } { - retVal___ = HPMHooks.source.sockt.wfifoset(fd, len); + retVal___ = HPMHooks.source.sockt.wfifoset(fd, len, validate); } if (HPMHooks.count.HP_sockt_wfifoset_post > 0) { - int (*postHookFunc) (int retVal___, int fd, size_t len); + int (*postHookFunc) (int retVal___, int fd, size_t len, bool validate); for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifoset_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sockt_wfifoset_post[hIndex].func; - retVal___ = postHookFunc(retVal___, fd, len); + retVal___ = postHookFunc(retVal___, fd, len, validate); } } return retVal___; } +void HP_sockt_wfifohead(int fd, size_t len) { + int hIndex = 0; + if (HPMHooks.count.HP_sockt_wfifohead_pre > 0) { + void (*preHookFunc) (int *fd, size_t *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifohead_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_sockt_wfifohead_pre[hIndex].func; + preHookFunc(&fd, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.sockt.wfifohead(fd, len); + } + if (HPMHooks.count.HP_sockt_wfifohead_post > 0) { + void (*postHookFunc) (int fd, size_t len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifohead_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_sockt_wfifohead_post[hIndex].func; + postHookFunc(fd, len); + } + } + return; +} int HP_sockt_rfifoskip(int fd, size_t len) { int hIndex = 0; int retVal___ = 0; @@ -7152,6 +7363,32 @@ void HP_sockt_close(int fd) { } return; } +void HP_sockt_validateWfifo(int fd, size_t len) { + int hIndex = 0; + if (HPMHooks.count.HP_sockt_validateWfifo_pre > 0) { + void (*preHookFunc) (int *fd, size_t *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_validateWfifo_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_sockt_validateWfifo_pre[hIndex].func; + preHookFunc(&fd, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.sockt.validateWfifo(fd, len); + } + if (HPMHooks.count.HP_sockt_validateWfifo_post > 0) { + void (*postHookFunc) (int fd, size_t len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_validateWfifo_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_sockt_validateWfifo_post[hIndex].func; + postHookFunc(fd, len); + } + } + return; +} bool HP_sockt_session_is_valid(int fd) { int hIndex = 0; bool retVal___ = false; diff --git a/src/plugins/HPMHooking/HPMHooking_login.sources.inc b/src/plugins/HPMHooking/HPMHooking_login.sources.inc index 78c506043..552aad578 100644 --- a/src/plugins/HPMHooking/HPMHooking_login.sources.inc +++ b/src/plugins/HPMHooking/HPMHooking_login.sources.inc @@ -42,6 +42,7 @@ HPMHooks.source.loginlog = *loginlog; HPMHooks.source.md5 = *md5; HPMHooks.source.mutex = *mutex; HPMHooks.source.nullpo = *nullpo; +HPMHooks.source.packets = *packets; HPMHooks.source.rnd = *rnd; HPMHooks.source.showmsg = *showmsg; HPMHooks.source.sockt = *sockt; diff --git a/src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc b/src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc index 8762975e1..d2c269bdd 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc @@ -136,6 +136,10 @@ struct { struct HPMHookPoint *HP_achievement_check_title_post; struct HPMHookPoint *HP_achievement_get_rewards_pre; struct HPMHookPoint *HP_achievement_get_rewards_post; + struct HPMHookPoint *HP_achievement_get_rewards_buffs_pre; + struct HPMHookPoint *HP_achievement_get_rewards_buffs_post; + struct HPMHookPoint *HP_achievement_get_rewards_items_pre; + struct HPMHookPoint *HP_achievement_get_rewards_items_post; struct HPMHookPoint *HP_atcommand_init_pre; struct HPMHookPoint *HP_atcommand_init_post; struct HPMHookPoint *HP_atcommand_final_pre; @@ -232,6 +236,8 @@ struct { struct HPMHookPoint *HP_battle_drain_post; struct HPMHookPoint *HP_battle_reflect_damage_pre; struct HPMHookPoint *HP_battle_reflect_damage_post; + struct HPMHookPoint *HP_battle_reflect_trap_pre; + struct HPMHookPoint *HP_battle_reflect_trap_post; struct HPMHookPoint *HP_battle_attr_ratio_pre; struct HPMHookPoint *HP_battle_attr_ratio_post; struct HPMHookPoint *HP_battle_attr_fix_pre; @@ -924,6 +930,18 @@ struct { struct HPMHookPoint *HP_clif_cartList_post; struct HPMHookPoint *HP_clif_cartItems_pre; struct HPMHookPoint *HP_clif_cartItems_post; + struct HPMHookPoint *HP_clif_inventoryExpansionInfo_pre; + struct HPMHookPoint *HP_clif_inventoryExpansionInfo_post; + struct HPMHookPoint *HP_clif_inventoryExpandAck_pre; + struct HPMHookPoint *HP_clif_inventoryExpandAck_post; + struct HPMHookPoint *HP_clif_inventoryExpandResult_pre; + struct HPMHookPoint *HP_clif_inventoryExpandResult_post; + struct HPMHookPoint *HP_clif_pInventoryExpansion_pre; + struct HPMHookPoint *HP_clif_pInventoryExpansion_post; + struct HPMHookPoint *HP_clif_pInventoryExpansionConfirmed_pre; + struct HPMHookPoint *HP_clif_pInventoryExpansionConfirmed_post; + struct HPMHookPoint *HP_clif_pInventoryExpansionRejected_pre; + struct HPMHookPoint *HP_clif_pInventoryExpansionRejected_post; struct HPMHookPoint *HP_clif_favorite_item_pre; struct HPMHookPoint *HP_clif_favorite_item_post; struct HPMHookPoint *HP_clif_clearcart_pre; @@ -1104,6 +1122,10 @@ struct { struct HPMHookPoint *HP_clif_specialeffect_single_post; struct HPMHookPoint *HP_clif_specialeffect_value_pre; struct HPMHookPoint *HP_clif_specialeffect_value_post; + struct HPMHookPoint *HP_clif_removeSpecialEffect_pre; + struct HPMHookPoint *HP_clif_removeSpecialEffect_post; + struct HPMHookPoint *HP_clif_removeSpecialEffect_single_pre; + struct HPMHookPoint *HP_clif_removeSpecialEffect_single_post; struct HPMHookPoint *HP_clif_millenniumshield_pre; struct HPMHookPoint *HP_clif_millenniumshield_post; struct HPMHookPoint *HP_clif_spiritcharm_pre; @@ -1154,6 +1176,8 @@ struct { struct HPMHookPoint *HP_clif_messagecolor_self_post; struct HPMHookPoint *HP_clif_messagecolor_pre; struct HPMHookPoint *HP_clif_messagecolor_post; + struct HPMHookPoint *HP_clif_serviceMessageColor_pre; + struct HPMHookPoint *HP_clif_serviceMessageColor_post; struct HPMHookPoint *HP_clif_disp_overhead_pre; struct HPMHookPoint *HP_clif_disp_overhead_post; struct HPMHookPoint *HP_clif_notify_playerchat_pre; @@ -1708,8 +1732,14 @@ struct { struct HPMHookPoint *HP_clif_pStatusUp_post; struct HPMHookPoint *HP_clif_pSkillUp_pre; struct HPMHookPoint *HP_clif_pSkillUp_post; + struct HPMHookPoint *HP_clif_useSkillToIdReal_pre; + struct HPMHookPoint *HP_clif_useSkillToIdReal_post; struct HPMHookPoint *HP_clif_pUseSkillToId_pre; struct HPMHookPoint *HP_clif_pUseSkillToId_post; + struct HPMHookPoint *HP_clif_pStartUseSkillToId_pre; + struct HPMHookPoint *HP_clif_pStartUseSkillToId_post; + struct HPMHookPoint *HP_clif_pStopUseSkillToId_pre; + struct HPMHookPoint *HP_clif_pStopUseSkillToId_post; struct HPMHookPoint *HP_clif_pUseSkillToId_homun_pre; struct HPMHookPoint *HP_clif_pUseSkillToId_homun_post; struct HPMHookPoint *HP_clif_pUseSkillToId_mercenary_pre; @@ -2208,6 +2238,18 @@ struct { struct HPMHookPoint *HP_clif_party_dead_notification_post; struct HPMHookPoint *HP_clif_pMemorialDungeonCommand_pre; struct HPMHookPoint *HP_clif_pMemorialDungeonCommand_post; + struct HPMHookPoint *HP_clif_camera_showWindow_pre; + struct HPMHookPoint *HP_clif_camera_showWindow_post; + struct HPMHookPoint *HP_clif_camera_change_pre; + struct HPMHookPoint *HP_clif_camera_change_post; + struct HPMHookPoint *HP_clif_pCameraInfo_pre; + struct HPMHookPoint *HP_clif_pCameraInfo_post; + struct HPMHookPoint *HP_clif_item_preview_pre; + struct HPMHookPoint *HP_clif_item_preview_post; + struct HPMHookPoint *HP_clif_enchant_equipment_pre; + struct HPMHookPoint *HP_clif_enchant_equipment_post; + struct HPMHookPoint *HP_clif_pReqRemainTime_pre; + struct HPMHookPoint *HP_clif_pReqRemainTime_post; struct HPMHookPoint *HP_cmdline_init_pre; struct HPMHookPoint *HP_cmdline_init_post; struct HPMHookPoint *HP_cmdline_final_pre; @@ -3372,6 +3414,8 @@ struct { struct HPMHookPoint *HP_map_zone_init_post; struct HPMHookPoint *HP_map_zone_remove_pre; struct HPMHookPoint *HP_map_zone_remove_post; + struct HPMHookPoint *HP_map_zone_remove_all_pre; + struct HPMHookPoint *HP_map_zone_remove_all_post; struct HPMHookPoint *HP_map_zone_apply_pre; struct HPMHookPoint *HP_map_zone_apply_post; struct HPMHookPoint *HP_map_zone_change_pre; @@ -4232,6 +4276,14 @@ struct { struct HPMHookPoint *HP_npc_secure_timeout_timer_post; struct HPMHookPoint *HP_nullpo_assert_report_pre; struct HPMHookPoint *HP_nullpo_assert_report_post; + struct HPMHookPoint *HP_packets_init_pre; + struct HPMHookPoint *HP_packets_init_post; + struct HPMHookPoint *HP_packets_final_pre; + struct HPMHookPoint *HP_packets_final_post; + struct HPMHookPoint *HP_packets_addLens_pre; + struct HPMHookPoint *HP_packets_addLens_post; + struct HPMHookPoint *HP_packets_addLen_pre; + struct HPMHookPoint *HP_packets_addLen_post; struct HPMHookPoint *HP_party_init_pre; struct HPMHookPoint *HP_party_init_post; struct HPMHookPoint *HP_party_final_pre; @@ -4842,6 +4894,8 @@ struct { struct HPMHookPoint *HP_pc_isDeathPenaltyJob_post; struct HPMHookPoint *HP_pc_has_second_costume_pre; struct HPMHookPoint *HP_pc_has_second_costume_post; + struct HPMHookPoint *HP_pc_expandInventory_pre; + struct HPMHookPoint *HP_pc_expandInventory_post; struct HPMHookPoint *HP_libpcre_compile_pre; struct HPMHookPoint *HP_libpcre_compile_post; struct HPMHookPoint *HP_libpcre_study_pre; @@ -4996,6 +5050,8 @@ struct { struct HPMHookPoint *HP_quest_questinfo_validate_homunculus_type_post; struct HPMHookPoint *HP_quest_questinfo_validate_quests_pre; struct HPMHookPoint *HP_quest_questinfo_validate_quests_post; + struct HPMHookPoint *HP_quest_questinfo_validate_mercenary_class_pre; + struct HPMHookPoint *HP_quest_questinfo_validate_mercenary_class_post; struct HPMHookPoint *HP_quest_questinfo_vector_clear_pre; struct HPMHookPoint *HP_quest_questinfo_vector_clear_post; struct HPMHookPoint *HP_rnd_init_pre; @@ -5702,6 +5758,8 @@ struct { struct HPMHookPoint *HP_skill_cell_overlap_post; struct HPMHookPoint *HP_skill_timerskill_pre; struct HPMHookPoint *HP_skill_timerskill_post; + struct HPMHookPoint *HP_skill_trap_do_splash_pre; + struct HPMHookPoint *HP_skill_trap_do_splash_post; struct HPMHookPoint *HP_skill_trap_splash_pre; struct HPMHookPoint *HP_skill_trap_splash_post; struct HPMHookPoint *HP_skill_check_condition_mercenary_pre; @@ -5948,10 +6006,14 @@ struct { struct HPMHookPoint *HP_sockt_realloc_writefifo_post; struct HPMHookPoint *HP_sockt_wfifoset_pre; struct HPMHookPoint *HP_sockt_wfifoset_post; + struct HPMHookPoint *HP_sockt_wfifohead_pre; + struct HPMHookPoint *HP_sockt_wfifohead_post; struct HPMHookPoint *HP_sockt_rfifoskip_pre; struct HPMHookPoint *HP_sockt_rfifoskip_post; struct HPMHookPoint *HP_sockt_close_pre; struct HPMHookPoint *HP_sockt_close_post; + struct HPMHookPoint *HP_sockt_validateWfifo_pre; + struct HPMHookPoint *HP_sockt_validateWfifo_post; struct HPMHookPoint *HP_sockt_session_is_valid_pre; struct HPMHookPoint *HP_sockt_session_is_valid_post; struct HPMHookPoint *HP_sockt_session_is_active_pre; @@ -6220,6 +6282,10 @@ struct { struct HPMHookPoint *HP_status_get_base_maxhp_post; struct HPMHookPoint *HP_status_get_base_maxsp_pre; struct HPMHookPoint *HP_status_get_base_maxsp_post; + struct HPMHookPoint *HP_status_get_restart_hp_pre; + struct HPMHookPoint *HP_status_get_restart_hp_post; + struct HPMHookPoint *HP_status_get_restart_sp_pre; + struct HPMHookPoint *HP_status_get_restart_sp_post; struct HPMHookPoint *HP_status_calc_npc__pre; struct HPMHookPoint *HP_status_calc_npc__post; struct HPMHookPoint *HP_status_calc_str_pre; @@ -6719,6 +6785,10 @@ struct { int HP_achievement_check_title_post; int HP_achievement_get_rewards_pre; int HP_achievement_get_rewards_post; + int HP_achievement_get_rewards_buffs_pre; + int HP_achievement_get_rewards_buffs_post; + int HP_achievement_get_rewards_items_pre; + int HP_achievement_get_rewards_items_post; int HP_atcommand_init_pre; int HP_atcommand_init_post; int HP_atcommand_final_pre; @@ -6815,6 +6885,8 @@ struct { int HP_battle_drain_post; int HP_battle_reflect_damage_pre; int HP_battle_reflect_damage_post; + int HP_battle_reflect_trap_pre; + int HP_battle_reflect_trap_post; int HP_battle_attr_ratio_pre; int HP_battle_attr_ratio_post; int HP_battle_attr_fix_pre; @@ -7507,6 +7579,18 @@ struct { int HP_clif_cartList_post; int HP_clif_cartItems_pre; int HP_clif_cartItems_post; + int HP_clif_inventoryExpansionInfo_pre; + int HP_clif_inventoryExpansionInfo_post; + int HP_clif_inventoryExpandAck_pre; + int HP_clif_inventoryExpandAck_post; + int HP_clif_inventoryExpandResult_pre; + int HP_clif_inventoryExpandResult_post; + int HP_clif_pInventoryExpansion_pre; + int HP_clif_pInventoryExpansion_post; + int HP_clif_pInventoryExpansionConfirmed_pre; + int HP_clif_pInventoryExpansionConfirmed_post; + int HP_clif_pInventoryExpansionRejected_pre; + int HP_clif_pInventoryExpansionRejected_post; int HP_clif_favorite_item_pre; int HP_clif_favorite_item_post; int HP_clif_clearcart_pre; @@ -7687,6 +7771,10 @@ struct { int HP_clif_specialeffect_single_post; int HP_clif_specialeffect_value_pre; int HP_clif_specialeffect_value_post; + int HP_clif_removeSpecialEffect_pre; + int HP_clif_removeSpecialEffect_post; + int HP_clif_removeSpecialEffect_single_pre; + int HP_clif_removeSpecialEffect_single_post; int HP_clif_millenniumshield_pre; int HP_clif_millenniumshield_post; int HP_clif_spiritcharm_pre; @@ -7737,6 +7825,8 @@ struct { int HP_clif_messagecolor_self_post; int HP_clif_messagecolor_pre; int HP_clif_messagecolor_post; + int HP_clif_serviceMessageColor_pre; + int HP_clif_serviceMessageColor_post; int HP_clif_disp_overhead_pre; int HP_clif_disp_overhead_post; int HP_clif_notify_playerchat_pre; @@ -8291,8 +8381,14 @@ struct { int HP_clif_pStatusUp_post; int HP_clif_pSkillUp_pre; int HP_clif_pSkillUp_post; + int HP_clif_useSkillToIdReal_pre; + int HP_clif_useSkillToIdReal_post; int HP_clif_pUseSkillToId_pre; int HP_clif_pUseSkillToId_post; + int HP_clif_pStartUseSkillToId_pre; + int HP_clif_pStartUseSkillToId_post; + int HP_clif_pStopUseSkillToId_pre; + int HP_clif_pStopUseSkillToId_post; int HP_clif_pUseSkillToId_homun_pre; int HP_clif_pUseSkillToId_homun_post; int HP_clif_pUseSkillToId_mercenary_pre; @@ -8791,6 +8887,18 @@ struct { int HP_clif_party_dead_notification_post; int HP_clif_pMemorialDungeonCommand_pre; int HP_clif_pMemorialDungeonCommand_post; + int HP_clif_camera_showWindow_pre; + int HP_clif_camera_showWindow_post; + int HP_clif_camera_change_pre; + int HP_clif_camera_change_post; + int HP_clif_pCameraInfo_pre; + int HP_clif_pCameraInfo_post; + int HP_clif_item_preview_pre; + int HP_clif_item_preview_post; + int HP_clif_enchant_equipment_pre; + int HP_clif_enchant_equipment_post; + int HP_clif_pReqRemainTime_pre; + int HP_clif_pReqRemainTime_post; int HP_cmdline_init_pre; int HP_cmdline_init_post; int HP_cmdline_final_pre; @@ -9955,6 +10063,8 @@ struct { int HP_map_zone_init_post; int HP_map_zone_remove_pre; int HP_map_zone_remove_post; + int HP_map_zone_remove_all_pre; + int HP_map_zone_remove_all_post; int HP_map_zone_apply_pre; int HP_map_zone_apply_post; int HP_map_zone_change_pre; @@ -10815,6 +10925,14 @@ struct { int HP_npc_secure_timeout_timer_post; int HP_nullpo_assert_report_pre; int HP_nullpo_assert_report_post; + int HP_packets_init_pre; + int HP_packets_init_post; + int HP_packets_final_pre; + int HP_packets_final_post; + int HP_packets_addLens_pre; + int HP_packets_addLens_post; + int HP_packets_addLen_pre; + int HP_packets_addLen_post; int HP_party_init_pre; int HP_party_init_post; int HP_party_final_pre; @@ -11425,6 +11543,8 @@ struct { int HP_pc_isDeathPenaltyJob_post; int HP_pc_has_second_costume_pre; int HP_pc_has_second_costume_post; + int HP_pc_expandInventory_pre; + int HP_pc_expandInventory_post; int HP_libpcre_compile_pre; int HP_libpcre_compile_post; int HP_libpcre_study_pre; @@ -11579,6 +11699,8 @@ struct { int HP_quest_questinfo_validate_homunculus_type_post; int HP_quest_questinfo_validate_quests_pre; int HP_quest_questinfo_validate_quests_post; + int HP_quest_questinfo_validate_mercenary_class_pre; + int HP_quest_questinfo_validate_mercenary_class_post; int HP_quest_questinfo_vector_clear_pre; int HP_quest_questinfo_vector_clear_post; int HP_rnd_init_pre; @@ -12285,6 +12407,8 @@ struct { int HP_skill_cell_overlap_post; int HP_skill_timerskill_pre; int HP_skill_timerskill_post; + int HP_skill_trap_do_splash_pre; + int HP_skill_trap_do_splash_post; int HP_skill_trap_splash_pre; int HP_skill_trap_splash_post; int HP_skill_check_condition_mercenary_pre; @@ -12531,10 +12655,14 @@ struct { int HP_sockt_realloc_writefifo_post; int HP_sockt_wfifoset_pre; int HP_sockt_wfifoset_post; + int HP_sockt_wfifohead_pre; + int HP_sockt_wfifohead_post; int HP_sockt_rfifoskip_pre; int HP_sockt_rfifoskip_post; int HP_sockt_close_pre; int HP_sockt_close_post; + int HP_sockt_validateWfifo_pre; + int HP_sockt_validateWfifo_post; int HP_sockt_session_is_valid_pre; int HP_sockt_session_is_valid_post; int HP_sockt_session_is_active_pre; @@ -12803,6 +12931,10 @@ struct { int HP_status_get_base_maxhp_post; int HP_status_get_base_maxsp_pre; int HP_status_get_base_maxsp_post; + int HP_status_get_restart_hp_pre; + int HP_status_get_restart_hp_post; + int HP_status_get_restart_sp_pre; + int HP_status_get_restart_sp_post; int HP_status_calc_npc__pre; int HP_status_calc_npc__post; int HP_status_calc_str_pre; @@ -13232,6 +13364,7 @@ struct { struct npc_chat_interface npc_chat; struct npc_interface npc; struct nullpo_interface nullpo; + struct packets_interface packets; struct party_interface party; struct path_interface path; struct pc_groups_interface pcg; diff --git a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc index 2f3f1840f..050050ee1 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc @@ -83,6 +83,8 @@ struct HookingPointData HookingPoints[] = { { HP_POP(achievement->init_titles, HP_achievement_init_titles) }, { HP_POP(achievement->check_title, HP_achievement_check_title) }, { HP_POP(achievement->get_rewards, HP_achievement_get_rewards) }, + { HP_POP(achievement->get_rewards_buffs, HP_achievement_get_rewards_buffs) }, + { HP_POP(achievement->get_rewards_items, HP_achievement_get_rewards_items) }, /* atcommand_interface */ { HP_POP(atcommand->init, HP_atcommand_init) }, { HP_POP(atcommand->final, HP_atcommand_final) }, @@ -133,6 +135,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(battle->delay_damage, HP_battle_delay_damage) }, { HP_POP(battle->drain, HP_battle_drain) }, { HP_POP(battle->reflect_damage, HP_battle_reflect_damage) }, + { HP_POP(battle->reflect_trap, HP_battle_reflect_trap) }, { HP_POP(battle->attr_ratio, HP_battle_attr_ratio) }, { HP_POP(battle->attr_fix, HP_battle_attr_fix) }, { HP_POP(battle->calc_cardfix, HP_battle_calc_cardfix) }, @@ -486,6 +489,12 @@ struct HookingPointData HookingPoints[] = { { HP_POP(clif->equipItems, HP_clif_equipItems) }, { HP_POP(clif->cartList, HP_clif_cartList) }, { HP_POP(clif->cartItems, HP_clif_cartItems) }, + { HP_POP(clif->inventoryExpansionInfo, HP_clif_inventoryExpansionInfo) }, + { HP_POP(clif->inventoryExpandAck, HP_clif_inventoryExpandAck) }, + { HP_POP(clif->inventoryExpandResult, HP_clif_inventoryExpandResult) }, + { HP_POP(clif->pInventoryExpansion, HP_clif_pInventoryExpansion) }, + { HP_POP(clif->pInventoryExpansionConfirmed, HP_clif_pInventoryExpansionConfirmed) }, + { HP_POP(clif->pInventoryExpansionRejected, HP_clif_pInventoryExpansionRejected) }, { HP_POP(clif->favorite_item, HP_clif_favorite_item) }, { HP_POP(clif->clearcart, HP_clif_clearcart) }, { HP_POP(clif->item_identify_list, HP_clif_item_identify_list) }, @@ -576,6 +585,8 @@ struct HookingPointData HookingPoints[] = { { HP_POP(clif->specialeffect, HP_clif_specialeffect) }, { HP_POP(clif->specialeffect_single, HP_clif_specialeffect_single) }, { HP_POP(clif->specialeffect_value, HP_clif_specialeffect_value) }, + { HP_POP(clif->removeSpecialEffect, HP_clif_removeSpecialEffect) }, + { HP_POP(clif->removeSpecialEffect_single, HP_clif_removeSpecialEffect_single) }, { HP_POP(clif->millenniumshield, HP_clif_millenniumshield) }, { HP_POP(clif->spiritcharm, HP_clif_spiritcharm) }, { HP_POP(clif->charm_single, HP_clif_charm_single) }, @@ -601,6 +612,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(clif->broadcast2, HP_clif_broadcast2) }, { HP_POP(clif->messagecolor_self, HP_clif_messagecolor_self) }, { HP_POP(clif->messagecolor, HP_clif_messagecolor) }, + { HP_POP(clif->serviceMessageColor, HP_clif_serviceMessageColor) }, { HP_POP(clif->disp_overhead, HP_clif_disp_overhead) }, { HP_POP(clif->notify_playerchat, HP_clif_notify_playerchat) }, { HP_POP(clif->msgtable, HP_clif_msgtable) }, @@ -878,7 +890,10 @@ struct HookingPointData HookingPoints[] = { { HP_POP(clif->pChangeCart, HP_clif_pChangeCart) }, { HP_POP(clif->pStatusUp, HP_clif_pStatusUp) }, { HP_POP(clif->pSkillUp, HP_clif_pSkillUp) }, + { HP_POP(clif->useSkillToIdReal, HP_clif_useSkillToIdReal) }, { HP_POP(clif->pUseSkillToId, HP_clif_pUseSkillToId) }, + { HP_POP(clif->pStartUseSkillToId, HP_clif_pStartUseSkillToId) }, + { HP_POP(clif->pStopUseSkillToId, HP_clif_pStopUseSkillToId) }, { HP_POP(clif->pUseSkillToId_homun, HP_clif_pUseSkillToId_homun) }, { HP_POP(clif->pUseSkillToId_mercenary, HP_clif_pUseSkillToId_mercenary) }, { HP_POP(clif->pUseSkillToPos, HP_clif_pUseSkillToPos) }, @@ -1128,6 +1143,12 @@ struct HookingPointData HookingPoints[] = { { HP_POP(clif->petEvolutionResult, HP_clif_petEvolutionResult) }, { HP_POP(clif->party_dead_notification, HP_clif_party_dead_notification) }, { HP_POP(clif->pMemorialDungeonCommand, HP_clif_pMemorialDungeonCommand) }, + { HP_POP(clif->camera_showWindow, HP_clif_camera_showWindow) }, + { HP_POP(clif->camera_change, HP_clif_camera_change) }, + { HP_POP(clif->pCameraInfo, HP_clif_pCameraInfo) }, + { HP_POP(clif->item_preview, HP_clif_item_preview) }, + { HP_POP(clif->enchant_equipment, HP_clif_enchant_equipment) }, + { HP_POP(clif->pReqRemainTime, HP_clif_pReqRemainTime) }, /* cmdline_interface */ { HP_POP(cmdline->init, HP_cmdline_init) }, { HP_POP(cmdline->final, HP_cmdline_final) }, @@ -1729,6 +1750,7 @@ struct HookingPointData HookingPoints[] = { /* map_interface */ { HP_POP(map->zone_init, HP_map_zone_init) }, { HP_POP(map->zone_remove, HP_map_zone_remove) }, + { HP_POP(map->zone_remove_all, HP_map_zone_remove_all) }, { HP_POP(map->zone_apply, HP_map_zone_apply) }, { HP_POP(map->zone_change, HP_map_zone_change) }, { HP_POP(map->zone_change2, HP_map_zone_change2) }, @@ -2169,6 +2191,11 @@ struct HookingPointData HookingPoints[] = { { HP_POP(npc->secure_timeout_timer, HP_npc_secure_timeout_timer) }, /* nullpo_interface */ { HP_POP(nullpo->assert_report, HP_nullpo_assert_report) }, +/* packets_interface */ + { HP_POP(packets->init, HP_packets_init) }, + { HP_POP(packets->final, HP_packets_final) }, + { HP_POP(packets->addLens, HP_packets_addLens) }, + { HP_POP(packets->addLen, HP_packets_addLen) }, /* party_interface */ { HP_POP(party->init, HP_party_init) }, { HP_POP(party->final, HP_party_final) }, @@ -2478,6 +2505,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(pc->check_basicskill, HP_pc_check_basicskill) }, { HP_POP(pc->isDeathPenaltyJob, HP_pc_isDeathPenaltyJob) }, { HP_POP(pc->has_second_costume, HP_pc_has_second_costume) }, + { HP_POP(pc->expandInventory, HP_pc_expandInventory) }, /* pcre_interface */ { HP_POP(libpcre->compile, HP_libpcre_compile) }, { HP_POP(libpcre->study, HP_libpcre_study) }, @@ -2558,6 +2586,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(quest->questinfo_validate_homunculus_level, HP_quest_questinfo_validate_homunculus_level) }, { HP_POP(quest->questinfo_validate_homunculus_type, HP_quest_questinfo_validate_homunculus_type) }, { HP_POP(quest->questinfo_validate_quests, HP_quest_questinfo_validate_quests) }, + { HP_POP(quest->questinfo_validate_mercenary_class, HP_quest_questinfo_validate_mercenary_class) }, { HP_POP(quest->questinfo_vector_clear, HP_quest_questinfo_vector_clear) }, /* rnd_interface */ { HP_POP(rnd->init, HP_rnd_init) }, @@ -2917,6 +2946,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(skill->onskillusage, HP_skill_onskillusage) }, { HP_POP(skill->cell_overlap, HP_skill_cell_overlap) }, { HP_POP(skill->timerskill, HP_skill_timerskill) }, + { HP_POP(skill->trap_do_splash, HP_skill_trap_do_splash) }, { HP_POP(skill->trap_splash, HP_skill_trap_splash) }, { HP_POP(skill->check_condition_mercenary, HP_skill_check_condition_mercenary) }, { HP_POP(skill->locate_element_field, HP_skill_locate_element_field) }, @@ -3041,8 +3071,10 @@ struct HookingPointData HookingPoints[] = { { HP_POP(sockt->realloc_fifo, HP_sockt_realloc_fifo) }, { HP_POP(sockt->realloc_writefifo, HP_sockt_realloc_writefifo) }, { HP_POP(sockt->wfifoset, HP_sockt_wfifoset) }, + { HP_POP(sockt->wfifohead, HP_sockt_wfifohead) }, { HP_POP(sockt->rfifoskip, HP_sockt_rfifoskip) }, { HP_POP(sockt->close, HP_sockt_close) }, + { HP_POP(sockt->validateWfifo, HP_sockt_validateWfifo) }, { HP_POP(sockt->session_is_valid, HP_sockt_session_is_valid) }, { HP_POP(sockt->session_is_active, HP_sockt_session_is_active) }, { HP_POP(sockt->flush, HP_sockt_flush) }, @@ -3179,6 +3211,8 @@ struct HookingPointData HookingPoints[] = { { HP_POP(status->base_atk, HP_status_base_atk) }, { HP_POP(status->get_base_maxhp, HP_status_get_base_maxhp) }, { HP_POP(status->get_base_maxsp, HP_status_get_base_maxsp) }, + { HP_POP(status->get_restart_hp, HP_status_get_restart_hp) }, + { HP_POP(status->get_restart_sp, HP_status_get_restart_sp) }, { HP_POP(status->calc_npc_, HP_status_calc_npc_) }, { HP_POP(status->calc_str, HP_status_calc_str) }, { HP_POP(status->calc_agi, HP_status_calc_agi) }, diff --git a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc index 860e47f1b..05f182f9e 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc @@ -1459,27 +1459,80 @@ bool HP_achievement_check_title(struct map_session_data *sd, int title_id) { } return retVal___; } -void HP_achievement_get_rewards(struct map_session_data *sd, const struct achievement_data *ad) { +bool HP_achievement_get_rewards(struct map_session_data *sd, const struct achievement_data *ad) { int hIndex = 0; + bool retVal___ = false; if (HPMHooks.count.HP_achievement_get_rewards_pre > 0) { - void (*preHookFunc) (struct map_session_data **sd, const struct achievement_data **ad); + bool (*preHookFunc) (struct map_session_data **sd, const struct achievement_data **ad); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_get_rewards_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_achievement_get_rewards_pre[hIndex].func; - preHookFunc(&sd, &ad); + retVal___ = preHookFunc(&sd, &ad); } if (*HPMforce_return) { *HPMforce_return = false; - return; + return retVal___; } } { - HPMHooks.source.achievement.get_rewards(sd, ad); + retVal___ = HPMHooks.source.achievement.get_rewards(sd, ad); } if (HPMHooks.count.HP_achievement_get_rewards_post > 0) { - void (*postHookFunc) (struct map_session_data *sd, const struct achievement_data *ad); + bool (*postHookFunc) (bool retVal___, struct map_session_data *sd, const struct achievement_data *ad); for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_get_rewards_post; hIndex++) { postHookFunc = HPMHooks.list.HP_achievement_get_rewards_post[hIndex].func; + retVal___ = postHookFunc(retVal___, sd, ad); + } + } + return retVal___; +} +void HP_achievement_get_rewards_buffs(struct map_session_data *sd, const struct achievement_data *ad) { + int hIndex = 0; + if (HPMHooks.count.HP_achievement_get_rewards_buffs_pre > 0) { + void (*preHookFunc) (struct map_session_data **sd, const struct achievement_data **ad); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_get_rewards_buffs_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_achievement_get_rewards_buffs_pre[hIndex].func; + preHookFunc(&sd, &ad); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.achievement.get_rewards_buffs(sd, ad); + } + if (HPMHooks.count.HP_achievement_get_rewards_buffs_post > 0) { + void (*postHookFunc) (struct map_session_data *sd, const struct achievement_data *ad); + for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_get_rewards_buffs_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_achievement_get_rewards_buffs_post[hIndex].func; + postHookFunc(sd, ad); + } + } + return; +} +void HP_achievement_get_rewards_items(struct map_session_data *sd, const struct achievement_data *ad) { + int hIndex = 0; + if (HPMHooks.count.HP_achievement_get_rewards_items_pre > 0) { + void (*preHookFunc) (struct map_session_data **sd, const struct achievement_data **ad); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_get_rewards_items_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_achievement_get_rewards_items_pre[hIndex].func; + preHookFunc(&sd, &ad); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.achievement.get_rewards_items(sd, ad); + } + if (HPMHooks.count.HP_achievement_get_rewards_items_post > 0) { + void (*postHookFunc) (struct map_session_data *sd, const struct achievement_data *ad); + for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_get_rewards_items_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_achievement_get_rewards_items_post[hIndex].func; postHookFunc(sd, ad); } } @@ -2806,6 +2859,32 @@ void HP_battle_reflect_damage(struct block_list *target, struct block_list *src, } return; } +void HP_battle_reflect_trap(struct block_list *target, struct block_list *src, struct Damage *md, uint16 skill_id) { + int hIndex = 0; + if (HPMHooks.count.HP_battle_reflect_trap_pre > 0) { + void (*preHookFunc) (struct block_list **target, struct block_list **src, struct Damage **md, uint16 *skill_id); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_reflect_trap_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_battle_reflect_trap_pre[hIndex].func; + preHookFunc(&target, &src, &md, &skill_id); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.battle.reflect_trap(target, src, md, skill_id); + } + if (HPMHooks.count.HP_battle_reflect_trap_post > 0) { + void (*postHookFunc) (struct block_list *target, struct block_list *src, struct Damage *md, uint16 skill_id); + for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_reflect_trap_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_battle_reflect_trap_post[hIndex].func; + postHookFunc(target, src, md, skill_id); + } + } + return; +} int HP_battle_attr_ratio(int atk_elem, int def_type, int def_lv) { int hIndex = 0; int retVal___ = 0; @@ -9707,10 +9786,10 @@ void HP_clif_item_drop_announce(struct map_session_data *sd, int nameid, char *m } return; } -void HP_clif_clearunit_single(int id, clr_type type, int fd) { +void HP_clif_clearunit_single(int id, enum clr_type type, int fd) { int hIndex = 0; if (HPMHooks.count.HP_clif_clearunit_single_pre > 0) { - void (*preHookFunc) (int *id, clr_type *type, int *fd); + void (*preHookFunc) (int *id, enum clr_type *type, int *fd); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_clearunit_single_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clif_clearunit_single_pre[hIndex].func; @@ -9725,7 +9804,7 @@ void HP_clif_clearunit_single(int id, clr_type type, int fd) { HPMHooks.source.clif.clearunit_single(id, type, fd); } if (HPMHooks.count.HP_clif_clearunit_single_post > 0) { - void (*postHookFunc) (int id, clr_type type, int fd); + void (*postHookFunc) (int id, enum clr_type type, int fd); for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_clearunit_single_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clif_clearunit_single_post[hIndex].func; postHookFunc(id, type, fd); @@ -9733,10 +9812,10 @@ void HP_clif_clearunit_single(int id, clr_type type, int fd) { } return; } -void HP_clif_clearunit_area(struct block_list *bl, clr_type type) { +void HP_clif_clearunit_area(struct block_list *bl, enum clr_type type) { int hIndex = 0; if (HPMHooks.count.HP_clif_clearunit_area_pre > 0) { - void (*preHookFunc) (struct block_list **bl, clr_type *type); + void (*preHookFunc) (struct block_list **bl, enum clr_type *type); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_clearunit_area_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clif_clearunit_area_pre[hIndex].func; @@ -9751,7 +9830,7 @@ void HP_clif_clearunit_area(struct block_list *bl, clr_type type) { HPMHooks.source.clif.clearunit_area(bl, type); } if (HPMHooks.count.HP_clif_clearunit_area_post > 0) { - void (*postHookFunc) (struct block_list *bl, clr_type type); + void (*postHookFunc) (struct block_list *bl, enum clr_type type); for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_clearunit_area_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clif_clearunit_area_post[hIndex].func; postHookFunc(bl, type); @@ -9759,10 +9838,10 @@ void HP_clif_clearunit_area(struct block_list *bl, clr_type type) { } return; } -void HP_clif_clearunit_delayed(struct block_list *bl, clr_type type, int64 tick) { +void HP_clif_clearunit_delayed(struct block_list *bl, enum clr_type type, int64 tick) { int hIndex = 0; if (HPMHooks.count.HP_clif_clearunit_delayed_pre > 0) { - void (*preHookFunc) (struct block_list **bl, clr_type *type, int64 *tick); + void (*preHookFunc) (struct block_list **bl, enum clr_type *type, int64 *tick); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_clearunit_delayed_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clif_clearunit_delayed_pre[hIndex].func; @@ -9777,7 +9856,7 @@ void HP_clif_clearunit_delayed(struct block_list *bl, clr_type type, int64 tick) HPMHooks.source.clif.clearunit_delayed(bl, type, tick); } if (HPMHooks.count.HP_clif_clearunit_delayed_post > 0) { - void (*postHookFunc) (struct block_list *bl, clr_type type, int64 tick); + void (*postHookFunc) (struct block_list *bl, enum clr_type type, int64 tick); for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_clearunit_delayed_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clif_clearunit_delayed_post[hIndex].func; postHookFunc(bl, type, tick); @@ -12046,6 +12125,162 @@ void HP_clif_cartItems(struct map_session_data *sd, enum inventory_type type) { } return; } +void HP_clif_inventoryExpansionInfo(struct map_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_inventoryExpansionInfo_pre > 0) { + void (*preHookFunc) (struct map_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_inventoryExpansionInfo_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_inventoryExpansionInfo_pre[hIndex].func; + preHookFunc(&sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.inventoryExpansionInfo(sd); + } + if (HPMHooks.count.HP_clif_inventoryExpansionInfo_post > 0) { + void (*postHookFunc) (struct map_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_inventoryExpansionInfo_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_inventoryExpansionInfo_post[hIndex].func; + postHookFunc(sd); + } + } + return; +} +void HP_clif_inventoryExpandAck(struct map_session_data *sd, enum expand_inventory result, int itemId) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_inventoryExpandAck_pre > 0) { + void (*preHookFunc) (struct map_session_data **sd, enum expand_inventory *result, int *itemId); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_inventoryExpandAck_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_inventoryExpandAck_pre[hIndex].func; + preHookFunc(&sd, &result, &itemId); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.inventoryExpandAck(sd, result, itemId); + } + if (HPMHooks.count.HP_clif_inventoryExpandAck_post > 0) { + void (*postHookFunc) (struct map_session_data *sd, enum expand_inventory result, int itemId); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_inventoryExpandAck_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_inventoryExpandAck_post[hIndex].func; + postHookFunc(sd, result, itemId); + } + } + return; +} +void HP_clif_inventoryExpandResult(struct map_session_data *sd, enum expand_inventory_result result) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_inventoryExpandResult_pre > 0) { + void (*preHookFunc) (struct map_session_data **sd, enum expand_inventory_result *result); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_inventoryExpandResult_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_inventoryExpandResult_pre[hIndex].func; + preHookFunc(&sd, &result); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.inventoryExpandResult(sd, result); + } + if (HPMHooks.count.HP_clif_inventoryExpandResult_post > 0) { + void (*postHookFunc) (struct map_session_data *sd, enum expand_inventory_result result); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_inventoryExpandResult_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_inventoryExpandResult_post[hIndex].func; + postHookFunc(sd, result); + } + } + return; +} +void HP_clif_pInventoryExpansion(int fd, struct map_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_pInventoryExpansion_pre > 0) { + void (*preHookFunc) (int *fd, struct map_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pInventoryExpansion_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_pInventoryExpansion_pre[hIndex].func; + preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.pInventoryExpansion(fd, sd); + } + if (HPMHooks.count.HP_clif_pInventoryExpansion_post > 0) { + void (*postHookFunc) (int fd, struct map_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pInventoryExpansion_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_pInventoryExpansion_post[hIndex].func; + postHookFunc(fd, sd); + } + } + return; +} +void HP_clif_pInventoryExpansionConfirmed(int fd, struct map_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_pInventoryExpansionConfirmed_pre > 0) { + void (*preHookFunc) (int *fd, struct map_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pInventoryExpansionConfirmed_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_pInventoryExpansionConfirmed_pre[hIndex].func; + preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.pInventoryExpansionConfirmed(fd, sd); + } + if (HPMHooks.count.HP_clif_pInventoryExpansionConfirmed_post > 0) { + void (*postHookFunc) (int fd, struct map_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pInventoryExpansionConfirmed_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_pInventoryExpansionConfirmed_post[hIndex].func; + postHookFunc(fd, sd); + } + } + return; +} +void HP_clif_pInventoryExpansionRejected(int fd, struct map_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_pInventoryExpansionRejected_pre > 0) { + void (*preHookFunc) (int *fd, struct map_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pInventoryExpansionRejected_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_pInventoryExpansionRejected_pre[hIndex].func; + preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.pInventoryExpansionRejected(fd, sd); + } + if (HPMHooks.count.HP_clif_pInventoryExpansionRejected_post > 0) { + void (*postHookFunc) (int fd, struct map_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pInventoryExpansionRejected_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_pInventoryExpansionRejected_post[hIndex].func; + postHookFunc(fd, sd); + } + } + return; +} void HP_clif_favorite_item(struct map_session_data *sd, unsigned short index) { int hIndex = 0; if (HPMHooks.count.HP_clif_favorite_item_pre > 0) { @@ -14403,6 +14638,58 @@ void HP_clif_specialeffect_value(struct block_list *bl, int effect_id, int num, } return; } +void HP_clif_removeSpecialEffect(struct block_list *bl, int effectId, enum send_target target) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_removeSpecialEffect_pre > 0) { + void (*preHookFunc) (struct block_list **bl, int *effectId, enum send_target *target); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_removeSpecialEffect_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_removeSpecialEffect_pre[hIndex].func; + preHookFunc(&bl, &effectId, &target); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.removeSpecialEffect(bl, effectId, target); + } + if (HPMHooks.count.HP_clif_removeSpecialEffect_post > 0) { + void (*postHookFunc) (struct block_list *bl, int effectId, enum send_target target); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_removeSpecialEffect_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_removeSpecialEffect_post[hIndex].func; + postHookFunc(bl, effectId, target); + } + } + return; +} +void HP_clif_removeSpecialEffect_single(struct block_list *bl, int effectId, struct block_list *targetBl) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_removeSpecialEffect_single_pre > 0) { + void (*preHookFunc) (struct block_list **bl, int *effectId, struct block_list **targetBl); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_removeSpecialEffect_single_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_removeSpecialEffect_single_pre[hIndex].func; + preHookFunc(&bl, &effectId, &targetBl); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.removeSpecialEffect_single(bl, effectId, targetBl); + } + if (HPMHooks.count.HP_clif_removeSpecialEffect_single_post > 0) { + void (*postHookFunc) (struct block_list *bl, int effectId, struct block_list *targetBl); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_removeSpecialEffect_single_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_removeSpecialEffect_single_post[hIndex].func; + postHookFunc(bl, effectId, targetBl); + } + } + return; +} void HP_clif_millenniumshield(struct block_list *bl, short shields) { int hIndex = 0; if (HPMHooks.count.HP_clif_millenniumshield_pre > 0) { @@ -15053,6 +15340,32 @@ void HP_clif_messagecolor(struct block_list *bl, uint32 color, const char *msg) } return; } +void HP_clif_serviceMessageColor(struct map_session_data *sd, uint32 color, const char *msg) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_serviceMessageColor_pre > 0) { + void (*preHookFunc) (struct map_session_data **sd, uint32 *color, const char **msg); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_serviceMessageColor_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_serviceMessageColor_pre[hIndex].func; + preHookFunc(&sd, &color, &msg); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.serviceMessageColor(sd, color, msg); + } + if (HPMHooks.count.HP_clif_serviceMessageColor_post > 0) { + void (*postHookFunc) (struct map_session_data *sd, uint32 color, const char *msg); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_serviceMessageColor_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_serviceMessageColor_post[hIndex].func; + postHookFunc(sd, color, msg); + } + } + return; +} void HP_clif_disp_overhead(struct block_list *bl, const char *mes, enum send_target target, struct block_list *target_bl) { int hIndex = 0; if (HPMHooks.count.HP_clif_disp_overhead_pre > 0) { @@ -20710,10 +21023,10 @@ bool HP_clif_parse_roulette_db(void) { } return retVal___; } -void HP_clif_roulette_generate_ack(struct map_session_data *sd, unsigned char result, short stage, short prizeIdx, int bonusItemID) { +void HP_clif_roulette_generate_ack(struct map_session_data *sd, enum GENERATE_ROULETTE_ACK result, short stage, short prizeIdx, int bonusItemID) { int hIndex = 0; if (HPMHooks.count.HP_clif_roulette_generate_ack_pre > 0) { - void (*preHookFunc) (struct map_session_data **sd, unsigned char *result, short *stage, short *prizeIdx, int *bonusItemID); + void (*preHookFunc) (struct map_session_data **sd, enum GENERATE_ROULETTE_ACK *result, short *stage, short *prizeIdx, int *bonusItemID); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_roulette_generate_ack_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clif_roulette_generate_ack_pre[hIndex].func; @@ -20728,7 +21041,7 @@ void HP_clif_roulette_generate_ack(struct map_session_data *sd, unsigned char re HPMHooks.source.clif.roulette_generate_ack(sd, result, stage, prizeIdx, bonusItemID); } if (HPMHooks.count.HP_clif_roulette_generate_ack_post > 0) { - void (*postHookFunc) (struct map_session_data *sd, unsigned char result, short stage, short prizeIdx, int bonusItemID); + void (*postHookFunc) (struct map_session_data *sd, enum GENERATE_ROULETTE_ACK result, short stage, short prizeIdx, int bonusItemID); for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_roulette_generate_ack_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clif_roulette_generate_ack_post[hIndex].func; postHookFunc(sd, result, stage, prizeIdx, bonusItemID); @@ -22273,6 +22586,32 @@ void HP_clif_pSkillUp(int fd, struct map_session_data *sd) { } return; } +void HP_clif_useSkillToIdReal(int fd, struct map_session_data *sd, int skill_id, int skill_lv, int target_id) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_useSkillToIdReal_pre > 0) { + void (*preHookFunc) (int *fd, struct map_session_data **sd, int *skill_id, int *skill_lv, int *target_id); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_useSkillToIdReal_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_useSkillToIdReal_pre[hIndex].func; + preHookFunc(&fd, &sd, &skill_id, &skill_lv, &target_id); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.useSkillToIdReal(fd, sd, skill_id, skill_lv, target_id); + } + if (HPMHooks.count.HP_clif_useSkillToIdReal_post > 0) { + void (*postHookFunc) (int fd, struct map_session_data *sd, int skill_id, int skill_lv, int target_id); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_useSkillToIdReal_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_useSkillToIdReal_post[hIndex].func; + postHookFunc(fd, sd, skill_id, skill_lv, target_id); + } + } + return; +} void HP_clif_pUseSkillToId(int fd, struct map_session_data *sd) { int hIndex = 0; if (HPMHooks.count.HP_clif_pUseSkillToId_pre > 0) { @@ -22299,6 +22638,58 @@ void HP_clif_pUseSkillToId(int fd, struct map_session_data *sd) { } return; } +void HP_clif_pStartUseSkillToId(int fd, struct map_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_pStartUseSkillToId_pre > 0) { + void (*preHookFunc) (int *fd, struct map_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pStartUseSkillToId_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_pStartUseSkillToId_pre[hIndex].func; + preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.pStartUseSkillToId(fd, sd); + } + if (HPMHooks.count.HP_clif_pStartUseSkillToId_post > 0) { + void (*postHookFunc) (int fd, struct map_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pStartUseSkillToId_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_pStartUseSkillToId_post[hIndex].func; + postHookFunc(fd, sd); + } + } + return; +} +void HP_clif_pStopUseSkillToId(int fd, struct map_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_pStopUseSkillToId_pre > 0) { + void (*preHookFunc) (int *fd, struct map_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pStopUseSkillToId_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_pStopUseSkillToId_pre[hIndex].func; + preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.pStopUseSkillToId(fd, sd); + } + if (HPMHooks.count.HP_clif_pStopUseSkillToId_post > 0) { + void (*postHookFunc) (int fd, struct map_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pStopUseSkillToId_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_pStopUseSkillToId_post[hIndex].func; + postHookFunc(fd, sd); + } + } + return; +} void HP_clif_pUseSkillToId_homun(struct homun_data *hd, struct map_session_data *sd, int64 tick, uint16 skill_id, uint16 skill_lv, int target_id) { int hIndex = 0; if (HPMHooks.count.HP_clif_pUseSkillToId_homun_pre > 0) { @@ -28782,6 +29173,163 @@ void HP_clif_pMemorialDungeonCommand(int fd, struct map_session_data *sd) { } return; } +void HP_clif_camera_showWindow(struct map_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_camera_showWindow_pre > 0) { + void (*preHookFunc) (struct map_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_camera_showWindow_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_camera_showWindow_pre[hIndex].func; + preHookFunc(&sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.camera_showWindow(sd); + } + if (HPMHooks.count.HP_clif_camera_showWindow_post > 0) { + void (*postHookFunc) (struct map_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_camera_showWindow_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_camera_showWindow_post[hIndex].func; + postHookFunc(sd); + } + } + return; +} +void HP_clif_camera_change(struct map_session_data *sd, float range, float rotation, float latitude, enum send_target target) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_camera_change_pre > 0) { + void (*preHookFunc) (struct map_session_data **sd, float *range, float *rotation, float *latitude, enum send_target *target); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_camera_change_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_camera_change_pre[hIndex].func; + preHookFunc(&sd, &range, &rotation, &latitude, &target); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.camera_change(sd, range, rotation, latitude, target); + } + if (HPMHooks.count.HP_clif_camera_change_post > 0) { + void (*postHookFunc) (struct map_session_data *sd, float range, float rotation, float latitude, enum send_target target); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_camera_change_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_camera_change_post[hIndex].func; + postHookFunc(sd, range, rotation, latitude, target); + } + } + return; +} +void HP_clif_pCameraInfo(int fd, struct map_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_pCameraInfo_pre > 0) { + void (*preHookFunc) (int *fd, struct map_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pCameraInfo_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_pCameraInfo_pre[hIndex].func; + preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.pCameraInfo(fd, sd); + } + if (HPMHooks.count.HP_clif_pCameraInfo_post > 0) { + void (*postHookFunc) (int fd, struct map_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pCameraInfo_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_pCameraInfo_post[hIndex].func; + postHookFunc(fd, sd); + } + } + return; +} +void HP_clif_item_preview(struct map_session_data *sd, int n) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_item_preview_pre > 0) { + void (*preHookFunc) (struct map_session_data **sd, int *n); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_item_preview_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_item_preview_pre[hIndex].func; + preHookFunc(&sd, &n); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.item_preview(sd, n); + } + if (HPMHooks.count.HP_clif_item_preview_post > 0) { + void (*postHookFunc) (struct map_session_data *sd, int n); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_item_preview_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_item_preview_post[hIndex].func; + postHookFunc(sd, n); + } + } + return; +} +bool HP_clif_enchant_equipment(struct map_session_data *sd, enum equip_pos pos, int cardSlot, int cardId) { + int hIndex = 0; + bool retVal___ = false; + if (HPMHooks.count.HP_clif_enchant_equipment_pre > 0) { + bool (*preHookFunc) (struct map_session_data **sd, enum equip_pos *pos, int *cardSlot, int *cardId); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_enchant_equipment_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_enchant_equipment_pre[hIndex].func; + retVal___ = preHookFunc(&sd, &pos, &cardSlot, &cardId); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.clif.enchant_equipment(sd, pos, cardSlot, cardId); + } + if (HPMHooks.count.HP_clif_enchant_equipment_post > 0) { + bool (*postHookFunc) (bool retVal___, struct map_session_data *sd, enum equip_pos pos, int cardSlot, int cardId); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_enchant_equipment_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_enchant_equipment_post[hIndex].func; + retVal___ = postHookFunc(retVal___, sd, pos, cardSlot, cardId); + } + } + return retVal___; +} +void HP_clif_pReqRemainTime(int fd, struct map_session_data *sd) { + int hIndex = 0; + if (HPMHooks.count.HP_clif_pReqRemainTime_pre > 0) { + void (*preHookFunc) (int *fd, struct map_session_data **sd); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pReqRemainTime_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_pReqRemainTime_pre[hIndex].func; + preHookFunc(&fd, &sd); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.clif.pReqRemainTime(fd, sd); + } + if (HPMHooks.count.HP_clif_pReqRemainTime_post > 0) { + void (*postHookFunc) (int fd, struct map_session_data *sd); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_pReqRemainTime_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_pReqRemainTime_post[hIndex].func; + postHookFunc(fd, sd); + } + } + return; +} /* cmdline_interface */ void HP_cmdline_init(void) { int hIndex = 0; @@ -44415,6 +44963,32 @@ void HP_map_zone_remove(int m) { } return; } +void HP_map_zone_remove_all(int m) { + int hIndex = 0; + if (HPMHooks.count.HP_map_zone_remove_all_pre > 0) { + void (*preHookFunc) (int *m); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_map_zone_remove_all_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_map_zone_remove_all_pre[hIndex].func; + preHookFunc(&m); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.map.zone_remove_all(m); + } + if (HPMHooks.count.HP_map_zone_remove_all_post > 0) { + void (*postHookFunc) (int m); + for (hIndex = 0; hIndex < HPMHooks.count.HP_map_zone_remove_all_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_map_zone_remove_all_post[hIndex].func; + postHookFunc(m); + } + } + return; +} void HP_map_zone_apply(int m, struct map_zone_data *zone, const char *start, const char *buffer, const char *filepath) { int hIndex = 0; if (HPMHooks.count.HP_map_zone_apply_pre > 0) { @@ -56242,6 +56816,111 @@ void HP_nullpo_assert_report(const char *file, int line, const char *func, const } return; } +/* packets_interface */ +void HP_packets_init(void) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_init_pre > 0) { + void (*preHookFunc) (void); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_init_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_init_pre[hIndex].func; + preHookFunc(); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.init(); + } + if (HPMHooks.count.HP_packets_init_post > 0) { + void (*postHookFunc) (void); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_init_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_init_post[hIndex].func; + postHookFunc(); + } + } + return; +} +void HP_packets_final(void) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_final_pre > 0) { + void (*preHookFunc) (void); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_final_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_final_pre[hIndex].func; + preHookFunc(); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.final(); + } + if (HPMHooks.count.HP_packets_final_post > 0) { + void (*postHookFunc) (void); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_final_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_final_post[hIndex].func; + postHookFunc(); + } + } + return; +} +void HP_packets_addLens(void) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_addLens_pre > 0) { + void (*preHookFunc) (void); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLens_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_addLens_pre[hIndex].func; + preHookFunc(); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.addLens(); + } + if (HPMHooks.count.HP_packets_addLens_post > 0) { + void (*postHookFunc) (void); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLens_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_addLens_post[hIndex].func; + postHookFunc(); + } + } + return; +} +void HP_packets_addLen(int id, int len) { + int hIndex = 0; + if (HPMHooks.count.HP_packets_addLen_pre > 0) { + void (*preHookFunc) (int *id, int *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLen_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_packets_addLen_pre[hIndex].func; + preHookFunc(&id, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.packets.addLen(id, len); + } + if (HPMHooks.count.HP_packets_addLen_post > 0) { + void (*postHookFunc) (int id, int len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_packets_addLen_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_packets_addLen_post[hIndex].func; + postHookFunc(id, len); + } + } + return; +} /* party_interface */ void HP_party_init(bool minimal) { int hIndex = 0; @@ -58356,10 +59035,10 @@ int HP_pc_makesavestatus(struct map_session_data *sd) { } return retVal___; } -void HP_pc_respawn(struct map_session_data *sd, clr_type clrtype) { +void HP_pc_respawn(struct map_session_data *sd, enum clr_type clrtype) { int hIndex = 0; if (HPMHooks.count.HP_pc_respawn_pre > 0) { - void (*preHookFunc) (struct map_session_data **sd, clr_type *clrtype); + void (*preHookFunc) (struct map_session_data **sd, enum clr_type *clrtype); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_respawn_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_respawn_pre[hIndex].func; @@ -58374,7 +59053,7 @@ void HP_pc_respawn(struct map_session_data *sd, clr_type clrtype) { HPMHooks.source.pc.respawn(sd, clrtype); } if (HPMHooks.count.HP_pc_respawn_post > 0) { - void (*postHookFunc) (struct map_session_data *sd, clr_type clrtype); + void (*postHookFunc) (struct map_session_data *sd, enum clr_type clrtype); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_respawn_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_respawn_post[hIndex].func; postHookFunc(sd, clrtype); @@ -58838,11 +59517,11 @@ int HP_pc_clean_skilltree(struct map_session_data *sd) { } return retVal___; } -int HP_pc_setpos(struct map_session_data *sd, unsigned short map_index, int x, int y, clr_type clrtype) { +int HP_pc_setpos(struct map_session_data *sd, unsigned short map_index, int x, int y, enum clr_type clrtype) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_pc_setpos_pre > 0) { - int (*preHookFunc) (struct map_session_data **sd, unsigned short *map_index, int *x, int *y, clr_type *clrtype); + int (*preHookFunc) (struct map_session_data **sd, unsigned short *map_index, int *x, int *y, enum clr_type *clrtype); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_setpos_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_setpos_pre[hIndex].func; @@ -58857,7 +59536,7 @@ int HP_pc_setpos(struct map_session_data *sd, unsigned short map_index, int x, i retVal___ = HPMHooks.source.pc.setpos(sd, map_index, x, y, clrtype); } if (HPMHooks.count.HP_pc_setpos_post > 0) { - int (*postHookFunc) (int retVal___, struct map_session_data *sd, unsigned short map_index, int x, int y, clr_type clrtype); + int (*postHookFunc) (int retVal___, struct map_session_data *sd, unsigned short map_index, int x, int y, enum clr_type clrtype); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_setpos_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_setpos_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, map_index, x, y, clrtype); @@ -58892,11 +59571,11 @@ int HP_pc_setsavepoint(struct map_session_data *sd, short map_index, int x, int } return retVal___; } -int HP_pc_randomwarp(struct map_session_data *sd, clr_type type) { +int HP_pc_randomwarp(struct map_session_data *sd, enum clr_type type) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_pc_randomwarp_pre > 0) { - int (*preHookFunc) (struct map_session_data **sd, clr_type *type); + int (*preHookFunc) (struct map_session_data **sd, enum clr_type *type); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_randomwarp_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_randomwarp_pre[hIndex].func; @@ -58911,7 +59590,7 @@ int HP_pc_randomwarp(struct map_session_data *sd, clr_type type) { retVal___ = HPMHooks.source.pc.randomwarp(sd, type); } if (HPMHooks.count.HP_pc_randomwarp_post > 0) { - int (*postHookFunc) (int retVal___, struct map_session_data *sd, clr_type type); + int (*postHookFunc) (int retVal___, struct map_session_data *sd, enum clr_type type); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_randomwarp_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_randomwarp_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, type); @@ -59054,11 +59733,11 @@ int HP_pc_payzeny(struct map_session_data *sd, int zeny, enum e_log_pick_type ty } return retVal___; } -int HP_pc_additem(struct map_session_data *sd, struct item *item_data, int amount, e_log_pick_type log_type) { +int HP_pc_additem(struct map_session_data *sd, const struct item *item_data, int amount, e_log_pick_type log_type) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_pc_additem_pre > 0) { - int (*preHookFunc) (struct map_session_data **sd, struct item **item_data, int *amount, e_log_pick_type *log_type); + int (*preHookFunc) (struct map_session_data **sd, const struct item **item_data, int *amount, e_log_pick_type *log_type); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_additem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_additem_pre[hIndex].func; @@ -59073,7 +59752,7 @@ int HP_pc_additem(struct map_session_data *sd, struct item *item_data, int amoun retVal___ = HPMHooks.source.pc.additem(sd, item_data, amount, log_type); } if (HPMHooks.count.HP_pc_additem_post > 0) { - int (*postHookFunc) (int retVal___, struct map_session_data *sd, struct item *item_data, int amount, e_log_pick_type log_type); + int (*postHookFunc) (int retVal___, struct map_session_data *sd, const struct item *item_data, int amount, e_log_pick_type log_type); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_additem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_additem_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, item_data, amount, log_type); @@ -63164,15 +63843,15 @@ int HP_pc_bonus_addeff_onskill(struct s_addeffectonskill *effect, int max, enum } return retVal___; } -int HP_pc_bonus_item_drop(struct s_add_drop *drop, const short max, short id, short group, int race, int rate) { +int HP_pc_bonus_item_drop(struct s_add_drop *drop, const short max, int id, bool is_group, int race, int rate) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_pc_bonus_item_drop_pre > 0) { - int (*preHookFunc) (struct s_add_drop **drop, const short *max, short *id, short *group, int *race, int *rate); + int (*preHookFunc) (struct s_add_drop **drop, const short *max, int *id, bool *is_group, int *race, int *rate); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_bonus_item_drop_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_bonus_item_drop_pre[hIndex].func; - retVal___ = preHookFunc(&drop, &max, &id, &group, &race, &rate); + retVal___ = preHookFunc(&drop, &max, &id, &is_group, &race, &rate); } if (*HPMforce_return) { *HPMforce_return = false; @@ -63180,13 +63859,13 @@ int HP_pc_bonus_item_drop(struct s_add_drop *drop, const short max, short id, sh } } { - retVal___ = HPMHooks.source.pc.bonus_item_drop(drop, max, id, group, race, rate); + retVal___ = HPMHooks.source.pc.bonus_item_drop(drop, max, id, is_group, race, rate); } if (HPMHooks.count.HP_pc_bonus_item_drop_post > 0) { - int (*postHookFunc) (int retVal___, struct s_add_drop *drop, const short max, short id, short group, int race, int rate); + int (*postHookFunc) (int retVal___, struct s_add_drop *drop, const short max, int id, bool is_group, int race, int rate); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_bonus_item_drop_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_bonus_item_drop_post[hIndex].func; - retVal___ = postHookFunc(retVal___, drop, max, id, group, race, rate); + retVal___ = postHookFunc(retVal___, drop, max, id, is_group, race, rate); } } return retVal___; @@ -64464,6 +65143,33 @@ bool HP_pc_has_second_costume(struct map_session_data *sd) { } return retVal___; } +bool HP_pc_expandInventory(struct map_session_data *sd, int adjustSize) { + int hIndex = 0; + bool retVal___ = false; + if (HPMHooks.count.HP_pc_expandInventory_pre > 0) { + bool (*preHookFunc) (struct map_session_data **sd, int *adjustSize); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_expandInventory_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_pc_expandInventory_pre[hIndex].func; + retVal___ = preHookFunc(&sd, &adjustSize); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.pc.expandInventory(sd, adjustSize); + } + if (HPMHooks.count.HP_pc_expandInventory_post > 0) { + bool (*postHookFunc) (bool retVal___, struct map_session_data *sd, int adjustSize); + for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_expandInventory_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_pc_expandInventory_post[hIndex].func; + retVal___ = postHookFunc(retVal___, sd, adjustSize); + } + } + return retVal___; +} /* pcre_interface */ pcre* HP_libpcre_compile(const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr) { int hIndex = 0; @@ -66552,6 +67258,33 @@ bool HP_quest_questinfo_validate_quests(struct map_session_data *sd, struct ques } return retVal___; } +bool HP_quest_questinfo_validate_mercenary_class(struct map_session_data *sd, struct questinfo *qi) { + int hIndex = 0; + bool retVal___ = false; + if (HPMHooks.count.HP_quest_questinfo_validate_mercenary_class_pre > 0) { + bool (*preHookFunc) (struct map_session_data **sd, struct questinfo **qi); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_quest_questinfo_validate_mercenary_class_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_quest_questinfo_validate_mercenary_class_pre[hIndex].func; + retVal___ = preHookFunc(&sd, &qi); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.quest.questinfo_validate_mercenary_class(sd, qi); + } + if (HPMHooks.count.HP_quest_questinfo_validate_mercenary_class_post > 0) { + bool (*postHookFunc) (bool retVal___, struct map_session_data *sd, struct questinfo *qi); + for (hIndex = 0; hIndex < HPMHooks.count.HP_quest_questinfo_validate_mercenary_class_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_quest_questinfo_validate_mercenary_class_post[hIndex].func; + retVal___ = postHookFunc(retVal___, sd, qi); + } + } + return retVal___; +} void HP_quest_questinfo_vector_clear(int m) { int hIndex = 0; if (HPMHooks.count.HP_quest_questinfo_vector_clear_pre > 0) { @@ -76185,6 +76918,32 @@ int HP_skill_timerskill(int tid, int64 tick, int id, intptr_t data) { } return retVal___; } +void HP_skill_trap_do_splash(struct block_list *bl, uint16 skill_id, uint16 skill_lv, int bl_flag, int64 tick) { + int hIndex = 0; + if (HPMHooks.count.HP_skill_trap_do_splash_pre > 0) { + void (*preHookFunc) (struct block_list **bl, uint16 *skill_id, uint16 *skill_lv, int *bl_flag, int64 *tick); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_trap_do_splash_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_skill_trap_do_splash_pre[hIndex].func; + preHookFunc(&bl, &skill_id, &skill_lv, &bl_flag, &tick); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.skill.trap_do_splash(bl, skill_id, skill_lv, bl_flag, tick); + } + if (HPMHooks.count.HP_skill_trap_do_splash_post > 0) { + void (*postHookFunc) (struct block_list *bl, uint16 skill_id, uint16 skill_lv, int bl_flag, int64 tick); + for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_trap_do_splash_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_skill_trap_do_splash_post[hIndex].func; + postHookFunc(bl, skill_id, skill_lv, bl_flag, tick); + } + } + return; +} int HP_skill_trap_splash(struct block_list *bl, va_list ap) { int hIndex = 0; int retVal___ = 0; @@ -79551,15 +80310,15 @@ int HP_sockt_realloc_writefifo(int fd, size_t addition) { } return retVal___; } -int HP_sockt_wfifoset(int fd, size_t len) { +int HP_sockt_wfifoset(int fd, size_t len, bool validate) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_sockt_wfifoset_pre > 0) { - int (*preHookFunc) (int *fd, size_t *len); + int (*preHookFunc) (int *fd, size_t *len, bool *validate); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifoset_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sockt_wfifoset_pre[hIndex].func; - retVal___ = preHookFunc(&fd, &len); + retVal___ = preHookFunc(&fd, &len, &validate); } if (*HPMforce_return) { *HPMforce_return = false; @@ -79567,17 +80326,43 @@ int HP_sockt_wfifoset(int fd, size_t len) { } } { - retVal___ = HPMHooks.source.sockt.wfifoset(fd, len); + retVal___ = HPMHooks.source.sockt.wfifoset(fd, len, validate); } if (HPMHooks.count.HP_sockt_wfifoset_post > 0) { - int (*postHookFunc) (int retVal___, int fd, size_t len); + int (*postHookFunc) (int retVal___, int fd, size_t len, bool validate); for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifoset_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sockt_wfifoset_post[hIndex].func; - retVal___ = postHookFunc(retVal___, fd, len); + retVal___ = postHookFunc(retVal___, fd, len, validate); } } return retVal___; } +void HP_sockt_wfifohead(int fd, size_t len) { + int hIndex = 0; + if (HPMHooks.count.HP_sockt_wfifohead_pre > 0) { + void (*preHookFunc) (int *fd, size_t *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifohead_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_sockt_wfifohead_pre[hIndex].func; + preHookFunc(&fd, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.sockt.wfifohead(fd, len); + } + if (HPMHooks.count.HP_sockt_wfifohead_post > 0) { + void (*postHookFunc) (int fd, size_t len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_wfifohead_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_sockt_wfifohead_post[hIndex].func; + postHookFunc(fd, len); + } + } + return; +} int HP_sockt_rfifoskip(int fd, size_t len) { int hIndex = 0; int retVal___ = 0; @@ -79631,6 +80416,32 @@ void HP_sockt_close(int fd) { } return; } +void HP_sockt_validateWfifo(int fd, size_t len) { + int hIndex = 0; + if (HPMHooks.count.HP_sockt_validateWfifo_pre > 0) { + void (*preHookFunc) (int *fd, size_t *len); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_validateWfifo_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_sockt_validateWfifo_pre[hIndex].func; + preHookFunc(&fd, &len); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return; + } + } + { + HPMHooks.source.sockt.validateWfifo(fd, len); + } + if (HPMHooks.count.HP_sockt_validateWfifo_post > 0) { + void (*postHookFunc) (int fd, size_t len); + for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_validateWfifo_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_sockt_validateWfifo_post[hIndex].func; + postHookFunc(fd, len); + } + } + return; +} bool HP_sockt_session_is_valid(int fd) { int hIndex = 0; bool retVal___ = false; @@ -81252,11 +82063,11 @@ int HP_status_percent_change(struct block_list *src, struct block_list *target, } return retVal___; } -int HP_status_set_hp(struct block_list *bl, unsigned int hp, int flag) { +int HP_status_set_hp(struct block_list *bl, unsigned int hp, enum status_heal_flag flag) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_status_set_hp_pre > 0) { - int (*preHookFunc) (struct block_list **bl, unsigned int *hp, int *flag); + int (*preHookFunc) (struct block_list **bl, unsigned int *hp, enum status_heal_flag *flag); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_set_hp_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_set_hp_pre[hIndex].func; @@ -81271,7 +82082,7 @@ int HP_status_set_hp(struct block_list *bl, unsigned int hp, int flag) { retVal___ = HPMHooks.source.status.set_hp(bl, hp, flag); } if (HPMHooks.count.HP_status_set_hp_post > 0) { - int (*postHookFunc) (int retVal___, struct block_list *bl, unsigned int hp, int flag); + int (*postHookFunc) (int retVal___, struct block_list *bl, unsigned int hp, enum status_heal_flag flag); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_set_hp_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_set_hp_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl, hp, flag); @@ -81279,11 +82090,11 @@ int HP_status_set_hp(struct block_list *bl, unsigned int hp, int flag) { } return retVal___; } -int HP_status_set_sp(struct block_list *bl, unsigned int sp, int flag) { +int HP_status_set_sp(struct block_list *bl, unsigned int sp, enum status_heal_flag flag) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_status_set_sp_pre > 0) { - int (*preHookFunc) (struct block_list **bl, unsigned int *sp, int *flag); + int (*preHookFunc) (struct block_list **bl, unsigned int *sp, enum status_heal_flag *flag); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_set_sp_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_set_sp_pre[hIndex].func; @@ -81298,7 +82109,7 @@ int HP_status_set_sp(struct block_list *bl, unsigned int sp, int flag) { retVal___ = HPMHooks.source.status.set_sp(bl, sp, flag); } if (HPMHooks.count.HP_status_set_sp_post > 0) { - int (*postHookFunc) (int retVal___, struct block_list *bl, unsigned int sp, int flag); + int (*postHookFunc) (int retVal___, struct block_list *bl, unsigned int sp, enum status_heal_flag flag); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_set_sp_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_set_sp_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl, sp, flag); @@ -81306,11 +82117,11 @@ int HP_status_set_sp(struct block_list *bl, unsigned int sp, int flag) { } return retVal___; } -int HP_status_heal(struct block_list *bl, int64 hp, int64 sp, int flag) { +int HP_status_heal(struct block_list *bl, int64 hp, int64 sp, enum status_heal_flag flag) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_status_heal_pre > 0) { - int (*preHookFunc) (struct block_list **bl, int64 *hp, int64 *sp, int *flag); + int (*preHookFunc) (struct block_list **bl, int64 *hp, int64 *sp, enum status_heal_flag *flag); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_heal_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_heal_pre[hIndex].func; @@ -81325,7 +82136,7 @@ int HP_status_heal(struct block_list *bl, int64 hp, int64 sp, int flag) { retVal___ = HPMHooks.source.status.heal(bl, hp, sp, flag); } if (HPMHooks.count.HP_status_heal_post > 0) { - int (*postHookFunc) (int retVal___, struct block_list *bl, int64 hp, int64 sp, int flag); + int (*postHookFunc) (int retVal___, struct block_list *bl, int64 hp, int64 sp, enum status_heal_flag flag); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_heal_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_heal_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl, hp, sp, flag); @@ -83243,6 +84054,60 @@ unsigned int HP_status_get_base_maxsp(const struct map_session_data *sd, const s } return retVal___; } +unsigned int HP_status_get_restart_hp(const struct map_session_data *sd, const struct status_data *st) { + int hIndex = 0; + unsigned int retVal___ = 0; + if (HPMHooks.count.HP_status_get_restart_hp_pre > 0) { + unsigned int (*preHookFunc) (const struct map_session_data **sd, const struct status_data **st); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_restart_hp_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_status_get_restart_hp_pre[hIndex].func; + retVal___ = preHookFunc(&sd, &st); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.status.get_restart_hp(sd, st); + } + if (HPMHooks.count.HP_status_get_restart_hp_post > 0) { + unsigned int (*postHookFunc) (unsigned int retVal___, const struct map_session_data *sd, const struct status_data *st); + for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_restart_hp_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_status_get_restart_hp_post[hIndex].func; + retVal___ = postHookFunc(retVal___, sd, st); + } + } + return retVal___; +} +unsigned int HP_status_get_restart_sp(const struct map_session_data *sd, const struct status_data *st) { + int hIndex = 0; + unsigned int retVal___ = 0; + if (HPMHooks.count.HP_status_get_restart_sp_pre > 0) { + unsigned int (*preHookFunc) (const struct map_session_data **sd, const struct status_data **st); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_restart_sp_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_status_get_restart_sp_pre[hIndex].func; + retVal___ = preHookFunc(&sd, &st); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.status.get_restart_sp(sd, st); + } + if (HPMHooks.count.HP_status_get_restart_sp_post > 0) { + unsigned int (*postHookFunc) (unsigned int retVal___, const struct map_session_data *sd, const struct status_data *st); + for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_restart_sp_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_status_get_restart_sp_post[hIndex].func; + retVal___ = postHookFunc(retVal___, sd, st); + } + } + return retVal___; +} int HP_status_calc_npc_(struct npc_data *nd, enum e_status_calc_opt opt) { int hIndex = 0; int retVal___ = 0; @@ -87421,11 +88286,11 @@ int HP_unit_blown(struct block_list *bl, int dx, int dy, int count, int flag) { } return retVal___; } -int HP_unit_warp(struct block_list *bl, short m, short x, short y, clr_type type) { +int HP_unit_warp(struct block_list *bl, short m, short x, short y, enum clr_type type) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_unit_warp_pre > 0) { - int (*preHookFunc) (struct block_list **bl, short *m, short *x, short *y, clr_type *type); + int (*preHookFunc) (struct block_list **bl, short *m, short *x, short *y, enum clr_type *type); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_warp_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_unit_warp_pre[hIndex].func; @@ -87440,7 +88305,7 @@ int HP_unit_warp(struct block_list *bl, short m, short x, short y, clr_type type retVal___ = HPMHooks.source.unit.warp(bl, m, x, y, type); } if (HPMHooks.count.HP_unit_warp_post > 0) { - int (*postHookFunc) (int retVal___, struct block_list *bl, short m, short x, short y, clr_type type); + int (*postHookFunc) (int retVal___, struct block_list *bl, short m, short x, short y, enum clr_type type); for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_warp_post; hIndex++) { postHookFunc = HPMHooks.list.HP_unit_warp_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl, m, x, y, type); @@ -88120,11 +88985,11 @@ int HP_unit_changeviewsize(struct block_list *bl, short size) { } return retVal___; } -int HP_unit_remove_map(struct block_list *bl, clr_type clrtype, const char *file, int line, const char *func) { +int HP_unit_remove_map(struct block_list *bl, enum clr_type clrtype, const char *file, int line, const char *func) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_unit_remove_map_pre > 0) { - int (*preHookFunc) (struct block_list **bl, clr_type *clrtype, const char **file, int *line, const char **func); + int (*preHookFunc) (struct block_list **bl, enum clr_type *clrtype, const char **file, int *line, const char **func); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_remove_map_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_unit_remove_map_pre[hIndex].func; @@ -88139,7 +89004,7 @@ int HP_unit_remove_map(struct block_list *bl, clr_type clrtype, const char *file retVal___ = HPMHooks.source.unit.remove_map(bl, clrtype, file, line, func); } if (HPMHooks.count.HP_unit_remove_map_post > 0) { - int (*postHookFunc) (int retVal___, struct block_list *bl, clr_type clrtype, const char *file, int line, const char *func); + int (*postHookFunc) (int retVal___, struct block_list *bl, enum clr_type clrtype, const char *file, int line, const char *func); for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_remove_map_post; hIndex++) { postHookFunc = HPMHooks.list.HP_unit_remove_map_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl, clrtype, file, line, func); @@ -88147,10 +89012,10 @@ int HP_unit_remove_map(struct block_list *bl, clr_type clrtype, const char *file } return retVal___; } -void HP_unit_remove_map_pc(struct map_session_data *sd, clr_type clrtype) { +void HP_unit_remove_map_pc(struct map_session_data *sd, enum clr_type clrtype) { int hIndex = 0; if (HPMHooks.count.HP_unit_remove_map_pc_pre > 0) { - void (*preHookFunc) (struct map_session_data **sd, clr_type *clrtype); + void (*preHookFunc) (struct map_session_data **sd, enum clr_type *clrtype); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_remove_map_pc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_unit_remove_map_pc_pre[hIndex].func; @@ -88165,7 +89030,7 @@ void HP_unit_remove_map_pc(struct map_session_data *sd, clr_type clrtype) { HPMHooks.source.unit.remove_map_pc(sd, clrtype); } if (HPMHooks.count.HP_unit_remove_map_pc_post > 0) { - void (*postHookFunc) (struct map_session_data *sd, clr_type clrtype); + void (*postHookFunc) (struct map_session_data *sd, enum clr_type clrtype); for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_remove_map_pc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_unit_remove_map_pc_post[hIndex].func; postHookFunc(sd, clrtype); @@ -88199,11 +89064,11 @@ void HP_unit_free_pc(struct map_session_data *sd) { } return; } -int HP_unit_free(struct block_list *bl, clr_type clrtype) { +int HP_unit_free(struct block_list *bl, enum clr_type clrtype) { int hIndex = 0; int retVal___ = 0; if (HPMHooks.count.HP_unit_free_pre > 0) { - int (*preHookFunc) (struct block_list **bl, clr_type *clrtype); + int (*preHookFunc) (struct block_list **bl, enum clr_type *clrtype); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_free_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_unit_free_pre[hIndex].func; @@ -88218,7 +89083,7 @@ int HP_unit_free(struct block_list *bl, clr_type clrtype) { retVal___ = HPMHooks.source.unit.free(bl, clrtype); } if (HPMHooks.count.HP_unit_free_post > 0) { - int (*postHookFunc) (int retVal___, struct block_list *bl, clr_type clrtype); + int (*postHookFunc) (int retVal___, struct block_list *bl, enum clr_type clrtype); for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_free_post; hIndex++) { postHookFunc = HPMHooks.list.HP_unit_free_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl, clrtype); diff --git a/src/plugins/HPMHooking/HPMHooking_map.sources.inc b/src/plugins/HPMHooking/HPMHooking_map.sources.inc index 151a5d8a1..9d5390bb4 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.sources.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.sources.inc @@ -65,6 +65,7 @@ HPMHooks.source.mutex = *mutex; HPMHooks.source.npc_chat = *npc_chat; HPMHooks.source.npc = *npc; HPMHooks.source.nullpo = *nullpo; +HPMHooks.source.packets = *packets; HPMHooks.source.party = *party; HPMHooks.source.path = *path; HPMHooks.source.pcg = *pcg; diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in deleted file mode 100644 index d4c178218..000000000 --- a/src/tool/Makefile.in +++ /dev/null @@ -1,88 +0,0 @@ -# This file is part of Hercules. -# http://herc.ws - http://github.com/HerculesWS/Hercules -# -# Copyright (C) 2012-2018 Hercules Dev Team -# Copyright (C) Athena Dev Teams -# -# Hercules 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 3 of the License, or -# (at your option) any later version. -# -# This program 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 this program. If not, see <http://www.gnu.org/licenses/>. - -# @configure_input@ - -CONFIG_D = ../config -CONFIG_H = $(wildcard $(CONFIG_D)/*.h) $(wildcard $(CONFIG_D)/*/*.h) - -COMMON_D = ../common -COMMON_H = $(filter-out %.p.h, $(wildcard $(COMMON_D)/*.h)) -SYSINFO_INC = $(COMMON_D)/sysinfo.inc -COMMON_INCLUDE = -I.. - -THIRDPARTY_D = ../../3rdparty -THIRDPARTY_INCLUDE = -I$(THIRDPARTY_D) - -LIBCONFIG_D = $(THIRDPARTY_D)/libconfig -LIBCONFIG_OBJ = $(addprefix $(LIBCONFIG_D)/, libconfig.o grammar.o scanctx.o \ - scanner.o strbuf.o) -LIBCONFIG_H = $(addprefix $(LIBCONFIG_D)/, libconfig.h grammar.h parsectx.h \ - scanctx.h scanner.h strbuf.h wincompat.h) - -@SET_MAKE@ - -CC = @CC@ -export CC - -##################################################################### -.PHONY: all clean buildclean help - -all: Makefile - -buildclean: - @echo " CLEAN tool (build temp files)" - @rm -rf obj_all/*.o - -clean: buildclean - @echo " CLEAN tool" - -help: - @echo "possible targets are 'all' 'clean' 'help'" - @echo "'all' - builds all above targets" - @echo "'clean' - cleans builds and objects" - @echo "'buildclean' - cleans build temporary (object) files, without deleting the" - @echo " executables" - @echo "'help' - outputs this message" - -##################################################################### - -Makefile: Makefile.in - @$(MAKE) -C ../.. src/tool/Makefile - -$(SYSINFO_INC): $(COMMON_H) $(CONFIG_H) $(LIBCONFIG_H) - @echo " MAKE $@" - @$(MAKE) -C ../.. sysinfo - -obj_all: - @echo " MKDIR obj_all" - @-mkdir obj_all - -obj_all/%.o: %.c $(COMMON_H) $(CONFIG_H) $(LIBCONFIG_H) | obj_all - @echo " CC $<" - @$(CC) @CFLAGS@ @DEFS@ $(COMMON_INCLUDE) $(THIRDPARTY_INCLUDE) @CPPFLAGS@ -c $(OUTPUT_OPTION) $< - -# missing common object files -$(COMMON_D)/obj_all/common_mini.a: - @echo " MAKE $@" - @$(MAKE) -C $(COMMON_D) common_mini - -$(LIBCONFIG_OBJ): - @echo " MAKE $@" - @$(MAKE) -C $(LIBCONFIG_D) |